diff --git a/.gitignore b/.gitignore index b7f7822f05..ed8cb6f153 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ dist/* node_modules .cache/* .idea/* -.vscode/* scratch assets/editor-layer-index.json assets/generated/* @@ -23,3 +22,17 @@ Folder.DotSettings.user index_*.ts .~lock.* *.doctest.ts +service-worker.js + +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000000..d7253fb462 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,14 @@ +tasks: + - init: npm run init + command: npm run start + +ports: + - name: MapComplete Website + port: 1234 + onOpen: open-browser + +vscode: + extensions: + - "esbenp.prettier-vscode" + - "eamodio.gitlens" + - "GitHub.vscode-pull-request-github" diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000000..68d524f214 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + "recommendations": [ + "esbenp.prettier-vscode", + "eamodio.gitlens", + "GitHub.vscode-pull-request-github" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..25b1f4dbe9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,21 @@ +{ + "json.schemas": [ + { + "fileMatch": [ + "/assets/layers/*/*.json", + "!/assets/layers/*/license_info.json" + ], + "url": "./Docs/Schemas/LayerConfigJson.schema.json" + }, + { + "fileMatch": [ + "/assets/themes/*/*.json", + "!/assets/themes/*/license_info.json" + ], + "url": "./Docs/Schemas/LayoutConfigJson.schema.json" + } + ], + "editor.tabSize": 2, + "files.autoSave": "onFocusChange", + "search.useIgnoreFiles": true + } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..2dfa42cd3d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,14 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "start", + "path": "/", + "group": "build", + "problemMatcher": [], + "label": "MapComplete Dev", + "detail": "Run MapComplete Dev Server" + } + ] +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cc6fe3a8df..2ad9e66b69 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ There are multiple ways to contribute: - Translating MapComplete to your own language can be done on [this website](https://hosted.weblate.org/projects/mapcomplete/) - If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be -- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request. +- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request. Read more about [making your own theme](/Docs/Making_Your_Own_Theme.md). People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository. This is done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community. diff --git a/Customizations/AllKnownLayouts.ts b/Customizations/AllKnownLayouts.ts index e93ae4a06e..f979a07519 100644 --- a/Customizations/AllKnownLayouts.ts +++ b/Customizations/AllKnownLayouts.ts @@ -10,6 +10,7 @@ import Constants from "../Models/Constants"; import {Utils} from "../Utils"; import Link from "../UI/Base/Link"; import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; export class AllKnownLayouts { public static allKnownLayouts: Map = AllKnownLayouts.AllLayouts(); @@ -17,33 +18,47 @@ export class AllKnownLayouts { // Must be below the list... private static sharedLayers: Map = AllKnownLayouts.getSharedLayers(); - public static AllPublicLayers() { + public static AllPublicLayers(options?: { + includeInlineLayers:true | boolean + }) : LayerConfig[] { const allLayers: LayerConfig[] = [] const seendIds = new Set() AllKnownLayouts.sharedLayers.forEach((layer, key) => { seendIds.add(key) allLayers.push(layer) }) - - const publicLayouts = AllKnownLayouts.layoutsList.filter(l => !l.hideFromOverview) - for (const layout of publicLayouts) { - if (layout.hideFromOverview) { - continue - } - for (const layer of layout.layers) { - if (seendIds.has(layer.id)) { + if (options?.includeInlineLayers ?? true) { + const publicLayouts = AllKnownLayouts.layoutsList.filter(l => !l.hideFromOverview) + for (const layout of publicLayouts) { + if (layout.hideFromOverview) { continue } - seendIds.add(layer.id) - allLayers.push(layer) - } + for (const layer of layout.layers) { + if (seendIds.has(layer.id)) { + continue + } + seendIds.add(layer.id) + allLayers.push(layer) + } + } } - - + return allLayers } + /** + * Returns all themes which use the given layer, reverse sorted by minzoom. This sort maximizes the chances that the layer is prominently featured on the first theme + */ + public static themesUsingLayer(id: string, publicOnly = true): LayoutConfig[] { + const themes = AllKnownLayouts.layoutsList + .filter(l => !(publicOnly && l.hideFromOverview) && l.id !== "personal") + .map(theme => ({theme, minzoom: theme.layers.find(layer => layer.id === id)?.minzoom})) + .filter(obj => obj.minzoom !== undefined) + themes.sort((th0, th1) => th1.minzoom - th0.minzoom) + return themes.map(th => th.theme); + } + /** * Generates documentation for the layers. * Inline layers are included (if the theme is public) @@ -70,7 +85,7 @@ export class AllKnownLayouts { if (builtinLayerIds.has(layer.id)) { continue } - if(layer.source.geojsonSource !== undefined){ + if (layer.source.geojsonSource !== undefined) { // Not an OSM-source continue } @@ -184,9 +199,20 @@ export class AllKnownLayouts { } - private static getSharedLayers(): Map { + public static GenerateDocumentationForTheme(theme: LayoutConfig): BaseUIElement { + return new Combine([ + new Title(new Combine([theme.title, "(", theme.id + ")"]), 2), + theme.description, + "This theme contains the following layers:", + new List(theme.layers.map(l => l.id)), + "Available languages:", + new List(theme.language) + ]) + } + + public static getSharedLayers(): Map { const sharedLayers = new Map(); - for (const layer of known_themes.layers) { + for (const layer of known_themes["layers"]) { try { // @ts-ignore const parsed = new LayerConfig(layer, "shared_layers") @@ -201,6 +227,16 @@ export class AllKnownLayouts { return sharedLayers; } + public static getSharedLayersConfigs(): Map { + const sharedLayers = new Map(); + for (const layer of known_themes["layers"]) { + // @ts-ignore + sharedLayers.set(layer.id, layer); + } + + return sharedLayers; + } + private static GenerateOrderedList(allKnownLayouts: Map): LayoutConfig[] { const list = [] allKnownLayouts.forEach((layout) => { @@ -211,7 +247,7 @@ export class AllKnownLayouts { private static AllLayouts(): Map { const dict: Map = new Map(); - for (const layoutConfigJson of known_themes.themes) { + for (const layoutConfigJson of known_themes["themes"]) { const layout = new LayoutConfig(layoutConfigJson, true) dict.set(layout.id, layout) for (let i = 0; i < layout.layers.length; i++) { @@ -229,16 +265,5 @@ export class AllKnownLayouts { } return dict; } - - public static GenerateDocumentationForTheme(theme: LayoutConfig): BaseUIElement{ - return new Combine([ - new Title(new Combine([theme.title, "(",theme.id+")"]), 2), - theme.description, - "This theme contains the following layers:", - new List(theme.layers.map(l => l.id)), - "Available languages:", - new List(theme.language) - ]) - } } diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md index d991354fdf..fd30e35fc7 100644 --- a/Docs/BuiltinIndex.md +++ b/Docs/BuiltinIndex.md @@ -21,15 +21,31 @@ + [bicycle_rental.*bicycle_rental](#bicycle_rental*bicycle_rental) + [bike_cleaning.bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaningbike_cleaning-service:bicycle:cleaning:charge) + [wheelchair-access](#wheelchair-access) + + [smoking](#smoking) + [service:electricity](#serviceelectricity) + [dog-access](#dog-access) - + [all_tags](#all_tags) - + [questions](#questions) + [reviews](#reviews) + + [climbing.website](#climbingwebsite) + + [climbing.fee](#climbingfee) + + [climbing.bouldering](#climbingbouldering) + + [climbing.average_length](#climbingaverage_length) + + [climbing.min_difficulty](#climbingmin_difficulty) + + [climbing.max_difficulty](#climbingmax_difficulty) + + [climbing.sportclimbing](#climbingsportclimbing) + + [climbing.max_bolts](#climbingmax_bolts) + + [all_tags](#all_tags) + + [multilevels](#multilevels) + + [induction-loop](#induction-loop) + + [questions](#questions) + [export_as_gpx](#export_as_gpx) + [export_as_geojson](#export_as_geojson) + [minimap](#minimap) + [wikipedia](#wikipedia) + + [wikidata.school-language](#wikidataschool-language) + + [id_presets.shop_types](#id_presetsshop_types) + + [school.capacity](#schoolcapacity) + + [school.gender](#schoolgender) + + [wikidata.language](#wikidatalanguage) @@ -65,37 +81,49 @@ - birdhide - cafe_pub - charging_station - - climbing + - climbing_area - climbing_gym - climbing_route - defibrillator + - doctors + - dogpark - drinking_water + - elevator - entrance - extinguisher - fire_station - food - ghost_bike + - governments - grass_in_parks + - hotel - hydrant + - indoors - information_board - map - nature_reserve - observation_tower - parking + - pharmacy - picnic_table - play_forest - playground - public_bookcase + - rainbow_crossings + - reception_desk - recycling - shops - slow_roads - sport_pitch + - street_lamps - surveillance_camera - toilet - trail + - transit_stops - tree_node - viewpoint - village_green + - waste_basket - watermill - windturbine @@ -110,16 +138,27 @@ - bicycle_library - bicycle_rental + - bike_shop - bike_themed_object - cafe_pub - climbing_club - climbing_gym + - doctors - food + - governments - hackerspace + - hospital + - hotel + - kindergarten_childcare - nature_reserve - observation_tower + - pharmacy - playground - recycling + - school + - shops + - tertiary_education + - veterinary @@ -132,13 +171,24 @@ - bicycle_library - bicycle_rental + - bike_shop - bike_themed_object - cafe_pub - climbing_club - climbing_gym + - doctors - food + - governments - hackerspace + - hospital + - hotel + - kindergarten_childcare + - pharmacy - recycling + - school + - shops + - tertiary_education + - veterinary @@ -151,13 +201,23 @@ - bicycle_library - bicycle_rental + - bike_shop - bike_themed_object - cafe_pub - climbing_club - climbing_gym + - doctors - food + - governments - hackerspace + - hospital + - hotel + - kindergarten_childcare + - pharmacy - recycling + - school + - shops + - tertiary_education @@ -175,7 +235,12 @@ - cafe_pub - climbing_club - climbing_gym + - doctors - food + - kindergarten_childcare + - pharmacy + - shops + - veterinary @@ -189,6 +254,7 @@ - bicycle_library - bike_shop - bike_themed_object + - climbing_route - toilet @@ -229,7 +295,14 @@ - bike_repair_station + - cafe_pub - charging_station + - entrance + - food + - parking + - picnic_table + - reception_desk + - shops - toilet @@ -267,7 +340,20 @@ - defibrillator - food - hackerspace + - hotel - observation_tower + - transit_stops + + + + +### smoking + + + + + + - cafe_pub @@ -296,6 +382,113 @@ +### reviews + + + + + + - cafe_pub + - dogpark + - food + - hackerspace + - hotel + - shops + - veterinary + + + + +### climbing.website + + + + + + - climbing_area + + + + +### climbing.fee + + + + + + - climbing_area + - climbing_gym + + + + +### climbing.bouldering + + + + + + - climbing_area + - climbing_gym + + + + +### climbing.average_length + + + + + + - climbing_gym + + + + +### climbing.min_difficulty + + + + + + - climbing_gym + + + + +### climbing.max_difficulty + + + + + + - climbing_gym + + + + +### climbing.sportclimbing + + + + + + - climbing_gym + + + + +### climbing.max_bolts + + + + + + - climbing_gym + + + + ### all_tags @@ -307,6 +500,29 @@ +### multilevels + + + + + + - elevator + + + + +### induction-loop + + + + + + - elevator + - reception_desk + + + + ### questions @@ -322,18 +538,6 @@ -### reviews - - - - - - - food - - shops - - - - ### export_as_gpx @@ -375,6 +579,61 @@ - nature_reserve - observation_tower + + + + +### wikidata.school-language + + + + + + - school + + + + +### id_presets.shop_types + + + + + + - shops + + + + +### school.capacity + + + + + + - tertiary_education + + + + +### school.gender + + + + + + - tertiary_education + + + + +### wikidata.language + + + + + + - wikidata This document is autogenerated from [assets/layers/*.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/*.json) \ No newline at end of file diff --git a/Docs/BuiltinLayers.md b/Docs/BuiltinLayers.md index 78b71b6c16..5841700698 100644 --- a/Docs/BuiltinLayers.md +++ b/Docs/BuiltinLayers.md @@ -35,12 +35,16 @@ + [conversation](#conversation) + [add_image](#add_image) + [comment](#comment) + + [nearby-images](#nearby-images) + [report-contributor](#report-contributor) + [report-note](#report-note) 1. [import_candidate](#import_candidate) - [Basic tags for this layer](#basic-tags-for-this-layer) - [Supported attributes](#supported-attributes) + [all_tags](#all_tags) +1. [direction](#direction) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) 1. [conflation](#conflation) - [Basic tags for this layer](#basic-tags-for-this-layer) - [Supported attributes](#supported-attributes) @@ -78,6 +82,7 @@ MapComplete has a few data layers available in the theme which have special prop - [type_node](#type_node) - [note](#note) - [import_candidate](#import_candidate) + - [direction](#direction) - [conflation](#conflation) - [left_right_style](#left_right_style) - [split_point](#split_point) @@ -103,7 +108,7 @@ Meta layer showing the current location of the user. Add this to your theme and - This layer is shown at zoomlevel **0** and higher - **This layer is included automatically in every theme. This layer might contain no points** - - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` @@ -146,7 +151,7 @@ Meta layer which contains the previous locations of the user as single points. T - This layer is shown at zoomlevel **0** and higher - **This layer is included automatically in every theme. This layer might contain no points** - - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` @@ -190,7 +195,7 @@ Meta layer showing the home location of the user. The home location can be set i - This layer is shown at zoomlevel **0** and higher - **This layer is included automatically in every theme. This layer might contain no points** - - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` @@ -264,7 +269,7 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -274,7 +279,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a button to export this feature as GPX. Especially useful for route relations + +This tagrendering has no question and is thus read-only @@ -284,7 +291,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a button to export this feature as geojson. Especially useful for debugging or using this in other programs + +This tagrendering has no question and is thus read-only @@ -294,7 +303,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only @@ -304,7 +315,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -366,7 +377,7 @@ This layer shows notes on OpenStreetMap. Having this layer in your theme will tr - This layer is shown at zoomlevel **10** and higher - - This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?limit=10000&closed=7&bbox={x_min},{y_min},{x_max},{y_max}` + - This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?limit=10000&closed=7&bbox={x_min},{y_min},{x_max},{y_max}` @@ -396,7 +407,7 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -406,7 +417,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -416,7 +427,17 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only + + + + + +### nearby-images + + + +This tagrendering has no question and is thus read-only @@ -426,11 +447,11 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `_opened_by_anonymous_user=false` is shown +Only visible if `_opened_by_anonymous_user=false` is shown @@ -438,7 +459,7 @@ Only visible if `_opened_by_anonymous_user=false` is shown -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -489,7 +510,48 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only + + + + + + direction +=========== + + + + + +This layer visualizes directions + + + + + + + - This layer is shown at zoomlevel **16** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - camera:direction~^..*$|direction~^..*$ + + + + + Supported attributes +---------------------- @@ -730,6 +792,12 @@ The following layers are included in MapComplete: - [birdhide](./Layers/birdhide.md) - [cafe_pub](./Layers/cafe_pub.md) - [charging_station](./Layers/charging_station.md) + - [climbing](./Layers/climbing.md) + - [climbing_area](./Layers/climbing_area.md) + - [climbing_club](./Layers/climbing_club.md) + - [climbing_gym](./Layers/climbing_gym.md) + - [climbing_opportunity](./Layers/climbing_opportunity.md) + - [climbing_route](./Layers/climbing_route.md) - [cluster_style](./Layers/cluster_style.md) - [conflation](./Layers/conflation.md) - [crab_address](./Layers/crab_address.md) @@ -738,46 +806,68 @@ The following layers are included in MapComplete: - [cycleways_and_roads](./Layers/cycleways_and_roads.md) - [defibrillator](./Layers/defibrillator.md) - [direction](./Layers/direction.md) + - [doctors](./Layers/doctors.md) + - [dogpark](./Layers/dogpark.md) - [drinking_water](./Layers/drinking_water.md) + - [elevator](./Layers/elevator.md) - [entrance](./Layers/entrance.md) - [etymology](./Layers/etymology.md) - [extinguisher](./Layers/extinguisher.md) - [fire_station](./Layers/fire_station.md) - [food](./Layers/food.md) - [ghost_bike](./Layers/ghost_bike.md) + - [governments](./Layers/governments.md) - [gps_location](./Layers/gps_location.md) - [gps_location_history](./Layers/gps_location_history.md) - [gps_track](./Layers/gps_track.md) - [grass_in_parks](./Layers/grass_in_parks.md) + - [hackerspace](./Layers/hackerspace.md) - [home_location](./Layers/home_location.md) + - [hospital](./Layers/hospital.md) + - [hotel](./Layers/hotel.md) - [hydrant](./Layers/hydrant.md) + - [id_presets](./Layers/id_presets.md) - [import_candidate](./Layers/import_candidate.md) + - [indoors](./Layers/indoors.md) - [information_board](./Layers/information_board.md) + - [kerbs](./Layers/kerbs.md) + - [kindergarten_childcare](./Layers/kindergarten_childcare.md) - [left_right_style](./Layers/left_right_style.md) - [map](./Layers/map.md) + - [maproulette](./Layers/maproulette.md) + - [maproulette_challenge](./Layers/maproulette_challenge.md) - [matchpoint](./Layers/matchpoint.md) + - [maxspeed](./Layers/maxspeed.md) - [named_streets](./Layers/named_streets.md) - [nature_reserve](./Layers/nature_reserve.md) - [note](./Layers/note.md) - - [note_import](./Layers/note_import.md) - [observation_tower](./Layers/observation_tower.md) - [parking](./Layers/parking.md) - [pedestrian_path](./Layers/pedestrian_path.md) + - [pharmacy](./Layers/pharmacy.md) - [picnic_table](./Layers/picnic_table.md) - [play_forest](./Layers/play_forest.md) - [playground](./Layers/playground.md) - [public_bookcase](./Layers/public_bookcase.md) + - [rainbow_crossings](./Layers/rainbow_crossings.md) + - [reception_desk](./Layers/reception_desk.md) - [recycling](./Layers/recycling.md) + - [school](./Layers/school.md) + - [shelter](./Layers/shelter.md) - [shops](./Layers/shops.md) - [slow_roads](./Layers/slow_roads.md) - [split_point](./Layers/split_point.md) - [sport_pitch](./Layers/sport_pitch.md) - [street_lamps](./Layers/street_lamps.md) - [surveillance_camera](./Layers/surveillance_camera.md) + - [tertiary_education](./Layers/tertiary_education.md) - [toilet](./Layers/toilet.md) - [trail](./Layers/trail.md) + - [transit_routes](./Layers/transit_routes.md) + - [transit_stops](./Layers/transit_stops.md) - [tree_node](./Layers/tree_node.md) - [type_node](./Layers/type_node.md) + - [veterinary](./Layers/veterinary.md) - [viewpoint](./Layers/viewpoint.md) - [village_green](./Layers/village_green.md) - [visitor_information_centre](./Layers/visitor_information_centre.md) @@ -785,6 +875,7 @@ The following layers are included in MapComplete: - [waste_basket](./Layers/waste_basket.md) - [waste_disposal](./Layers/waste_disposal.md) - [watermill](./Layers/watermill.md) + - [windturbine](./Layers/windturbine.md) This document is autogenerated from [Customizations/AllKnownLayouts.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Customizations/AllKnownLayouts.ts) \ No newline at end of file diff --git a/Docs/BuiltinQuestions.md b/Docs/BuiltinQuestions.md index 6fdc480ac8..ecdea7fb3b 100644 --- a/Docs/BuiltinQuestions.md +++ b/Docs/BuiltinQuestions.md @@ -12,6 +12,7 @@ The following items can be easily reused in your layers 1. [Builtin questions](#builtin-questions) + [questions](#questions) + [images](#images) + + [mapillary](#mapillary) + [export_as_gpx](#export_as_gpx) + [export_as_geojson](#export_as_geojson) + [wikipedia](#wikipedia) @@ -31,12 +32,16 @@ The following items can be easily reused in your layers + [payment-options-advanced](#payment-options-advanced) + [last_edit](#last_edit) + [all_tags](#all_tags) + + [multilevels](#multilevels) + [level](#level) + + [smoking](#smoking) + + [induction-loop](#induction-loop) + [default](#default) + [defaults](#defaults) + [isOpen](#isopen) + [phonelink](#phonelink) + [emaillink](#emaillink) + + [smokingicon](#smokingicon) + [sharelink](#sharelink) @@ -55,7 +60,17 @@ Read-only tagrendering -{image_carousel()}{image_upload()} +{image_carousel()}{image_upload()}{nearby_images(expandable)} + +Read-only tagrendering + + + +### mapillary + + + +{mapillary()} Read-only tagrendering @@ -91,6 +106,7 @@ What is the corresponding Wikidata entity? + - {wikipedia():max-height:25rem} - No Wikipedia page has been linked yet @@ -135,7 +151,7 @@ What is the phone number of {title()}? - +on osm Read-only tagrendering @@ -151,7 +167,7 @@ Read-only tagrendering -WP +Wikipedia Read-only tagrendering @@ -310,6 +326,25 @@ Read-only tagrendering +### multilevels + + + +This elevator goes to floors {level} + +What levels does this elevator go to? + + + + - Located underground + - Located on the ground floor + - Located on the ground floor + - Located on the first floor + - Located on the first basement level + + + + ### level @@ -329,6 +364,35 @@ On what level is this feature located? +### smoking + + + +Is smoking allowed at {title()}? + + + + - Smoking is allowed + - Smoking is not allowed + - Smoking is allowed outside. + + + + +### induction-loop + + + +Does this place have an audio induction loop for people with reduced hearing? + + + + - This place has an audio induction loop + - This place does not have an audio induction loop + + + + ### default @@ -365,7 +429,7 @@ Read-only tagrendering - +phone Read-only tagrendering @@ -375,12 +439,26 @@ Read-only tagrendering - +email Read-only tagrendering +### smokingicon + + + +Read-only tagrendering + + + + - no-smoking + - smoking-allowed + + + + ### sharelink diff --git a/Docs/CalculatedTags.md b/Docs/CalculatedTags.md index 7bafe75625..f3fc567b9e 100644 --- a/Docs/CalculatedTags.md +++ b/Docs/CalculatedTags.md @@ -21,8 +21,10 @@ + [_last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend](#_last_editcontributor,-_last_edit:contributor:uid,-_last_edit:changeset,-_last_edit:timestamp,-_version_number,-_backend) + [sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property](#sidewalkleft,-sidewalk:right,-generic_key:left:property,-generic_key:right:property) + [_geometry:type](#_geometrytype) + + [_level](#_level) + [distanceTo](#distanceto) + [overlapWith](#overlapwith) + + [enclosingFeatures](#enclosingfeatures) + [intersectionsWith](#intersectionswith) + [closest](#closest) + [closestn](#closestn) @@ -33,7 +35,7 @@ Metatags are extra tags available, in order to display more data or to give better questions. -The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags. +They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags. **Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object @@ -168,6 +170,16 @@ Adds the geometry type as property. This is identical to the GoeJson geometry ty +### _level + + + +Extract the 'level'-tag into a normalized, ';'-separated value + + + + + Calculating tags with Javascript ---------------------------------- @@ -218,6 +230,7 @@ Some advanced functions are available on **feat** as well: - [distanceTo](#distanceTo) - [overlapWith](#overlapWith) + - [enclosingFeatures](#enclosingFeatures) - [intersectionsWith](#intersectionsWith) - [closest](#closest) - [closestn](#closestn) @@ -235,12 +248,25 @@ Some advanced functions are available on **feat** as well: ### overlapWith - Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well.If the current feature is a point, all features that this point is embeded in are given. + Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well. +If the current feature is a point, all features that this point is embeded in are given. The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point. -The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list +The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list. -For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')` +For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')` + +Also see [enclosingFeatures](#enclosingFeatures) which can be used to get all objects which fully contain this feature + + 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) + + +### enclosingFeatures + + Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored) + +The result is a list of features: `{feat: Polygon}[]` +This function will never return the feature itself. 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) @@ -259,7 +285,7 @@ Points from other layers are ignored - even if the points are parts of the curre ### closest - Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet laoded) + Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded) 0. list of features or a layer name or '*' to get all features diff --git a/Docs/Development_deployment.md b/Docs/Development_deployment.md index ab29c60d3d..3590b92d8d 100644 --- a/Docs/Development_deployment.md +++ b/Docs/Development_deployment.md @@ -27,7 +27,10 @@ Devcontainer (see more details later). To develop and build MapComplete, you 0. Make a fork and clone the repository. (We recommend a shallow clone with `git clone --filter=blob:none `) -0. Install the nodejs version specified in [.tool-versions](./.tool-versions) +0. Install `python3` if you do not have it already + - On linux: `sudo apt install python3` + - On windows: find the latest download on the [Python Releases for Windows page](https://www.python.org/downloads/windows/) +0. Install the nodejs version specified in [/.tool-versions](/.tool-versions) - On linux: install npm first `sudo apt install npm`, then install `n` using npm: ` npm install -g n`, which can then install node with `n install ` - You can [use asdf to manage your runtime versions](https://asdf-vm.com/). @@ -72,6 +75,13 @@ To use the WSL in Visual Studio Code: or `userlayout=true#` as [Query parameter](URL_Parameters.md). Note that the shorter URLs ( e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version. +Dependencies +------------ + +`make` , `python3` `g++` + +(Nix users may run `nix-env -iA nixos.gnumake nixos.gdc nixos.python3`) + Automatic deployment -------------------- diff --git a/Docs/Layers/address.md b/Docs/Layers/address.md index 92e43ca079..20f6a72d07 100644 --- a/Docs/Layers/address.md +++ b/Docs/Layers/address.md @@ -15,18 +15,7 @@ Addresses - This layer is shown at zoomlevel **18** and higher - - This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names) - - - - -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) + - This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names) @@ -52,7 +41,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -69,14 +60,17 @@ attribute | type | values which are supported by this layer -The question is **What is the number of this house?** +The question is What is the number of this house? This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) -This is rendered with `The housenumber is {addr:housenumber}` + +This is rendered with The house number is {addr:housenumber} - - **This building has no house number** corresponds with nohousenumber=yes + + + - This building has no house number corresponds with `nohousenumber=yes` @@ -85,16 +79,19 @@ This is rendered with `The housenumber is {addr:housenumber}` -The question is **What street is this address located in?** +The question is What street is this address located in? This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) -This is rendered with `This address is in street {addr:street}` + +This is rendered with This address is in street {addr:street} - - **Located in {_closest_street:0:name}** corresponds with addr:street= - - **Located in {_closest_street:1:name}** corresponds with addr:street= - - **Located in {_closest_street:2:name}** corresponds with addr:street= + + + - Located in {_closest_street:0:name} corresponds with `addr:street=` + - Located in {_closest_street:1:name} corresponds with `addr:street=` + - Located in {_closest_street:2:name} corresponds with `addr:street=` @@ -103,14 +100,17 @@ This is rendered with `This address is in street {addr:street}` -The question is **What should be fixed here? Please explain** +The question is What should be fixed here? Please explain This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) -This is rendered with `Fixme description{fixme}` + +This is rendered with Fixme description{fixme} - - **No fixme - write something here to explain complicated cases** corresponds with + + + - No fixme - write something here to explain complicated cases corresponds with `` This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json) \ No newline at end of file diff --git a/Docs/Layers/all_streets.md b/Docs/Layers/all_streets.md index 7bedbeb76e..8c9fc9f65d 100644 --- a/Docs/Layers/all_streets.md +++ b/Docs/Layers/all_streets.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -78,16 +82,16 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is the street {name} a cyclestreet?** +The question is Is the street {name} a cyclestreet? - - **This street is a cyclestreet (and has a speed limit of 30 km/h)** corresponds with cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no - - **This street is a cyclestreet** corresponds with cyclestreet=yes - - **This street will become a cyclstreet soon** corresponds with proposed:cyclestreet=yes - - **This street is not a cyclestreet** corresponds with + - This street is a cyclestreet (and has a speed limit of 30 km/h) corresponds with `cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no` + - This street is a cyclestreet corresponds with `cyclestreet=yes` + - This street will become a cyclstreet soon corresponds with `proposed:cyclestreet=yes` + - This street is not a cyclestreet corresponds with `` @@ -96,12 +100,15 @@ The question is **Is the street {name} a cyclestreet?** -The question is **When will this street become a cyclestreet?** +The question is When will this street become a cyclestreet? This rendering asks information about the property [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) -This is rendered with `This street will become a cyclestreet at {cyclestreet:start_date}` -Only visible if `proposed:cyclestreet=yes` is shown +This is rendered with This street will become a cyclestreet at {cyclestreet:start_date} + + + +Only visible if `proposed:cyclestreet=yes` is shown @@ -109,7 +116,9 @@ Only visible if `proposed:cyclestreet=yes` is shown -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -119,7 +128,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/ambulancestation.md b/Docs/Layers/ambulancestation.md index 284323f517..0060a30cab 100644 --- a/Docs/Layers/ambulancestation.md +++ b/Docs/Layers/ambulancestation.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -71,10 +73,13 @@ attribute | type | values which are supported by this layer -The question is **What is the name of this ambulance station?** +The question is What is the name of this ambulance station? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This station is called {name}.` + +This is rendered with This station is called {name}. + + @@ -82,10 +87,13 @@ This is rendered with `This station is called {name}.` -The question is ** What is the street name where the station located?** +The question is What is the street name where the station located? This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) -This is rendered with `This station is along a highway called {addr:street}.` + +This is rendered with This station is along a highway called {addr:street}. + + @@ -93,10 +101,13 @@ This is rendered with `This station is along a highway called {addr:street}.` -The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)** +The question is Where is the station located? (e.g. name of neighborhood, villlage, or town) This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) -This is rendered with `This station is found within {addr:place}.` + +This is rendered with This station is found within {addr:place}. + + @@ -104,10 +115,13 @@ This is rendered with `This station is found within {addr:place}.` -The question is **What agency operates this station?** +The question is What agency operates this station? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This station is operated by {operator}.` + +This is rendered with This station is operated by {operator}. + + @@ -120,17 +134,20 @@ This is rendered with `This station is operated by {operator}.` -The question is **How is the station operator classified?** +The question is How is the station operator classified? This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) -This is rendered with `The operator is a(n) {operator:type} entity.` + +This is rendered with The operator is a(n) {operator:type} entity. - - **The station is operated by the government.** corresponds with operator:type=government - - **The station is operated by a community-based, or informal organization.** corresponds with operator:type=community - - **The station is operated by a formal group of volunteers.** corresponds with operator:type=ngo - - **The station is privately operated.** corresponds with operator:type=private + + + - The station is operated by the government. corresponds with `operator:type=government` + - The station is operated by a community-based, or informal organization. corresponds with `operator:type=community` + - The station is operated by a formal group of volunteers. corresponds with `operator:type=ngo` + - The station is privately operated. corresponds with `operator:type=private` @@ -139,7 +156,9 @@ This is rendered with `The operator is a(n) {operator:type} entity.` -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/artwork.md b/Docs/Layers/artwork.md index dd57515e31..7e2bc046bd 100644 --- a/Docs/Layers/artwork.md +++ b/Docs/Layers/artwork.md @@ -7,7 +7,7 @@ -Diverse pieces of artwork +An open map of statues, busts, graffitis and other artwork all over the world @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -70,7 +72,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -80,25 +84,28 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the type of this artwork?** +The question is What is the type of this artwork? This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) -This is rendered with `This is a {artwork_type}` + +This is rendered with This is a {artwork_type} - - **Architecture** corresponds with artwork_type=architecture - - **Mural** corresponds with artwork_type=mural - - **Painting** corresponds with artwork_type=painting - - **Sculpture** corresponds with artwork_type=sculpture - - **Statue** corresponds with artwork_type=statue - - **Bust** corresponds with artwork_type=bust - - **Stone** corresponds with artwork_type=stone - - **Installation** corresponds with artwork_type=installation - - **Graffiti** corresponds with artwork_type=graffiti - - **Relief** corresponds with artwork_type=relief - - **Azulejo (Spanish decorative tilework)** corresponds with artwork_type=azulejo - - **Tilework** corresponds with artwork_type=tilework + + + - Architecture corresponds with `artwork_type=architecture` + - Mural corresponds with `artwork_type=mural` + - Painting corresponds with `artwork_type=painting` + - Sculpture corresponds with `artwork_type=sculpture` + - Statue corresponds with `artwork_type=statue` + - Bust corresponds with `artwork_type=bust` + - Stone corresponds with `artwork_type=stone` + - Installation corresponds with `artwork_type=installation` + - Graffiti corresponds with `artwork_type=graffiti` + - Relief corresponds with `artwork_type=relief` + - Azulejo (Spanish decorative tilework) corresponds with `artwork_type=azulejo` + - Tilework corresponds with `artwork_type=tilework` @@ -107,10 +114,13 @@ This is rendered with `This is a {artwork_type}` -The question is **Which artist created this?** +The question is Which artist created this? This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) -This is rendered with `Created by {artist_name}` + +This is rendered with Created by {artist_name} + + @@ -118,10 +128,13 @@ This is rendered with `Created by {artist_name}` -The question is **Is there a website with more information about this artwork?** +The question is Is there a website with more information about this artwork? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `More information on this website` + +This is rendered with More information on this website + + @@ -129,9 +142,12 @@ This is rendered with `More information on t -The question is **Which Wikidata-entry corresponds with this artwork?** +The question is Which Wikidata-entry corresponds with this artwork? This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) -This is rendered with `Corresponds with {wikidata}` + +This is rendered with Corresponds with {wikidata} + + This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json) \ No newline at end of file diff --git a/Docs/Layers/barrier.md b/Docs/Layers/barrier.md index 9917f533f8..2cf66e2623 100644 --- a/Docs/Layers/barrier.md +++ b/Docs/Layers/barrier.md @@ -54,7 +54,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -64,10 +66,10 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier) [](https://taginfo.openstreetmap.org/keys/bollard#values) [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising) [](https://taginfo.openstreetmap.org/keys/cycle_barrier#values) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze) -[](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [length](../SpecialInputElements.md#length) | -[](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [length](../SpecialInputElements.md#length) | -[](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [length](../SpecialInputElements.md#length) | -[](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [distance](../SpecialInputElements.md#distance) | +[](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [distance](../SpecialInputElements.md#distance) | +[](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [distance](../SpecialInputElements.md#distance) | +[](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [distance](../SpecialInputElements.md#distance) | @@ -76,14 +78,14 @@ attribute | type | values which are supported by this layer -The question is **Can a bicycle go past this barrier?** +The question is Can a bicycle go past this barrier? - - **A cyclist can go past this.** corresponds with bicycle=yes - - **A cyclist can not go past this.** corresponds with bicycle=no + - A cyclist can go past this. corresponds with `bicycle=yes` + - A cyclist can not go past this. corresponds with `bicycle=no` @@ -92,14 +94,14 @@ The question is **Can a bicycle go past this barrier?** -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only - - **This is a single bollard in the road** corresponds with barrier=bollard - - **This is a cycle barrier slowing down cyclists** corresponds with barrier=cycle_barrier + - This is a single bollard in the road corresponds with `barrier=bollard` + - This is a cycle barrier slowing down cyclists corresponds with `barrier=cycle_barrier` @@ -108,20 +110,20 @@ _This tagrendering has no question and is thus read-only_ -The question is **What kind of bollard is this?** +The question is What kind of bollard is this? - - **Removable bollard** corresponds with bollard=removable - - **Fixed bollard** corresponds with bollard=fixed - - **Bollard that can be folded down** corresponds with bollard=foldable - - **Flexible bollard, usually plastic** corresponds with bollard=flexible - - **Rising bollard** corresponds with bollard=rising + - Removable bollard corresponds with `bollard=removable` + - Fixed bollard corresponds with `bollard=fixed` + - Bollard that can be folded down corresponds with `bollard=foldable` + - Flexible bollard, usually plastic corresponds with `bollard=flexible` + - Rising bollard corresponds with `bollard=rising` -Only visible if `barrier=bollard` is shown +Only visible if `barrier=bollard` is shown @@ -129,19 +131,19 @@ Only visible if `barrier=bollard` is shown -The question is **What kind of cycling barrier is this?** +The question is What kind of cycling barrier is this? - - **Single, just two barriers with a space inbetween** corresponds with cycle_barrier=single - - **Double, two barriers behind each other** corresponds with cycle_barrier=double - - **Triple, three barriers behind each other** corresponds with cycle_barrier=triple - - **Squeeze gate, gap is smaller at top, than at the bottom** corresponds with cycle_barrier=squeeze + - Single, just two barriers with a space inbetween corresponds with `cycle_barrier=single` + - Double, two barriers behind each other corresponds with `cycle_barrier=double` + - Triple, three barriers behind each other corresponds with `cycle_barrier=triple` + - Squeeze gate, gap is smaller at top, than at the bottom corresponds with `cycle_barrier=squeeze` -Only visible if `barrier=cycle_barrier` is shown +Only visible if `barrier=cycle_barrier` is shown @@ -149,10 +151,13 @@ Only visible if `barrier=cycle_barrier` is shown -The question is **How wide is the gap left over besides the barrier?** +The question is How wide is the gap left over besides the barrier? This rendering asks information about the property [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) -This is rendered with `Maximum width: {maxwidth:physical} m` + +This is rendered with Maximum width: {maxwidth:physical} m + + @@ -160,12 +165,15 @@ This is rendered with `Maximum width: {maxwidth:physical} m` -The question is **How much space is there between the barriers (along the length of the road)?** +The question is How much space is there between the barriers (along the length of the road)? This rendering asks information about the property [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) -This is rendered with `Space between barriers (along the length of the road): {width:separation} m` -Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown +This is rendered with Space between barriers (along the length of the road): {width:separation} m + + + +Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown @@ -173,12 +181,15 @@ Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown -The question is **How wide is the smallest opening next to the barriers?** +The question is How wide is the smallest opening next to the barriers? This rendering asks information about the property [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) -This is rendered with `Width of opening: {width:opening} m` -Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown +This is rendered with Width of opening: {width:opening} m + + + +Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown @@ -186,11 +197,14 @@ Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown -The question is **How much overlap do the barriers have?** +The question is How much overlap do the barriers have? This rendering asks information about the property [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) -This is rendered with `Overlap: {overlap} m` -Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown +This is rendered with Overlap: {overlap} m + + + +Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown This document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json) \ No newline at end of file diff --git a/Docs/Layers/bench.md b/Docs/Layers/bench.md index dfc1b7d439..113ba22792 100644 --- a/Docs/Layers/bench.md +++ b/Docs/Layers/bench.md @@ -7,7 +7,7 @@ -A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them. +A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them. @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -83,14 +87,14 @@ _This tagrendering has no question and is thus read-only_ -The question is **Does this bench have a backrest?** +The question is Does this bench have a backrest? - - **Backrest: Yes** corresponds with backrest=yes - - **Backrest: No** corresponds with backrest=no + - Backrest: Yes corresponds with `backrest=yes` + - Backrest: No corresponds with `backrest=no` @@ -99,10 +103,13 @@ The question is **Does this bench have a backrest?** -The question is **How many seats does this bench have?** +The question is How many seats does this bench have? This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats) -This is rendered with `{seats} seats` + +This is rendered with {seats} seats + + @@ -110,19 +117,22 @@ This is rendered with `{seats} seats` -The question is **What is the bench (seating) made from?** +The question is What is the bench (seating) made from? This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material) -This is rendered with `Material: {material}` + +This is rendered with Material: {material} - - **Material: wood** corresponds with material=wood - - **Material: metal** corresponds with material=metal - - **Material: stone** corresponds with material=stone - - **Material: concrete** corresponds with material=concrete - - **Material: plastic** corresponds with material=plastic - - **Material: steel** corresponds with material=steel + + + - Material: wood corresponds with `material=wood` + - Material: metal corresponds with `material=metal` + - Material: stone corresponds with `material=stone` + - Material: concrete corresponds with `material=concrete` + - Material: plastic corresponds with `material=plastic` + - Material: steel corresponds with `material=steel` @@ -131,10 +141,13 @@ This is rendered with `Material: {material}` -The question is **In which direction are you looking when sitting on the bench?** +The question is In which direction are you looking when sitting on the bench? This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction) -This is rendered with `When sitting on the bench, one looks towards {direction}°.` + +This is rendered with When sitting on the bench, one looks towards {direction}°. + + @@ -142,21 +155,24 @@ This is rendered with `When sitting on the bench, one looks towards {direction} -The question is **Which colour does this bench have?** +The question is Which colour does this bench have? This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) -This is rendered with `Colour: {colour}` + +This is rendered with Colour: {colour} - - **Colour: brown** corresponds with colour=brown - - **Colour: green** corresponds with colour=green - - **Colour: gray** corresponds with colour=gray - - **Colour: white** corresponds with colour=white - - **Colour: red** corresponds with colour=red - - **Colour: black** corresponds with colour=black - - **Colour: blue** corresponds with colour=blue - - **Colour: yellow** corresponds with colour=yellow + + + - Colour: brown corresponds with `colour=brown` + - Colour: green corresponds with `colour=green` + - Colour: gray corresponds with `colour=gray` + - Colour: white corresponds with `colour=white` + - Colour: red corresponds with `colour=red` + - Colour: black corresponds with `colour=black` + - Colour: blue corresponds with `colour=blue` + - Colour: yellow corresponds with `colour=yellow` @@ -165,14 +181,17 @@ This is rendered with `Colour: {colour}` -The question is **When was this bench last surveyed?** +The question is When was this bench last surveyed? This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) -This is rendered with `This bench was last surveyed on {survey:date}` + +This is rendered with This bench was last surveyed on {survey:date} - - **Surveyed today!** corresponds with survey:date= + + + - Surveyed today! corresponds with `survey:date=` This document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json) \ No newline at end of file diff --git a/Docs/Layers/bench_at_pt.md b/Docs/Layers/bench_at_pt.md index bb4a6c34a2..fbccd0888e 100644 --- a/Docs/Layers/bench_at_pt.md +++ b/Docs/Layers/bench_at_pt.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -78,10 +82,13 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `{name}` + +This is rendered with {name} + + @@ -89,15 +96,15 @@ This is rendered with `{name}` -The question is **What kind of bench is this?** +The question is What kind of bench is this? - - **There is a normal, sit-down bench here** corresponds with bench=yes - - **Stand up bench** corresponds with bench=stand_up_bench - - **There is no bench here** corresponds with bench=no + - There is a normal, sit-down bench here corresponds with `bench=yes` + - Stand up bench corresponds with `bench=stand_up_bench` + - There is no bench here corresponds with `bench=no` This document is autogenerated from [assets/layers/bench_at_pt/bench_at_pt.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench_at_pt/bench_at_pt.json) \ No newline at end of file diff --git a/Docs/Layers/bicycle_library.md b/Docs/Layers/bicycle_library.md index 01fb44463d..0e010270c1 100644 --- a/Docs/Layers/bicycle_library.md +++ b/Docs/Layers/bicycle_library.md @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -75,7 +77,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -85,10 +89,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this bicycle library?** +The question is What is the name of this bicycle library? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This bicycle library is called {name}` + +This is rendered with This bicycle library is called {name} + + @@ -96,14 +103,18 @@ This is rendered with `This bicycle library is called {name}` -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -112,14 +123,18 @@ This is rendered with `{website}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -128,14 +143,18 @@ This is rendered with `{phone}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -144,10 +163,13 @@ This is rendered with `{email}` -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + @@ -155,15 +177,18 @@ This is rendered with `

Opening hours

{opening_hours_table(opening_hours) -The question is **How much does lending a bicycle cost?** +The question is How much does lending a bicycle cost? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `Lending a bicycle costs {charge}` + +This is rendered with Lending a bicycle costs {charge} - - **Lending a bicycle is free** corresponds with fee=no - - **Lending a bicycle costs €20/year and €20 warranty** corresponds with fee=yes&charge=€20warranty + €20/year + + + - Lending a bicycle is free corresponds with `fee=no` + - Lending a bicycle costs €20/year and €20 warranty corresponds with `fee=yes&charge=€20warranty + €20/year` @@ -172,15 +197,15 @@ This is rendered with `Lending a bicycle costs {charge}` -The question is **Who can lend bicycles here?** +The question is Who can loan bicycles here? - - **Bikes for children available** corresponds with bicycle_library:for=child - - **Bikes for adult available** corresponds with bicycle_library:for=adult - - **Bikes for disabled persons available** corresponds with bicycle_library:for=disabled + - Bikes for children available corresponds with `bicycle_library:for=child` + - Bikes for adult available corresponds with `bicycle_library:for=adult` + - Bikes for disabled persons available corresponds with `bicycle_library:for=disabled` @@ -189,9 +214,12 @@ The question is **Who can lend bicycles here?** -The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** +The question is Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `{description}` + +This is rendered with {description} + + This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_library/bicycle_library.json) \ No newline at end of file diff --git a/Docs/Layers/bicycle_rental.md b/Docs/Layers/bicycle_rental.md index 196ea87fae..3f55881213 100644 --- a/Docs/Layers/bicycle_rental.md +++ b/Docs/Layers/bicycle_rental.md @@ -26,6 +26,7 @@ Bicycle rental stations - [bicycle_rental](https://mapcomplete.osm.be/bicycle_rental) + - [cyclofix](https://mapcomplete.osm.be/cyclofix) - [personal](https://mapcomplete.osm.be/personal) @@ -52,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -62,7 +65,7 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | [](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) +[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) [](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | @@ -78,7 +81,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -88,20 +93,21 @@ _This tagrendering has no question and is thus read-only_ -The question is **What kind of bicycle rental is this?** +The question is What kind of bicycle rental is this? - - **This is a shop whose main focus is bicycle rental** corresponds with shop=rental&bicycle_rental=shop - - **This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus** corresponds with service:bicycle:rental=yes&shop=bicycle - - **This is a shop which sells or repairs bicycles, but also rents out bicycles** corresponds with bicycle_rental=docking_station - - **This is an automated docking station, where a bicycle is mechanically locked into a structure** corresponds with bicycle_rental=key_dispensing_machine - - **A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby** corresponds with bicycle_rental=dropoff_point + - This is a shop whose main focus is bicycle rental corresponds with `shop=rental&bicycle_rental=shop` + - This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus corresponds with `shop=rental` + - This is a shop which sells or repairs bicycles, but also rents out bicycles corresponds with `service:bicycle:rental=yes&shop=bicycle` + - This is an automated docking station, where a bicycle is mechanically locked into a structure corresponds with `bicycle_rental=docking_station` + - A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby corresponds with `bicycle_rental=key_dispensing_machine` + - This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only corresponds with `bicycle_rental=dropoff_point` -Only visible if `amenity=bicycle_rental` is shown +Only visible if `amenity=bicycle_rental` is shown @@ -109,14 +115,18 @@ Only visible if `amenity=bicycle_rental` is shown -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -125,14 +135,18 @@ This is rendered with `{website}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -141,14 +155,18 @@ This is rendered with `{email}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -157,12 +175,15 @@ This is rendered with `{phone}` -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` -Only visible if `shop~^..*$|opening_hours~^..*$` is shown +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + +Only visible if `shop~^..*$|opening_hours~^..*$` is shown @@ -170,17 +191,19 @@ Only visible if `shop~^..*$|opening_hours~^..*$` is shown -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no -Only visible if `shop~^..*$` is shown +Only visible if `shop~^..*$` is shown @@ -188,16 +211,20 @@ Only visible if `shop~^..*$` is shown -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no - - **Payment is done using a dedicated app** corresponds with payment:app=yesUnselecting this answer will add payment:app=no - - **Payment is done using a membership card** corresponds with payment:membership_card=yesUnselecting this answer will add payment:membership_card=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + - Payment is done using a dedicated app corresponds with `payment:app=yes` + - Unselecting this answer will add payment:app=no + - Payment is done using a membership card corresponds with `payment:membership_card=yes` + - Unselecting this answer will add payment:membership_card=no @@ -206,20 +233,24 @@ The question is **Which methods of payment are accepted here?** -The question is **What kind of bicycles and accessories are rented here?** +The question is What kind of bicycles and accessories are rented here? This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental) -This is rendered with `{rental} is rented here` + +This is rendered with {rental} is rented here - - **Normal city bikes can be rented here** corresponds with rental=city_bike - - **Electrical bikes can be rented here** corresponds with rental=ebike - - **BMX bikes can be rented here** corresponds with rental=bmx - - **Mountainbikes can be rented here** corresponds with rental=mtb - - **Bikes for childs can be rented here** corresponds with rental=kid_bike - - **Tandem bicycles can be rented here** corresponds with rental=tandem - - **Race bicycles can be rented here** corresponds with rental=racebike + + + - Normal city bikes can be rented here corresponds with `rental=city_bike` + - Electrical bikes can be rented here corresponds with `rental=ebike` + - BMX bikes can be rented here corresponds with `rental=bmx` + - Mountainbikes can be rented here corresponds with `rental=mtb` + - Bikes for children can be rented here corresponds with `rental=kid_bike` + - Tandem bicycles can be rented here corresponds with `rental=tandem` + - Race bicycles can be rented here corresponds with `rental=racebike` + - Bike helmets can be rented here corresponds with `rental=bike_helmet` This tagrendering has labels `bicycle_rental` @@ -230,12 +261,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much city bikes can be rented here? ** +The question is How much city bikes can be rented here? This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) -This is rendered with `{capacity:city_bike} city bikes can be rented here` -Only visible if `rental~^.*city_bike.*$` is shown +This is rendered with {capacity:city_bike} city bikes can be rented here + + + +Only visible if `rental~^.*city_bike.*$` is shown This tagrendering has labels `bicycle_rental` @@ -245,12 +279,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much electrical bikes can be rented here? ** +The question is How much electrical bikes can be rented here? This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) -This is rendered with `{capacity:ebike} electrical bikes can be rented here` -Only visible if `rental~^.*ebike.*$` is shown +This is rendered with {capacity:ebike} electrical bikes can be rented here + + + +Only visible if `rental~^.*ebike.*$` is shown This tagrendering has labels `bicycle_rental` @@ -260,12 +297,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much bikes for children can be rented here? ** +The question is How much bikes for children can be rented here? This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) -This is rendered with `{capacity:kid_bike} bikes for children can be rented here` -Only visible if `rental~^.*kid_bike.*$` is shown +This is rendered with {capacity:kid_bike} bikes for children can be rented here + + + +Only visible if `rental~^.*kid_bike.*$` is shown This tagrendering has labels `bicycle_rental` @@ -275,12 +315,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much BMX bikes can be rented here? ** +The question is How much BMX bikes can be rented here? This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) -This is rendered with `{capacity:bmx} BMX bikes can be rented here` -Only visible if `rental~^.*bmx.*$` is shown +This is rendered with {capacity:bmx} BMX bikes can be rented here + + + +Only visible if `rental~^.*bmx.*$` is shown This tagrendering has labels `bicycle_rental` @@ -290,12 +333,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much mountainbike can be rented here? ** +The question is How much mountainbike can be rented here? This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) -This is rendered with `{capacity:mtb} mountainbike can be rented here` -Only visible if `rental~^.*mtb.*$` is shown +This is rendered with {capacity:mtb} mountainbike can be rented here + + + +Only visible if `rental~^.*mtb.*$` is shown This tagrendering has labels `bicycle_rental` @@ -305,12 +351,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much bicycle panniers can be rented here? ** +The question is How much bicycle panniers can be rented here? This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) -This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here` -Only visible if `rental~^.*bicycle_pannier.*$` is shown +This is rendered with {capacity:bicycle_pannier} bicycle panniers can be rented here + + + +Only visible if `rental~^.*bicycle_pannier.*$` is shown This tagrendering has labels `bicycle_rental` @@ -320,12 +369,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much tandem can be rented here? ** +The question is How much tandem can be rented here? This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) -This is rendered with `{capacity:tandem_bicycle} tandem can be rented here` -Only visible if `rental~^.*tandem_bicycle.*$` is shown +This is rendered with {capacity:tandem_bicycle} tandem can be rented here + + + +Only visible if `rental~^.*tandem_bicycle.*$` is shown This tagrendering has labels `bicycle_rental` diff --git a/Docs/Layers/bicycle_rental_non_docking.md b/Docs/Layers/bicycle_rental_non_docking.md new file mode 100644 index 0000000000..0cc8669c92 --- /dev/null +++ b/Docs/Layers/bicycle_rental_non_docking.md @@ -0,0 +1,407 @@ + + + bicycle_rental_non_docking +============================ + + + + + +Bicycle rental stations + + + + + + + - This layer is shown at zoomlevel **14** and higher + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$ + - bicycle_rental!=docking_station + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E.*bicycle.*%24%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) +[](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values) [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### bicycle_rental_type + + + +The question is What kind of bicycle rental is this? + + + + + + - This is a shop whose main focus is bicycle rental corresponds with `shop=rental&bicycle_rental=shop` + - This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus corresponds with `shop=rental` + - This is a shop which sells or repairs bicycles, but also rents out bicycles corresponds with `service:bicycle:rental=yes&shop=bicycle` + - This is an automated docking station, where a bicycle is mechanically locked into a structure corresponds with `bicycle_rental=docking_station` + - A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby corresponds with `bicycle_rental=key_dispensing_machine` + - This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only corresponds with `bicycle_rental=dropoff_point` + + +Only visible if `amenity=bicycle_rental` is shown + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### opening_hours + + + +The question is What are the opening hours of {title()}? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + +Only visible if `shop~^..*$|opening_hours~^..*$` is shown + + + +### payment-options + + + +The question is Which methods of payment are accepted here? + + + + + + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + + +Only visible if `shop~^..*$` is shown + + + +### payment-options-advanced + + + +The question is Which methods of payment are accepted here? + + + + + + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + - Payment is done using a dedicated app corresponds with `payment:app=yes` + - Unselecting this answer will add payment:app=no + - Payment is done using a membership card corresponds with `payment:membership_card=yes` + - Unselecting this answer will add payment:membership_card=no + + + + +### bicycle-types + + + +The question is What kind of bicycles and accessories are rented here? + +This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental) + +This is rendered with {rental} is rented here + + + + + + - Normal city bikes can be rented here corresponds with `rental=city_bike` + - Electrical bikes can be rented here corresponds with `rental=ebike` + - BMX bikes can be rented here corresponds with `rental=bmx` + - Mountainbikes can be rented here corresponds with `rental=mtb` + - Bikes for children can be rented here corresponds with `rental=kid_bike` + - Tandem bicycles can be rented here corresponds with `rental=tandem` + - Race bicycles can be rented here corresponds with `rental=racebike` + - Bike helmets can be rented here corresponds with `rental=bike_helmet` + + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-city_bike + + + +The question is How much city bikes can be rented here? + +This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) + +This is rendered with {capacity:city_bike} city bikes can be rented here + + + +Only visible if `rental~^.*city_bike.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-ebike + + + +The question is How much electrical bikes can be rented here? + +This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) + +This is rendered with {capacity:ebike} electrical bikes can be rented here + + + +Only visible if `rental~^.*ebike.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-kid_bike + + + +The question is How much bikes for children can be rented here? + +This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) + +This is rendered with {capacity:kid_bike} bikes for children can be rented here + + + +Only visible if `rental~^.*kid_bike.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-bmx + + + +The question is How much BMX bikes can be rented here? + +This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) + +This is rendered with {capacity:bmx} BMX bikes can be rented here + + + +Only visible if `rental~^.*bmx.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-mtb + + + +The question is How much mountainbike can be rented here? + +This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) + +This is rendered with {capacity:mtb} mountainbike can be rented here + + + +Only visible if `rental~^.*mtb.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-bicycle_pannier + + + +The question is How much bicycle panniers can be rented here? + +This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) + +This is rendered with {capacity:bicycle_pannier} bicycle panniers can be rented here + + + +Only visible if `rental~^.*bicycle_pannier.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### rental-capacity-tandem_bicycle + + + +The question is How much tandem can be rented here? + +This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) + +This is rendered with {capacity:tandem_bicycle} tandem can be rented here + + + +Only visible if `rental~^.*tandem_bicycle.*$` is shown + +This tagrendering has labels `bicycle_rental` + + + +### questions + + + +Show the images block at this location + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only + + + +This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json) \ No newline at end of file diff --git a/Docs/Layers/bicycle_tube_vending_machine.md b/Docs/Layers/bicycle_tube_vending_machine.md index ea47507c93..fb4ac524bd 100644 --- a/Docs/Layers/bicycle_tube_vending_machine.md +++ b/Docs/Layers/bicycle_tube_vending_machine.md @@ -7,7 +7,7 @@ -A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...) +A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, …) @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -71,7 +73,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -81,16 +85,19 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is this vending machine still operational?** +The question is Is this vending machine still operational? This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) -This is rendered with `The operational status is {operational_status}` + +This is rendered with The operational status is {operational_status} - - **This vending machine works** corresponds with - - **This vending machine is broken** corresponds with operational_status=broken - - **This vending machine is closed** corresponds with operational_status=closed + + + - This vending machine works corresponds with `` + - This vending machine is broken corresponds with `operational_status=broken` + - This vending machine is closed corresponds with `operational_status=closed` @@ -99,10 +106,13 @@ This is rendered with `The operational status is {operational_status}` -The question is **How much does a bicycle tube cost?** +The question is How much does a bicycle tube cost? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `A bicycle tube costs {charge}` + +This is rendered with A bicycle tube costs {charge} + + @@ -110,15 +120,18 @@ This is rendered with `A bicycle tube costs {charge}` -The question is **How can one pay at this tube vending machine?** +The question is How can one pay at this tube vending machine? - - **Payment with coins is possible** corresponds with payment:coins=yesUnselecting this answer will add payment:coins=no - - **Payment with notes is possible** corresponds with payment:notes=yesUnselecting this answer will add payment:notes=no - - **Payment with cards is possible** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Payment with coins is possible corresponds with `payment:coins=yes` + - Unselecting this answer will add payment:coins=no + - Payment with notes is possible corresponds with `payment:notes=yes` + - Unselecting this answer will add payment:notes=no + - Payment with cards is possible corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no @@ -127,15 +140,18 @@ The question is **How can one pay at this tube vending machine?** -The question is **Which brand of tubes are sold here?** +The question is Which brand of tubes are sold here? This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand) -This is rendered with `{brand} tubes are sold here` + +This is rendered with {brand} tubes are sold here - - **Continental tubes are sold here** corresponds with brand=Continental - - **Schwalbe tubes are sold here** corresponds with brand=Schwalbe + + + - Continental tubes are sold here corresponds with `brand=Continental` + - Schwalbe tubes are sold here corresponds with `brand=Schwalbe` @@ -144,15 +160,18 @@ This is rendered with `{brand} tubes are sold here` -The question is **Who maintains this vending machine?** +The question is Who maintains this vending machine? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This vending machine is maintained by {operator}` + +This is rendered with This vending machine is maintained by {operator} - - **Maintained by Schwalbe** corresponds with operator=Schwalbe - - **Maintained by Continental** corresponds with operator=Continental + + + - Maintained by Schwalbe corresponds with `operator=Schwalbe` + - Maintained by Continental corresponds with `operator=Continental` @@ -161,17 +180,22 @@ This is rendered with `This vending machine is maintained by {operator}` -The question is **Are other bicycle bicycle accessories sold here?** +The question is Are other bicycle bicycle accessories sold here? - - **Bicycle lights are sold here** corresponds with vending:bicycle_light=yesUnselecting this answer will add vending:bicycle_light=no - - **Gloves are sold here** corresponds with vending:gloves=yesUnselecting this answer will add vending:gloves=no - - **Bicycle repair kits are sold here** corresponds with vending:bicycle_repair_kit=yesUnselecting this answer will add vending:bicycle_repair_kit=no - - **Bicycle pumps are sold here** corresponds with vending:bicycle_pump=yesUnselecting this answer will add vending:bicycle_pump=no - - **Bicycle locks are sold here** corresponds with vending:bicycle_lock=yesUnselecting this answer will add vending:bicycle_lock=no + - Bicycle lights are sold here corresponds with `vending:bicycle_light=yes` + - Unselecting this answer will add vending:bicycle_light=no + - Gloves are sold here corresponds with `vending:gloves=yes` + - Unselecting this answer will add vending:gloves=no + - Bicycle repair kits are sold here corresponds with `vending:bicycle_repair_kit=yes` + - Unselecting this answer will add vending:bicycle_repair_kit=no + - Bicycle pumps are sold here corresponds with `vending:bicycle_pump=yes` + - Unselecting this answer will add vending:bicycle_pump=no + - Bicycle locks are sold here corresponds with `vending:bicycle_lock=yes` + - Unselecting this answer will add vending:bicycle_lock=no This document is autogenerated from [assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json) \ No newline at end of file diff --git a/Docs/Layers/bike_cafe.md b/Docs/Layers/bike_cafe.md index c7e07882c5..7ffbe8d440 100644 --- a/Docs/Layers/bike_cafe.md +++ b/Docs/Layers/bike_cafe.md @@ -7,7 +7,7 @@ -A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ... +A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, … @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -75,7 +77,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -85,10 +89,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this bike cafe?** +The question is What is the name of this bike cafe? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This bike cafe is called {name}` + +This is rendered with This bike cafe is called {name} + + @@ -96,14 +103,14 @@ This is rendered with `This bike cafe is called {name}` -The question is **Does this bike cafe offer a bike pump for use by anyone?** +The question is Does this bike cafe offer a bike pump for use by anyone? - - **This bike cafe offers a bike pump for anyone** corresponds with service:bicycle:pump=yes - - **This bike cafe doesn't offer a bike pump for anyone** corresponds with service:bicycle:pump=no + - This bike cafe offers a bike pump for anyone corresponds with `service:bicycle:pump=yes` + - This bike cafe doesn't offer a bike pump for anyone corresponds with `service:bicycle:pump=no` @@ -112,14 +119,14 @@ The question is **Does this bike cafe offer a bike pump for use by anyone?** -The question is **Are there tools here to repair your own bike?** +The question is Are there tools here to repair your own bike? - - **This bike cafe offers tools for DIY repair** corresponds with service:bicycle:diy=yes - - **This bike cafe doesn't offer tools for DIY repair** corresponds with service:bicycle:diy=no + - This bike cafe offers tools for DIY repair corresponds with `service:bicycle:diy=yes` + - This bike cafe doesn't offer tools for DIY repair corresponds with `service:bicycle:diy=no` @@ -128,14 +135,14 @@ The question is **Are there tools here to repair your own bike?** -The question is **Does this bike cafe repair bikes?** +The question is Does this bike cafe repair bikes? - - **This bike cafe repairs bikes** corresponds with service:bicycle:repair=yes - - **This bike cafe doesn't repair bikes** corresponds with service:bicycle:repair=no + - This bike cafe repairs bikes corresponds with `service:bicycle:repair=yes` + - This bike cafe doesn't repair bikes corresponds with `service:bicycle:repair=no` @@ -144,10 +151,13 @@ The question is **Does this bike cafe repair bikes?** -The question is **What is the website of {name}?** +The question is What is the website of {name}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} + + @@ -155,10 +165,13 @@ This is rendered with `{website}` -The question is **What is the phone number of {name}?** +The question is What is the phone number of {name}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} + + @@ -166,10 +179,13 @@ This is rendered with `{phone}` -The question is **What is the email address of {name}?** +The question is What is the email address of {name}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} + + @@ -177,9 +193,12 @@ This is rendered with `{email}` -The question is **When it this bike café opened?** +The question is When it this bike café opened? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table(opening_hours)}` + +This is rendered with {opening_hours_table(opening_hours)} + + This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cafe/bike_cafe.json) \ No newline at end of file diff --git a/Docs/Layers/bike_cleaning.md b/Docs/Layers/bike_cleaning.md index 01841305f3..ef9df21e1a 100644 --- a/Docs/Layers/bike_cleaning.md +++ b/Docs/Layers/bike_cleaning.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -78,16 +82,21 @@ _This tagrendering has no question and is thus read-only_ -The question is **How much does it cost to use the cleaning service?** +The question is How much does it cost to use the cleaning service? This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) -This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}` + +This is rendered with Using the cleaning service costs {service:bicycle:cleaning:charge} - - **The cleaning service is free to use** corresponds with service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= - - **Free to use** corresponds with service:bicycle:cleaning:fee=no_This option cannot be chosen as answer_ - - **The cleaning service has a fee, but the amount is not known** corresponds with service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge=_This option cannot be chosen as answer_ + + + - The cleaning service is free to use corresponds with `service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge=` + - Free to use corresponds with `service:bicycle:cleaning:fee=no` + - This option cannot be chosen as answer + - The cleaning service has a fee, but the amount is not known corresponds with `service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge=` + - This option cannot be chosen as answer @@ -96,18 +105,22 @@ This is rendered with `Using the cleaning service costs {service:bicycle:cleanin -The question is **How much does it cost to use the cleaning service?** +The question is How much does it cost to use the cleaning service? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `Using the cleaning service costs {charge}` + +This is rendered with Using the cleaning service costs {charge} - - **Free to use cleaning service** corresponds with fee=no&charge= - - **Free to use** corresponds with fee=no_This option cannot be chosen as answer_ - - **The cleaning service has a fee** corresponds with fee=yes -Only visible if `amenity=bike_wash|amenity=bicycle_wash` is shown + - Free to use cleaning service corresponds with `fee=no&charge=` + - Free to use corresponds with `fee=no` + - This option cannot be chosen as answer + - The cleaning service has a fee corresponds with `fee=yes` + + +Only visible if `amenity=bike_wash|amenity=bicycle_wash` is shown This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cleaning/bike_cleaning.json) \ No newline at end of file diff --git a/Docs/Layers/bike_parking.md b/Docs/Layers/bike_parking.md index 9e2969a5d5..2b99d63bed 100644 --- a/Docs/Layers/bike_parking.md +++ b/Docs/Layers/bike_parking.md @@ -27,6 +27,7 @@ A layer showing where you can park your bike - [cyclofix](https://mapcomplete.osm.be/cyclofix) - [personal](https://mapcomplete.osm.be/personal) + - [transit](https://mapcomplete.osm.be/transit) @@ -52,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -73,7 +76,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -83,21 +88,24 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the type of this bicycle parking?** +The question is What is the type of this bicycle parking? This rendering asks information about the property [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) -This is rendered with `This is a bicycle parking of the type: {bicycle_parking}` + +This is rendered with This is a bicycle parking of the type: {bicycle_parking} - - **Staple racks** corresponds with bicycle_parking=stands - - **Wheel rack/loops** corresponds with bicycle_parking=wall_loops - - **Handlebar holder** corresponds with bicycle_parking=handlebar_holder - - **Rack** corresponds with bicycle_parking=rack - - **Two-tiered** corresponds with bicycle_parking=two_tier - - **Shed** corresponds with bicycle_parking=shed - - **Bollard** corresponds with bicycle_parking=bollard - - **An area on the floor which is marked for bicycle parking** corresponds with bicycle_parking=floor + + + - Staple racks corresponds with `bicycle_parking=stands` + - Wheel rack/loops corresponds with `bicycle_parking=wall_loops` + - Handlebar holder corresponds with `bicycle_parking=handlebar_holder` + - Rack corresponds with `bicycle_parking=rack` + - Two-tiered corresponds with `bicycle_parking=two_tier` + - Shed corresponds with `bicycle_parking=shed` + - Bollard corresponds with `bicycle_parking=bollard` + - An area on the floor which is marked for bicycle parking corresponds with `bicycle_parking=floor` @@ -106,16 +114,17 @@ This is rendered with `This is a bicycle parking of the type: {bicycle_parking}` -The question is **What is the relative location of this bicycle parking?** +The question is What is the relative location of this bicycle parking? - - **Underground parking** corresponds with location=underground - - **Surface level parking** corresponds with location=surface - - **Rooftop parking** corresponds with location=rooftop - - **Surface level parking** corresponds with _This option cannot be chosen as answer_ + - Underground parking corresponds with `location=underground` + - Surface level parking corresponds with `location=surface` + - Rooftop parking corresponds with `location=rooftop` + - Surface level parking corresponds with `` + - This option cannot be chosen as answer @@ -124,14 +133,14 @@ The question is **What is the relative location of this bicycle parking?** -The question is **Is this parking covered? Also select "covered" for indoor parkings.** +The question is Is this parking covered? Also select "covered" for indoor parkings. - - **This parking is covered (it has a roof)** corresponds with covered=yes - - **This parking is not covered** corresponds with covered=no + - This parking is covered (it has a roof) corresponds with `covered=yes` + - This parking is not covered corresponds with `covered=no` @@ -140,10 +149,13 @@ The question is **Is this parking covered? Also select "covered" for indoor park -The question is **How many bicycles fit in this bicycle parking (including possible cargo bicycles)?** +The question is How many bicycles fit in this bicycle parking (including possible cargo bicycles)? This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) -This is rendered with `Place for {capacity} bikes` + +This is rendered with Place for {capacity} bikes + + @@ -151,16 +163,19 @@ This is rendered with `Place for {capacity} bikes` -The question is **Who can use this bicycle parking?** +The question is Who can use this bicycle parking? This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) -This is rendered with `{access}` + +This is rendered with {access} - - **Publicly accessible** corresponds with access=yes - - **Access is primarily for visitors to a business** corresponds with access=customers - - **Access is limited to members of a school, company or organisation** corresponds with access=private + + + - Publicly accessible corresponds with `access=yes` + - Access is primarily for visitors to a business corresponds with `access=customers` + - Access is limited to members of a school, company or organisation corresponds with `access=private` @@ -169,15 +184,15 @@ This is rendered with `{access}` -The question is **Does this bicycle parking have spots for cargo bikes?** +The question is Does this bicycle parking have spots for cargo bikes? - - **This parking has room for cargo bikes** corresponds with cargo_bike=yes - - **This parking has designated (official) spots for cargo bikes.** corresponds with cargo_bike=designated - - **You're not allowed to park cargo bikes** corresponds with cargo_bike=no + - This parking has room for cargo bikes corresponds with `cargo_bike=yes` + - This parking has designated (official) spots for cargo bikes. corresponds with `cargo_bike=designated` + - You're not allowed to park cargo bikes corresponds with `cargo_bike=no` @@ -186,11 +201,14 @@ The question is **Does this bicycle parking have spots for cargo bikes?** -The question is **How many cargo bicycles fit in this bicycle parking?** +The question is How many cargo bicycles fit in this bicycle parking? This rendering asks information about the property [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) -This is rendered with `This parking fits {capacity:cargo_bike} cargo bikes` -Only visible if `cargo_bike~^designated|yes$` is shown +This is rendered with This parking fits {capacity:cargo_bike} cargo bikes + + + +Only visible if `cargo_bike~^designated|yes$` is shown This document is autogenerated from [assets/layers/bike_parking/bike_parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_parking/bike_parking.json) \ No newline at end of file diff --git a/Docs/Layers/bike_repair_station.md b/Docs/Layers/bike_repair_station.md index 5e0469ae8a..82c1078d67 100644 --- a/Docs/Layers/bike_repair_station.md +++ b/Docs/Layers/bike_repair_station.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -79,7 +81,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -89,15 +93,15 @@ _This tagrendering has no question and is thus read-only_ -The question is **Which services are available at this location?** +The question is Which services are available at this location? - - **There is only a pump present** corresponds with service:bicycle:tools=no&service:bicycle:pump=yes - - **There are only tools (screwdrivers, pliers...) present** corresponds with service:bicycle:tools=yes&service:bicycle:pump=no - - **There are both tools and a pump present** corresponds with service:bicycle:tools=yes&service:bicycle:pump=yes + - There is only a pump present corresponds with `service:bicycle:tools=no&service:bicycle:pump=yes` + - There are only tools (screwdrivers, pliers, …) present corresponds with `service:bicycle:tools=yes&service:bicycle:pump=no` + - There are both tools and a pump present corresponds with `service:bicycle:tools=yes&service:bicycle:pump=yes` @@ -106,17 +110,17 @@ The question is **Which services are available at this location?** -The question is **Is the bike pump still operational?** +The question is Is the bike pump still operational? - - **The bike pump is broken** corresponds with service:bicycle:pump:operational_status=broken - - **The bike pump is operational** corresponds with service:bicycle:pump:operational_status=operational + - The bike pump is broken corresponds with `service:bicycle:pump:operational_status=broken` + - The bike pump is operational corresponds with `service:bicycle:pump:operational_status=operational` -Only visible if `service:bicycle:pump=yes` is shown +Only visible if `service:bicycle:pump=yes` is shown @@ -124,14 +128,17 @@ Only visible if `service:bicycle:pump=yes` is shown -The question is **When is this bicycle repair point open?** +The question is When is this bicycle repair point open? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table()}` + +This is rendered with {opening_hours_table()} - - **Always open** corresponds with opening_hours=24/7 + + + - Always open corresponds with `opening_hours=24/7` @@ -140,17 +147,19 @@ This is rendered with `{opening_hours_table()}` -The question is **Who is allowed to use this repair station?** +The question is Who is allowed to use this repair station? - - **Publicly accessible** corresponds with access=yes - - **Publicly accessible** corresponds with access=public_This option cannot be chosen as answer_ - - **Only for customers** corresponds with access=customers - - **Not accessible to the general public** corresponds with access=private - - **Not accessible to the general public** corresponds with access=no_This option cannot be chosen as answer_ + - Publicly accessible corresponds with `access=yes` + - Publicly accessible corresponds with `access=public` + - This option cannot be chosen as answer + - Only for customers corresponds with `access=customers` + - Not accessible to the general public corresponds with `access=private` + - Not accessible to the general public corresponds with `access=no` + - This option cannot be chosen as answer @@ -159,10 +168,13 @@ The question is **Who is allowed to use this repair station?** -The question is **Who maintains this cycle pump?** +The question is Who maintains this cycle pump? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Maintained by {operator}` + +This is rendered with Maintained by {operator} + + This tagrendering has labels `operator-info` @@ -172,10 +184,13 @@ This tagrendering has labels `operator-info` -The question is **What is the email address of the maintainer?** +The question is What is the email address of the maintainer? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} + + This tagrendering has labels `operator-info` @@ -185,10 +200,13 @@ This tagrendering has labels `operator-info` -The question is **What is the phone number of the maintainer?** +The question is What is the phone number of the maintainer? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} + + This tagrendering has labels `operator-info` @@ -198,17 +216,17 @@ This tagrendering has labels `operator-info` -The question is **Does this bike repair station have a special tool to repair your bike chain?** +The question is Does this bike repair station have a special tool to repair your bike chain? - - **There is a chain tool** corresponds with service:bicycle:chain_tool=yes - - **There is no chain tool** corresponds with service:bicycle:chain_tool=no + - There is a chain tool corresponds with `service:bicycle:chain_tool=yes` + - There is no chain tool corresponds with `service:bicycle:chain_tool=no` -Only visible if `service:bicycle:tools=yes` is shown +Only visible if `service:bicycle:tools=yes` is shown @@ -216,29 +234,29 @@ Only visible if `service:bicycle:tools=yes` is shown -The question is **Does this bike station have a hook to hang your bike on or a stand to raise it?** +The question is Does this bike station have a hook to hang your bike on or a stand to raise it? - - **There is a hook or stand** corresponds with service:bicycle:stand=yes - - **There is no hook or stand** corresponds with service:bicycle:stand=no + - There is a hook or stand corresponds with `service:bicycle:stand=yes` + - There is no hook or stand corresponds with `service:bicycle:stand=no` -Only visible if `service:bicycle:tools=yes` is shown +Only visible if `service:bicycle:tools=yes` is shown -### Email maintainer +### send_email_about_broken_pump -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `email~^..*$&service:bicycle:pump:operational_status=broken` is shown +Only visible if `email~^..*$&service:bicycle:pump:operational_status=broken` is shown @@ -246,16 +264,19 @@ Only visible if `email~^..*$&service:bicycle:pump:operational_status=broken` is -The question is **What valves are supported?** +The question is What valves are supported? This rendering asks information about the property [valves](https://wiki.openstreetmap.org/wiki/Key:valves) -This is rendered with `This pump supports the following valves: {valves}` + +This is rendered with This pump supports the following valves: {valves} - - **Sclaverand (also known as Presta)** corresponds with valves=sclaverand - - **Dunlop** corresponds with valves=dunlop - - **Schrader (cars)** corresponds with valves=schrader + + + - Sclaverand/Presta (narrow-width bike tires) corresponds with `valves=sclaverand` + - Dunlop corresponds with `valves=dunlop` + - Schrader (cars and mountainbikes) corresponds with `valves=schrader` @@ -264,17 +285,17 @@ This is rendered with `This pump supports the following valves: {valves}` -The question is **Is this an electric bike pump?** +The question is Is this an electric bike pump? - - **Manual pump** corresponds with manual=yes - - **Electrical pump** corresponds with manual=no + - Manual pump corresponds with `manual=yes` + - Electrical pump corresponds with `manual=no` -Only visible if `service:bicycle:pump=yes` is shown +Only visible if `service:bicycle:pump=yes` is shown @@ -282,18 +303,18 @@ Only visible if `service:bicycle:pump=yes` is shown -The question is **Does the pump have a pressure indicator or manometer?** +The question is Does the pump have a pressure indicator or manometer? - - **There is a manometer** corresponds with manometer=yes - - **There is no manometer** corresponds with manometer=no - - **There is manometer but it is broken** corresponds with manometer=broken + - There is a manometer corresponds with `manometer=yes` + - There is no manometer corresponds with `manometer=no` + - There is manometer but it is broken corresponds with `manometer=broken` -Only visible if `service:bicycle:pump=yes` is shown +Only visible if `service:bicycle:pump=yes` is shown @@ -301,18 +322,23 @@ Only visible if `service:bicycle:pump=yes` is shown -The question is **On what level is this feature located?** +The question is On what level is this feature located? This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) -This is rendered with `Located on the {level}th floor` + +This is rendered with Located on the {level}th floor - - **Located underground** corresponds with location=underground_This option cannot be chosen as answer_ - - **Located on the ground floor** corresponds with level=0 - - **Located on the ground floor** corresponds with _This option cannot be chosen as answer_ - - **Located on the first floor** corresponds with level=1 - - **Located on the first basement level** corresponds with level=-1 + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_repair_station/bike_repair_station.json) \ No newline at end of file diff --git a/Docs/Layers/bike_shop.md b/Docs/Layers/bike_shop.md index a4b7cc90c7..8b8272b1ec 100644 --- a/Docs/Layers/bike_shop.md +++ b/Docs/Layers/bike_shop.md @@ -40,10 +40,10 @@ Elements must have the all of following tags to be shown on this layer: - - shop=bicycle|amenity=bicycle_rental|shop=sports&service:bicycle:retail!~^no$&service:bicycle:repair!~^no$&sport=bicycle|sport=cycling| + - shop=bicycle|amenity=bicycle_rental|shop=sports&service:bicycle:retail!=no&service:bicycle:repair!=no&sport=bicycle|sport=cycling| -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B!%22network%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22bicycle%22%5D%5B%22service%3Abicycle%3Aretail%22!~%22%5Eno%24%22%5D%5B%22service%3Abicycle%3Arepair%22!~%22%5Eno%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22cycling%22%5D%5B%22service%3Abicycle%3Aretail%22!~%22%5Eno%24%22%5D%5B%22service%3Abicycle%3Arepair%22!~%22%5Eno%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B!%22sport%22%5D%5B%22service%3Abicycle%3Aretail%22!~%22%5Eno%24%22%5D%5B%22service%3Abicycle%3Arepair%22!~%22%5Eno%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B!%22network%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22bicycle%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22cycling%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B!%22sport%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values) [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) [](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) [](https://taginfo.openstreetmap.org/keys/service:bicycle:rental#values) [service:bicycle:rental](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno) -[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) +[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) [](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | @@ -90,7 +92,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -100,16 +104,16 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only - - **Deze business focuses on rental** corresponds with shop=rental + - This business focuses on rental corresponds with `shop=rental` -Only visible if `shop~^..*$&shop!~^bicycle$&shop!~^sports$` is shown +Only visible if `shop~^..*$&shop!~^bicycle$&shop!~^sports$` is shown @@ -117,43 +121,73 @@ Only visible if `shop~^..*$&shop!~^bicycle$&shop!~^sports$` is shown -The question is **What is the name of this bicycle shop?** +The question is What is the name of this bicycle shop? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This bicycle shop is called {name}` + +This is rendered with This bicycle shop is called {name} -### bike_shop-website + + +### website -The question is **What is the website of {name}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} -### bike_shop-phone + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer -The question is **What is the phone number of {name}?** + +### phone + + + +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} -### bike_shop-email + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer -The question is **What is the email address of {name}?** + +### email + + + +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + @@ -161,10 +195,13 @@ This is rendered with `{email}` -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + @@ -172,10 +209,13 @@ This is rendered with `

Opening hours

{opening_hours_table(opening_hours) -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) -This is rendered with `Only accessible to {access}` + +This is rendered with Only accessible to {access} + + @@ -183,14 +223,14 @@ This is rendered with `Only accessible to {access}` -The question is **Does this shop sell bikes?** +The question is Does this shop sell bikes? - - **This shop sells bikes** corresponds with service:bicycle:retail=yes - - **This shop doesn't sell bikes** corresponds with service:bicycle:retail=no + - This shop sells bikes corresponds with `service:bicycle:retail=yes` + - This shop doesn't sell bikes corresponds with `service:bicycle:retail=no` @@ -199,16 +239,16 @@ The question is **Does this shop sell bikes?** -The question is **Does this shop repair bikes?** +The question is Does this shop repair bikes? - - **This shop repairs bikes** corresponds with service:bicycle:repair=yes - - **This shop doesn't repair bikes** corresponds with service:bicycle:repair=no - - **This shop only repairs bikes bought here** corresponds with service:bicycle:repair=only_sold - - **This shop only repairs bikes of a certain brand** corresponds with service:bicycle:repair=brand + - This shop repairs bikes corresponds with `service:bicycle:repair=yes` + - This shop doesn't repair bikes corresponds with `service:bicycle:repair=no` + - This shop only repairs bikes bought here corresponds with `service:bicycle:repair=only_sold` + - This shop only repairs bikes of a certain brand corresponds with `service:bicycle:repair=brand` @@ -217,14 +257,14 @@ The question is **Does this shop repair bikes?** -The question is **Does this shop rent out bikes?** +The question is Does this shop rent out bikes? - - **This shop rents out bikes** corresponds with service:bicycle:rental=yes - - **This shop doesn't rent out bikes** corresponds with service:bicycle:rental=no + - This shop rents out bikes corresponds with `service:bicycle:rental=yes` + - This shop doesn't rent out bikes corresponds with `service:bicycle:rental=no` @@ -233,23 +273,27 @@ The question is **Does this shop rent out bikes?** -The question is **What kind of bicycles and accessories are rented here?** +The question is What kind of bicycles and accessories are rented here? This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental) -This is rendered with `{rental} is rented here` + +This is rendered with {rental} is rented here - - **Normal city bikes can be rented here** corresponds with rental=city_bike - - **Electrical bikes can be rented here** corresponds with rental=ebike - - **BMX bikes can be rented here** corresponds with rental=bmx - - **Mountainbikes can be rented here** corresponds with rental=mtb - - **Bikes for childs can be rented here** corresponds with rental=kid_bike - - **Tandem bicycles can be rented here** corresponds with rental=tandem - - **Race bicycles can be rented here** corresponds with rental=racebike -Only visible if `amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown + - Normal city bikes can be rented here corresponds with `rental=city_bike` + - Electrical bikes can be rented here corresponds with `rental=ebike` + - BMX bikes can be rented here corresponds with `rental=bmx` + - Mountainbikes can be rented here corresponds with `rental=mtb` + - Bikes for children can be rented here corresponds with `rental=kid_bike` + - Tandem bicycles can be rented here corresponds with `rental=tandem` + - Race bicycles can be rented here corresponds with `rental=racebike` + - Bike helmets can be rented here corresponds with `rental=bike_helmet` + + +Only visible if `amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -259,12 +303,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much city bikes can be rented here? ** +The question is How much city bikes can be rented here? This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) -This is rendered with `{capacity:city_bike} city bikes can be rented here` -Only visible if `rental~^.*city_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:city_bike} city bikes can be rented here + + + +Only visible if `rental~^.*city_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -274,12 +321,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much electrical bikes can be rented here? ** +The question is How much electrical bikes can be rented here? This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) -This is rendered with `{capacity:ebike} electrical bikes can be rented here` -Only visible if `rental~^.*ebike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:ebike} electrical bikes can be rented here + + + +Only visible if `rental~^.*ebike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -289,12 +339,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much bikes for children can be rented here? ** +The question is How much bikes for children can be rented here? This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) -This is rendered with `{capacity:kid_bike} bikes for children can be rented here` -Only visible if `rental~^.*kid_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:kid_bike} bikes for children can be rented here + + + +Only visible if `rental~^.*kid_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -304,12 +357,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much BMX bikes can be rented here? ** +The question is How much BMX bikes can be rented here? This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) -This is rendered with `{capacity:bmx} BMX bikes can be rented here` -Only visible if `rental~^.*bmx.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:bmx} BMX bikes can be rented here + + + +Only visible if `rental~^.*bmx.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -319,12 +375,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much mountainbike can be rented here? ** +The question is How much mountainbike can be rented here? This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) -This is rendered with `{capacity:mtb} mountainbike can be rented here` -Only visible if `rental~^.*mtb.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:mtb} mountainbike can be rented here + + + +Only visible if `rental~^.*mtb.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -334,12 +393,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much bicycle panniers can be rented here? ** +The question is How much bicycle panniers can be rented here? This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) -This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here` -Only visible if `rental~^.*bicycle_pannier.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:bicycle_pannier} bicycle panniers can be rented here + + + +Only visible if `rental~^.*bicycle_pannier.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -349,12 +411,15 @@ This tagrendering has labels `bicycle_rental` -The question is **How much tandem can be rented here? ** +The question is How much tandem can be rented here? This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) -This is rendered with `{capacity:tandem_bicycle} tandem can be rented here` -Only visible if `rental~^.*tandem_bicycle.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown +This is rendered with {capacity:tandem_bicycle} tandem can be rented here + + + +Only visible if `rental~^.*tandem_bicycle.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown This tagrendering has labels `bicycle_rental` @@ -364,15 +429,15 @@ This tagrendering has labels `bicycle_rental` -The question is **Does this shop sell second-hand bikes?** +The question is Does this shop sell second-hand bikes? - - **This shop sells second-hand bikes** corresponds with service:bicycle:second_hand=yes - - **This shop doesn't sell second-hand bikes** corresponds with service:bicycle:second_hand=no - - **This shop only sells second-hand bikes** corresponds with service:bicycle:second_hand=only + - This shop sells second-hand bikes corresponds with `service:bicycle:second_hand=yes` + - This shop doesn't sell second-hand bikes corresponds with `service:bicycle:second_hand=no` + - This shop only sells second-hand bikes corresponds with `service:bicycle:second_hand=only` @@ -381,15 +446,15 @@ The question is **Does this shop sell second-hand bikes?** -The question is **Does this shop offer a bike pump for use by anyone?** +The question is Does this shop offer a bike pump for use by anyone? - - **This shop offers a bike pump for anyone** corresponds with service:bicycle:pump=yes - - **This shop doesn't offer a bike pump for anyone** corresponds with service:bicycle:pump=no - - **There is bicycle pump, it is shown as a separate point ** corresponds with service:bicycle:pump=separate + - This shop offers a bike pump for anyone corresponds with `service:bicycle:pump=yes` + - This shop doesn't offer a bike pump for anyone corresponds with `service:bicycle:pump=no` + - There is bicycle pump, it is shown as a separate point corresponds with `service:bicycle:pump=separate` @@ -398,15 +463,15 @@ The question is **Does this shop offer a bike pump for use by anyone?** -The question is **Are there tools here to repair your own bike?** +The question is Are there tools here to repair your own bike? - - **This shop offers tools for DIY repair** corresponds with service:bicycle:diy=yes - - **This shop doesn't offer tools for DIY repair** corresponds with service:bicycle:diy=no - - **Tools for DIY repair are only available if you bought/hire the bike in the shop** corresponds with service:bicycle:diy=only_sold + - This shop offers tools for DIY repair corresponds with `service:bicycle:diy=yes` + - This shop doesn't offer tools for DIY repair corresponds with `service:bicycle:diy=no` + - Tools for DIY repair are only available if you bought/hire the bike in the shop corresponds with `service:bicycle:diy=only_sold` @@ -415,15 +480,15 @@ The question is **Are there tools here to repair your own bike?** -The question is **Are bicycles washed here?** +The question is Are bicycles washed here? - - **This shop cleans bicycles** corresponds with service:bicycle:cleaning=yes - - **This shop has an installation where one can clean bicycles themselves** corresponds with service:bicycle:cleaning=diy - - **This shop doesn't offer bicycle cleaning** corresponds with service:bicycle:cleaning=no + - This shop cleans bicycles corresponds with `service:bicycle:cleaning=yes` + - This shop has an installation where one can clean bicycles themselves corresponds with `service:bicycle:cleaning=diy` + - This shop doesn't offer bicycle cleaning corresponds with `service:bicycle:cleaning=no` @@ -432,19 +497,24 @@ The question is **Are bicycles washed here?** -The question is **How much does it cost to use the cleaning service?** +The question is How much does it cost to use the cleaning service? This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) -This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}` + +This is rendered with Using the cleaning service costs {service:bicycle:cleaning:charge} - - **The cleaning service is free to use** corresponds with service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= - - **Free to use** corresponds with service:bicycle:cleaning:fee=no_This option cannot be chosen as answer_ - - **The cleaning service has a fee, but the amount is not known** corresponds with service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge=_This option cannot be chosen as answer_ -Only visible if `amenity!~^bike_wash$&amenity!~^bicycle_wash$&service:bicycle:cleaning=yes|service:bicycle:cleaning=diy|amenity=bicycle_wash|amenity=bike_wash` is shown + - The cleaning service is free to use corresponds with `service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge=` + - Free to use corresponds with `service:bicycle:cleaning:fee=no` + - This option cannot be chosen as answer + - The cleaning service has a fee, but the amount is not known corresponds with `service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge=` + - This option cannot be chosen as answer + + +Only visible if `amenity!=bike_wash&amenity!=bicycle_wash&service:bicycle:cleaning=yes|service:bicycle:cleaning=diy|amenity=bicycle_wash|amenity=bike_wash` is shown @@ -452,9 +522,12 @@ Only visible if `amenity!~^bike_wash$&amenity!~^bicycle_wash$&service:bicycle:cl -The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** +The question is Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `{description}` + +This is rendered with {description} + + This document is autogenerated from [assets/layers/bike_shop/bike_shop.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_shop/bike_shop.json) \ No newline at end of file diff --git a/Docs/Layers/bike_themed_object.md b/Docs/Layers/bike_themed_object.md index 2884b5fc07..8abfee10dd 100644 --- a/Docs/Layers/bike_themed_object.md +++ b/Docs/Layers/bike_themed_object.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -71,7 +73,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -81,10 +85,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** +The question is Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `{description}` + +This is rendered with {description} + + @@ -92,14 +99,18 @@ This is rendered with `{description}` -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -108,14 +119,18 @@ This is rendered with `{website}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -124,14 +139,18 @@ This is rendered with `{email}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -140,9 +159,12 @@ This is rendered with `{phone}` -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + This document is autogenerated from [assets/layers/bike_themed_object/bike_themed_object.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_themed_object/bike_themed_object.json) \ No newline at end of file diff --git a/Docs/Layers/binocular.md b/Docs/Layers/binocular.md index 743d20f71d..0f0ea605b1 100644 --- a/Docs/Layers/binocular.md +++ b/Docs/Layers/binocular.md @@ -7,7 +7,7 @@ -Binoculas +Binoculars @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -78,14 +82,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **How much does one have to pay to use these binoculars?** +The question is How much does one have to pay to use these binoculars? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `Using these binoculars costs {charge}` + +This is rendered with Using these binoculars costs {charge} - - **Free to use** corresponds with fee=no + + + - Free to use corresponds with `fee=no` @@ -94,9 +101,12 @@ This is rendered with `Using these binoculars costs {charge}` -The question is **When looking through this binocular, in what direction does one look?** +The question is When looking through this binocular, in what direction does one look? This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction) -This is rendered with `Looks towards {direction}°` + +This is rendered with Looks towards {direction}° + + This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json) \ No newline at end of file diff --git a/Docs/Layers/birdhide.md b/Docs/Layers/birdhide.md index 2152b24486..5be27ad09e 100644 --- a/Docs/Layers/birdhide.md +++ b/Docs/Layers/birdhide.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -69,7 +71,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -79,16 +83,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is this a bird blind or a bird watching shelter?** +The question is Is this a bird blind or a bird watching shelter? - - **Bird blind** corresponds with shelter=no - - **Bird hide** corresponds with amenity=shelter&building=yes&shelter=yes - - **Bird tower hide** corresponds with building=tower&bird_hide=tower - - **Bird hide shelter** corresponds with amenity=shelter|building=yes|shelter=yes_This option cannot be chosen as answer_ + - Bird blind corresponds with `shelter=no` + - Bird hide corresponds with `amenity=shelter&building=yes&shelter=yes` + - Bird tower hide corresponds with `building=tower&bird_hide=tower` + - Bird hide shelter corresponds with `amenity=shelter|building=yes|shelter=yes` + - This option cannot be chosen as answer @@ -97,16 +102,16 @@ The question is **Is this a bird blind or a bird watching shelter?** -The question is **Is this bird hide accessible to wheelchair users?** +The question is Is this bird hide accessible to wheelchair users? - - **There are special provisions for wheelchair users** corresponds with wheelchair=designated - - **A wheelchair can easily use this birdhide** corresponds with wheelchair=yes - - **This birdhide is reachable by wheelchair, but it is not easy** corresponds with wheelchair=limited - - **Not accessible to wheelchair users** corresponds with wheelchair=no + - There are special provisions for wheelchair users corresponds with `wheelchair=designated` + - A wheelchair can easily use this birdhide corresponds with `wheelchair=yes` + - This birdhide is reachable by wheelchair, but it is not easy corresponds with `wheelchair=limited` + - Not accessible to wheelchair users corresponds with `wheelchair=no` @@ -115,15 +120,18 @@ The question is **Is this bird hide accessible to wheelchair users?** -The question is **Who operates this birdhide?** +The question is Who operates this birdhide? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Operated by {operator}` + +This is rendered with Operated by {operator} - - **Operated by Natuurpunt** corresponds with operator=Natuurpunt - - **Operated by the Agency for Nature and Forests** corresponds with operator=Agentschap Natuur en Bos + + + - Operated by Natuurpunt corresponds with `operator=Natuurpunt` + - Operated by the Agency for Nature and Forests corresponds with `operator=Agentschap Natuur en Bos` This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json) \ No newline at end of file diff --git a/Docs/Layers/cafe_pub.md b/Docs/Layers/cafe_pub.md index 7fb6e3a368..2beec78c10 100644 --- a/Docs/Layers/cafe_pub.md +++ b/Docs/Layers/cafe_pub.md @@ -26,6 +26,7 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a - [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) @@ -40,10 +41,10 @@ Elements must have the all of following tags to be shown on this layer: - - amenity=bar|amenity=pub|amenity=cafe|amenity=biergarten + - amenity=bar|amenity=pub|amenity=cafe|amenity=biergarten|amenity=nightclub -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22biergarten%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22biergarten%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22nightclub%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -52,19 +53,23 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) [](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten) +[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten) [nightclub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dnightclub) [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | [](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | [](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | [](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) [](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) [](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) @@ -75,8 +80,35 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` @@ -85,10 +117,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this pub?** +The question is What is the name of this pub? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This pub is named {name}` + +This is rendered with This pub is named {name} + + @@ -96,17 +131,18 @@ This is rendered with `This pub is named {name}` -The question is **What kind of cafe is this** +The question is What kind of cafe is this? - - **A pub, mostly for drinking beers in a warm, relaxed interior** corresponds with amenity=pub - - **A more modern and commercial bar, possibly with a music and light installation** corresponds with amenity=bar - - **A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment** corresponds with amenity=cafe - - **A restuarant where one can get a proper meal** corresponds with amenity=restaurant - - **An open space where beer is served, typically seen in Germany** corresponds with amenity=biergarten + - A pub, mostly for drinking beers in a warm, relaxed interior corresponds with `amenity=pub` + - A more modern and commercial bar, possibly with a music and light installation corresponds with `amenity=bar` + - A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment corresponds with `amenity=cafe` + - A restuarant where one can get a proper meal corresponds with `amenity=restaurant` + - An open space where beer is served, typically seen in Germany corresponds with `amenity=biergarten` + - This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks corresponds with `amenity=nightclub` @@ -115,10 +151,13 @@ The question is **What kind of cafe is this** -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + @@ -126,14 +165,18 @@ This is rendered with `

Opening hours

{opening_hours_table(opening_hours) -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -142,14 +185,18 @@ This is rendered with `{website}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -158,14 +205,18 @@ This is rendered with `{email}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -174,14 +225,16 @@ This is rendered with `{phone}` -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no @@ -190,16 +243,33 @@ The question is **Which methods of payment are accepted here?** -The question is **Is this place accessible with a wheelchair?** +The question is Is this place accessible with a wheelchair? - - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated - - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes - - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited - - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` + + + + +### smoking + + + +The question is Is smoking allowed at {title()}? + + + + + + - Smoking is allowed corresponds with `smoking=yes` + - Smoking is not allowed corresponds with `smoking=no` + - Smoking is allowed outside. corresponds with `smoking=outside` @@ -208,16 +278,16 @@ The question is **Is this place accessible with a wheelchair?** -The question is **Does this amenity have electrical outlets, available to customers when they are inside?** +The question is Does this amenity have electrical outlets, available to customers when they are inside? - - **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=yes - - **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=limited - - **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with service:electricity=ask - - **There are a no domestic sockets available to customers seated indoors** corresponds with service:electricity=no + - There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=yes` + - There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=limited` + - There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `service:electricity=ask` + - There are a no domestic sockets available to customers seated indoors corresponds with `service:electricity=no` @@ -226,16 +296,28 @@ The question is **Does this amenity have electrical outlets, available to custom -The question is **Are dogs allowed in this business?** +The question is Are dogs allowed in this business? - - **Dogs are allowed** corresponds with dog=yes - - **Dogs are not allowed** corresponds with dog=no - - **Dogs are allowed, but they have to be leashed** corresponds with dog=leashed - - **Dogs are allowed and can run around freely** corresponds with dog=unleashed + - Dogs are allowed corresponds with `dog=yes` + - Dogs are not allowed corresponds with `dog=no` + - Dogs are allowed, but they have to be leashed corresponds with `dog=leashed` + - Dogs are allowed and can run around freely corresponds with `dog=unleashed` + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + This document is autogenerated from [assets/layers/cafe_pub/cafe_pub.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cafe_pub/cafe_pub.json) \ No newline at end of file diff --git a/Docs/Layers/caravansites.md b/Docs/Layers/caravansites.md index 45292e4224..7b3a5701dc 100644 --- a/Docs/Layers/caravansites.md +++ b/Docs/Layers/caravansites.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -79,7 +81,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -89,10 +93,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this place called?** +The question is What is this place called? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This place is called {name}` + +This is rendered with This place is called {name} + + @@ -100,14 +107,14 @@ This is rendered with `This place is called {name}` -The question is **Does this place charge a fee?** +The question is Does this place charge a fee? - - **You need to pay for use** corresponds with fee=yes - - **Can be used for free** corresponds with fee=no + - You need to pay for use corresponds with `fee=yes` + - Can be used for free corresponds with `fee=no` @@ -116,12 +123,15 @@ The question is **Does this place charge a fee?** -The question is **How much does this place charge?** +The question is How much does this place charge? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `This place charges {charge}` -Only visible if `fee=yes` is shown +This is rendered with This place charges {charge} + + + +Only visible if `fee=yes` is shown @@ -129,14 +139,14 @@ Only visible if `fee=yes` is shown -The question is **Does this place have a sanitary dump station?** +The question is Does this place have a sanitary dump station? - - **This place has a sanitary dump station** corresponds with sanitary_dump_station=yes - - **This place does not have a sanitary dump station** corresponds with sanitary_dump_station=no + - This place has a sanitary dump station corresponds with `sanitary_dump_station=yes` + - This place does not have a sanitary dump station corresponds with `sanitary_dump_station=no` @@ -145,10 +155,13 @@ The question is **Does this place have a sanitary dump station?** -The question is **How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)** +The question is How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles) This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) -This is rendered with `{capacity} campers can use this place at the same time` + +This is rendered with {capacity} campers can use this place at the same time + + @@ -156,15 +169,16 @@ This is rendered with `{capacity} campers can use this place at the same time` -The question is **Does this place provide internet access?** +The question is Does this place provide internet access? - - **There is internet access** corresponds with internet_access=yes - - **There is internet access** corresponds with internet_access=wifi|internet_access=wlan_This option cannot be chosen as answer_ - - **There is no internet access** corresponds with internet_access=no + - There is internet access corresponds with `internet_access=yes` + - There is internet access corresponds with `internet_access=wifi|internet_access=wlan` + - This option cannot be chosen as answer + - There is no internet access corresponds with `internet_access=no` @@ -173,17 +187,17 @@ The question is **Does this place provide internet access?** -The question is **Do you have to pay for the internet access?** +The question is Do you have to pay for the internet access? - - **You need to pay extra for internet access** corresponds with internet_access:fee=yes - - **You do not need to pay extra for internet access** corresponds with internet_access:fee=no + - You need to pay extra for internet access corresponds with `internet_access:fee=yes` + - You do not need to pay extra for internet access corresponds with `internet_access:fee=no` -Only visible if `internet_access=yes` is shown +Only visible if `internet_access=yes` is shown @@ -191,14 +205,14 @@ Only visible if `internet_access=yes` is shown -The question is **Does this place have toilets?** +The question is Does this place have toilets? - - **This place has toilets** corresponds with toilets=yes - - **This place does not have toilets** corresponds with toilets=no + - This place has toilets corresponds with `toilets=yes` + - This place does not have toilets corresponds with `toilets=no` @@ -207,10 +221,13 @@ The question is **Does this place have toilets?** -The question is **Does this place have a website?** +The question is Does this place have a website? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `Official website: {website}` + +This is rendered with Official website: {website} + + @@ -218,15 +235,15 @@ This is rendered with `Official website: {website}` -The question is **Does this place offer spots for long term rental?** +The question is Does this place offer spots for long term rental? - - **Yes, there are some spots for long term rental, but you can also stay on a daily basis** corresponds with permanent_camping=yes - - **No, there are no permanent guests here** corresponds with permanent_camping=no - - **It is only possible to stay here if you have a long term contract(this place will disappear from this map if you choose this)** corresponds with permanent_camping=only + - There are some spots for long term rental, but you can also stay on a daily basis corresponds with `permanent_camping=yes` + - There are no permanent guests here corresponds with `permanent_camping=no` + - It is only possible to stay here if you have a long term contract(this place will disappear from this map if you choose this) corresponds with `permanent_camping=only` @@ -235,10 +252,13 @@ The question is **Does this place offer spots for long term rental?** -The question is **Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)** +The question is Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews) This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `More details about this place: {description}` + +This is rendered with More details about this place: {description} + + @@ -246,7 +266,7 @@ This is rendered with `More details about this place: {description}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -256,7 +276,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only @@ -266,10 +288,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **Who operates this place?** +The question is Who operates this place? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This place is operated by {operator}` + +This is rendered with This place is operated by {operator} + + @@ -277,14 +302,14 @@ This is rendered with `This place is operated by {operator}` -The question is **Does this place have a power supply?** +The question is Does this place have a power supply? - - **This place has a power supply** corresponds with power_supply=yes - - **This place does not have power supply** corresponds with power_supply=no + - This place has a power supply corresponds with `power_supply=yes` + - This place does not have power supply corresponds with `power_supply=no` @@ -293,7 +318,9 @@ The question is **Does this place have a power supply?** -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -303,7 +330,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/charging_station.md b/Docs/Layers/charging_station.md index a3d2499365..153e335c84 100644 --- a/Docs/Layers/charging_station.md +++ b/Docs/Layers/charging_station.md @@ -26,6 +26,7 @@ A charging station - [charging_stations](https://mapcomplete.osm.be/charging_stations) + - [cyclofix](https://mapcomplete.osm.be/cyclofix) - [personal](https://mapcomplete.osm.be/personal) @@ -52,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -78,46 +81,46 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin#values) [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values) [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V) [](https://taginfo.openstreetmap.org/keys/socket:schuko:current#values) [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:schuko:output#values) [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kw) +[](https://taginfo.openstreetmap.org/keys/socket:schuko:output#values) [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW) [](https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values) [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V) [](https://taginfo.openstreetmap.org/keys/socket:typee:current#values) [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:typee:output#values) [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kw) [22 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kw) +[](https://taginfo.openstreetmap.org/keys/socket:typee:output#values) [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW) [](https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values) [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V) [](https://taginfo.openstreetmap.org/keys/socket:chademo:current#values) [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120 A](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A) -[](https://taginfo.openstreetmap.org/keys/socket:chademo:output#values) [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kw) +[](https://taginfo.openstreetmap.org/keys/socket:chademo:output#values) [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW) [](https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values) [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V) [](https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values) [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values) [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kw) [7 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kw) +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values) [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW) [](https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values) [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V) [](https://taginfo.openstreetmap.org/keys/socket:type1:current#values) [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1:output#values) [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kw) [6.6 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kw) [7 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kw) [7.2 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kw) +[](https://taginfo.openstreetmap.org/keys/socket:type1:output#values) [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW) [6.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW) [7.2 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW) [](https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values) [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V) [1000 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V) [](https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values) [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A) [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values) [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kw) [62.5 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kw) [150 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kw) [350 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kw) +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values) [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW) [62.5 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW) [350 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW) [](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values) [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V) [](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values) [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values) [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kw) [150 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kw) [250 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kw) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values) [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW) [](https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values) [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V) [](https://taginfo.openstreetmap.org/keys/socket:type2:current#values) [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2:output#values) [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kw) [22 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kw) +[](https://taginfo.openstreetmap.org/keys/socket:type2:output#values) [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW) [](https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values) [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V) [](https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values) [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values) [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kw) +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values) [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW) [](https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values) [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V) [](https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values) [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values) [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kw) [22 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kw) +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values) [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW) [](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values) [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V) [](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values) [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values) [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kw) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values) [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW) [](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V) [](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kw) [150 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kw) [250 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kw) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW) [](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V) [](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kw) [22 kw](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kw) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW) [](https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values) [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5 V](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V) [](https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values) [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A) [2 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values) [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5w](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5w) [10w](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10w) +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values) [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W) [10W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W) [](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values) [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:current#values) [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | [](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:output#values) [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | @@ -146,7 +149,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -156,17 +161,22 @@ _This tagrendering has no question and is thus read-only_ -The question is **Which vehicles are allowed to charge here?** +The question is Which vehicles are allowed to charge here? - - **Bicycles can be charged here** corresponds with bicycle=yesUnselecting this answer will add bicycle=no - - **Cars can be charged here** corresponds with motorcar=yesUnselecting this answer will add motorcar=no - - **Scooters can be charged here** corresponds with scooter=yesUnselecting this answer will add scooter=no - - **Heavy good vehicles (such as trucks) can be charged here** corresponds with hgv=yesUnselecting this answer will add hgv=no - - **Buses can be charged here** corresponds with bus=yesUnselecting this answer will add bus=no + - Bicycles can be charged here corresponds with `bicycle=yes` + - Unselecting this answer will add bicycle=no + - Cars can be charged here corresponds with `motorcar=yes` + - Unselecting this answer will add motorcar=no + - Scooters can be charged here corresponds with `scooter=yes` + - Unselecting this answer will add scooter=no + - Heavy good vehicles (such as trucks) can be charged here corresponds with `hgv=yes` + - Unselecting this answer will add hgv=no + - Buses can be charged here corresponds with `bus=yes` + - Unselecting this answer will add bus=no @@ -175,18 +185,22 @@ The question is **Which vehicles are allowed to charge here?** -The question is **Who is allowed to use this charging station?** +The question is Who is allowed to use this charging station? This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) -This is rendered with `Access is {access}` + +This is rendered with Access is {access} - - **Anyone can use this charging station (payment might be needed)** corresponds with access=yes - - **Anyone can use this charging station (payment might be needed)** corresponds with access=permissive|access=public_This option cannot be chosen as answer_ - - **Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests** corresponds with access=customers - - **A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station** corresponds with access=key - - **Not accessible to the general public (e.g. only accessible to the owners, employees, ...)** corresponds with access=private + + + - Anyone can use this charging station (payment might be needed) corresponds with `access=yes` + - Anyone can use this charging station (payment might be needed) corresponds with `access=permissive|access=public` + - This option cannot be chosen as answer + - Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests corresponds with `access=customers` + - A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station corresponds with `access=key` + - Not accessible to the general public (e.g. only accessible to the owners, employees, …) corresponds with `access=private` @@ -195,10 +209,13 @@ This is rendered with `Access is {access}` -The question is **How much vehicles can be charged here at the same time?** +The question is How much vehicles can be charged here at the same time? This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) -This is rendered with `{capacity} vehicles can be charged here at the same time` + +This is rendered with {capacity} vehicles can be charged here at the same time + + @@ -206,44 +223,76 @@ This is rendered with `{capacity} vehicles can be charged here at the same time` -The question is **Which charging connections are available here?** +The question is Which charging connections are available here? - - **Schuko wall plug without ground pin (CEE7/4 type F)** corresponds with socket:schuko=1Unselecting this answer will add - - **Schuko wall plug without ground pin (CEE7/4 type F)** corresponds with socket:schuko~^..*$&socket:schuko!~^1$_This option cannot be chosen as answer_ - - **European wall plug with ground pin (CEE7/4 type E)** corresponds with socket:typee=1Unselecting this answer will add - - **European wall plug with ground pin (CEE7/4 type E)** corresponds with socket:typee~^..*$&socket:typee!~^1$_This option cannot be chosen as answer_ - - **Chademo** corresponds with socket:chademo=1Unselecting this answer will add - - **Chademo** corresponds with socket:chademo~^..*$&socket:chademo!~^1$_This option cannot be chosen as answer_ - - **Type 1 with cable (J1772)** corresponds with socket:type1_cable=1Unselecting this answer will add - - **Type 1 with cable (J1772)** corresponds with socket:type1_cable~^..*$&socket:type1_cable!~^1$_This option cannot be chosen as answer_ - - **Type 1 without cable (J1772)** corresponds with socket:type1=1Unselecting this answer will add - - **Type 1 without cable (J1772)** corresponds with socket:type1~^..*$&socket:type1!~^1$_This option cannot be chosen as answer_ - - **Type 1 CCS (aka Type 1 Combo)** corresponds with socket:type1_combo=1Unselecting this answer will add - - **Type 1 CCS (aka Type 1 Combo)** corresponds with socket:type1_combo~^..*$&socket:type1_combo!~^1$_This option cannot be chosen as answer_ - - **Tesla Supercharger** corresponds with socket:tesla_supercharger=1Unselecting this answer will add - - **Tesla Supercharger** corresponds with socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^1$_This option cannot be chosen as answer_ - - **Type 2 (mennekes)** corresponds with socket:type2=1Unselecting this answer will add - - **Type 2 (mennekes)** corresponds with socket:type2~^..*$&socket:type2!~^1$_This option cannot be chosen as answer_ - - **Type 2 CCS (mennekes)** corresponds with socket:type2_combo=1Unselecting this answer will add - - **Type 2 CCS (mennekes)** corresponds with socket:type2_combo~^..*$&socket:type2_combo!~^1$_This option cannot be chosen as answer_ - - **Type 2 with cable (mennekes)** corresponds with socket:type2_cable=1Unselecting this answer will add - - **Type 2 with cable (mennekes)** corresponds with socket:type2_cable~^..*$&socket:type2_cable!~^1$_This option cannot be chosen as answer_ - - **Tesla Supercharger CCS (a branded type2_css)** corresponds with socket:tesla_supercharger_ccs=1Unselecting this answer will add - - **Tesla Supercharger CCS (a branded type2_css)** corresponds with socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^1$_This option cannot be chosen as answer_ - - **Tesla Supercharger (destination)** corresponds with socket:tesla_destination=1Unselecting this answer will add - - **Tesla Supercharger (destination)** corresponds with socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country=us_This option cannot be chosen as answer_ - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla)** corresponds with socket:tesla_destination=1Unselecting this answer will add - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla)** corresponds with socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country!~^us$_This option cannot be chosen as answer_ - - **USB to charge phones and small electronics** corresponds with socket:USB-A=1Unselecting this answer will add - - **USB to charge phones and small electronics** corresponds with socket:USB-A~^..*$&socket:USB-A!~^1$_This option cannot be chosen as answer_ - - **Bosch Active Connect with 3 pins and cable** corresponds with socket:bosch_3pin=1Unselecting this answer will add - - **Bosch Active Connect with 3 pins and cable** corresponds with socket:bosch_3pin~^..*$&socket:bosch_3pin!~^1$_This option cannot be chosen as answer_ - - **Bosch Active Connect with 5 pins and cable** corresponds with socket:bosch_5pin=1Unselecting this answer will add - - **Bosch Active Connect with 5 pins and cable** corresponds with socket:bosch_5pin~^..*$&socket:bosch_5pin!~^1$_This option cannot be chosen as answer_ + - Schuko wall plug without ground pin (CEE7/4 type F) corresponds with `socket:schuko=1` + - Unselecting this answer will add + - Schuko wall plug without ground pin (CEE7/4 type F) corresponds with `socket:schuko~^..*$&socket:schuko!=1` + - This option cannot be chosen as answer + - European wall plug with ground pin (CEE7/4 type E) corresponds with `socket:typee=1` + - Unselecting this answer will add + - European wall plug with ground pin (CEE7/4 type E) corresponds with `socket:typee~^..*$&socket:typee!=1` + - This option cannot be chosen as answer + - Chademo corresponds with `socket:chademo=1` + - Unselecting this answer will add + - Chademo corresponds with `socket:chademo~^..*$&socket:chademo!=1` + - This option cannot be chosen as answer + - Type 1 with cable (J1772) corresponds with `socket:type1_cable=1` + - Unselecting this answer will add + - Type 1 with cable (J1772) corresponds with `socket:type1_cable~^..*$&socket:type1_cable!=1` + - This option cannot be chosen as answer + - Type 1 without cable (J1772) corresponds with `socket:type1=1` + - Unselecting this answer will add + - Type 1 without cable (J1772) corresponds with `socket:type1~^..*$&socket:type1!=1` + - This option cannot be chosen as answer + - Type 1 CCS (aka Type 1 Combo) corresponds with `socket:type1_combo=1` + - Unselecting this answer will add + - Type 1 CCS (aka Type 1 Combo) corresponds with `socket:type1_combo~^..*$&socket:type1_combo!=1` + - This option cannot be chosen as answer + - Tesla Supercharger corresponds with `socket:tesla_supercharger=1` + - Unselecting this answer will add + - Tesla Supercharger corresponds with `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=1` + - This option cannot be chosen as answer + - Type 2 (mennekes) corresponds with `socket:type2=1` + - Unselecting this answer will add + - Type 2 (mennekes) corresponds with `socket:type2~^..*$&socket:type2!=1` + - This option cannot be chosen as answer + - Type 2 CCS (mennekes) corresponds with `socket:type2_combo=1` + - Unselecting this answer will add + - Type 2 CCS (mennekes) corresponds with `socket:type2_combo~^..*$&socket:type2_combo!=1` + - This option cannot be chosen as answer + - Type 2 with cable (mennekes) corresponds with `socket:type2_cable=1` + - Unselecting this answer will add + - Type 2 with cable (mennekes) corresponds with `socket:type2_cable~^..*$&socket:type2_cable!=1` + - This option cannot be chosen as answer + - Tesla Supercharger CCS (a branded type2_css) corresponds with `socket:tesla_supercharger_ccs=1` + - Unselecting this answer will add + - Tesla Supercharger CCS (a branded type2_css) corresponds with `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=1` + - This option cannot be chosen as answer + - Tesla Supercharger (destination) corresponds with `socket:tesla_destination=1` + - Unselecting this answer will add + - Tesla Supercharger (destination) corresponds with `socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country=us` + - This option cannot be chosen as answer + - Tesla supercharger (destination) (A Type 2 with cable branded as tesla) corresponds with `socket:tesla_destination=1` + - Unselecting this answer will add + - Tesla supercharger (destination) (A Type 2 with cable branded as tesla) corresponds with `socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country!=us` + - This option cannot be chosen as answer + - USB to charge phones and small electronics corresponds with `socket:USB-A=1` + - Unselecting this answer will add + - USB to charge phones and small electronics corresponds with `socket:USB-A~^..*$&socket:USB-A!=1` + - This option cannot be chosen as answer + - Bosch Active Connect with 3 pins and cable corresponds with `socket:bosch_3pin=1` + - Unselecting this answer will add + - Bosch Active Connect with 3 pins and cable corresponds with `socket:bosch_3pin~^..*$&socket:bosch_3pin!=1` + - This option cannot be chosen as answer + - Bosch Active Connect with 5 pins and cable corresponds with `socket:bosch_5pin=1` + - Unselecting this answer will add + - Bosch Active Connect with 5 pins and cable corresponds with `socket:bosch_5pin~^..*$&socket:bosch_5pin!=1` + - This option cannot be chosen as answer @@ -252,12 +301,15 @@ The question is **Which charging connections are available here?** -The question is **How much plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
are available here?** +The question is How much plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
are available here? This rendering asks information about the property [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) -This is rendered with `There are {socket:schuko} plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
available here` -Only visible if `socket:schuko~^..*$&socket:schuko!~^0$` is shown +This is rendered with There are {socket:schuko} plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
available here + + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown @@ -265,12 +317,15 @@ Only visible if `socket:schuko~^..*$&socket:schuko!~^0$` is shown -The question is **How much plugs of type
European wall plug with ground pin (CEE7/4 type E)
are available here?** +The question is How much plugs of type
European wall plug with ground pin (CEE7/4 type E)
are available here? This rendering asks information about the property [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) -This is rendered with `There are {socket:typee} plugs of type
European wall plug with ground pin (CEE7/4 type E)
available here` -Only visible if `socket:typee~^..*$&socket:typee!~^0$` is shown +This is rendered with There are {socket:typee} plugs of type
European wall plug with ground pin (CEE7/4 type E)
available here + + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown @@ -278,12 +333,15 @@ Only visible if `socket:typee~^..*$&socket:typee!~^0$` is shown -The question is **How much plugs of type
Chademo
are available here?** +The question is How much plugs of type
Chademo
are available here? This rendering asks information about the property [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) -This is rendered with `There are {socket:chademo} plugs of type
Chademo
available here` -Only visible if `socket:chademo~^..*$&socket:chademo!~^0$` is shown +This is rendered with There are {socket:chademo} plugs of type
Chademo
available here + + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown @@ -291,12 +349,15 @@ Only visible if `socket:chademo~^..*$&socket:chademo!~^0$` is shown -The question is **How much plugs of type
Type 1 with cable (J1772)
are available here?** +The question is How much plugs of type
Type 1 with cable (J1772)
are available here? This rendering asks information about the property [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) -This is rendered with `There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here` -Only visible if `socket:type1_cable~^..*$&socket:type1_cable!~^0$` is shown +This is rendered with There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here + + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown @@ -304,12 +365,15 @@ Only visible if `socket:type1_cable~^..*$&socket:type1_cable!~^0$` is shown -The question is **How much plugs of type
Type 1 without cable (J1772)
are available here?** +The question is How much plugs of type
Type 1 without cable (J1772)
are available here? This rendering asks information about the property [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) -This is rendered with `There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here` -Only visible if `socket:type1~^..*$&socket:type1!~^0$` is shown +This is rendered with There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here + + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown @@ -317,12 +381,15 @@ Only visible if `socket:type1~^..*$&socket:type1!~^0$` is shown -The question is **How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here?** +The question is How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here? This rendering asks information about the property [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) -This is rendered with `There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here` -Only visible if `socket:type1_combo~^..*$&socket:type1_combo!~^0$` is shown +This is rendered with There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here + + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown @@ -330,12 +397,15 @@ Only visible if `socket:type1_combo~^..*$&socket:type1_combo!~^0$` is shown -The question is **How much plugs of type
Tesla Supercharger
are available here?** +The question is How much plugs of type
Tesla Supercharger
are available here? This rendering asks information about the property [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) -This is rendered with `There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here` -Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^0$` is shown +This is rendered with There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here + + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown @@ -343,12 +413,15 @@ Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^0$` -The question is **How much plugs of type
Type 2 (mennekes)
are available here?** +The question is How much plugs of type
Type 2 (mennekes)
are available here? This rendering asks information about the property [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) -This is rendered with `There are {socket:type2} plugs of type
Type 2 (mennekes)
available here` -Only visible if `socket:type2~^..*$&socket:type2!~^0$` is shown +This is rendered with There are {socket:type2} plugs of type
Type 2 (mennekes)
available here + + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown @@ -356,12 +429,15 @@ Only visible if `socket:type2~^..*$&socket:type2!~^0$` is shown -The question is **How much plugs of type
Type 2 CCS (mennekes)
are available here?** +The question is How much plugs of type
Type 2 CCS (mennekes)
are available here? This rendering asks information about the property [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) -This is rendered with `There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here` -Only visible if `socket:type2_combo~^..*$&socket:type2_combo!~^0$` is shown +This is rendered with There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here + + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown @@ -369,12 +445,15 @@ Only visible if `socket:type2_combo~^..*$&socket:type2_combo!~^0$` is shown -The question is **How much plugs of type
Type 2 with cable (mennekes)
are available here?** +The question is How much plugs of type
Type 2 with cable (mennekes)
are available here? This rendering asks information about the property [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) -This is rendered with `There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here` -Only visible if `socket:type2_cable~^..*$&socket:type2_cable!~^0$` is shown +This is rendered with There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here + + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown @@ -382,12 +461,15 @@ Only visible if `socket:type2_cable~^..*$&socket:type2_cable!~^0$` is shown -The question is **How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here?** +The question is How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here? This rendering asks information about the property [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) -This is rendered with `There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here` -Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^0$` is shown +This is rendered with There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here + + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown @@ -395,12 +477,15 @@ Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_c -The question is **How much plugs of type
Tesla Supercharger (destination)
are available here?** +The question is How much plugs of type
Tesla Supercharger (destination)
are available here? This rendering asks information about the property [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) -This is rendered with `There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here` -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown +This is rendered with There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here + + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown @@ -408,12 +493,15 @@ Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` i -The question is **How much plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
are available here?** +The question is How much plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
are available here? This rendering asks information about the property [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) -This is rendered with `There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
available here` -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown +This is rendered with There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
available here + + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown @@ -421,12 +509,15 @@ Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` i -The question is **How much plugs of type
USB to charge phones and small electronics
are available here?** +The question is How much plugs of type
USB to charge phones and small electronics
are available here? This rendering asks information about the property [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) -This is rendered with `There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here` -Only visible if `socket:USB-A~^..*$&socket:USB-A!~^0$` is shown +This is rendered with There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here + + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown @@ -434,12 +525,15 @@ Only visible if `socket:USB-A~^..*$&socket:USB-A!~^0$` is shown -The question is **How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here?** +The question is How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here? This rendering asks information about the property [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) -This is rendered with `There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here` -Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!~^0$` is shown +This is rendered with There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here + + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown @@ -447,12 +541,15 @@ Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!~^0$` is shown -The question is **How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here?** +The question is How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here? This rendering asks information about the property [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) -This is rendered with `There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here` -Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!~^0$` is shown +This is rendered with There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here + + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown @@ -460,17 +557,20 @@ Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!~^0$` is shown -The question is **What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?** +The question is What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer? This rendering asks information about the property [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) -This is rendered with `
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt` + +This is rendered with
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt - - **Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt** corresponds with socket:schuko:voltage=230 V -Only visible if `socket:schuko~^..*$&socket:schuko!~^0$` is shown + - Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt corresponds with `socket:schuko:voltage=230 V` + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown This tagrendering is part of group `technical` @@ -480,17 +580,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?** +The question is What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer? This rendering asks information about the property [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) -This is rendered with `
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A` + +This is rendered with
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A - - **Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A** corresponds with socket:schuko:current=16 A -Only visible if `socket:schuko~^..*$&socket:schuko!~^0$` is shown + - Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A corresponds with `socket:schuko:current=16 A` + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown This tagrendering is part of group `technical` @@ -500,17 +603,20 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer?** +The question is What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer? This rendering asks information about the property [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) -This is rendered with `
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output}` + +This is rendered with
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output} - - **Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A** corresponds with socket:schuko:output=3.6 kw -Only visible if `socket:schuko~^..*$&socket:schuko!~^0$` is shown + - Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A corresponds with `socket:schuko:output=3.6 kW` + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown This tagrendering is part of group `technical` @@ -520,17 +626,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?** +The question is What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer? This rendering asks information about the property [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) -This is rendered with `
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt` + +This is rendered with
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt - - **European wall plug with ground pin (CEE7/4 type E) outputs 230 volt** corresponds with socket:typee:voltage=230 V -Only visible if `socket:typee~^..*$&socket:typee!~^0$` is shown + - European wall plug with ground pin (CEE7/4 type E) outputs 230 volt corresponds with `socket:typee:voltage=230 V` + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown This tagrendering is part of group `technical` @@ -540,17 +649,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?** +The question is What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer? This rendering asks information about the property [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) -This is rendered with `
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A` + +This is rendered with
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A - - **European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A** corresponds with socket:typee:current=16 A -Only visible if `socket:typee~^..*$&socket:typee!~^0$` is shown + - European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A corresponds with `socket:typee:current=16 A` + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown This tagrendering is part of group `technical` @@ -560,18 +672,21 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer?** +The question is What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer? This rendering asks information about the property [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) -This is rendered with `
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output}` + +This is rendered with
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output} - - **European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A** corresponds with socket:typee:output=3 kw - - **European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A** corresponds with socket:typee:output=22 kw -Only visible if `socket:typee~^..*$&socket:typee!~^0$` is shown + - European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A corresponds with `socket:typee:output=3 kW` + - European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A corresponds with `socket:typee:output=22 kW` + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown This tagrendering is part of group `technical` @@ -581,17 +696,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Chademo
offer?** +The question is What voltage do the plugs with
Chademo
offer? This rendering asks information about the property [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) -This is rendered with `
Chademo
outputs {socket:chademo:voltage} volt` + +This is rendered with
Chademo
outputs {socket:chademo:voltage} volt - - **Chademo outputs 500 volt** corresponds with socket:chademo:voltage=500 V -Only visible if `socket:chademo~^..*$&socket:chademo!~^0$` is shown + - Chademo outputs 500 volt corresponds with `socket:chademo:voltage=500 V` + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown This tagrendering is part of group `technical` @@ -601,17 +719,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Chademo
offer?** +The question is What current do the plugs with
Chademo
offer? This rendering asks information about the property [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) -This is rendered with `
Chademo
outputs at most {socket:chademo:current}A` + +This is rendered with
Chademo
outputs at most {socket:chademo:current}A - - **Chademo outputs at most 120 A** corresponds with socket:chademo:current=120 A -Only visible if `socket:chademo~^..*$&socket:chademo!~^0$` is shown + - Chademo outputs at most 120 A corresponds with `socket:chademo:current=120 A` + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown This tagrendering is part of group `technical` @@ -621,17 +742,20 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Chademo
offer?** +The question is What power output does a single plug of type
Chademo
offer? This rendering asks information about the property [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) -This is rendered with `
Chademo
outputs at most {socket:chademo:output}` + +This is rendered with
Chademo
outputs at most {socket:chademo:output} - - **Chademo outputs at most 50 kw A** corresponds with socket:chademo:output=50 kw -Only visible if `socket:chademo~^..*$&socket:chademo!~^0$` is shown + - Chademo outputs at most 50 kw A corresponds with `socket:chademo:output=50 kW` + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown This tagrendering is part of group `technical` @@ -641,18 +765,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Type 1 with cable (J1772)
offer?** +The question is What voltage do the plugs with
Type 1 with cable (J1772)
offer? This rendering asks information about the property [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) -This is rendered with `
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt` + +This is rendered with
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt - - **Type 1 with cable (J1772) outputs 200 volt** corresponds with socket:type1_cable:voltage=200 V - - **Type 1 with cable (J1772) outputs 240 volt** corresponds with socket:type1_cable:voltage=240 V -Only visible if `socket:type1_cable~^..*$&socket:type1_cable!~^0$` is shown + - Type 1 with cable (J1772) outputs 200 volt corresponds with `socket:type1_cable:voltage=200 V` + - Type 1 with cable (J1772) outputs 240 volt corresponds with `socket:type1_cable:voltage=240 V` + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown This tagrendering is part of group `technical` @@ -662,17 +789,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Type 1 with cable (J1772)
offer?** +The question is What current do the plugs with
Type 1 with cable (J1772)
offer? This rendering asks information about the property [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) -This is rendered with `
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A` + +This is rendered with
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A - - **Type 1 with cable (J1772) outputs at most 32 A** corresponds with socket:type1_cable:current=32 A -Only visible if `socket:type1_cable~^..*$&socket:type1_cable!~^0$` is shown + - Type 1 with cable (J1772) outputs at most 32 A corresponds with `socket:type1_cable:current=32 A` + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown This tagrendering is part of group `technical` @@ -682,18 +812,21 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Type 1 with cable (J1772)
offer?** +The question is What power output does a single plug of type
Type 1 with cable (J1772)
offer? This rendering asks information about the property [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) -This is rendered with `
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output}` + +This is rendered with
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output} - - **Type 1 with cable (J1772) outputs at most 3.7 kw A** corresponds with socket:type1_cable:output=3.7 kw - - **Type 1 with cable (J1772) outputs at most 7 kw A** corresponds with socket:type1_cable:output=7 kw -Only visible if `socket:type1_cable~^..*$&socket:type1_cable!~^0$` is shown + - Type 1 with cable (J1772) outputs at most 3.7 kw A corresponds with `socket:type1_cable:output=3.7 kW` + - Type 1 with cable (J1772) outputs at most 7 kw A corresponds with `socket:type1_cable:output=7 kW` + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown This tagrendering is part of group `technical` @@ -703,18 +836,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Type 1 without cable (J1772)
offer?** +The question is What voltage do the plugs with
Type 1 without cable (J1772)
offer? This rendering asks information about the property [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) -This is rendered with `
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt` + +This is rendered with
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt - - **Type 1 without cable (J1772) outputs 200 volt** corresponds with socket:type1:voltage=200 V - - **Type 1 without cable (J1772) outputs 240 volt** corresponds with socket:type1:voltage=240 V -Only visible if `socket:type1~^..*$&socket:type1!~^0$` is shown + - Type 1 without cable (J1772) outputs 200 volt corresponds with `socket:type1:voltage=200 V` + - Type 1 without cable (J1772) outputs 240 volt corresponds with `socket:type1:voltage=240 V` + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown This tagrendering is part of group `technical` @@ -724,17 +860,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Type 1 without cable (J1772)
offer?** +The question is What current do the plugs with
Type 1 without cable (J1772)
offer? This rendering asks information about the property [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) -This is rendered with `
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A` + +This is rendered with
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A - - **Type 1 without cable (J1772) outputs at most 32 A** corresponds with socket:type1:current=32 A -Only visible if `socket:type1~^..*$&socket:type1!~^0$` is shown + - Type 1 without cable (J1772) outputs at most 32 A corresponds with `socket:type1:current=32 A` + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown This tagrendering is part of group `technical` @@ -744,20 +883,23 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Type 1 without cable (J1772)
offer?** +The question is What power output does a single plug of type
Type 1 without cable (J1772)
offer? This rendering asks information about the property [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) -This is rendered with `
Type 1 without cable (J1772)
outputs at most {socket:type1:output}` + +This is rendered with
Type 1 without cable (J1772)
outputs at most {socket:type1:output} - - **Type 1 without cable (J1772) outputs at most 3.7 kw A** corresponds with socket:type1:output=3.7 kw - - **Type 1 without cable (J1772) outputs at most 6.6 kw A** corresponds with socket:type1:output=6.6 kw - - **Type 1 without cable (J1772) outputs at most 7 kw A** corresponds with socket:type1:output=7 kw - - **Type 1 without cable (J1772) outputs at most 7.2 kw A** corresponds with socket:type1:output=7.2 kw -Only visible if `socket:type1~^..*$&socket:type1!~^0$` is shown + - Type 1 without cable (J1772) outputs at most 3.7 kw A corresponds with `socket:type1:output=3.7 kW` + - Type 1 without cable (J1772) outputs at most 6.6 kw A corresponds with `socket:type1:output=6.6 kW` + - Type 1 without cable (J1772) outputs at most 7 kw A corresponds with `socket:type1:output=7 kW` + - Type 1 without cable (J1772) outputs at most 7.2 kw A corresponds with `socket:type1:output=7.2 kW` + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown This tagrendering is part of group `technical` @@ -767,18 +909,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?** +The question is What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer? This rendering asks information about the property [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) -This is rendered with `
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt` + +This is rendered with
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt - - **Type 1 CCS (aka Type 1 Combo) outputs 400 volt** corresponds with socket:type1_combo:voltage=400 V - - **Type 1 CCS (aka Type 1 Combo) outputs 1000 volt** corresponds with socket:type1_combo:voltage=1000 V -Only visible if `socket:type1_combo~^..*$&socket:type1_combo!~^0$` is shown + - Type 1 CCS (aka Type 1 Combo) outputs 400 volt corresponds with `socket:type1_combo:voltage=400 V` + - Type 1 CCS (aka Type 1 Combo) outputs 1000 volt corresponds with `socket:type1_combo:voltage=1000 V` + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown This tagrendering is part of group `technical` @@ -788,18 +933,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?** +The question is What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer? This rendering asks information about the property [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) -This is rendered with `
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A` + +This is rendered with
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A - - **Type 1 CCS (aka Type 1 Combo) outputs at most 50 A** corresponds with socket:type1_combo:current=50 A - - **Type 1 CCS (aka Type 1 Combo) outputs at most 125 A** corresponds with socket:type1_combo:current=125 A -Only visible if `socket:type1_combo~^..*$&socket:type1_combo!~^0$` is shown + - Type 1 CCS (aka Type 1 Combo) outputs at most 50 A corresponds with `socket:type1_combo:current=50 A` + - Type 1 CCS (aka Type 1 Combo) outputs at most 125 A corresponds with `socket:type1_combo:current=125 A` + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown This tagrendering is part of group `technical` @@ -809,20 +957,23 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer?** +The question is What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer? This rendering asks information about the property [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) -This is rendered with `
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output}` + +This is rendered with
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output} - - **Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A** corresponds with socket:type1_combo:output=50 kw - - **Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A** corresponds with socket:type1_combo:output=62.5 kw - - **Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A** corresponds with socket:type1_combo:output=150 kw - - **Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A** corresponds with socket:type1_combo:output=350 kw -Only visible if `socket:type1_combo~^..*$&socket:type1_combo!~^0$` is shown + - Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A corresponds with `socket:type1_combo:output=50 kW` + - Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A corresponds with `socket:type1_combo:output=62.5 kW` + - Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A corresponds with `socket:type1_combo:output=150 kW` + - Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A corresponds with `socket:type1_combo:output=350 kW` + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown This tagrendering is part of group `technical` @@ -832,17 +983,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Tesla Supercharger
offer?** +The question is What voltage do the plugs with
Tesla Supercharger
offer? This rendering asks information about the property [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) -This is rendered with `
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt` + +This is rendered with
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt - - **Tesla Supercharger outputs 480 volt** corresponds with socket:tesla_supercharger:voltage=480 V -Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^0$` is shown + - Tesla Supercharger outputs 480 volt corresponds with `socket:tesla_supercharger:voltage=480 V` + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown This tagrendering is part of group `technical` @@ -852,18 +1006,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Tesla Supercharger
offer?** +The question is What current do the plugs with
Tesla Supercharger
offer? This rendering asks information about the property [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) -This is rendered with `
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A` + +This is rendered with
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A - - **Tesla Supercharger outputs at most 125 A** corresponds with socket:tesla_supercharger:current=125 A - - **Tesla Supercharger outputs at most 350 A** corresponds with socket:tesla_supercharger:current=350 A -Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^0$` is shown + - Tesla Supercharger outputs at most 125 A corresponds with `socket:tesla_supercharger:current=125 A` + - Tesla Supercharger outputs at most 350 A corresponds with `socket:tesla_supercharger:current=350 A` + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown This tagrendering is part of group `technical` @@ -873,19 +1030,22 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Tesla Supercharger
offer?** +The question is What power output does a single plug of type
Tesla Supercharger
offer? This rendering asks information about the property [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) -This is rendered with `
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output}` + +This is rendered with
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output} - - **Tesla Supercharger outputs at most 120 kw A** corresponds with socket:tesla_supercharger:output=120 kw - - **Tesla Supercharger outputs at most 150 kw A** corresponds with socket:tesla_supercharger:output=150 kw - - **Tesla Supercharger outputs at most 250 kw A** corresponds with socket:tesla_supercharger:output=250 kw -Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^0$` is shown + - Tesla Supercharger outputs at most 120 kw A corresponds with `socket:tesla_supercharger:output=120 kW` + - Tesla Supercharger outputs at most 150 kw A corresponds with `socket:tesla_supercharger:output=150 kW` + - Tesla Supercharger outputs at most 250 kw A corresponds with `socket:tesla_supercharger:output=250 kW` + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown This tagrendering is part of group `technical` @@ -895,18 +1055,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Type 2 (mennekes)
offer?** +The question is What voltage do the plugs with
Type 2 (mennekes)
offer? This rendering asks information about the property [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) -This is rendered with `
Type 2 (mennekes)
outputs {socket:type2:voltage} volt` + +This is rendered with
Type 2 (mennekes)
outputs {socket:type2:voltage} volt - - **Type 2 (mennekes) outputs 230 volt** corresponds with socket:type2:voltage=230 V - - **Type 2 (mennekes) outputs 400 volt** corresponds with socket:type2:voltage=400 V -Only visible if `socket:type2~^..*$&socket:type2!~^0$` is shown + - Type 2 (mennekes) outputs 230 volt corresponds with `socket:type2:voltage=230 V` + - Type 2 (mennekes) outputs 400 volt corresponds with `socket:type2:voltage=400 V` + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown This tagrendering is part of group `technical` @@ -916,18 +1079,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Type 2 (mennekes)
offer?** +The question is What current do the plugs with
Type 2 (mennekes)
offer? This rendering asks information about the property [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) -This is rendered with `
Type 2 (mennekes)
outputs at most {socket:type2:current}A` + +This is rendered with
Type 2 (mennekes)
outputs at most {socket:type2:current}A - - **Type 2 (mennekes) outputs at most 16 A** corresponds with socket:type2:current=16 A - - **Type 2 (mennekes) outputs at most 32 A** corresponds with socket:type2:current=32 A -Only visible if `socket:type2~^..*$&socket:type2!~^0$` is shown + - Type 2 (mennekes) outputs at most 16 A corresponds with `socket:type2:current=16 A` + - Type 2 (mennekes) outputs at most 32 A corresponds with `socket:type2:current=32 A` + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown This tagrendering is part of group `technical` @@ -937,18 +1103,21 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Type 2 (mennekes)
offer?** +The question is What power output does a single plug of type
Type 2 (mennekes)
offer? This rendering asks information about the property [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) -This is rendered with `
Type 2 (mennekes)
outputs at most {socket:type2:output}` + +This is rendered with
Type 2 (mennekes)
outputs at most {socket:type2:output} - - **Type 2 (mennekes) outputs at most 11 kw A** corresponds with socket:type2:output=11 kw - - **Type 2 (mennekes) outputs at most 22 kw A** corresponds with socket:type2:output=22 kw -Only visible if `socket:type2~^..*$&socket:type2!~^0$` is shown + - Type 2 (mennekes) outputs at most 11 kw A corresponds with `socket:type2:output=11 kW` + - Type 2 (mennekes) outputs at most 22 kw A corresponds with `socket:type2:output=22 kW` + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown This tagrendering is part of group `technical` @@ -958,18 +1127,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Type 2 CCS (mennekes)
offer?** +The question is What voltage do the plugs with
Type 2 CCS (mennekes)
offer? This rendering asks information about the property [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) -This is rendered with `
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt` + +This is rendered with
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt - - **Type 2 CCS (mennekes) outputs 500 volt** corresponds with socket:type2_combo:voltage=500 V - - **Type 2 CCS (mennekes) outputs 920 volt** corresponds with socket:type2_combo:voltage=920 V -Only visible if `socket:type2_combo~^..*$&socket:type2_combo!~^0$` is shown + - Type 2 CCS (mennekes) outputs 500 volt corresponds with `socket:type2_combo:voltage=500 V` + - Type 2 CCS (mennekes) outputs 920 volt corresponds with `socket:type2_combo:voltage=920 V` + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown This tagrendering is part of group `technical` @@ -979,18 +1151,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Type 2 CCS (mennekes)
offer?** +The question is What current do the plugs with
Type 2 CCS (mennekes)
offer? This rendering asks information about the property [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) -This is rendered with `
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A` + +This is rendered with
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A - - **Type 2 CCS (mennekes) outputs at most 125 A** corresponds with socket:type2_combo:current=125 A - - **Type 2 CCS (mennekes) outputs at most 350 A** corresponds with socket:type2_combo:current=350 A -Only visible if `socket:type2_combo~^..*$&socket:type2_combo!~^0$` is shown + - Type 2 CCS (mennekes) outputs at most 125 A corresponds with `socket:type2_combo:current=125 A` + - Type 2 CCS (mennekes) outputs at most 350 A corresponds with `socket:type2_combo:current=350 A` + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown This tagrendering is part of group `technical` @@ -1000,17 +1175,20 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Type 2 CCS (mennekes)
offer?** +The question is What power output does a single plug of type
Type 2 CCS (mennekes)
offer? This rendering asks information about the property [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) -This is rendered with `
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output}` + +This is rendered with
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output} - - **Type 2 CCS (mennekes) outputs at most 50 kw A** corresponds with socket:type2_combo:output=50 kw -Only visible if `socket:type2_combo~^..*$&socket:type2_combo!~^0$` is shown + - Type 2 CCS (mennekes) outputs at most 50 kw A corresponds with `socket:type2_combo:output=50 kW` + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown This tagrendering is part of group `technical` @@ -1020,18 +1198,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Type 2 with cable (mennekes)
offer?** +The question is What voltage do the plugs with
Type 2 with cable (mennekes)
offer? This rendering asks information about the property [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) -This is rendered with `
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt` + +This is rendered with
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt - - **Type 2 with cable (mennekes) outputs 230 volt** corresponds with socket:type2_cable:voltage=230 V - - **Type 2 with cable (mennekes) outputs 400 volt** corresponds with socket:type2_cable:voltage=400 V -Only visible if `socket:type2_cable~^..*$&socket:type2_cable!~^0$` is shown + - Type 2 with cable (mennekes) outputs 230 volt corresponds with `socket:type2_cable:voltage=230 V` + - Type 2 with cable (mennekes) outputs 400 volt corresponds with `socket:type2_cable:voltage=400 V` + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown This tagrendering is part of group `technical` @@ -1041,18 +1222,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Type 2 with cable (mennekes)
offer?** +The question is What current do the plugs with
Type 2 with cable (mennekes)
offer? This rendering asks information about the property [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) -This is rendered with `
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A` + +This is rendered with
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A - - **Type 2 with cable (mennekes) outputs at most 16 A** corresponds with socket:type2_cable:current=16 A - - **Type 2 with cable (mennekes) outputs at most 32 A** corresponds with socket:type2_cable:current=32 A -Only visible if `socket:type2_cable~^..*$&socket:type2_cable!~^0$` is shown + - Type 2 with cable (mennekes) outputs at most 16 A corresponds with `socket:type2_cable:current=16 A` + - Type 2 with cable (mennekes) outputs at most 32 A corresponds with `socket:type2_cable:current=32 A` + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown This tagrendering is part of group `technical` @@ -1062,18 +1246,21 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Type 2 with cable (mennekes)
offer?** +The question is What power output does a single plug of type
Type 2 with cable (mennekes)
offer? This rendering asks information about the property [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) -This is rendered with `
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output}` + +This is rendered with
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output} - - **Type 2 with cable (mennekes) outputs at most 11 kw A** corresponds with socket:type2_cable:output=11 kw - - **Type 2 with cable (mennekes) outputs at most 22 kw A** corresponds with socket:type2_cable:output=22 kw -Only visible if `socket:type2_cable~^..*$&socket:type2_cable!~^0$` is shown + - Type 2 with cable (mennekes) outputs at most 11 kw A corresponds with `socket:type2_cable:output=11 kW` + - Type 2 with cable (mennekes) outputs at most 22 kw A corresponds with `socket:type2_cable:output=22 kW` + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown This tagrendering is part of group `technical` @@ -1083,18 +1270,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?** +The question is What voltage do the plugs with
Tesla Supercharger CCS (a branded Type 2 CSS)
offer? This rendering asks information about the property [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) -This is rendered with `
Tesla Supercharger CCS (a branded type2_css)
outputs {socket:tesla_supercharger_ccs:voltage} volt` + +This is rendered with
Tesla Supercharger CCS (a branded Type 2 CSS)
outputs {socket:tesla_supercharger_ccs:voltage} volt - - **Tesla Supercharger CCS (a branded type2_css) outputs 500 volt** corresponds with socket:tesla_supercharger_ccs:voltage=500 V - - **Tesla Supercharger CCS (a branded type2_css) outputs 920 volt** corresponds with socket:tesla_supercharger_ccs:voltage=920 V -Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^0$` is shown + - Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt corresponds with `socket:tesla_supercharger_ccs:voltage=500 V` + - Tesla Supercharger CCS (a branded Type 2 CSS) outputs 920 volt corresponds with `socket:tesla_supercharger_ccs:voltage=920 V` + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown This tagrendering is part of group `technical` @@ -1104,18 +1294,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?** +The question is What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer? This rendering asks information about the property [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) -This is rendered with `
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A` + +This is rendered with
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A - - **Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A** corresponds with socket:tesla_supercharger_ccs:current=125 A - - **Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A** corresponds with socket:tesla_supercharger_ccs:current=350 A -Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^0$` is shown + - Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A corresponds with `socket:tesla_supercharger_ccs:current=125 A` + - Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A corresponds with `socket:tesla_supercharger_ccs:current=350 A` + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown This tagrendering is part of group `technical` @@ -1125,17 +1318,20 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Tesla Supercharger CCS (a branded type2_css)
offer?** +The question is What power output does a single plug of type
Tesla Supercharger CCS (a branded Type 2 CSS)
offer? This rendering asks information about the property [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) -This is rendered with `
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:output}` + +This is rendered with
Tesla Supercharger CCS (a branded Type 2 CSS)
outputs at most {socket:tesla_supercharger_ccs:output} - - **Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kw A** corresponds with socket:tesla_supercharger_ccs:output=50 kw -Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^0$` is shown + - Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A corresponds with `socket:tesla_supercharger_ccs:output=50 kW` + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown This tagrendering is part of group `technical` @@ -1145,17 +1341,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Tesla Supercharger (destination)
offer?** +The question is What voltage do the plugs with
Tesla Supercharger (Destination)
offer? This rendering asks information about the property [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) -This is rendered with `
Tesla Supercharger (destination)
outputs {socket:tesla_destination:voltage} volt` + +This is rendered with
Tesla Supercharger (Destination)
outputs {socket:tesla_destination:voltage} volt - - **Tesla Supercharger (destination) outputs 480 volt** corresponds with socket:tesla_destination:voltage=480 V -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown + - Tesla Supercharger (Destination) outputs 480 volt corresponds with `socket:tesla_destination:voltage=480 V` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown This tagrendering is part of group `technical` @@ -1165,18 +1364,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Tesla Supercharger (destination)
offer?** +The question is What current do the plugs with
Tesla Supercharger (Destination)
offer? This rendering asks information about the property [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) -This is rendered with `
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:current}A` + +This is rendered with
Tesla Supercharger (Destination)
outputs at most {socket:tesla_destination:current}A - - **Tesla Supercharger (destination) outputs at most 125 A** corresponds with socket:tesla_destination:current=125 A - - **Tesla Supercharger (destination) outputs at most 350 A** corresponds with socket:tesla_destination:current=350 A -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown + - Tesla Supercharger (Destination) outputs at most 125 A corresponds with `socket:tesla_destination:current=125 A` + - Tesla Supercharger (Destination) outputs at most 350 A corresponds with `socket:tesla_destination:current=350 A` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown This tagrendering is part of group `technical` @@ -1186,19 +1388,22 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Tesla Supercharger (destination)
offer?** +The question is What power output does a single plug of type
Tesla Supercharger (Destination)
offer? This rendering asks information about the property [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) -This is rendered with `
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:output}` + +This is rendered with
Tesla Supercharger (Destination)
outputs at most {socket:tesla_destination:output} - - **Tesla Supercharger (destination) outputs at most 120 kw A** corresponds with socket:tesla_destination:output=120 kw - - **Tesla Supercharger (destination) outputs at most 150 kw A** corresponds with socket:tesla_destination:output=150 kw - - **Tesla Supercharger (destination) outputs at most 250 kw A** corresponds with socket:tesla_destination:output=250 kw -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown + - Tesla Supercharger (Destination) outputs at most 120 kw A corresponds with `socket:tesla_destination:output=120 kW` + - Tesla Supercharger (Destination) outputs at most 150 kw A corresponds with `socket:tesla_destination:output=150 kW` + - Tesla Supercharger (Destination) outputs at most 250 kw A corresponds with `socket:tesla_destination:output=250 kW` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown This tagrendering is part of group `technical` @@ -1208,18 +1413,21 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?** +The question is What voltage do the plugs with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer? This rendering asks information about the property [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) -This is rendered with `
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt` + +This is rendered with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt** corresponds with socket:tesla_destination:voltage=230 V - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt** corresponds with socket:tesla_destination:voltage=400 V -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 230 volt corresponds with `socket:tesla_destination:voltage=230 V` + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 400 volt corresponds with `socket:tesla_destination:voltage=400 V` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown This tagrendering is part of group `technical` @@ -1229,18 +1437,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?** +The question is What current do the plugs with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer? This rendering asks information about the property [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) -This is rendered with `
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:current}A` + +This is rendered with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
outputs at most {socket:tesla_destination:current}A - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A** corresponds with socket:tesla_destination:current=16 A - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A** corresponds with socket:tesla_destination:current=32 A -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown + - Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla) outputs at most 16 A corresponds with `socket:tesla_destination:current=16 A` + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 32 A corresponds with `socket:tesla_destination:current=32 A` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown This tagrendering is part of group `technical` @@ -1250,18 +1461,21 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?** +The question is What power output does a single plug of type
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer? This rendering asks information about the property [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) -This is rendered with `
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:output}` + +This is rendered with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
outputs at most {socket:tesla_destination:output} - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kw A** corresponds with socket:tesla_destination:output=11 kw - - **Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kw A** corresponds with socket:tesla_destination:output=22 kw -Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!~^0$` is shown + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 11 kw A corresponds with `socket:tesla_destination:output=11 kW` + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 22 kw A corresponds with `socket:tesla_destination:output=22 kW` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown This tagrendering is part of group `technical` @@ -1271,17 +1485,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
USB to charge phones and small electronics
offer?** +The question is What voltage do the plugs with
USB to charge phones and small electronics
offer? This rendering asks information about the property [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) -This is rendered with `
USB to charge phones and small electronics
outputs {socket:USB-A:voltage} volt` + +This is rendered with
USB to charge phones and small electronics
outputs {socket:USB-A:voltage} volt - - **USB to charge phones and small electronics outputs 5 volt** corresponds with socket:USB-A:voltage=5 V -Only visible if `socket:USB-A~^..*$&socket:USB-A!~^0$` is shown + - USB to charge phones and small electronics outputs 5 volt corresponds with `socket:USB-A:voltage=5 V` + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown This tagrendering is part of group `technical` @@ -1291,18 +1508,21 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
USB to charge phones and small electronics
offer?** +The question is What current do the plugs with
USB to charge phones and small electronics
offer? This rendering asks information about the property [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) -This is rendered with `
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A` + +This is rendered with
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A - - **USB to charge phones and small electronics outputs at most 1 A** corresponds with socket:USB-A:current=1 A - - **USB to charge phones and small electronics outputs at most 2 A** corresponds with socket:USB-A:current=2 A -Only visible if `socket:USB-A~^..*$&socket:USB-A!~^0$` is shown + - USB to charge phones and small electronics outputs at most 1 A corresponds with `socket:USB-A:current=1 A` + - USB to charge phones and small electronics outputs at most 2 A corresponds with `socket:USB-A:current=2 A` + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown This tagrendering is part of group `technical` @@ -1312,18 +1532,21 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
USB to charge phones and small electronics
offer?** +The question is What power output does a single plug of type
USB to charge phones and small electronics
offer? This rendering asks information about the property [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) -This is rendered with `
USB to charge phones and small electronics
outputs at most {socket:USB-A:output}` + +This is rendered with
USB to charge phones and small electronics
outputs at most {socket:USB-A:output} - - **USB to charge phones and small electronics outputs at most 5w A** corresponds with socket:USB-A:output=5w - - **USB to charge phones and small electronics outputs at most 10w A** corresponds with socket:USB-A:output=10w -Only visible if `socket:USB-A~^..*$&socket:USB-A!~^0$` is shown + - USB to charge phones and small electronics outputs at most 5w A corresponds with `socket:USB-A:output=5W` + - USB to charge phones and small electronics outputs at most 10w A corresponds with `socket:USB-A:output=10W` + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown This tagrendering is part of group `technical` @@ -1333,17 +1556,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Bosch Active Connect with 3 pins and cable
offer?** +The question is What voltage do the plugs with
Bosch Active Connect with 3 pins and cable
offer? This rendering asks information about the property [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) -This is rendered with `
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt` + +This is rendered with
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt -Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!~^0$` is shown + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown This tagrendering is part of group `technical` @@ -1353,17 +1579,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer?** +The question is What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer? This rendering asks information about the property [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) -This is rendered with `
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A` + +This is rendered with
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A -Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!~^0$` is shown + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown This tagrendering is part of group `technical` @@ -1373,17 +1602,20 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer?** +The question is What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer? This rendering asks information about the property [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) -This is rendered with `
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output}` + +This is rendered with
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output} -Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!~^0$` is shown + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown This tagrendering is part of group `technical` @@ -1393,17 +1625,20 @@ This tagrendering is part of group `technical` -The question is **What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer?** +The question is What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer? This rendering asks information about the property [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) -This is rendered with `
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt` + +This is rendered with
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt -Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!~^0$` is shown + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown This tagrendering is part of group `technical` @@ -1413,17 +1648,20 @@ This tagrendering is part of group `technical` -The question is **What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer?** +The question is What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer? This rendering asks information about the property [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) -This is rendered with `
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A` + +This is rendered with
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A -Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!~^0$` is shown + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown This tagrendering is part of group `technical` @@ -1433,17 +1671,20 @@ This tagrendering is part of group `technical` -The question is **What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer?** +The question is What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer? This rendering asks information about the property [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) -This is rendered with `
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output}` + +This is rendered with
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output} -Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!~^0$` is shown + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown This tagrendering is part of group `technical` @@ -1453,14 +1694,17 @@ This tagrendering is part of group `technical` -The question is **When is this charging station opened?** +The question is When is this charging station opened? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table(opening_hours)}` + +This is rendered with {opening_hours_table(opening_hours)} - - **24/7 opened (including holidays)** corresponds with opening_hours=24/7 + + + - 24/7 opened (including holidays) corresponds with `opening_hours=24/7` @@ -1469,17 +1713,18 @@ This is rendered with `{opening_hours_table(opening_hours)}` -The question is **Does one have to pay to use this charging station?** +The question is Does one have to pay to use this charging station? - - **Free to use (without authenticating)** corresponds with fee=no&authentication:none=yes - - **Free to use, but one has to authenticate** corresponds with fee=no&authentication:none=no - - **Free to use** corresponds with fee=no_This option cannot be chosen as answer_ - - **Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station** corresponds with fee=yes&fee:conditional=no @ customers - - **Paid use** corresponds with fee=yes + - Free to use (without authenticating) corresponds with `fee=no&authentication:none=yes` + - Free to use, but one has to authenticate corresponds with `fee=no&authentication:none=no` + - Free to use corresponds with `fee=no` + - This option cannot be chosen as answer + - Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station corresponds with `fee=yes&fee:conditional=no @ customers` + - Paid use corresponds with `fee=yes` @@ -1488,12 +1733,15 @@ The question is **Does one have to pay to use this charging station?** -The question is **How much does one have to pay to use this charging station?** +The question is How much does one have to pay to use this charging station? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `Using this charging station costs {charge}` -Only visible if `fee=yes` is shown +This is rendered with Using this charging station costs {charge} + + + +Only visible if `fee=yes` is shown @@ -1501,19 +1749,23 @@ Only visible if `fee=yes` is shown -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no - - **Payment is done using a dedicated app** corresponds with payment:app=yesUnselecting this answer will add payment:app=no - - **Payment is done using a membership card** corresponds with payment:membership_card=yesUnselecting this answer will add payment:membership_card=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + - Payment is done using a dedicated app corresponds with `payment:app=yes` + - Unselecting this answer will add payment:app=no + - Payment is done using a membership card corresponds with `payment:membership_card=yes` + - Unselecting this answer will add payment:membership_card=no -Only visible if `fee=yes|charge~^..*$` is shown +Only visible if `fee=yes|charge~^..*$` is shown @@ -1521,20 +1773,28 @@ Only visible if `fee=yes|charge~^..*$` is shown -The question is **What kind of authentication is available at the charging station?** +The question is What kind of authentication is available at the charging station? - - **Authentication by a membership card** corresponds with authentication:membership_card=yesUnselecting this answer will add authentication:membership_card=no - - **Authentication by an app** corresponds with authentication:app=yesUnselecting this answer will add authentication:app=no - - **Authentication via phone call is available** corresponds with authentication:phone_call=yesUnselecting this answer will add authentication:phone_call=no - - **Authentication via SMS is available** corresponds with authentication:short_message=yesUnselecting this answer will add authentication:short_message=no - - **Authentication via NFC is available** corresponds with authentication:nfc=yesUnselecting this answer will add authentication:nfc=no - - **Authentication via Money Card is available** corresponds with authentication:money_card=yesUnselecting this answer will add authentication:money_card=no - - **Authentication via debit card is available** corresponds with authentication:debit_card=yesUnselecting this answer will add authentication:debit_card=no - - **Charging here is (also) possible without authentication** corresponds with authentication:none=yesUnselecting this answer will add authentication:none=no + - Authentication by a membership card corresponds with `authentication:membership_card=yes` + - Unselecting this answer will add authentication:membership_card=no + - Authentication by an app corresponds with `authentication:app=yes` + - Unselecting this answer will add authentication:app=no + - Authentication via phone call is available corresponds with `authentication:phone_call=yes` + - Unselecting this answer will add authentication:phone_call=no + - Authentication via SMS is available corresponds with `authentication:short_message=yes` + - Unselecting this answer will add authentication:short_message=no + - Authentication via NFC is available corresponds with `authentication:nfc=yes` + - Unselecting this answer will add authentication:nfc=no + - Authentication via Money Card is available corresponds with `authentication:money_card=yes` + - Unselecting this answer will add authentication:money_card=no + - Authentication via debit card is available corresponds with `authentication:debit_card=yes` + - Unselecting this answer will add authentication:debit_card=no + - Charging here is (also) possible without authentication corresponds with `authentication:none=yes` + - Unselecting this answer will add authentication:none=no @@ -1543,12 +1803,15 @@ The question is **What kind of authentication is available at the charging stati -The question is **What's the phone number for authentication call or SMS?** +The question is What's the phone number for authentication call or SMS? This rendering asks information about the property [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) -This is rendered with `Authenticate by calling or SMS'ing to {authentication:phone_call:number}` -Only visible if `authentication:phone_call=yes|authentication:short_message=yes` is shown +This is rendered with Authenticate by calling or SMS'ing to {authentication:phone_call:number} + + + +Only visible if `authentication:phone_call=yes|authentication:short_message=yes` is shown @@ -1556,17 +1819,20 @@ Only visible if `authentication:phone_call=yes|authentication:short_message=yes` -The question is **What is the maximum amount of time one is allowed to stay here?** +The question is What is the maximum amount of time one is allowed to stay here? This rendering asks information about the property [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) -This is rendered with `One can stay at most {canonical(maxstay)}` + +This is rendered with One can stay at most {canonical(maxstay)} - - **No timelimit on leaving your vehicle here** corresponds with maxstay=unlimited -Only visible if `maxstay~^..*$|motorcar=yes|hgv=yes|bus=yes` is shown + - No timelimit on leaving your vehicle here corresponds with `maxstay=unlimited` + + +Only visible if `maxstay~^..*$|motorcar=yes|hgv=yes|bus=yes` is shown @@ -1574,21 +1840,25 @@ Only visible if `maxstay~^..*$|motorcar=yes|hgv=yes|bus=yes` is shown -The question is **Is this charging station part of a network?** +The question is Is this charging station part of a network? This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network) -This is rendered with `Part of the network {network}` + +This is rendered with Part of the network {network} - - **Not part of a bigger network, e.g. because the charging station is maintained by a local business** corresponds with no:network=yes - - **Not part of a bigger network** corresponds with network=none_This option cannot be chosen as answer_ - - **AeroVironment** corresponds with network=AeroVironment - - **Blink** corresponds with network=Blink - - **EVgo** corresponds with network=EVgo - - **Allego** corresponds with network=Allego - - **Blue Corner** corresponds with network=Blue Corner - - **Tesla** corresponds with network=Tesla + + + - Not part of a bigger network, e.g. because the charging station is maintained by a local business corresponds with `no:network=yes` + - Not part of a bigger network corresponds with `network=none` + - This option cannot be chosen as answer + - AeroVironment corresponds with `network=AeroVironment` + - Blink corresponds with `network=Blink` + - EVgo corresponds with `network=EVgo` + - Allego corresponds with `network=Allego` + - Blue Corner corresponds with `network=Blue Corner` + - Tesla corresponds with `network=Tesla` @@ -1597,14 +1867,17 @@ This is rendered with `Part of the network {network}` -The question is **Who is the operator of this charging station?** +The question is Who is the operator of this charging station? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This charging station is operated by {operator}` + +This is rendered with This charging station is operated by {operator} - - **Actually, {operator} is the network** corresponds with network= + + + - Actually, {operator} is the network corresponds with `network=` @@ -1613,10 +1886,13 @@ This is rendered with `This charging station is operated by {operator}` -The question is **What number can one call if there is a problem with this charging station?** +The question is What number can one call if there is a problem with this charging station? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `In case of problems, call {phone}` + +This is rendered with In case of problems, call {phone} + + @@ -1624,10 +1900,13 @@ This is rendered with `In case of problems, call {phone}{email}` + +This is rendered with In case of problems, send an email to {email} + + @@ -1635,10 +1914,13 @@ This is rendered with `In case of problems, send an email to {website}` + +This is rendered with More info on {website} + + @@ -1646,18 +1928,23 @@ This is rendered with `More info on {website}` -The question is **On what level is this feature located?** +The question is On what level is this feature located? This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) -This is rendered with `Located on the {level}th floor` + +This is rendered with Located on the {level}th floor - - **Located underground** corresponds with location=underground_This option cannot be chosen as answer_ - - **Located on the ground floor** corresponds with level=0 - - **Located on the ground floor** corresponds with _This option cannot be chosen as answer_ - - **Located on the first floor** corresponds with level=1 - - **Located on the first basement level** corresponds with level=-1 + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` @@ -1666,12 +1953,15 @@ This is rendered with `Located on the {level}th floor` -The question is **What is the reference number of this charging station?** +The question is What is the reference number of this charging station? This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) -This is rendered with `Reference number is {ref}` -Only visible if `network~^..*$` is shown +This is rendered with Reference number is {ref} + + + +Only visible if `network~^..*$` is shown @@ -1679,17 +1969,17 @@ Only visible if `network~^..*$` is shown -The question is **Is this charging point in use?** +The question is Is this charging point in use? - - **This charging station works** corresponds with amenity=charging_station - - **This charging station is broken** corresponds with operational_status=broken&amenity=charging_station - - **A charging station is planned here** corresponds with planned:amenity=charging_station - - **A charging station is constructed here** corresponds with construction:amenity=charging_station - - **This charging station has beed permanently disabled and is not in use anymore but is still visible** corresponds with disused:amenity=charging_station + - This charging station works corresponds with `amenity=charging_station` + - This charging station is broken corresponds with `operational_status=broken&amenity=charging_station` + - A charging station is planned here corresponds with `planned:amenity=charging_station` + - A charging station is constructed here corresponds with `construction:amenity=charging_station` + - This charging station has beed permanently disabled and is not in use anymore but is still visible corresponds with `disused:amenity=charging_station` @@ -1698,14 +1988,14 @@ The question is **Is this charging point in use?** -The question is **Does one have to pay a parking fee while charging?** +The question is Does one have to pay a parking fee while charging? - - **No additional parking cost while charging** corresponds with parking:fee=no - - **An additional parking fee should be paid while charging** corresponds with parking:fee=yes + - No additional parking cost while charging corresponds with `parking:fee=no` + - An additional parking fee should be paid while charging corresponds with `parking:fee=yes` @@ -1714,7 +2004,7 @@ The question is **Does one have to pay a parking fee while charging?** -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -1724,7 +2014,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/charging_station_ebikes.md b/Docs/Layers/charging_station_ebikes.md new file mode 100644 index 0000000000..0791d31242 --- /dev/null +++ b/Docs/Layers/charging_station_ebikes.md @@ -0,0 +1,2046 @@ + + + charging_station_ebikes +========================= + + + + + +A charging station + + + + + + + - This layer is shown at zoomlevel **14** and higher + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=charging_station|disused:amenity=charging_station|planned:amenity=charging_station|construction:amenity=charging_station + - bicycle=yes + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22amenity%22%3D%22charging_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22construction%3Aamenity%22%3D%22charging_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22disused%3Aamenity%22%3D%22charging_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22planned%3Aamenity%22%3D%22charging_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:schuko#values) [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:typee#values) [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:chademo#values) [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable#values) [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1#values) [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo#values) [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger#values) [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2#values) [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo#values) [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable#values) [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs#values) [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:USB-A#values) [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin#values) [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin#values) [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values) [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V) +[](https://taginfo.openstreetmap.org/keys/socket:schuko:current#values) [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A) +[](https://taginfo.openstreetmap.org/keys/socket:schuko:output#values) [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW) +[](https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values) [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V) +[](https://taginfo.openstreetmap.org/keys/socket:typee:current#values) [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A) +[](https://taginfo.openstreetmap.org/keys/socket:typee:output#values) [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW) +[](https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values) [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V) +[](https://taginfo.openstreetmap.org/keys/socket:chademo:current#values) [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120 A](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A) +[](https://taginfo.openstreetmap.org/keys/socket:chademo:output#values) [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW) +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values) [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V) +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values) [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A) +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values) [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW) +[](https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values) [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V) +[](https://taginfo.openstreetmap.org/keys/socket:type1:current#values) [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A) +[](https://taginfo.openstreetmap.org/keys/socket:type1:output#values) [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW) [6.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW) [7.2 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW) +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values) [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V) [1000 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V) +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values) [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A) [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A) +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values) [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW) [62.5 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW) [350 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values) [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values) [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values) [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW) +[](https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values) [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V) +[](https://taginfo.openstreetmap.org/keys/socket:type2:current#values) [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A) +[](https://taginfo.openstreetmap.org/keys/socket:type2:output#values) [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW) +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values) [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V) +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values) [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A) +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values) [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW) +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values) [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V) +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values) [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A) +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values) [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values) [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values) [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values) [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A) +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW) +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values) [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5 V](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V) +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values) [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A) [2 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A) +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values) [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W) [10W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W) +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values) [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:current#values) [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:output#values) [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:voltage#values) [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:current#values) [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:output#values) [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/authentication:phone_call:number#values) [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/maxstay#values) [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [string](../SpecialInputElements.md#string) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) +[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | [AeroVironment](https://wiki.openstreetmap.org/wiki/Tag:network%3DAeroVironment) [Blink](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlink) [EVgo](https://wiki.openstreetmap.org/wiki/Tag:network%3DEVgo) [Allego](https://wiki.openstreetmap.org/wiki/Tag:network%3DAllego) [Blue Corner](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlue Corner) [Tesla](https://wiki.openstreetmap.org/wiki/Tag:network%3DTesla) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/planned:amenity#values) [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) +[](https://taginfo.openstreetmap.org/keys/parking:fee#values) [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### Type + + + +The question is Which vehicles are allowed to charge here? + + + + + + - Bicycles can be charged here corresponds with `bicycle=yes` + - Unselecting this answer will add bicycle=no + - Cars can be charged here corresponds with `motorcar=yes` + - Unselecting this answer will add motorcar=no + - Scooters can be charged here corresponds with `scooter=yes` + - Unselecting this answer will add scooter=no + - Heavy good vehicles (such as trucks) can be charged here corresponds with `hgv=yes` + - Unselecting this answer will add hgv=no + - Buses can be charged here corresponds with `bus=yes` + - Unselecting this answer will add bus=no + + + + +### access + + + +The question is Who is allowed to use this charging station? + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) + +This is rendered with Access is {access} + + + + + + - Anyone can use this charging station (payment might be needed) corresponds with `access=yes` + - Anyone can use this charging station (payment might be needed) corresponds with `access=permissive|access=public` + - This option cannot be chosen as answer + - Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests corresponds with `access=customers` + - A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station corresponds with `access=key` + - Not accessible to the general public (e.g. only accessible to the owners, employees, …) corresponds with `access=private` + + + + +### capacity + + + +The question is How much vehicles can be charged here at the same time? + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) + +This is rendered with {capacity} vehicles can be charged here at the same time + + + + + +### Available_charging_stations (generated) + + + +The question is Which charging connections are available here? + + + + + + - Schuko wall plug without ground pin (CEE7/4 type F) corresponds with `socket:schuko=1` + - Unselecting this answer will add + - Schuko wall plug without ground pin (CEE7/4 type F) corresponds with `socket:schuko~^..*$&socket:schuko!=1` + - This option cannot be chosen as answer + - European wall plug with ground pin (CEE7/4 type E) corresponds with `socket:typee=1` + - Unselecting this answer will add + - European wall plug with ground pin (CEE7/4 type E) corresponds with `socket:typee~^..*$&socket:typee!=1` + - This option cannot be chosen as answer + - Chademo corresponds with `socket:chademo=1` + - Unselecting this answer will add + - Chademo corresponds with `socket:chademo~^..*$&socket:chademo!=1` + - This option cannot be chosen as answer + - Type 1 with cable (J1772) corresponds with `socket:type1_cable=1` + - Unselecting this answer will add + - Type 1 with cable (J1772) corresponds with `socket:type1_cable~^..*$&socket:type1_cable!=1` + - This option cannot be chosen as answer + - Type 1 without cable (J1772) corresponds with `socket:type1=1` + - Unselecting this answer will add + - Type 1 without cable (J1772) corresponds with `socket:type1~^..*$&socket:type1!=1` + - This option cannot be chosen as answer + - Type 1 CCS (aka Type 1 Combo) corresponds with `socket:type1_combo=1` + - Unselecting this answer will add + - Type 1 CCS (aka Type 1 Combo) corresponds with `socket:type1_combo~^..*$&socket:type1_combo!=1` + - This option cannot be chosen as answer + - Tesla Supercharger corresponds with `socket:tesla_supercharger=1` + - Unselecting this answer will add + - Tesla Supercharger corresponds with `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=1` + - This option cannot be chosen as answer + - Type 2 (mennekes) corresponds with `socket:type2=1` + - Unselecting this answer will add + - Type 2 (mennekes) corresponds with `socket:type2~^..*$&socket:type2!=1` + - This option cannot be chosen as answer + - Type 2 CCS (mennekes) corresponds with `socket:type2_combo=1` + - Unselecting this answer will add + - Type 2 CCS (mennekes) corresponds with `socket:type2_combo~^..*$&socket:type2_combo!=1` + - This option cannot be chosen as answer + - Type 2 with cable (mennekes) corresponds with `socket:type2_cable=1` + - Unselecting this answer will add + - Type 2 with cable (mennekes) corresponds with `socket:type2_cable~^..*$&socket:type2_cable!=1` + - This option cannot be chosen as answer + - Tesla Supercharger CCS (a branded type2_css) corresponds with `socket:tesla_supercharger_ccs=1` + - Unselecting this answer will add + - Tesla Supercharger CCS (a branded type2_css) corresponds with `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=1` + - This option cannot be chosen as answer + - Tesla Supercharger (destination) corresponds with `socket:tesla_destination=1` + - Unselecting this answer will add + - Tesla Supercharger (destination) corresponds with `socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country=us` + - This option cannot be chosen as answer + - Tesla supercharger (destination) (A Type 2 with cable branded as tesla) corresponds with `socket:tesla_destination=1` + - Unselecting this answer will add + - Tesla supercharger (destination) (A Type 2 with cable branded as tesla) corresponds with `socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country!=us` + - This option cannot be chosen as answer + - USB to charge phones and small electronics corresponds with `socket:USB-A=1` + - Unselecting this answer will add + - USB to charge phones and small electronics corresponds with `socket:USB-A~^..*$&socket:USB-A!=1` + - This option cannot be chosen as answer + - Bosch Active Connect with 3 pins and cable corresponds with `socket:bosch_3pin=1` + - Unselecting this answer will add + - Bosch Active Connect with 3 pins and cable corresponds with `socket:bosch_3pin~^..*$&socket:bosch_3pin!=1` + - This option cannot be chosen as answer + - Bosch Active Connect with 5 pins and cable corresponds with `socket:bosch_5pin=1` + - Unselecting this answer will add + - Bosch Active Connect with 5 pins and cable corresponds with `socket:bosch_5pin~^..*$&socket:bosch_5pin!=1` + - This option cannot be chosen as answer + + + + +### plugs-0 + + + +The question is How much plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
are available here? + +This rendering asks information about the property [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) + +This is rendered with There are {socket:schuko} plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
available here + + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown + + + +### plugs-1 + + + +The question is How much plugs of type
European wall plug with ground pin (CEE7/4 type E)
are available here? + +This rendering asks information about the property [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) + +This is rendered with There are {socket:typee} plugs of type
European wall plug with ground pin (CEE7/4 type E)
available here + + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown + + + +### plugs-2 + + + +The question is How much plugs of type
Chademo
are available here? + +This rendering asks information about the property [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) + +This is rendered with There are {socket:chademo} plugs of type
Chademo
available here + + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown + + + +### plugs-3 + + + +The question is How much plugs of type
Type 1 with cable (J1772)
are available here? + +This rendering asks information about the property [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) + +This is rendered with There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here + + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown + + + +### plugs-4 + + + +The question is How much plugs of type
Type 1 without cable (J1772)
are available here? + +This rendering asks information about the property [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) + +This is rendered with There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here + + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown + + + +### plugs-5 + + + +The question is How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here? + +This rendering asks information about the property [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) + +This is rendered with There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here + + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown + + + +### plugs-6 + + + +The question is How much plugs of type
Tesla Supercharger
are available here? + +This rendering asks information about the property [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) + +This is rendered with There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here + + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown + + + +### plugs-7 + + + +The question is How much plugs of type
Type 2 (mennekes)
are available here? + +This rendering asks information about the property [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) + +This is rendered with There are {socket:type2} plugs of type
Type 2 (mennekes)
available here + + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown + + + +### plugs-8 + + + +The question is How much plugs of type
Type 2 CCS (mennekes)
are available here? + +This rendering asks information about the property [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) + +This is rendered with There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here + + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown + + + +### plugs-9 + + + +The question is How much plugs of type
Type 2 with cable (mennekes)
are available here? + +This rendering asks information about the property [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) + +This is rendered with There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here + + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown + + + +### plugs-10 + + + +The question is How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here? + +This rendering asks information about the property [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) + +This is rendered with There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here + + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown + + + +### plugs-11 + + + +The question is How much plugs of type
Tesla Supercharger (destination)
are available here? + +This rendering asks information about the property [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) + +This is rendered with There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here + + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + + + +### plugs-12 + + + +The question is How much plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
are available here? + +This rendering asks information about the property [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) + +This is rendered with There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
available here + + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + + + +### plugs-13 + + + +The question is How much plugs of type
USB to charge phones and small electronics
are available here? + +This rendering asks information about the property [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) + +This is rendered with There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here + + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown + + + +### plugs-14 + + + +The question is How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here? + +This rendering asks information about the property [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) + +This is rendered with There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here + + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown + + + +### plugs-15 + + + +The question is How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here? + +This rendering asks information about the property [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) + +This is rendered with There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here + + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown + + + +### voltage-0 + + + +The question is What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer? + +This rendering asks information about the property [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) + +This is rendered with
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt + + + + + + - Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt corresponds with `socket:schuko:voltage=230 V` + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-0 + + + +The question is What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer? + +This rendering asks information about the property [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) + +This is rendered with
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A + + + + + + - Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A corresponds with `socket:schuko:current=16 A` + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-0 + + + +The question is What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer? + +This rendering asks information about the property [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) + +This is rendered with
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output} + + + + + + - Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A corresponds with `socket:schuko:output=3.6 kW` + + +Only visible if `socket:schuko~^..*$&socket:schuko!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-1 + + + +The question is What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer? + +This rendering asks information about the property [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) + +This is rendered with
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt + + + + + + - European wall plug with ground pin (CEE7/4 type E) outputs 230 volt corresponds with `socket:typee:voltage=230 V` + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-1 + + + +The question is What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer? + +This rendering asks information about the property [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) + +This is rendered with
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A + + + + + + - European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A corresponds with `socket:typee:current=16 A` + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-1 + + + +The question is What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer? + +This rendering asks information about the property [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) + +This is rendered with
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output} + + + + + + - European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A corresponds with `socket:typee:output=3 kW` + - European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A corresponds with `socket:typee:output=22 kW` + + +Only visible if `socket:typee~^..*$&socket:typee!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-2 + + + +The question is What voltage do the plugs with
Chademo
offer? + +This rendering asks information about the property [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) + +This is rendered with
Chademo
outputs {socket:chademo:voltage} volt + + + + + + - Chademo outputs 500 volt corresponds with `socket:chademo:voltage=500 V` + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-2 + + + +The question is What current do the plugs with
Chademo
offer? + +This rendering asks information about the property [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) + +This is rendered with
Chademo
outputs at most {socket:chademo:current}A + + + + + + - Chademo outputs at most 120 A corresponds with `socket:chademo:current=120 A` + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-2 + + + +The question is What power output does a single plug of type
Chademo
offer? + +This rendering asks information about the property [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) + +This is rendered with
Chademo
outputs at most {socket:chademo:output} + + + + + + - Chademo outputs at most 50 kw A corresponds with `socket:chademo:output=50 kW` + + +Only visible if `socket:chademo~^..*$&socket:chademo!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-3 + + + +The question is What voltage do the plugs with
Type 1 with cable (J1772)
offer? + +This rendering asks information about the property [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) + +This is rendered with
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt + + + + + + - Type 1 with cable (J1772) outputs 200 volt corresponds with `socket:type1_cable:voltage=200 V` + - Type 1 with cable (J1772) outputs 240 volt corresponds with `socket:type1_cable:voltage=240 V` + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-3 + + + +The question is What current do the plugs with
Type 1 with cable (J1772)
offer? + +This rendering asks information about the property [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) + +This is rendered with
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A + + + + + + - Type 1 with cable (J1772) outputs at most 32 A corresponds with `socket:type1_cable:current=32 A` + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-3 + + + +The question is What power output does a single plug of type
Type 1 with cable (J1772)
offer? + +This rendering asks information about the property [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) + +This is rendered with
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output} + + + + + + - Type 1 with cable (J1772) outputs at most 3.7 kw A corresponds with `socket:type1_cable:output=3.7 kW` + - Type 1 with cable (J1772) outputs at most 7 kw A corresponds with `socket:type1_cable:output=7 kW` + + +Only visible if `socket:type1_cable~^..*$&socket:type1_cable!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-4 + + + +The question is What voltage do the plugs with
Type 1 without cable (J1772)
offer? + +This rendering asks information about the property [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) + +This is rendered with
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt + + + + + + - Type 1 without cable (J1772) outputs 200 volt corresponds with `socket:type1:voltage=200 V` + - Type 1 without cable (J1772) outputs 240 volt corresponds with `socket:type1:voltage=240 V` + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-4 + + + +The question is What current do the plugs with
Type 1 without cable (J1772)
offer? + +This rendering asks information about the property [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) + +This is rendered with
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A + + + + + + - Type 1 without cable (J1772) outputs at most 32 A corresponds with `socket:type1:current=32 A` + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-4 + + + +The question is What power output does a single plug of type
Type 1 without cable (J1772)
offer? + +This rendering asks information about the property [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) + +This is rendered with
Type 1 without cable (J1772)
outputs at most {socket:type1:output} + + + + + + - Type 1 without cable (J1772) outputs at most 3.7 kw A corresponds with `socket:type1:output=3.7 kW` + - Type 1 without cable (J1772) outputs at most 6.6 kw A corresponds with `socket:type1:output=6.6 kW` + - Type 1 without cable (J1772) outputs at most 7 kw A corresponds with `socket:type1:output=7 kW` + - Type 1 without cable (J1772) outputs at most 7.2 kw A corresponds with `socket:type1:output=7.2 kW` + + +Only visible if `socket:type1~^..*$&socket:type1!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-5 + + + +The question is What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer? + +This rendering asks information about the property [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) + +This is rendered with
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt + + + + + + - Type 1 CCS (aka Type 1 Combo) outputs 400 volt corresponds with `socket:type1_combo:voltage=400 V` + - Type 1 CCS (aka Type 1 Combo) outputs 1000 volt corresponds with `socket:type1_combo:voltage=1000 V` + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-5 + + + +The question is What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer? + +This rendering asks information about the property [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) + +This is rendered with
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A + + + + + + - Type 1 CCS (aka Type 1 Combo) outputs at most 50 A corresponds with `socket:type1_combo:current=50 A` + - Type 1 CCS (aka Type 1 Combo) outputs at most 125 A corresponds with `socket:type1_combo:current=125 A` + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-5 + + + +The question is What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer? + +This rendering asks information about the property [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) + +This is rendered with
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output} + + + + + + - Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A corresponds with `socket:type1_combo:output=50 kW` + - Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A corresponds with `socket:type1_combo:output=62.5 kW` + - Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A corresponds with `socket:type1_combo:output=150 kW` + - Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A corresponds with `socket:type1_combo:output=350 kW` + + +Only visible if `socket:type1_combo~^..*$&socket:type1_combo!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-6 + + + +The question is What voltage do the plugs with
Tesla Supercharger
offer? + +This rendering asks information about the property [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) + +This is rendered with
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt + + + + + + - Tesla Supercharger outputs 480 volt corresponds with `socket:tesla_supercharger:voltage=480 V` + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-6 + + + +The question is What current do the plugs with
Tesla Supercharger
offer? + +This rendering asks information about the property [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) + +This is rendered with
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A + + + + + + - Tesla Supercharger outputs at most 125 A corresponds with `socket:tesla_supercharger:current=125 A` + - Tesla Supercharger outputs at most 350 A corresponds with `socket:tesla_supercharger:current=350 A` + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-6 + + + +The question is What power output does a single plug of type
Tesla Supercharger
offer? + +This rendering asks information about the property [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) + +This is rendered with
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output} + + + + + + - Tesla Supercharger outputs at most 120 kw A corresponds with `socket:tesla_supercharger:output=120 kW` + - Tesla Supercharger outputs at most 150 kw A corresponds with `socket:tesla_supercharger:output=150 kW` + - Tesla Supercharger outputs at most 250 kw A corresponds with `socket:tesla_supercharger:output=250 kW` + + +Only visible if `socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-7 + + + +The question is What voltage do the plugs with
Type 2 (mennekes)
offer? + +This rendering asks information about the property [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) + +This is rendered with
Type 2 (mennekes)
outputs {socket:type2:voltage} volt + + + + + + - Type 2 (mennekes) outputs 230 volt corresponds with `socket:type2:voltage=230 V` + - Type 2 (mennekes) outputs 400 volt corresponds with `socket:type2:voltage=400 V` + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-7 + + + +The question is What current do the plugs with
Type 2 (mennekes)
offer? + +This rendering asks information about the property [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) + +This is rendered with
Type 2 (mennekes)
outputs at most {socket:type2:current}A + + + + + + - Type 2 (mennekes) outputs at most 16 A corresponds with `socket:type2:current=16 A` + - Type 2 (mennekes) outputs at most 32 A corresponds with `socket:type2:current=32 A` + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-7 + + + +The question is What power output does a single plug of type
Type 2 (mennekes)
offer? + +This rendering asks information about the property [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) + +This is rendered with
Type 2 (mennekes)
outputs at most {socket:type2:output} + + + + + + - Type 2 (mennekes) outputs at most 11 kw A corresponds with `socket:type2:output=11 kW` + - Type 2 (mennekes) outputs at most 22 kw A corresponds with `socket:type2:output=22 kW` + + +Only visible if `socket:type2~^..*$&socket:type2!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-8 + + + +The question is What voltage do the plugs with
Type 2 CCS (mennekes)
offer? + +This rendering asks information about the property [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) + +This is rendered with
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt + + + + + + - Type 2 CCS (mennekes) outputs 500 volt corresponds with `socket:type2_combo:voltage=500 V` + - Type 2 CCS (mennekes) outputs 920 volt corresponds with `socket:type2_combo:voltage=920 V` + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-8 + + + +The question is What current do the plugs with
Type 2 CCS (mennekes)
offer? + +This rendering asks information about the property [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) + +This is rendered with
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A + + + + + + - Type 2 CCS (mennekes) outputs at most 125 A corresponds with `socket:type2_combo:current=125 A` + - Type 2 CCS (mennekes) outputs at most 350 A corresponds with `socket:type2_combo:current=350 A` + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-8 + + + +The question is What power output does a single plug of type
Type 2 CCS (mennekes)
offer? + +This rendering asks information about the property [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) + +This is rendered with
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output} + + + + + + - Type 2 CCS (mennekes) outputs at most 50 kw A corresponds with `socket:type2_combo:output=50 kW` + + +Only visible if `socket:type2_combo~^..*$&socket:type2_combo!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-9 + + + +The question is What voltage do the plugs with
Type 2 with cable (mennekes)
offer? + +This rendering asks information about the property [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) + +This is rendered with
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt + + + + + + - Type 2 with cable (mennekes) outputs 230 volt corresponds with `socket:type2_cable:voltage=230 V` + - Type 2 with cable (mennekes) outputs 400 volt corresponds with `socket:type2_cable:voltage=400 V` + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-9 + + + +The question is What current do the plugs with
Type 2 with cable (mennekes)
offer? + +This rendering asks information about the property [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) + +This is rendered with
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A + + + + + + - Type 2 with cable (mennekes) outputs at most 16 A corresponds with `socket:type2_cable:current=16 A` + - Type 2 with cable (mennekes) outputs at most 32 A corresponds with `socket:type2_cable:current=32 A` + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-9 + + + +The question is What power output does a single plug of type
Type 2 with cable (mennekes)
offer? + +This rendering asks information about the property [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) + +This is rendered with
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output} + + + + + + - Type 2 with cable (mennekes) outputs at most 11 kw A corresponds with `socket:type2_cable:output=11 kW` + - Type 2 with cable (mennekes) outputs at most 22 kw A corresponds with `socket:type2_cable:output=22 kW` + + +Only visible if `socket:type2_cable~^..*$&socket:type2_cable!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-10 + + + +The question is What voltage do the plugs with
Tesla Supercharger CCS (a branded Type 2 CSS)
offer? + +This rendering asks information about the property [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) + +This is rendered with
Tesla Supercharger CCS (a branded Type 2 CSS)
outputs {socket:tesla_supercharger_ccs:voltage} volt + + + + + + - Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt corresponds with `socket:tesla_supercharger_ccs:voltage=500 V` + - Tesla Supercharger CCS (a branded Type 2 CSS) outputs 920 volt corresponds with `socket:tesla_supercharger_ccs:voltage=920 V` + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-10 + + + +The question is What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer? + +This rendering asks information about the property [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) + +This is rendered with
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A + + + + + + - Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A corresponds with `socket:tesla_supercharger_ccs:current=125 A` + - Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A corresponds with `socket:tesla_supercharger_ccs:current=350 A` + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-10 + + + +The question is What power output does a single plug of type
Tesla Supercharger CCS (a branded Type 2 CSS)
offer? + +This rendering asks information about the property [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) + +This is rendered with
Tesla Supercharger CCS (a branded Type 2 CSS)
outputs at most {socket:tesla_supercharger_ccs:output} + + + + + + - Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A corresponds with `socket:tesla_supercharger_ccs:output=50 kW` + + +Only visible if `socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-11 + + + +The question is What voltage do the plugs with
Tesla Supercharger (Destination)
offer? + +This rendering asks information about the property [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) + +This is rendered with
Tesla Supercharger (Destination)
outputs {socket:tesla_destination:voltage} volt + + + + + + - Tesla Supercharger (Destination) outputs 480 volt corresponds with `socket:tesla_destination:voltage=480 V` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-11 + + + +The question is What current do the plugs with
Tesla Supercharger (Destination)
offer? + +This rendering asks information about the property [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) + +This is rendered with
Tesla Supercharger (Destination)
outputs at most {socket:tesla_destination:current}A + + + + + + - Tesla Supercharger (Destination) outputs at most 125 A corresponds with `socket:tesla_destination:current=125 A` + - Tesla Supercharger (Destination) outputs at most 350 A corresponds with `socket:tesla_destination:current=350 A` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-11 + + + +The question is What power output does a single plug of type
Tesla Supercharger (Destination)
offer? + +This rendering asks information about the property [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) + +This is rendered with
Tesla Supercharger (Destination)
outputs at most {socket:tesla_destination:output} + + + + + + - Tesla Supercharger (Destination) outputs at most 120 kw A corresponds with `socket:tesla_destination:output=120 kW` + - Tesla Supercharger (Destination) outputs at most 150 kw A corresponds with `socket:tesla_destination:output=150 kW` + - Tesla Supercharger (Destination) outputs at most 250 kw A corresponds with `socket:tesla_destination:output=250 kW` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-12 + + + +The question is What voltage do the plugs with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer? + +This rendering asks information about the property [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) + +This is rendered with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt + + + + + + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 230 volt corresponds with `socket:tesla_destination:voltage=230 V` + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 400 volt corresponds with `socket:tesla_destination:voltage=400 V` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-12 + + + +The question is What current do the plugs with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer? + +This rendering asks information about the property [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) + +This is rendered with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
outputs at most {socket:tesla_destination:current}A + + + + + + - Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla) outputs at most 16 A corresponds with `socket:tesla_destination:current=16 A` + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 32 A corresponds with `socket:tesla_destination:current=32 A` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-12 + + + +The question is What power output does a single plug of type
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer? + +This rendering asks information about the property [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) + +This is rendered with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
outputs at most {socket:tesla_destination:output} + + + + + + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 11 kw A corresponds with `socket:tesla_destination:output=11 kW` + - Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 22 kw A corresponds with `socket:tesla_destination:output=22 kW` + + +Only visible if `socket:tesla_destination~^..*$&socket:tesla_destination!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-13 + + + +The question is What voltage do the plugs with
USB to charge phones and small electronics
offer? + +This rendering asks information about the property [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) + +This is rendered with
USB to charge phones and small electronics
outputs {socket:USB-A:voltage} volt + + + + + + - USB to charge phones and small electronics outputs 5 volt corresponds with `socket:USB-A:voltage=5 V` + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-13 + + + +The question is What current do the plugs with
USB to charge phones and small electronics
offer? + +This rendering asks information about the property [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) + +This is rendered with
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A + + + + + + - USB to charge phones and small electronics outputs at most 1 A corresponds with `socket:USB-A:current=1 A` + - USB to charge phones and small electronics outputs at most 2 A corresponds with `socket:USB-A:current=2 A` + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-13 + + + +The question is What power output does a single plug of type
USB to charge phones and small electronics
offer? + +This rendering asks information about the property [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) + +This is rendered with
USB to charge phones and small electronics
outputs at most {socket:USB-A:output} + + + + + + - USB to charge phones and small electronics outputs at most 5w A corresponds with `socket:USB-A:output=5W` + - USB to charge phones and small electronics outputs at most 10w A corresponds with `socket:USB-A:output=10W` + + +Only visible if `socket:USB-A~^..*$&socket:USB-A!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-14 + + + +The question is What voltage do the plugs with
Bosch Active Connect with 3 pins and cable
offer? + +This rendering asks information about the property [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) + +This is rendered with
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt + + + + + + + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-14 + + + +The question is What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer? + +This rendering asks information about the property [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) + +This is rendered with
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A + + + + + + + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-14 + + + +The question is What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer? + +This rendering asks information about the property [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) + +This is rendered with
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output} + + + + + + + + +Only visible if `socket:bosch_3pin~^..*$&socket:bosch_3pin!=0` is shown + +This tagrendering is part of group `technical` + + + +### voltage-15 + + + +The question is What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer? + +This rendering asks information about the property [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) + +This is rendered with
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt + + + + + + + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown + +This tagrendering is part of group `technical` + + + +### current-15 + + + +The question is What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer? + +This rendering asks information about the property [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) + +This is rendered with
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A + + + + + + + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown + +This tagrendering is part of group `technical` + + + +### power-output-15 + + + +The question is What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer? + +This rendering asks information about the property [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) + +This is rendered with
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output} + + + + + + + + +Only visible if `socket:bosch_5pin~^..*$&socket:bosch_5pin!=0` is shown + +This tagrendering is part of group `technical` + + + +### OH + + + +The question is When is this charging station opened? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with {opening_hours_table(opening_hours)} + + + + + + - 24/7 opened (including holidays) corresponds with `opening_hours=24/7` + + + + +### fee + + + +The question is Does one have to pay to use this charging station? + + + + + + - Free to use (without authenticating) corresponds with `fee=no&authentication:none=yes` + - Free to use, but one has to authenticate corresponds with `fee=no&authentication:none=no` + - Free to use corresponds with `fee=no` + - This option cannot be chosen as answer + - Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station corresponds with `fee=yes&fee:conditional=no @ customers` + - Paid use corresponds with `fee=yes` + + + + +### charge + + + +The question is How much does one have to pay to use this charging station? + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) + +This is rendered with Using this charging station costs {charge} + + + +Only visible if `fee=yes` is shown + + + +### payment-options-advanced + + + +The question is Which methods of payment are accepted here? + + + + + + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + - Payment is done using a dedicated app corresponds with `payment:app=yes` + - Unselecting this answer will add payment:app=no + - Payment is done using a membership card corresponds with `payment:membership_card=yes` + - Unselecting this answer will add payment:membership_card=no + + +Only visible if `fee=yes|charge~^..*$` is shown + + + +### Authentication + + + +The question is What kind of authentication is available at the charging station? + + + + + + - Authentication by a membership card corresponds with `authentication:membership_card=yes` + - Unselecting this answer will add authentication:membership_card=no + - Authentication by an app corresponds with `authentication:app=yes` + - Unselecting this answer will add authentication:app=no + - Authentication via phone call is available corresponds with `authentication:phone_call=yes` + - Unselecting this answer will add authentication:phone_call=no + - Authentication via SMS is available corresponds with `authentication:short_message=yes` + - Unselecting this answer will add authentication:short_message=no + - Authentication via NFC is available corresponds with `authentication:nfc=yes` + - Unselecting this answer will add authentication:nfc=no + - Authentication via Money Card is available corresponds with `authentication:money_card=yes` + - Unselecting this answer will add authentication:money_card=no + - Authentication via debit card is available corresponds with `authentication:debit_card=yes` + - Unselecting this answer will add authentication:debit_card=no + - Charging here is (also) possible without authentication corresponds with `authentication:none=yes` + - Unselecting this answer will add authentication:none=no + + + + +### Auth phone + + + +The question is What's the phone number for authentication call or SMS? + +This rendering asks information about the property [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) + +This is rendered with Authenticate by calling or SMS'ing to {authentication:phone_call:number} + + + +Only visible if `authentication:phone_call=yes|authentication:short_message=yes` is shown + + + +### maxstay + + + +The question is What is the maximum amount of time one is allowed to stay here? + +This rendering asks information about the property [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) + +This is rendered with One can stay at most {canonical(maxstay)} + + + + + + - No timelimit on leaving your vehicle here corresponds with `maxstay=unlimited` + + +Only visible if `maxstay~^..*$|motorcar=yes|hgv=yes|bus=yes` is shown + + + +### Network + + + +The question is Is this charging station part of a network? + +This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network) + +This is rendered with Part of the network {network} + + + + + + - Not part of a bigger network, e.g. because the charging station is maintained by a local business corresponds with `no:network=yes` + - Not part of a bigger network corresponds with `network=none` + - This option cannot be chosen as answer + - AeroVironment corresponds with `network=AeroVironment` + - Blink corresponds with `network=Blink` + - EVgo corresponds with `network=EVgo` + - Allego corresponds with `network=Allego` + - Blue Corner corresponds with `network=Blue Corner` + - Tesla corresponds with `network=Tesla` + + + + +### Operator + + + +The question is Who is the operator of this charging station? + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) + +This is rendered with This charging station is operated by {operator} + + + + + + - Actually, {operator} is the network corresponds with `network=` + + + + +### phone + + + +The question is What number can one call if there is a problem with this charging station? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with In case of problems, call {phone} + + + + + +### email + + + +The question is What is the email address of the operator? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with In case of problems, send an email to {email} + + + + + +### website + + + +The question is What is the website where one can find more information about this charging station? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with More info on {website} + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### ref + + + +The question is What is the reference number of this charging station? + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) + +This is rendered with Reference number is {ref} + + + +Only visible if `network~^..*$` is shown + + + +### Operational status + + + +The question is Is this charging point in use? + + + + + + - This charging station works corresponds with `amenity=charging_station` + - This charging station is broken corresponds with `operational_status=broken&amenity=charging_station` + - A charging station is planned here corresponds with `planned:amenity=charging_station` + - A charging station is constructed here corresponds with `construction:amenity=charging_station` + - This charging station has beed permanently disabled and is not in use anymore but is still visible corresponds with `disused:amenity=charging_station` + + + + +### Parking:fee + + + +The question is Does one have to pay a parking fee while charging? + + + + + + - No additional parking cost while charging corresponds with `parking:fee=no` + - An additional parking fee should be paid while charging corresponds with `parking:fee=yes` + + + + +### questions + + + +This tagrendering has no question and is thus read-only + + + + + +### questions + + + +This tagrendering has no question and is thus read-only + + + +This tagrendering is part of group `technical` + + + +### questions + + + +Show the images block at this location + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only + + + +This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json) \ No newline at end of file diff --git a/Docs/Layers/climbing.md b/Docs/Layers/climbing.md index 5f2906dce3..39f2ef4bae 100644 --- a/Docs/Layers/climbing.md +++ b/Docs/Layers/climbing.md @@ -5,34 +5,19 @@ - -A climbing opportunity + +A dummy layer which contains tagrenderings, shared among the climbing layers - - This layer is shown at zoomlevel **10** and higher - - This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties) - - This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[8] which calculates the value for _contained_climbing_routes_properties) - - This layer is needed as dependency for layer [climbing_club](#climbing_club) - - This layer is needed as dependency for layer [climbing_gym](#climbing_gym) - - This layer is needed as dependency for layer [climbing_route](#climbing_route) - - This layer is needed as dependency for layer [climbing](#climbing) - - This layer is needed as dependency for layer [maybe_climbing](#maybe_climbing) - - - - -#### Themes using this layer - - - - - - - [climbing](https://mapcomplete.osm.be/climbing) + - This layer is shown at zoomlevel **25** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` @@ -47,13 +32,9 @@ Elements must have the all of following tags to be shown on this layer: - sport=climbing - - climbing!~^route$ - - leisure!~^sports_centre$ - - climbing!~^route_top$ - - climbing!~^route_bottom$ -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5Eroute%24%22%5D%5B%22climbing%22!~%22%5Eroute_top%24%22%5D%5B%22climbing%22!~%22%5Eroute_bottom%24%22%5D%5B%22leisure%22!~%22%5Esports_centre%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -62,351 +43,191 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea) -[](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone) [](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) | [](https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values) [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/climbing:grade:french:max#values) [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) [](https://taginfo.openstreetmap.org/keys/climbing:toprope#values) [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno) [](https://taginfo.openstreetmap.org/keys/climbing:sport#values) [climbing:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:sport) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno) [](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:speed#values) [climbing:speed](https://wiki.openstreetmap.org/wiki/Key:climbing:speed) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno) +[](https://taginfo.openstreetmap.org/keys/climbing:bolts:max#values) [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) -### images +### website -_This tagrendering has no question and is thus read-only_ - - - - - -### minimap - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### Contained routes length hist - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### Contained routes hist - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### Contained_climbing_routes - - - -_This tagrendering has no question and is thus read-only_ - - - -Only visible if `_contained_climbing_routes~^..*$` is shown - - - -### name - - - -The question is **What is the name of this climbing opportunity?** - -This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `{name}` - - - - - **This climbing opportunity doesn't have a name** corresponds with noname=yes - - - - -### Type - - - -The question is **What kind of climbing opportunity is this?** - - - - - - - **A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope** corresponds with climbing=boulder - - **A climbing crag - a single rock or cliff with at least a few climbing routes** corresponds with climbing=crag - - **A climbing area with one or more climbing crags and/or boulders** corresponds with climbing=area - - - - -### Rock type (crag/rock/cliff only) - - - -The question is **What is the rock type here?** - -This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock) -This is rendered with `The rock type is {rock}` - - - - - **Limestone** corresponds with rock=limestone - - -Only visible if `climbing=crag|natural=cliff|natural=bare_rock` is shown - - - -### Website - - - -The question is **Is there a (unofficial) website with more informations (e.g. topos)?** +The question is Is there a (unofficial) website with more informations (e.g. topos)? This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url) -This is rendered with `{url}` -Only visible if `leisure!~^sports_centre$&sport=climbing` is shown +This is rendered with {url} -### Access from containing feature +Only visible if `leisure!~^sports_centre$&sport=climbing` is shown -_This tagrendering has no question and is thus read-only_ +### average_length - - - - **The containing feature states that this is publicly accessible
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=yes - - **The containing feature states that a permit is needed to access
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=permit - - **The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=customers - - **The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=members - - **Not accessible as stated by the containing feature** corresponds with _embedding_feature:access=no - - -Only visible if `_embedding_feature:access~^..*$` is shown - - - -### Access - - - -The question is **Who can access here?** - - - - - - - **Publicly accessible to anyone** corresponds with access=yes - - **You need a permit to access here** corresponds with access=permit - - **Only customers** corresponds with access=customers - - **Only club members** corresponds with access=members - - **Not accessible** corresponds with access=no - - -Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown - - - -### Access description (without _embedding_feature:access:description) - - - -_This tagrendering has no question and is thus read-only_ - -This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) -This is rendered with `{access:description}` - - - -### Avg length? - - - -The question is **What is the (average) length of the routes in meters?** +The question is What is the (average) length of the routes in meters? This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) -This is rendered with `The routes are {canonical(climbing:length)} long on average` -Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown +This is rendered with The routes are {canonical(climbing:length)} long on average -### Difficulty-min + + +### min_difficulty -The question is **What is the grade of the easiest route here, according to the french classification system?** +The question is What is the grade of the easiest route here, according to the french classification system? This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) -This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system` -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown +This is rendered with The lowest grade is {climbing:grade:french:min} according to the french/belgian system -### Difficulty-max + + +### max_difficulty -The question is **What is the highest grade route here, according to the french classification system?** +The question is What is the highest grade route here, according to the french classification system? This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) -This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system` -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown +This is rendered with The highest grade is {climbing:grade:french:max} according to the french/belgian system -### Boldering? +Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown -The question is **Is bouldering possible here?** +### bouldering +The question is Is bouldering possible here? - - **Bouldering is possible here** corresponds with climbing:boulder=yes - - **Bouldering is not possible here** corresponds with climbing:boulder=no - - **Bouldering is possible, allthough there are only a few routes** corresponds with climbing:boulder=limited - - **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_ -Only visible if `climbing:sport=yes|sport=climbing` is shown + - Bouldering is possible here corresponds with `climbing:boulder=yes` + - Bouldering is not possible here corresponds with `climbing:boulder=no` + - Bouldering is possible, allthough there are only a few routes corresponds with `climbing:boulder=limited` + - There are {climbing:boulder} boulder routes corresponds with `climbing:boulder~^..*$` + - This option cannot be chosen as answer -### Toproping? +### toprope -The question is **Is toprope climbing possible here?** +The question is Is toprope climbing possible here? - - **Toprope climbing is possible here** corresponds with climbing:toprope=yes - - **Toprope climbing is not possible here** corresponds with climbing:toprope=no - - **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_ -Only visible if `climbing:sport=yes|sport=climbing` is shown + - Toprope climbing is possible here corresponds with `climbing:toprope=yes` + - Toprope climbing is not possible here corresponds with `climbing:toprope=no` + - There are {climbing:toprope} toprope routes corresponds with `climbing:toprope~^..*$` + - This option cannot be chosen as answer -### Sportclimbing? +### sportclimbing -The question is **Is sport climbing possible here on fixed anchors?** +The question is Is sport climbing possible here on fixed anchors? - - **Sport climbing is possible here** corresponds with climbing:sport=yes - - **Sport climbing is not possible here** corresponds with climbing:sport=no - - **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_ + - Sport climbing is possible here corresponds with `climbing:sport=yes` + - Sport climbing is not possible here corresponds with `climbing:sport=no` + - There are {climbing:sport} sport climbing routes corresponds with `climbing:sport~^..*$` + - This option cannot be chosen as answer -Only visible if `climbing:sport=yes|sport=climbing` is shown -### Traditional climbing? +### trad_climbing -The question is **Is traditional climbing possible here (using own gear e.g. chocks)?** +The question is Is traditional climbing possible here (using own gear e.g. chocks)? - - **Traditional climbing is possible here** corresponds with climbing:traditional=yes - - **Traditional climbing is not possible here** corresponds with climbing:traditional=no - - **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_ + - Traditional climbing is possible here corresponds with `climbing:traditional=yes` + - Traditional climbing is not possible here corresponds with `climbing:traditional=no` + - There are {climbing:traditional} traditional climbing routes corresponds with `climbing:traditional~^..*$` + - This option cannot be chosen as answer -Only visible if `climbing:sport=yes|sport=climbing` is shown +### max_bolts -### Speed climbing? +The question is How many bolts do routes in {title()} have at most? -The question is **Is there a speed climbing wall?** +This rendering asks information about the property [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) +This is rendered with The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without relays and indicates how much quickdraws a climber needs
- - **There is a speed climbing wall** corresponds with climbing:speed=yes - - **There is no speed climbing wall** corresponds with climbing:speed=no - - **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_ +### fee -Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown +The question is Is a fee required to climb here? -### questions +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with A fee of {charge} should be paid for climbing here -_This tagrendering has no question and is thus read-only_ - - -### reviews - - - -_This tagrendering has no question and is thus read-only_ - + - Climbing here is free of charge corresponds with `fee=no` + - Paying a fee is required to climb here corresponds with `fee=yes` -This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json) \ No newline at end of file +This document is autogenerated from [assets/layers/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing/climbing.json) \ No newline at end of file diff --git a/Docs/Layers/climbing_area.md b/Docs/Layers/climbing_area.md new file mode 100644 index 0000000000..c4d4c02fe5 --- /dev/null +++ b/Docs/Layers/climbing_area.md @@ -0,0 +1,246 @@ + + + climbing_area +=============== + + + + + +An area where climbing is possible, e.g. a crag, site, boulder, … Contains aggregation of routes + + + + + + + - This layer is shown at zoomlevel **10** and higher + - This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties) + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - sport=climbing + - climbing!~^route$ + - leisure!~^sports_centre$ + - climbing!=route_top + - climbing!=route_bottom + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5Eroute%24%22%5D%5B%22climbing%22!%3D%22route_top%22%5D%5B%22climbing%22!%3D%22route_bottom%22%5D%5B%22leisure%22!~%22%5Esports_centre%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea) +[](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone) +[](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) +[](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +This tagrendering has no question and is thus read-only + + + + + +### Contained routes length hist + + + +This tagrendering has no question and is thus read-only + + + + + +### Contained routes hist + + + +This tagrendering has no question and is thus read-only + + + + + +### Contained_climbing_routes + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `_contained_climbing_routes~^..*$` is shown + + + +### name + + + +The question is What is the name of this climbing opportunity? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with {name} + + + + + + - This climbing opportunity doesn't have a name corresponds with `noname=yes` + + + + +### Type + + + +The question is What kind of climbing opportunity is this? + + + + + + - A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope corresponds with `climbing=boulder` + - A climbing crag - a single rock or cliff with at least a few climbing routes corresponds with `climbing=crag` + - A climbing area with one or more climbing crags and/or boulders corresponds with `climbing=area` + + + + +### Rock type (crag/rock/cliff only) + + + +The question is What is the rock type here? + +This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock) + +This is rendered with The rock type is {rock} + + + + + + - Limestone corresponds with `rock=limestone` + + +Only visible if `climbing=crag|natural=cliff|natural=bare_rock` is shown + + + +### website + + + +The question is Is there a (unofficial) website with more informations (e.g. topos)? + +This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url) + +This is rendered with {url} + + + +Only visible if `leisure!~^sports_centre$&sport=climbing&sport=climbing` is shown + + + +### fee + + + +The question is Is a fee required to climb here? + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) + +This is rendered with A fee of {charge} should be paid for climbing here + + + + + + - Climbing here is free of charge corresponds with `fee=no` + - Paying a fee is required to climb here corresponds with `fee=yes` + + +Only visible if `sport=climbing` is shown + + + +### bouldering + + + +The question is Is bouldering possible here? + + + + + + - Bouldering is possible here corresponds with `climbing:boulder=yes` + - Bouldering is not possible here corresponds with `climbing:boulder=no` + - Bouldering is possible, allthough there are only a few routes corresponds with `climbing:boulder=limited` + - There are {climbing:boulder} boulder routes corresponds with `climbing:boulder~^..*$` + - This option cannot be chosen as answer + + +Only visible if `sport=climbing` is shown + +This document is autogenerated from [assets/layers/climbing_area/climbing_area.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_area/climbing_area.json) \ No newline at end of file diff --git a/Docs/Layers/climbing_club.md b/Docs/Layers/climbing_club.md index 523c46c6d6..f8b09ec5cf 100644 --- a/Docs/Layers/climbing_club.md +++ b/Docs/Layers/climbing_club.md @@ -15,7 +15,6 @@ A climbing club or organisation - This layer is shown at zoomlevel **10** and higher - - This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties) @@ -27,6 +26,7 @@ A climbing club or organisation - [climbing](https://mapcomplete.osm.be/climbing) + - [personal](https://mapcomplete.osm.be/personal) @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -63,18 +65,6 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | [](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values) [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french:max#values) [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/climbing:toprope#values) [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:sport#values) [climbing:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:sport) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:speed#values) [climbing:speed](https://wiki.openstreetmap.org/wiki/Key:climbing:speed) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno) @@ -83,10 +73,13 @@ attribute | type | values which are supported by this layer -The question is **What is the name of this climbing club or NGO?** +The question is What is the name of this climbing club or NGO? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `{name}` + +This is rendered with {name} + + @@ -94,14 +87,18 @@ This is rendered with `{name}` -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -110,14 +107,18 @@ This is rendered with `{website}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -126,14 +127,18 @@ This is rendered with `{email}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -142,250 +147,12 @@ This is rendered with `{phone}` -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` - - -### Website - - - -The question is **Is there a (unofficial) website with more informations (e.g. topos)?** - -This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url) -This is rendered with `{url}` - -Only visible if `leisure!~^sports_centre$&sport=climbing` is shown - - - -### Access from containing feature - - - -_This tagrendering has no question and is thus read-only_ - - - - - - - **The containing feature states that this is publicly accessible
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=yes - - **The containing feature states that a permit is needed to access
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=permit - - **The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=customers - - **The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=members - - **Not accessible as stated by the containing feature** corresponds with _embedding_feature:access=no - - -Only visible if `_embedding_feature:access~^..*$` is shown - - - -### Access - - - -The question is **Who can access here?** - - - - - - - **Publicly accessible to anyone** corresponds with access=yes - - **You need a permit to access here** corresponds with access=permit - - **Only customers** corresponds with access=customers - - **Only club members** corresponds with access=members - - **Not accessible** corresponds with access=no - - -Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown - - - -### Access description (without _embedding_feature:access:description) - - - -_This tagrendering has no question and is thus read-only_ - -This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) -This is rendered with `{access:description}` - - - -### Avg length? - - - -The question is **What is the (average) length of the routes in meters?** - -This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) -This is rendered with `The routes are {canonical(climbing:length)} long on average` - -Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown - - - -### Difficulty-min - - - -The question is **What is the grade of the easiest route here, according to the french classification system?** - -This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) -This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system` - -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown - - - -### Difficulty-max - - - -The question is **What is the highest grade route here, according to the french classification system?** - -This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) -This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system` - -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown - - - -### Boldering? - - - -The question is **Is bouldering possible here?** - - - - - - - **Bouldering is possible here** corresponds with climbing:boulder=yes - - **Bouldering is not possible here** corresponds with climbing:boulder=no - - **Bouldering is possible, allthough there are only a few routes** corresponds with climbing:boulder=limited - - **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Toproping? - - - -The question is **Is toprope climbing possible here?** - - - - - - - **Toprope climbing is possible here** corresponds with climbing:toprope=yes - - **Toprope climbing is not possible here** corresponds with climbing:toprope=no - - **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Sportclimbing? - - - -The question is **Is sport climbing possible here on fixed anchors?** - - - - - - - **Sport climbing is possible here** corresponds with climbing:sport=yes - - **Sport climbing is not possible here** corresponds with climbing:sport=no - - **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Traditional climbing? - - - -The question is **Is traditional climbing possible here (using own gear e.g. chocks)?** - - - - - - - **Traditional climbing is possible here** corresponds with climbing:traditional=yes - - **Traditional climbing is not possible here** corresponds with climbing:traditional=no - - **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Speed climbing? - - - -The question is **Is there a speed climbing wall?** - - - - - - - **There is a speed climbing wall** corresponds with climbing:speed=yes - - **There is no speed climbing wall** corresponds with climbing:speed=no - - **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_ - - -Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### reviews - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### minimap - - - -_This tagrendering has no question and is thus read-only_ +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} -This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json) \ No newline at end of file +This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_club/climbing_club.json) \ No newline at end of file diff --git a/Docs/Layers/climbing_gym.md b/Docs/Layers/climbing_gym.md index 4505207097..69063818de 100644 --- a/Docs/Layers/climbing_gym.md +++ b/Docs/Layers/climbing_gym.md @@ -15,7 +15,6 @@ A climbing gym - This layer is shown at zoomlevel **10** and higher - - This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties) @@ -27,6 +26,7 @@ A climbing gym - [climbing](https://mapcomplete.osm.be/climbing) + - [personal](https://mapcomplete.osm.be/personal) @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -63,18 +65,14 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | [](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | [](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) | [](https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values) [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/climbing:grade:french:max#values) [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/climbing:toprope#values) [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno) [](https://taginfo.openstreetmap.org/keys/climbing:sport#values) [climbing:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:sport) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno) +[](https://taginfo.openstreetmap.org/keys/climbing:bolts:max#values) [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/climbing:speed#values) [climbing:speed](https://wiki.openstreetmap.org/wiki/Key:climbing:speed) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno) @@ -84,7 +82,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -94,10 +94,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this climbing gym?** +The question is What is the name of this climbing gym? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `{name}` + +This is rendered with {name} + + @@ -105,14 +108,18 @@ This is rendered with `{name}` -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -121,14 +128,18 @@ This is rendered with `{website}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -137,208 +148,160 @@ This is rendered with `{phone}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### fee + + + +The question is Is a fee required to climb here? + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) + +This is rendered with A fee of {charge} should be paid for climbing here + + + + + + - Climbing here is free of charge corresponds with `fee=no` + - Paying a fee is required to climb here corresponds with `fee=yes` + + +Only visible if `sport=climbing` is shown + ### opening_hours -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` - - -### Website - - - -The question is **Is there a (unofficial) website with more informations (e.g. topos)?** - -This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url) -This is rendered with `{url}` - -Only visible if `leisure!~^sports_centre$&sport=climbing` is shown - - - -### Access from containing feature - - - -_This tagrendering has no question and is thus read-only_ +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} - - **The containing feature states that this is publicly accessible
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=yes - - **The containing feature states that a permit is needed to access
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=permit - - **The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=customers - - **The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=members - - **Not accessible as stated by the containing feature** corresponds with _embedding_feature:access=no - - -Only visible if `_embedding_feature:access~^..*$` is shown +### average_length -### Access - - - -The question is **Who can access here?** - - - - - - - **Publicly accessible to anyone** corresponds with access=yes - - **You need a permit to access here** corresponds with access=permit - - **Only customers** corresponds with access=customers - - **Only club members** corresponds with access=members - - **Not accessible** corresponds with access=no - - -Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown - - - -### Access description (without _embedding_feature:access:description) - - - -_This tagrendering has no question and is thus read-only_ - -This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) -This is rendered with `{access:description}` - - - -### Avg length? - - - -The question is **What is the (average) length of the routes in meters?** +The question is What is the (average) length of the routes in meters? This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) -This is rendered with `The routes are {canonical(climbing:length)} long on average` -Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown +This is rendered with The routes are {canonical(climbing:length)} long on average -### Difficulty-min +Only visible if `sport=climbing` is shown -The question is **What is the grade of the easiest route here, according to the french classification system?** +### min_difficulty + + + +The question is What is the grade of the easiest route here, according to the french classification system? This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) -This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system` -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown +This is rendered with The lowest grade is {climbing:grade:french:min} according to the french/belgian system -### Difficulty-max +Only visible if `sport=climbing` is shown -The question is **What is the highest grade route here, according to the french classification system?** +### max_difficulty + + + +The question is What is the highest grade route here, according to the french classification system? This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) -This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system` -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown +This is rendered with The highest grade is {climbing:grade:french:max} according to the french/belgian system -### Boldering? +Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing&sport=climbing` is shown -The question is **Is bouldering possible here?** +### bouldering + + + +The question is Is bouldering possible here? - - **Bouldering is possible here** corresponds with climbing:boulder=yes - - **Bouldering is not possible here** corresponds with climbing:boulder=no - - **Bouldering is possible, allthough there are only a few routes** corresponds with climbing:boulder=limited - - **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_ + - Bouldering is possible here corresponds with `climbing:boulder=yes` + - Bouldering is not possible here corresponds with `climbing:boulder=no` + - Bouldering is possible, allthough there are only a few routes corresponds with `climbing:boulder=limited` + - There are {climbing:boulder} boulder routes corresponds with `climbing:boulder~^..*$` + - This option cannot be chosen as answer -Only visible if `climbing:sport=yes|sport=climbing` is shown +Only visible if `sport=climbing` is shown -### Toproping? +### sportclimbing -The question is **Is toprope climbing possible here?** +The question is Is sport climbing possible here on fixed anchors? - - **Toprope climbing is possible here** corresponds with climbing:toprope=yes - - **Toprope climbing is not possible here** corresponds with climbing:toprope=no - - **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_ + - Sport climbing is possible here corresponds with `climbing:sport=yes` + - Sport climbing is not possible here corresponds with `climbing:sport=no` + - There are {climbing:sport} sport climbing routes corresponds with `climbing:sport~^..*$` + - This option cannot be chosen as answer -Only visible if `climbing:sport=yes|sport=climbing` is shown +Only visible if `sport=climbing` is shown -### Sportclimbing? +### max_bolts -The question is **Is sport climbing possible here on fixed anchors?** +The question is How many bolts do routes in {title()} have at most? + +This rendering asks information about the property [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) + +This is rendered with The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without relays and indicates how much quickdraws a climber needs
- - - - **Sport climbing is possible here** corresponds with climbing:sport=yes - - **Sport climbing is not possible here** corresponds with climbing:sport=no - - **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Traditional climbing? - - - -The question is **Is traditional climbing possible here (using own gear e.g. chocks)?** - - - - - - - **Traditional climbing is possible here** corresponds with climbing:traditional=yes - - **Traditional climbing is not possible here** corresponds with climbing:traditional=no - - **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown +Only visible if `climbing:sport=yes` is shown @@ -346,57 +309,16 @@ Only visible if `climbing:sport=yes|sport=climbing` is shown -The question is **Is there a speed climbing wall?** +The question is Is there a speed climbing wall? - - **There is a speed climbing wall** corresponds with climbing:speed=yes - - **There is no speed climbing wall** corresponds with climbing:speed=no - - **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_ - - -Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### reviews - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### minimap - - - -_This tagrendering has no question and is thus read-only_ - + - There is a speed climbing wall corresponds with `climbing:speed=yes` + - There is no speed climbing wall corresponds with `climbing:speed=no` + - There are {climbing:speed} speed climbing walls corresponds with `climbing:speed~^..*$` + - This option cannot be chosen as answer -This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json) \ No newline at end of file +This document is autogenerated from [assets/layers/climbing_gym/climbing_gym.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_gym/climbing_gym.json) \ No newline at end of file diff --git a/Docs/Layers/climbing_opportunity.md b/Docs/Layers/climbing_opportunity.md new file mode 100644 index 0000000000..d7df6c1e8c --- /dev/null +++ b/Docs/Layers/climbing_opportunity.md @@ -0,0 +1,86 @@ + + + climbing_opportunity +====================== + + + + + +Fallback layer with items on which climbing _might_ be possible. It is loaded when zoomed in a lot, to prevent duplicate items to be added + + + + + + + - This layer is shown at zoomlevel **19** and higher + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=sports_centre|barrier=wall|barrier=retaining_wall|natural=cliff|natural=rock|natural=stone + - + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22retaining_wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22cliff%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22rock%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22stone%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + + + +### climbing-opportunity-name + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `name~^..*$` is shown + + + +### climbing-possible + + + +The question is Is climbing possible here? + + + + + + - Climbing is possible here corresponds with `sport=climbing` + - Climbing is not possible here corresponds with `climbing=no` + - Climbing is not possible here corresponds with `sport!~^climbing$` + - This option cannot be chosen as answer + + +This document is autogenerated from [assets/layers/climbing_opportunity/climbing_opportunity.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_opportunity/climbing_opportunity.json) \ No newline at end of file diff --git a/Docs/Layers/climbing_route.md b/Docs/Layers/climbing_route.md index d465513418..486fd71c8e 100644 --- a/Docs/Layers/climbing_route.md +++ b/Docs/Layers/climbing_route.md @@ -7,14 +7,15 @@ +A single climbing route and its properties. Some properties are derived from the containing features + - This layer is shown at zoomlevel **18** and higher - - This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties) - - This layer is needed as dependency for layer [climbing](#climbing) + - This layer is needed as dependency for layer [climbing_area](#climbing_area) @@ -26,6 +27,7 @@ - [climbing](https://mapcomplete.osm.be/climbing) + - [personal](https://mapcomplete.osm.be/personal) @@ -51,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -63,18 +67,6 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) | [](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values) [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values) [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french:max#values) [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/climbing:toprope#values) [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:sport#values) [climbing:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:sport) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:speed#values) [climbing:speed](https://wiki.openstreetmap.org/wiki/Key:climbing:speed) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno) @@ -83,7 +75,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -93,14 +87,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this climbing route?** +The question is What is the name of this climbing route? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `{name}` + +This is rendered with {name} - - **This climbing route doesn't have a name** corresponds with noname=yes + + + - This climbing route doesn't have a name corresponds with `noname=yes` @@ -109,10 +106,13 @@ This is rendered with `{name}` -The question is **How long is this climbing route (in meters)?** +The question is How long is this climbing route (in meters)? This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) -This is rendered with `This route is {canonical(climbing:length)} long` + +This is rendered with This route is {canonical(climbing:length)} long + + @@ -120,289 +120,59 @@ This is rendered with `This route is {canonical(climbing:length)} long` -The question is **What is the grade of this climbing route according to the french/belgian system?** +The question is What is the grade of this climbing route according to the french/belgian system? This rendering asks information about the property [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) -This is rendered with `The grade is {climbing:grade:french} according to the french/belgian system` + +This is rendered with The grade is {climbing:grade:french} according to the french/belgian system -### Bolts + + +### bolts -The question is **How many bolts does this route have before reaching the anchor?** +The question is How many bolts does this route have before reaching the anchor? This rendering asks information about the property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) -This is rendered with `This route has {climbing:bolts} bolts` - - - - **This route is not bolted** corresponds with climbing:bolted=no_This option cannot be chosen as answer_ - - **This route is not bolted** corresponds with climbing:bolted=no&climbing:bolts= +This is rendered with This route has {climbing:bolts} bolts
This is without relays and indicates how much quickdraws a climber needs
-### Description + + - This route is not bolted corresponds with `climbing:bolted=no` -The question is **Is there other relevant info?** + +### description + + + +The question is Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `

Description


{description}` + +This is rendered with {description} -### Rock type + + +### Rock type via embedded feature -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only This rendering asks information about the property [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) -This is rendered with `The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag` - - -### Website - - - -The question is **Is there a (unofficial) website with more informations (e.g. topos)?** - -This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url) -This is rendered with `{url}` - -Only visible if `leisure!~^sports_centre$&sport=climbing` is shown - - - -### Access from containing feature - - - -_This tagrendering has no question and is thus read-only_ - - - - - - - **The containing feature states that this is publicly accessible
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=yes - - **The containing feature states that a permit is needed to access
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=permit - - **The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=customers - - **The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}** corresponds with _embedding_feature:access=members - - **Not accessible as stated by the containing feature** corresponds with _embedding_feature:access=no - - -Only visible if `_embedding_feature:access~^..*$` is shown - - - -### Access - - - -The question is **Who can access here?** - - - - - - - **Publicly accessible to anyone** corresponds with access=yes - - **You need a permit to access here** corresponds with access=permit - - **Only customers** corresponds with access=customers - - **Only club members** corresponds with access=members - - **Not accessible** corresponds with access=no - - -Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown - - - -### Access description (without _embedding_feature:access:description) - - - -_This tagrendering has no question and is thus read-only_ - -This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) -This is rendered with `{access:description}` - - - -### Avg length? - - - -The question is **What is the (average) length of the routes in meters?** - -This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) -This is rendered with `The routes are {canonical(climbing:length)} long on average` - -Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown - - - -### Difficulty-min - - - -The question is **What is the grade of the easiest route here, according to the french classification system?** - -This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) -This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system` - -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown - - - -### Difficulty-max - - - -The question is **What is the highest grade route here, according to the french classification system?** - -This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) -This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system` - -Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown - - - -### Boldering? - - - -The question is **Is bouldering possible here?** - - - - - - - **Bouldering is possible here** corresponds with climbing:boulder=yes - - **Bouldering is not possible here** corresponds with climbing:boulder=no - - **Bouldering is possible, allthough there are only a few routes** corresponds with climbing:boulder=limited - - **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Toproping? - - - -The question is **Is toprope climbing possible here?** - - - - - - - **Toprope climbing is possible here** corresponds with climbing:toprope=yes - - **Toprope climbing is not possible here** corresponds with climbing:toprope=no - - **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Sportclimbing? - - - -The question is **Is sport climbing possible here on fixed anchors?** - - - - - - - **Sport climbing is possible here** corresponds with climbing:sport=yes - - **Sport climbing is not possible here** corresponds with climbing:sport=no - - **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Traditional climbing? - - - -The question is **Is traditional climbing possible here (using own gear e.g. chocks)?** - - - - - - - **Traditional climbing is possible here** corresponds with climbing:traditional=yes - - **Traditional climbing is not possible here** corresponds with climbing:traditional=no - - **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_ - - -Only visible if `climbing:sport=yes|sport=climbing` is shown - - - -### Speed climbing? - - - -The question is **Is there a speed climbing wall?** - - - - - - - **There is a speed climbing wall** corresponds with climbing:speed=yes - - **There is no speed climbing wall** corresponds with climbing:speed=no - - **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_ - - -Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### reviews - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### minimap - - - -_This tagrendering has no question and is thus read-only_ +This is rendered with The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag -This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json) \ No newline at end of file +This document is autogenerated from [assets/layers/climbing_route/climbing_route.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_route/climbing_route.json) \ No newline at end of file diff --git a/Docs/Layers/cluster_style.md b/Docs/Layers/cluster_style.md index 8e37cae340..444b7596fb 100644 --- a/Docs/Layers/cluster_style.md +++ b/Docs/Layers/cluster_style.md @@ -20,17 +20,6 @@ The style for the clustering in all themes. Enable `debug=true` to peak into clu -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -58,7 +47,9 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +Shows a table with all the tags of the feature + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/crab_address.md b/Docs/Layers/crab_address.md index dd23caa61b..2783931371 100644 --- a/Docs/Layers/crab_address.md +++ b/Docs/Layers/crab_address.md @@ -15,18 +15,7 @@ Address data for Flanders by the governement, suited for import into OpenStreetM - This layer is shown at zoomlevel **0** and higher - - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson` - - - - -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) + - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson` @@ -58,7 +47,7 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/crossings.md b/Docs/Layers/crossings.md index a0ccfb179e..b8451a2e8d 100644 --- a/Docs/Layers/crossings.md +++ b/Docs/Layers/crossings.md @@ -28,6 +28,7 @@ Crossings for pedestrians and cyclists - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) + - [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings) - [personal](https://mapcomplete.osm.be/personal) @@ -54,7 +55,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -76,19 +79,20 @@ attribute | type | values which are supported by this layer -The question is **What kind of crossing is this?** +The question is What kind of crossing is this? - - **Crossing, without traffic lights** corresponds with crossing=uncontrolled - - **Crossing with traffic signals** corresponds with crossing=traffic_signals - - **Zebra crossing** corresponds with crossing=zebra_This option cannot be chosen as answer_ - - **Crossing without crossing markings** corresponds with crossing=unmarked + - Crossing, without traffic lights corresponds with `crossing=uncontrolled` + - Crossing with traffic signals corresponds with `crossing=traffic_signals` + - Zebra crossing corresponds with `crossing=zebra` + - This option cannot be chosen as answer + - Crossing without crossing markings corresponds with `crossing=unmarked` -Only visible if `highway=crossing` is shown +Only visible if `highway=crossing` is shown @@ -96,17 +100,17 @@ Only visible if `highway=crossing` is shown -The question is **Is this is a zebra crossing?** +The question is Is this is a zebra crossing? - - **This is a zebra crossing** corresponds with crossing_ref=zebra - - **This is not a zebra crossing** corresponds with + - This is a zebra crossing corresponds with `crossing_ref=zebra` + - This is not a zebra crossing corresponds with `` -Only visible if `crossing=uncontrolled` is shown +Only visible if `crossing=uncontrolled` is shown @@ -114,17 +118,17 @@ Only visible if `crossing=uncontrolled` is shown -The question is **Is this crossing also for bicycles?** +The question is Is this crossing also for bicycles? - - **A cyclist can use this crossing** corresponds with bicycle=yes - - **A cyclist can not use this crossing** corresponds with bicycle=no + - A cyclist can use this crossing corresponds with `bicycle=yes` + - A cyclist can not use this crossing corresponds with `bicycle=no` -Only visible if `highway=crossing` is shown +Only visible if `highway=crossing` is shown @@ -132,17 +136,17 @@ Only visible if `highway=crossing` is shown -The question is **Does this crossing have an island in the middle?** +The question is Does this crossing have an island in the middle? - - **This crossing has an island in the middle** corresponds with crossing:island=yes - - **This crossing does not have an island in the middle** corresponds with crossing:island=no + - This crossing has an island in the middle corresponds with `crossing:island=yes` + - This crossing does not have an island in the middle corresponds with `crossing:island=no` -Only visible if `highway=crossing` is shown +Only visible if `highway=crossing` is shown @@ -150,18 +154,19 @@ Only visible if `highway=crossing` is shown -The question is **Does this crossing have tactile paving?** +The question is Does this crossing have tactile paving? - - **This crossing has tactile paving** corresponds with tactile_paving=yes - - **This crossing does not have tactile paving** corresponds with tactile_paving=no - - **This crossing has tactile paving, but is not correct** corresponds with tactile_paving=incorrect_This option cannot be chosen as answer_ + - This crossing has tactile paving corresponds with `tactile_paving=yes` + - This crossing does not have tactile paving corresponds with `tactile_paving=no` + - This crossing has tactile paving, but is not correct corresponds with `tactile_paving=incorrect` + - This option cannot be chosen as answer -Only visible if `highway=crossing` is shown +Only visible if `highway=crossing` is shown @@ -169,17 +174,17 @@ Only visible if `highway=crossing` is shown -The question is **Does this traffic light have a button to request green light?** +The question is Does this traffic light have a button to request green light? - - **This traffic light has a button to request green light** corresponds with button_operated=yes - - **This traffic light does not have a button to request green light** corresponds with button_operated=no + - This traffic light has a button to request green light corresponds with `button_operated=yes` + - This traffic light does not have a button to request green light corresponds with `button_operated=no` -Only visible if `highway=traffic_signals|crossing=traffic_signals` is shown +Only visible if `highway=traffic_signals|crossing=traffic_signals` is shown @@ -187,18 +192,18 @@ Only visible if `highway=traffic_signals|crossing=traffic_signals` is shown -The question is **Can a cyclist turn right when the light is red?** +The question is Can a cyclist turn right when the light is red? - - **A cyclist can turn right if the light is red** corresponds with red_turn:right:bicycle=yes - - **A cyclist can turn right if the light is red** corresponds with red_turn:right:bicycle=yes - - **A cyclist can not turn right if the light is red** corresponds with red_turn:right:bicycle=no + - A cyclist can turn right if the light is red corresponds with `red_turn:right:bicycle=yes` + - A cyclist can turn right if the light is red corresponds with `red_turn:right:bicycle=yes` + - A cyclist can not turn right if the light is red corresponds with `red_turn:right:bicycle=no` -Only visible if `highway=traffic_signals` is shown +Only visible if `highway=traffic_signals` is shown @@ -206,17 +211,17 @@ Only visible if `highway=traffic_signals` is shown -The question is **Can a cyclist go straight on when the light is red?** +The question is Can a cyclist go straight on when the light is red? - - **A cyclist can go straight on if the light is red** corresponds with red_turn:straight:bicycle=yes - - **A cyclist can go straight on if the light is red** corresponds with red_turn:straight:bicycle=yes - - **A cyclist can not go straight on if the light is red** corresponds with red_turn:straight:bicycle=no + - A cyclist can go straight on if the light is red corresponds with `red_turn:straight:bicycle=yes` + - A cyclist can go straight on if the light is red corresponds with `red_turn:straight:bicycle=yes` + - A cyclist can not go straight on if the light is red corresponds with `red_turn:straight:bicycle=no` -Only visible if `highway=traffic_signals` is shown +Only visible if `highway=traffic_signals` is shown This document is autogenerated from [assets/layers/crossings/crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crossings/crossings.json) \ No newline at end of file diff --git a/Docs/Layers/cultural_places_without_etymology.md b/Docs/Layers/cultural_places_without_etymology.md index 2168b5cb38..d304a8111d 100644 --- a/Docs/Layers/cultural_places_without_etymology.md +++ b/Docs/Layers/cultural_places_without_etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/cycleways_and_roads.md b/Docs/Layers/cycleways_and_roads.md index 855557557d..c768e9d897 100644 --- a/Docs/Layers/cycleways_and_roads.md +++ b/Docs/Layers/cycleways_and_roads.md @@ -7,7 +7,7 @@ -All infrastructure that someone can cycle over, accompanied with questions about this infrastructure" +All infrastructure that someone can cycle over, accompanied with questions about this infrastructure @@ -17,6 +17,8 @@ All infrastructure that someone can cycle over, accompanied with questions about - This layer is shown at zoomlevel **16** and higher - This layer is needed as dependency for layer [barrier](#barrier) - This layer is needed as dependency for layer [crossings](#crossings) + - This layer is needed as dependency for layer [kerbs](#kerbs) + - This layer is needed as dependency for layer [rainbow_crossings](#rainbow_crossings) @@ -28,7 +30,10 @@ All infrastructure that someone can cycle over, accompanied with questions about - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) + - [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) + - [rainbow_crossings](https://mapcomplete.osm.be/rainbow_crossings) @@ -42,10 +47,10 @@ Elements must have the all of following tags to be shown on this layer: - - highway=cycleway|cycleway=lane|cycleway=shared_lane|cycleway=track|cyclestreet=yes|highway=residential|highway=tertiary|highway=unclassified|highway=primary|highway=secondary|highway=path&bicycle=designated + - highway=cycleway|cycleway=lane|cycleway=shared_lane|cycleway=track|cyclestreet=yes|highway=residential|highway=tertiary|highway=unclassified|highway=primary|highway=secondary|highway=tertiary_link|highway=primary_link|highway=secondary_link|highway=service|highway=footway|highway=pedestrian|highway=living_street|highway=path&bicycle=designated -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22cyclestreet%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22shared_lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22track%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22cycleway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22designated%22%5D%5B%22highway%22%3D%22path%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22cyclestreet%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22shared_lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22track%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22cycleway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary_link%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary_link%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary_link%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22service%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22pedestrian%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22designated%22%5D%5B%22highway%22%3D%22path%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -54,7 +59,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,10 +75,10 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/cycleway:smoothness#values) [cycleway:smoothness](https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable) [](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) [](https://taginfo.openstreetmap.org/keys/smoothness#values) [smoothness](https://wiki.openstreetmap.org/wiki/Key:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable) -[](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [distance](../SpecialInputElements.md#distance) | [](https://taginfo.openstreetmap.org/keys/cycleway:traffic_sign#values) [cycleway:traffic_sign](https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10) [none](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone) [](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10) [NL:G11](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G11) [NL:G12a](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G12a) [NL:G13](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G13) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone) -[](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [distance](../SpecialInputElements.md#distance) | [](https://taginfo.openstreetmap.org/keys/cycleway:separation#values) [cycleway:separation](https://wiki.openstreetmap.org/wiki/Key:cycleway:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb) [](https://taginfo.openstreetmap.org/keys/separation#values) [separation](https://wiki.openstreetmap.org/wiki/Key:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb) @@ -82,18 +89,18 @@ attribute | type | values which are supported by this layer -The question is **What kind of cycleway is here?** +The question is What kind of cycleway is here? - - **There is a shared lane** corresponds with cycleway=shared_lane - - **There is a lane next to the road (separated with paint)** corresponds with cycleway=lane - - **There is a track, but no cycleway drawn separately from this road on the map.** corresponds with cycleway=track - - **There is a separately drawn cycleway** corresponds with cycleway=separate - - **There is no cycleway** corresponds with cycleway=no - - **There is no cycleway** corresponds with cycleway=no + - There is a shared lane corresponds with `cycleway=shared_lane` + - There is a lane next to the road (separated with paint) corresponds with `cycleway=lane` + - There is a track, but no cycleway drawn separately from this road on the map. corresponds with `cycleway=track` + - There is a separately drawn cycleway corresponds with `cycleway=separate` + - There is no cycleway corresponds with `cycleway=no` + - There is no cycleway corresponds with `cycleway=no` @@ -102,16 +109,17 @@ The question is **What kind of cycleway is here?** -The question is **Is this street lit?** +The question is Is this street lit? - - **This street is lit** corresponds with lit=yes - - **This road is not lit** corresponds with lit=no - - **This road is lit at night** corresponds with lit=sunset-sunrise_This option cannot be chosen as answer_ - - **This road is lit 24/7** corresponds with lit=24/7 + - This street is lit corresponds with `lit=yes` + - This road is not lit corresponds with `lit=no` + - This road is lit at night corresponds with `lit=sunset-sunrise` + - This option cannot be chosen as answer + - This road is lit 24/7 corresponds with `lit=24/7` @@ -120,15 +128,15 @@ The question is **Is this street lit?** -The question is **Is this a cyclestreet?** +The question is Is this a cyclestreet? - - **This is a cyclestreet, and a 30km/h zone.** corresponds with cyclestreet=yes - - **This is a cyclestreet** corresponds with cyclestreet=yes - - **This is not a cyclestreet.** corresponds with + - This is a cyclestreet, and a 30km/h zone. corresponds with `cyclestreet=yes` + - This is a cyclestreet corresponds with `cyclestreet=yes` + - This is not a cyclestreet. corresponds with `` @@ -137,18 +145,21 @@ The question is **Is this a cyclestreet?** -The question is **What is the maximum speed in this street?** +The question is What is the maximum speed in this street? This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) -This is rendered with `The maximum speed on this road is {maxspeed} km/h` + +This is rendered with The maximum speed on this road is {maxspeed} km/h - - **The maximum speed is 20 km/h** corresponds with maxspeed=20 - - **The maximum speed is 30 km/h** corresponds with maxspeed=30 - - **The maximum speed is 50 km/h** corresponds with maxspeed=50 - - **The maximum speed is 70 km/h** corresponds with maxspeed=70 - - **The maximum speed is 90 km/h** corresponds with maxspeed=90 + + + - The maximum speed is 20 km/h corresponds with `maxspeed=20` + - The maximum speed is 30 km/h corresponds with `maxspeed=30` + - The maximum speed is 50 km/h corresponds with `maxspeed=50` + - The maximum speed is 70 km/h corresponds with `maxspeed=70` + - The maximum speed is 90 km/h corresponds with `maxspeed=90` @@ -157,29 +168,35 @@ This is rendered with `The maximum speed on this road is {maxspeed} km/h` -The question is **What is the surface of the cycleway made from?** +The question is What is the surface of the cycleway made from? This rendering asks information about the property [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface) -This is rendered with `This cyleway is made of {cycleway:surface}` + +This is rendered with This cyleway is made of {cycleway:surface} - - **This cycleway is unpaved** corresponds with cycleway:surface=unpaved_This option cannot be chosen as answer_ - - **This cycleway is paved** corresponds with cycleway:surface=paved_This option cannot be chosen as answer_ - - **This cycleway is made of asphalt** corresponds with cycleway:surface=asphalt - - **This cycleway is made of smooth paving stones** corresponds with cycleway:surface=paving_stones - - **This cycleway is made of concrete** corresponds with cycleway:surface=concrete - - **This cycleway is made of cobblestone (unhewn or sett)** corresponds with cycleway:surface=cobblestone_This option cannot be chosen as answer_ - - **This cycleway is made of raw, natural cobblestone** corresponds with cycleway:surface=unhewn_cobblestone - - **This cycleway is made of flat, square cobblestone** corresponds with cycleway:surface=sett - - **This cycleway is made of wood** corresponds with cycleway:surface=wood - - **This cycleway is made of gravel** corresponds with cycleway:surface=gravel - - **This cycleway is made of fine gravel** corresponds with cycleway:surface=fine_gravel - - **This cycleway is made of pebblestone** corresponds with cycleway:surface=pebblestone - - **This cycleway is made from raw ground** corresponds with cycleway:surface=ground -Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown + - This cycleway is unpaved corresponds with `cycleway:surface=unpaved` + - This option cannot be chosen as answer + - This cycleway is paved corresponds with `cycleway:surface=paved` + - This option cannot be chosen as answer + - This cycleway is made of asphalt corresponds with `cycleway:surface=asphalt` + - This cycleway is made of smooth paving stones corresponds with `cycleway:surface=paving_stones` + - This cycleway is made of concrete corresponds with `cycleway:surface=concrete` + - This cycleway is made of cobblestone (unhewn or sett) corresponds with `cycleway:surface=cobblestone` + - This option cannot be chosen as answer + - This cycleway is made of raw, natural cobblestone corresponds with `cycleway:surface=unhewn_cobblestone` + - This cycleway is made of flat, square cobblestone corresponds with `cycleway:surface=sett` + - This cycleway is made of wood corresponds with `cycleway:surface=wood` + - This cycleway is made of gravel corresponds with `cycleway:surface=gravel` + - This cycleway is made of fine gravel corresponds with `cycleway:surface=fine_gravel` + - This cycleway is made of pebblestone corresponds with `cycleway:surface=pebblestone` + - This cycleway is made from raw ground corresponds with `cycleway:surface=ground` + + +Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown @@ -187,23 +204,23 @@ Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown -The question is **What is the smoothness of this cycleway?** +The question is What is the smoothness of this cycleway? - - **Usable for thin rollers: rollerblade, skateboard** corresponds with cycleway:smoothness=excellent - - **Usable for thin wheels: racing bike** corresponds with cycleway:smoothness=good - - **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with cycleway:smoothness=intermediate - - **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with cycleway:smoothness=bad - - **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with cycleway:smoothness=very_bad - - **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with cycleway:smoothness=horrible - - **Usable for specialized off-road vehicles: tractor, ATV** corresponds with cycleway:smoothness=very_horrible - - **Impassable / No wheeled vehicle** corresponds with cycleway:smoothness=impassable + - Usable for thin rollers: rollerblade, skateboard corresponds with `cycleway:smoothness=excellent` + - Usable for thin wheels: racing bike corresponds with `cycleway:smoothness=good` + - Usable for normal wheels: city bike, wheelchair, scooter corresponds with `cycleway:smoothness=intermediate` + - Usable for robust wheels: trekking bike, car, rickshaw corresponds with `cycleway:smoothness=bad` + - Usable for vehicles with high clearance: light duty off-road vehicle corresponds with `cycleway:smoothness=very_bad` + - Usable for off-road vehicles: heavy duty off-road vehicle corresponds with `cycleway:smoothness=horrible` + - Usable for specialized off-road vehicles: tractor, ATV corresponds with `cycleway:smoothness=very_horrible` + - Impassable / No wheeled vehicle corresponds with `cycleway:smoothness=impassable` -Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown +Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown @@ -211,26 +228,32 @@ Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown -The question is **What is the surface of the street made from?** +The question is What is the surface of the street made from? This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) -This is rendered with `This road is made of {surface}` + +This is rendered with This road is made of {surface} - - **This cycleway is unhardened** corresponds with surface=unpaved_This option cannot be chosen as answer_ - - **This cycleway is paved** corresponds with surface=paved_This option cannot be chosen as answer_ - - **This cycleway is made of asphalt** corresponds with surface=asphalt - - **This cycleway is made of smooth paving stones** corresponds with surface=paving_stones - - **This cycleway is made of concrete** corresponds with surface=concrete - - **This cycleway is made of cobblestone (unhewn or sett)** corresponds with surface=cobblestone_This option cannot be chosen as answer_ - - **This cycleway is made of raw, natural cobblestone** corresponds with surface=unhewn_cobblestone - - **This cycleway is made of flat, square cobblestone** corresponds with surface=sett - - **This cycleway is made of wood** corresponds with surface=wood - - **This cycleway is made of gravel** corresponds with surface=gravel - - **This cycleway is made of fine gravel** corresponds with surface=fine_gravel - - **This cycleway is made of pebblestone** corresponds with surface=pebblestone - - **This cycleway is made from raw ground** corresponds with surface=ground + + + - This cycleway is unhardened corresponds with `surface=unpaved` + - This option cannot be chosen as answer + - This cycleway is paved corresponds with `surface=paved` + - This option cannot be chosen as answer + - This cycleway is made of asphalt corresponds with `surface=asphalt` + - This cycleway is made of smooth paving stones corresponds with `surface=paving_stones` + - This cycleway is made of concrete corresponds with `surface=concrete` + - This cycleway is made of cobblestone (unhewn or sett) corresponds with `surface=cobblestone` + - This option cannot be chosen as answer + - This cycleway is made of raw, natural cobblestone corresponds with `surface=unhewn_cobblestone` + - This cycleway is made of flat, square cobblestone corresponds with `surface=sett` + - This cycleway is made of wood corresponds with `surface=wood` + - This cycleway is made of gravel corresponds with `surface=gravel` + - This cycleway is made of fine gravel corresponds with `surface=fine_gravel` + - This cycleway is made of pebblestone corresponds with `surface=pebblestone` + - This cycleway is made from raw ground corresponds with `surface=ground` @@ -239,23 +262,23 @@ This is rendered with `This road is made of {surface}` -The question is **What is the smoothness of this street?** +The question is What is the smoothness of this street? - - **Usable for thin rollers: rollerblade, skateboard** corresponds with smoothness=excellent - - **Usable for thin wheels: racing bike** corresponds with smoothness=good - - **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with smoothness=intermediate - - **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with smoothness=bad - - **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with smoothness=very_bad - - **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with smoothness=horrible - - **Usable for specialized off-road vehicles: tractor, ATV** corresponds with smoothness=very_horrible - - **Impassable / No wheeled vehicle** corresponds with smoothness=impassable + - Usable for thin rollers: rollerblade, skateboard corresponds with `smoothness=excellent` + - Usable for thin wheels: racing bike corresponds with `smoothness=good` + - Usable for normal wheels: city bike, wheelchair, scooter corresponds with `smoothness=intermediate` + - Usable for robust wheels: trekking bike, car, rickshaw corresponds with `smoothness=bad` + - Usable for vehicles with high clearance: light duty off-road vehicle corresponds with `smoothness=very_bad` + - Usable for off-road vehicles: heavy duty off-road vehicle corresponds with `smoothness=horrible` + - Usable for specialized off-road vehicles: tractor, ATV corresponds with `smoothness=very_horrible` + - Impassable / No wheeled vehicle corresponds with `smoothness=impassable` -Only visible if `cycleway=no|highway=cycleway` is shown +Only visible if `cycleway=no|highway=cycleway` is shown @@ -263,10 +286,13 @@ Only visible if `cycleway=no|highway=cycleway` is shown -The question is **What is the carriage width of this road (in meters)?
This is measured curb to curb and thus includes the width of parallell parking lanes** +The question is What is the carriage width of this road (in meters)?
This is measured curb to curb and thus includes the width of parallell parking lanes This rendering asks information about the property [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) -This is rendered with `The carriage width of this road is {width:carriageway}m` + +This is rendered with The carriage width of this road is {width:carriageway}m + + @@ -274,20 +300,21 @@ This is rendered with `The carriage width of this road is {width:carriag -The question is **What traffic sign does this cycleway have?** +The question is What traffic sign does this cycleway have? - - **Compulsory cycleway** corresponds with cycleway:traffic_sign=BE:D7 - - **Compulsory cycleway (with supplementary sign)
** corresponds with cycleway:traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_ - - **Segregated foot/cycleway** corresponds with cycleway:traffic_sign=BE:D9 - - **Unsegregated foot/cycleway** corresponds with cycleway:traffic_sign=BE:D10 - - **No traffic sign present** corresponds with cycleway:traffic_sign=none + - Compulsory cycleway corresponds with `cycleway:traffic_sign=BE:D7` + - Compulsory cycleway (with supplementary sign)
corresponds with `cycleway:traffic_sign~^BE:D7;.*$` + - This option cannot be chosen as answer + - Segregated foot/cycleway corresponds with `cycleway:traffic_sign=BE:D9` + - Unsegregated foot/cycleway corresponds with `cycleway:traffic_sign=BE:D10` + - No traffic sign present corresponds with `cycleway:traffic_sign=none` -Only visible if `cycleway=lane|cycleway=track&_country=be` is shown +Only visible if `cycleway=lane|cycleway=track&_country=be` is shown @@ -295,23 +322,24 @@ Only visible if `cycleway=lane|cycleway=track&_country=be` is shown -The question is **What traffic sign does this cycleway have?** +The question is What traffic sign does this cycleway have? - - **Compulsory cycleway** corresponds with traffic_sign=BE:D7 - - **Compulsory cycleway (with supplementary sign)
** corresponds with traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_ - - **Segregated foot/cycleway** corresponds with traffic_sign=BE:D9 - - **Unsegregated foot/cycleway** corresponds with traffic_sign=BE:D10 - - **Compulsory cycleway** corresponds with traffic_sign=NL:G11 - - **Compulsory (moped)cycleway** corresponds with traffic_sign=NL:G12a - - **Non-compulsory cycleway** corresponds with traffic_sign=NL:G13 - - **No traffic sign present** corresponds with traffic_sign=none + - Compulsory cycleway corresponds with `traffic_sign=BE:D7` + - Compulsory cycleway (with supplementary sign)
corresponds with `traffic_sign~^BE:D7;.*$` + - This option cannot be chosen as answer + - Segregated foot/cycleway corresponds with `traffic_sign=BE:D9` + - Unsegregated foot/cycleway corresponds with `traffic_sign=BE:D10` + - Compulsory cycleway corresponds with `traffic_sign=NL:G11` + - Compulsory (moped)cycleway corresponds with `traffic_sign=NL:G12a` + - Non-compulsory cycleway corresponds with `traffic_sign=NL:G13` + - No traffic sign present corresponds with `traffic_sign=none` -Only visible if `highway=cycleway|highway=path&_country=be|_country=nl` is shown +Only visible if `highway=cycleway|highway=path&_country=be|_country=nl` is shown @@ -319,22 +347,22 @@ Only visible if `highway=cycleway|highway=path&_country=be|_country=nl` is shown -The question is **Does the traffic sign D7 () have a supplementary sign?** +The question is Does the traffic sign D7 () have a supplementary sign? - - **Mopeds must use the cycleway** corresponds with cycleway:traffic_sign=BE:D7;BE:M6 - - **Speedpedelecs must use the cycleway** corresponds with cycleway:traffic_sign=BE:D7;BE:M13 - - **Mopeds and speedpedelecs must use the cycleway** corresponds with cycleway:traffic_sign=BE:D7;BE:M14 - - **Mopeds are not allowed** corresponds with cycleway:traffic_sign=BE:D7;BE:M7 - - **Speedpedelecs are not allowed** corresponds with cycleway:traffic_sign=BE:D7;BE:M15 - - **Mopeds and speedpedelecs are not allowed** corresponds with cycleway:traffic_sign=BE:D7;BE:M16 - - **No supplementary traffic sign present** corresponds with cycleway:traffic_sign:supplementary=none + - Mopeds must use the cycleway corresponds with `cycleway:traffic_sign=BE:D7;BE:M6` + - Speedpedelecs must use the cycleway corresponds with `cycleway:traffic_sign=BE:D7;BE:M13` + - Mopeds and speedpedelecs must use the cycleway corresponds with `cycleway:traffic_sign=BE:D7;BE:M14` + - Mopeds are not allowed corresponds with `cycleway:traffic_sign=BE:D7;BE:M7` + - Speedpedelecs are not allowed corresponds with `cycleway:traffic_sign=BE:D7;BE:M15` + - Mopeds and speedpedelecs are not allowed corresponds with `cycleway:traffic_sign=BE:D7;BE:M16` + - No supplementary traffic sign present corresponds with `cycleway:traffic_sign:supplementary=none` -Only visible if `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^BE:D7;.*$` is shown +Only visible if `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^BE:D7;.*$` is shown @@ -342,12 +370,15 @@ Only visible if `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^BE:D7;.*$` i -The question is **How wide is the gap between the cycleway and the road?** +The question is How wide is the gap between the cycleway and the road? This rendering asks information about the property [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) -This is rendered with `The buffer besides this cycleway is {cycleway:buffer} m` -Only visible if `cycleway=track|cycleway=lane` is shown +This is rendered with The buffer besides this cycleway is {cycleway:buffer} m + + + +Only visible if `cycleway=track|cycleway=lane` is shown @@ -355,19 +386,19 @@ Only visible if `cycleway=track|cycleway=lane` is shown -The question is **How is this cycleway separated from the road?** +The question is How is this cycleway separated from the road? - - **This cycleway is separated by a dashed line** corresponds with cycleway:separation=dashed_line - - **This cycleway is separated by a solid line** corresponds with cycleway:separation=solid_line - - **This cycleway is separated by a parking lane** corresponds with cycleway:separation=parking_lane - - **This cycleway is separated by a kerb** corresponds with cycleway:separation=kerb + - This cycleway is separated by a dashed line corresponds with `cycleway:separation=dashed_line` + - This cycleway is separated by a solid line corresponds with `cycleway:separation=solid_line` + - This cycleway is separated by a parking lane corresponds with `cycleway:separation=parking_lane` + - This cycleway is separated by a kerb corresponds with `cycleway:separation=kerb` -Only visible if `cycleway=track|cycleway=lane` is shown +Only visible if `cycleway=track|cycleway=lane` is shown @@ -375,18 +406,18 @@ Only visible if `cycleway=track|cycleway=lane` is shown -The question is **How is this cycleway separated from the road?** +The question is How is this cycleway separated from the road? - - **This cycleway is separated by a dashed line** corresponds with separation=dashed_line - - **This cycleway is separated by a solid line** corresponds with separation=solid_line - - **This cycleway is separated by a parking lane** corresponds with separation=parking_lane - - **This cycleway is separated by a kerb** corresponds with separation=kerb + - This cycleway is separated by a dashed line corresponds with `separation=dashed_line` + - This cycleway is separated by a solid line corresponds with `separation=solid_line` + - This cycleway is separated by a parking lane corresponds with `separation=parking_lane` + - This cycleway is separated by a kerb corresponds with `separation=kerb` -Only visible if `highway=cycleway|highway=path` is shown +Only visible if `highway=cycleway|highway=path` is shown This document is autogenerated from [assets/layers/cycleways_and_roads/cycleways_and_roads.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cycleways_and_roads/cycleways_and_roads.json) \ No newline at end of file diff --git a/Docs/Layers/defibrillator.md b/Docs/Layers/defibrillator.md index 8781ff0c54..4325027ecf 100644 --- a/Docs/Layers/defibrillator.md +++ b/Docs/Layers/defibrillator.md @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -82,7 +84,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -92,14 +96,14 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is this defibrillator located indoors?** +The question is Is this defibrillator located indoors? - - **This defibrillator is located indoors** corresponds with indoor=yes - - **This defibrillator is located outdoors** corresponds with indoor=no + - This defibrillator is located indoors corresponds with `indoor=yes` + - This defibrillator is located outdoors corresponds with `indoor=no` @@ -108,18 +112,22 @@ The question is **Is this defibrillator located indoors?** -The question is **Is this defibrillator freely accessible?** +The question is Is this defibrillator freely accessible? This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) -This is rendered with `Access is {access}` + +This is rendered with Access is {access} - - **Publicly accessible** corresponds with access=yes - - **Publicly accessible** corresponds with access=public_This option cannot be chosen as answer_ - - **Only accessible to customers** corresponds with access=customers - - **Not accessible to the general public (e.g. only accesible to staff, the owners, ...)** corresponds with access=private - - **Not accessible, possibly only for professional use** corresponds with access=no + + + - Publicly accessible corresponds with `access=yes` + - Publicly accessible corresponds with `access=public` + - This option cannot be chosen as answer + - Only accessible to customers corresponds with `access=customers` + - Not accessible to the general public (e.g. only accesible to staff, the owners, …) corresponds with `access=private` + - Not accessible, possibly only for professional use corresponds with `access=no` @@ -128,19 +136,21 @@ This is rendered with `Access is {access}` -The question is **Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?** +The question is Is this a a regular automatic defibrillator or a manual defibrillator for professionals only? - - **There is no info about the type of device** corresponds with _This option cannot be chosen as answer_ - - **This is a manual defibrillator for professionals** corresponds with defibrillator=manual - - **This is a normal automatic defibrillator** corresponds with defibrillator=automatic - - **This is a special type of defibrillator: {defibrillator}** corresponds with defibrillator~^..*$_This option cannot be chosen as answer_ + - There is no info about the type of device corresponds with `` + - This option cannot be chosen as answer + - This is a manual defibrillator for professionals corresponds with `defibrillator=manual` + - This is a normal automatic defibrillator corresponds with `defibrillator=automatic` + - This is a special type of defibrillator: {defibrillator} corresponds with `defibrillator~^..*$` + - This option cannot be chosen as answer -Only visible if `access=no` is shown +Only visible if `access=no` is shown @@ -148,18 +158,21 @@ Only visible if `access=no` is shown -The question is **On which floor is this defibrillator located?** +The question is On which floor is this defibrillator located? This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) -This is rendered with `This defibrillator is on floor {level}` + +This is rendered with This defibrillator is on floor {level} - - **This defibrillator is on the ground floor** corresponds with level=0 - - **This defibrillator is on the first floor** corresponds with level=1 -Only visible if `indoor=yes` is shown + - This defibrillator is on the ground floor corresponds with `level=0` + - This defibrillator is on the first floor corresponds with `level=1` + + +Only visible if `indoor=yes` is shown @@ -167,10 +180,13 @@ Only visible if `indoor=yes` is shown -The question is **Please give some explanation on where the defibrillator can be found (in the local language)** +The question is Please give some explanation on where the defibrillator can be found (in the local language) This rendering asks information about the property [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) -This is rendered with `Extra information about the location (in the local languagel):
{defibrillator:location}` + +This is rendered with Extra information about the location (in the local languagel):
{defibrillator:location} + + @@ -178,10 +194,13 @@ This is rendered with `Extra information about the location (in the local lan -The question is **Please give some explanation on where the defibrillator can be found (in English)** +The question is Please give some explanation on where the defibrillator can be found (in English) This rendering asks information about the property [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) -This is rendered with `Extra information about the location (in English):
{defibrillator:location:en}` + +This is rendered with Extra information about the location (in English):
{defibrillator:location:en} + + @@ -189,10 +208,13 @@ This is rendered with `Extra information about the location (in English): -The question is **Please give some explanation on where the defibrillator can be found (in French)** +The question is Please give some explanation on where the defibrillator can be found (in French) This rendering asks information about the property [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) -This is rendered with `Extra information about the location (in French):
{defibrillator:location:fr}` + +This is rendered with Extra information about the location (in French):
{defibrillator:location:fr} + + @@ -200,16 +222,16 @@ This is rendered with `Extra information about the location (in French):< -The question is **Is this place accessible with a wheelchair?** +The question is Is this place accessible with a wheelchair? - - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated - - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes - - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited - - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` @@ -218,10 +240,13 @@ The question is **Is this place accessible with a wheelchair?** -The question is **What is the official identification number of the device? (if visible on device)** +The question is What is the official identification number of the device? (if visible on device) This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) -This is rendered with `Official identification number of the device: {ref}` + +This is rendered with Official identification number of the device: {ref} + + @@ -229,10 +254,13 @@ This is rendered with `Official identification number of the device: {ref}{email}` + +This is rendered with Email for questions about this defibrillator: {email} + + @@ -240,10 +268,13 @@ This is rendered with `Email for questions about this defibrillator: {phone}` + +This is rendered with Telephone for questions about this defibrillator: {phone} + + @@ -251,14 +282,17 @@ This is rendered with `Telephone for questions about this defibrillator: opening_hours=24/7 + + + - 24/7 opened (including holidays) corresponds with `opening_hours=24/7` @@ -267,10 +301,13 @@ This is rendered with `{opening_hours_table(opening_hours)}` -The question is **Is there any useful information for users that you haven't been able to describe above? (leave blank if no)** +The question is Is there any useful information for users that you haven't been able to describe above? (leave blank if no) This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `Additional information: {description}` + +This is rendered with Additional information: {description} + + @@ -278,14 +315,17 @@ This is rendered with `Additional information: {description}` -The question is **When was this defibrillator last surveyed?** +The question is When was this defibrillator last surveyed? This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) -This is rendered with `This defibrillator was last surveyed on {survey:date}` + +This is rendered with This defibrillator was last surveyed on {survey:date} - - **Checked today!** corresponds with survey:date= + + + - Checked today! corresponds with `survey:date=` @@ -294,9 +334,12 @@ This is rendered with `This defibrillator was last surveyed on {survey:date}` -The question is **Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)** +The question is Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts) This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) -This is rendered with `Extra information for OpenStreetMap experts: {fixme}` + +This is rendered with Extra information for OpenStreetMap experts: {fixme} + + This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/defibrillator/defibrillator.json) \ No newline at end of file diff --git a/Docs/Layers/doctors.md b/Docs/Layers/doctors.md new file mode 100644 index 0000000000..a9fd89ca3a --- /dev/null +++ b/Docs/Layers/doctors.md @@ -0,0 +1,196 @@ + + + doctors +========= + + + + + +This layer shows doctor offices, dentists and other healthcare facilities + + + + + + + - This layer is shown at zoomlevel **13** and higher + + + + +#### Themes using this layer + + + + + + - [healthcare](https://mapcomplete.osm.be/healthcare) + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=doctors|amenity=dentist|healthcare=physiotherapist + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22doctors%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22dentist%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22healthcare%22%3D%22physiotherapist%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/healthcare:speciality#values) [healthcare:speciality](https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality) | [string](../SpecialInputElements.md#string) | [general](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgeneral) [gynaecology](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgynaecology) [psychiatry](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpsychiatry) [paediatrics](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpaediatrics) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### opening_hours + + + +The question is What are the opening hours of {title()}? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### name + + + +The question is What is the name of this doctors place? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This doctors place is called {name} + + + + + +### specialty + + + +The question is What is this doctor specialized in? + +This rendering asks information about the property [healthcare:speciality](https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality) + +This is rendered with This doctor is specialized in {healthcare:speciality} + + + + + + - This is a general practitioner corresponds with `healthcare:speciality=general` + - This is a gynaecologist corresponds with `healthcare:speciality=gynaecology` + - This is a psychiatrist corresponds with `healthcare:speciality=psychiatry` + - This is a paediatrician corresponds with `healthcare:speciality=paediatrics` + + +Only visible if `amenity=doctors` is shown + +This document is autogenerated from [assets/layers/doctors/doctors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/doctors/doctors.json) \ No newline at end of file diff --git a/Docs/Layers/dogfoodb.md b/Docs/Layers/dogfoodb.md new file mode 100644 index 0000000000..f907e79201 --- /dev/null +++ b/Docs/Layers/dogfoodb.md @@ -0,0 +1,529 @@ + + + dogfoodb +========== + + + + + +A layer showing restaurants and fast-food amenities (with a special rendering for friteries) + + + + + + + - This layer is shown at zoomlevel **12** and higher + + + + +#### Themes using this layer + + + + + + - [pets](https://mapcomplete.osm.be/pets) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=restaurant|amenity=cafe + - dog=unleashed|dog=leashed|dog=yes + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22unleashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22leashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22unleashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22leashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) +[](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) +[](https://taginfo.openstreetmap.org/keys/delivery#values) [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) +[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) +[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) +[](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) +[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) +[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) +[](https://taginfo.openstreetmap.org/keys/friture:oil#values) [friture:oil](https://wiki.openstreetmap.org/wiki/Key:friture:oil) | Multiple choice | [vegetable](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable) [animal](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal) +[](https://taginfo.openstreetmap.org/keys/reusable_packaging:accept#values) [reusable_packaging:accept](https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly) +[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) +[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### Name + + + +The question is What is the name of this restaurant? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with The name of this restaurant is {name} + + + + + +### Fastfood vs restaurant + + + +The question is What type of business is this? + + + + + + - This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional. corresponds with `amenity=fast_food` + - A restaurant, focused on creating a nice experience where one is served at the table corresponds with `amenity=restaurant` + + + + +### opening_hours + + + +The question is What are the opening hours of {title()}? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### payment-options + + + +The question is Which methods of payment are accepted here? + + + + + + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + + + + +### wheelchair-access + + + +The question is Is this place accessible with a wheelchair? + + + + + + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` + + + + +### Cuisine + + + +The question is Which food is served here? + +This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) + +This is rendered with This place mostly serves {cuisine} + + + + + + - This is a pizzeria corresponds with `cuisine=pizza` + - This is a friture corresponds with `cuisine=friture` + - Mainly serves pasta corresponds with `cuisine=pasta` + - This is kebab shop corresponds with `cuisine=kebab` + - This is a sandwichbar corresponds with `cuisine=sandwich` + - Burgers are served here corresponds with `cuisine=burger` + - Sushi is served here corresponds with `cuisine=sushi` + - Coffee is served here corresponds with `cuisine=coffee` + - This is an italian restaurant (which serves more then pasta and pizza) corresponds with `cuisine=italian` + - French dishes are served here corresponds with `cuisine=french` + - Chinese dishes are served here corresponds with `cuisine=chinese` + - Greek dishes are served here corresponds with `cuisine=greek` + - Indian dishes are served here corresponds with `cuisine=indian` + - Turkish dishes are served here corresponds with `cuisine=turkish` + - Thai dishes are served here corresponds with `cuisine=thai` + + + + +### Takeaway + + + +The question is Does this place offer take-away? + + + + + + - This is a take-away only business corresponds with `takeaway=only` + - Take-away is possible here corresponds with `takeaway=yes` + - Take-away is not possible here corresponds with `takeaway=no` + + + + +### delivery + + + +The question is Delivers {title()} their food at home? + + + + + + - This business does home delivery (eventually via a third party) corresponds with `delivery=yes` + - This business does not deliver at home corresponds with `delivery=no` + + + + +### Vegetarian (no friture) + + + +The question is Does this restaurant have a vegetarian option? + + + + + + - No vegetarian options are available corresponds with `diet:vegetarian=no` + - Some vegetarian options are available corresponds with `diet:vegetarian=limited` + - Vegetarian options are available corresponds with `diet:vegetarian=yes` + - All dishes are vegetarian corresponds with `diet:vegetarian=only` + + + + +### Vegan (no friture) + + + +The question is Does this business serve vegan meals? + + + + + + - No vegan options available corresponds with `diet:vegan=no` + - Some vegan options are available corresponds with `diet:vegan=limited` + - Vegan options are available corresponds with `diet:vegan=yes` + - All dishes are vegan corresponds with `diet:vegan=only` + + + + +### halal (no friture) + + + +The question is Does this restaurant offer a halal menu? + + + + + + - There are no halal options available corresponds with `diet:halal=no` + - There is a small halal menu corresponds with `diet:halal=limited` + - There is a halal menu corresponds with `diet:halal=yes` + - Only halal options are available corresponds with `diet:halal=only` + + + + +### friture-vegetarian + + + +The question is Does this fries shop have vegetarian snacks? + + + + + + - Vegetarian snacks are available corresponds with `diet:vegetarian=yes` + - Only a small selection of snacks are vegetarian corresponds with `diet:vegetarian=limited` + - No vegetarian snacks are available corresponds with `diet:vegetarian=no` + + +Only visible if `cuisine=friture` is shown + + + +### friture-vegan + + + +The question is Does this fries shop have vegan snacks? + + + + + + - Vegan snacks are available corresponds with `diet:vegan=yes` + - A small selection of vegan snacks are available corresponds with `diet:vegan=limited` + - No vegan snacks are available corresponds with `diet:vegan=no` + + +Only visible if `cuisine=friture` is shown + + + +### friture-oil + + + +The question is Does this fries shop use vegetable or animal oil for cooking? + + + + + + - The frying is done with vegetable oil corresponds with `friture:oil=vegetable` + - The frying is done with animal oil corresponds with `friture:oil=animal` + + +Only visible if `cuisine=friture` is shown + + + +### friture-take-your-container + + + +The question is If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
+ + + + + + - You can bring your own containers to get your order, saving on single-use packaging material and thus waste corresponds with `reusable_packaging:accept=yes` + - Bringing your own container is not allowed corresponds with `reusable_packaging:accept=no` + - You must bring your own container to order here. corresponds with `reusable_packaging:accept=only` + + +Only visible if `cuisine=friture` is shown + + + +### service:electricity + + + +The question is Does this amenity have electrical outlets, available to customers when they are inside? + + + + + + - There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=yes` + - There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=limited` + - There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `service:electricity=ask` + - There are a no domestic sockets available to customers seated indoors corresponds with `service:electricity=no` + + + + +### dog-access + + + +The question is Are dogs allowed in this business? + + + + + + - Dogs are allowed corresponds with `dog=yes` + - Dogs are not allowed corresponds with `dog=no` + - Dogs are allowed, but they have to be leashed corresponds with `dog=leashed` + - Dogs are allowed and can run around freely corresponds with `dog=unleashed` + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + + + + + +### questions + + + +Show the images block at this location + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only + + + +This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json) \ No newline at end of file diff --git a/Docs/Layers/dogpark.md b/Docs/Layers/dogpark.md new file mode 100644 index 0000000000..60f6eb4dea --- /dev/null +++ b/Docs/Layers/dogpark.md @@ -0,0 +1,148 @@ + + + dogpark +========= + + + + + +A layer showing dogparks, which are areas where dog are allowed to run without a leash + + + + + + + - This layer is shown at zoomlevel **10** and higher + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [pets](https://mapcomplete.osm.be/pets) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=dog_park|leisure=park&dog=unleashed + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22dog_park%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22dog%22%3D%22unleashed%22%5D%5B%22leisure%22%3D%22park%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [fence](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence) [no](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dno) +[](https://taginfo.openstreetmap.org/keys/small_dog#values) [small_dog](https://wiki.openstreetmap.org/wiki/Key:small_dog) | Multiple choice | [separate](https://wiki.openstreetmap.org/wiki/Tag:small_dog%3Dseparate) [shared](https://wiki.openstreetmap.org/wiki/Tag:small_dog%3Dshared) +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | + + + + +### dogpark-fenced + + + +The question is It this dog park fenced in? + + + + + + - This dogpark is fenced all around corresponds with `barrier=fence` + - This dogpark is not fenced all around corresponds with `barrier=no` + + + + +### smalldogs + + + +The question is Does this dog park have a separate fenced in area for small dogs and puppies? + + + + + + - Have separate area for puppies and small dogs corresponds with `small_dog=separate` + - Does not have a separate area for puppies and small dogs corresponds with `small_dog=shared` + + + + +### Name + + + +The question is What is the name of this dog park? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with The name of this dog park is {name} + + + + + +### dogarea + + + +This tagrendering has no question and is thus read-only + + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + +This document is autogenerated from [assets/layers/dogpark/dogpark.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dogpark/dogpark.json) \ No newline at end of file diff --git a/Docs/Layers/dogshop.md b/Docs/Layers/dogshop.md new file mode 100644 index 0000000000..1d5ebc3a28 --- /dev/null +++ b/Docs/Layers/dogshop.md @@ -0,0 +1,467 @@ + + + dogshop +========= + + + + + +A shop + + + + + + + - This layer is shown at zoomlevel **16** and higher + + + + +#### Themes using this layer + + + + + + - [pets](https://mapcomplete.osm.be/pets) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - shop~^..*$ + - dog=leashed|dog=yes|shop=pet + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22dog%22%3D%22leashed%22%5D%5B%22shop%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22dog%22%3D%22yes%22%5D%5B%22shop%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22pet%22%5D%5B%22shop%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [hobby](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhobby) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### shops-name + + + +The question is What is the name of this shop? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This shop is called {name} + + + + + +### shop_types + + + +The question is What kind of shop is this? + +This rendering asks information about the property [shop](https://wiki.openstreetmap.org/wiki/Key:shop) + +This is rendered with This is a {shop} + + + + + + - Farm Supply Shop corresponds with `shop=agrarian` + - Liquor Store corresponds with `shop=alcohol` + - Anime / Manga Shop corresponds with `shop=anime` + - Antiques Shop corresponds with `shop=antiques` + - Appliance Store corresponds with `shop=appliance` + - Art Store corresponds with `shop=art` + - Baby Goods Store corresponds with `shop=baby_goods` + - Bag/Luggage Store corresponds with `shop=bag` + - Bakery corresponds with `shop=bakery` + - Bathroom Furnishing Store corresponds with `shop=bathroom_furnishing` + - Beauty Shop corresponds with `shop=beauty` + - Bedding/Mattress Store corresponds with `shop=bed` + - Beverage Store corresponds with `shop=beverages` + - Bicycle Shop corresponds with `shop=bicycle` + - Boat Store corresponds with `shop=boat` + - Bookmaker corresponds with `shop=bookmaker` + - Book Store corresponds with `shop=books` + - Brewing Supply Store corresponds with `shop=brewing_supplies` + - Butcher corresponds with `shop=butcher` + - Camera Equipment Store corresponds with `shop=camera` + - Candle Shop corresponds with `shop=candles` + - Cannabis Shop corresponds with `shop=cannabis` + - Car Dealership corresponds with `shop=car` + - Car Parts Store corresponds with `shop=car_parts` + - Car Repair Shop corresponds with `shop=car_repair` + - RV Dealership corresponds with `shop=caravan` + - Carpet Store corresponds with `shop=carpet` + - Catalog Shop corresponds with `shop=catalogue` + - Charity Store corresponds with `shop=charity` + - Cheese Store corresponds with `shop=cheese` + - Drugstore corresponds with `shop=chemist` + - Chocolate Store corresponds with `shop=chocolate` + - Clothing Store corresponds with `shop=clothes` + - Coffee Store corresponds with `shop=coffee` + - Collectibles Shop corresponds with `shop=collector` + - Computer Store corresponds with `shop=computer` + - Candy Store corresponds with `shop=confectionery` + - Convenience Store corresponds with `shop=convenience` + - Copy Store corresponds with `shop=copyshop` + - Cosmetics Store corresponds with `shop=cosmetics` + - Country Store corresponds with `shop=country_store` + - Arts & Crafts Store corresponds with `shop=craft` + - Curtain Store corresponds with `shop=curtain` + - Dairy Store corresponds with `shop=dairy` + - Deli corresponds with `shop=deli` + - Department Store corresponds with `shop=department_store` + - DIY Store corresponds with `shop=doityourself` + - Door Shop corresponds with `shop=doors` + - Dry Cleaner corresponds with `shop=dry_cleaning` + - E-Cigarette Shop corresponds with `shop=e-cigarette` + - Electrical Equipment Store corresponds with `shop=electrical` + - Electronics Store corresponds with `shop=electronics` + - Erotic Store corresponds with `shop=erotic` + - Fabric Store corresponds with `shop=fabric` + - Produce Stand corresponds with `shop=farm` + - Fashion Accessories Store corresponds with `shop=fashion_accessories` + - Fireplace Store corresponds with `shop=fireplace` + - Fishing Shop corresponds with `shop=fishing` + - Flooring Supply Shop corresponds with `shop=flooring` + - Florist corresponds with `shop=florist` + - Framing Shop corresponds with `shop=frame` + - Frozen Food Store corresponds with `shop=frozen_food` + - Fuel Shop corresponds with `shop=fuel` + - Funeral Home corresponds with `shop=funeral_directors` + - Furniture Store corresponds with `shop=furniture` + - Tabletop Game Store corresponds with `shop=games` + - Garden Center corresponds with `shop=garden_centre` + - Bottled Gas Shop corresponds with `shop=gas` + - General Store corresponds with `shop=general` + - Gift Shop corresponds with `shop=gift` + - Greengrocer corresponds with `shop=greengrocer` + - Hairdresser corresponds with `shop=hairdresser` + - Hairdresser Supply Store corresponds with `shop=hairdresser_supply` + - Hardware Store corresponds with `shop=hardware` + - Health Food Shop corresponds with `shop=health_food` + - Hearing Aids Store corresponds with `shop=hearing_aids` + - Herbalist corresponds with `shop=herbalist` + - Hifi Store corresponds with `shop=hifi` + - Hobby Shop corresponds with `shop=hobby` + - Household Linen Shop corresponds with `shop=household_linen` + - Houseware Store corresponds with `shop=houseware` + - Hunting Shop corresponds with `shop=hunting` + - Interior Decoration Store corresponds with `shop=interior_decoration` + - Jewelry Store corresponds with `shop=jewelry` + - Kiosk corresponds with `shop=kiosk` + - Kitchen Design Store corresponds with `shop=kitchen` + - Laundry corresponds with `shop=laundry` + - Leather Store corresponds with `shop=leather` + - Lighting Store corresponds with `shop=lighting` + - Locksmith corresponds with `shop=locksmith` + - Lottery Shop corresponds with `shop=lottery` + - Mall corresponds with `shop=mall` + - Massage Shop corresponds with `shop=massage` + - Medical Supply Store corresponds with `shop=medical_supply` + - Military Surplus Store corresponds with `shop=military_surplus` + - Mobile Phone Store corresponds with `shop=mobile_phone` + - Model Shop corresponds with `shop=model` + - Money Lender corresponds with `shop=money_lender` + - Motorcycle Dealership corresponds with `shop=motorcycle` + - Motorcycle Repair Shop corresponds with `shop=motorcycle_repair` + - Music Store corresponds with `shop=music` + - Musical Instrument Store corresponds with `shop=musical_instrument` + - Newspaper/Magazine Shop corresponds with `shop=newsagent` + - Nutrition Supplements Store corresponds with `shop=nutrition_supplements` + - Optician corresponds with `shop=optician` + - Outdoors Store corresponds with `shop=outdoor` + - Online Retailer Outpost corresponds with `shop=outpost` + - Paint Store corresponds with `shop=paint` + - Party Supply Store corresponds with `shop=party` + - Pastry Shop corresponds with `shop=pastry` + - Pawn Shop corresponds with `shop=pawnbroker` + - Perfume Store corresponds with `shop=perfumery` + - Pet Store corresponds with `shop=pet` + - Pet Grooming Store corresponds with `shop=pet_grooming` + - Photography Store corresponds with `shop=photo` + - Pottery Store corresponds with `shop=pottery` + - Printer Ink Store corresponds with `shop=printer_ink` + - Psychic corresponds with `shop=psychic` + - Fireworks Store corresponds with `shop=pyrotechnics` + - Radio/Electronic Component Store corresponds with `shop=radiotechnics` + - Religious Store corresponds with `shop=religion` + - Rental Shop corresponds with `shop=rental` + - Repair Shop corresponds with `shop=repair` + - Scuba Diving Shop corresponds with `shop=scuba_diving` + - Seafood Shop corresponds with `shop=seafood` + - Consignment/Thrift Store corresponds with `shop=second_hand` + - Sewing Supply Shop corresponds with `shop=sewing` + - Shoe Repair Shop corresponds with `shop=shoe_repair` + - Shoe Store corresponds with `shop=shoes` + - Spice Shop corresponds with `shop=spices` + - Sporting Goods Store corresponds with `shop=sports` + - Stationery Store corresponds with `shop=stationery` + - Storage Rental corresponds with `shop=storage_rental` + - Supermarket corresponds with `shop=supermarket` + - Pool Supply Store corresponds with `shop=swimming_pool` + - Tailor corresponds with `shop=tailor` + - Tattoo Parlor corresponds with `shop=tattoo` + - Tea Store corresponds with `shop=tea` + - Telecom Retail Store corresponds with `shop=telecommunication` + - Ticket Seller corresponds with `shop=ticket` + - Tile Shop corresponds with `shop=tiles` + - Tobacco Shop corresponds with `shop=tobacco` + - Tool Rental corresponds with `shop=tool_hire` + - Toy Store corresponds with `shop=toys` + - Trade Shop corresponds with `shop=trade` + - Travel Agency corresponds with `shop=travel_agency` + - Trophy Shop corresponds with `shop=trophy` + - Tire Store corresponds with `shop=tyres` + - Vacuum Cleaner Store corresponds with `shop=vacuum_cleaner` + - Variety Store corresponds with `shop=variety_store` + - Video Store corresponds with `shop=video` + - Video Game Store corresponds with `shop=video_games` + - Watches Shop corresponds with `shop=watches` + - Drinking Water Shop corresponds with `shop=water` + - Watersport/Swim Shop corresponds with `shop=water_sports` + - Weapon Shop corresponds with `shop=weapons` + - Wholesale Store corresponds with `shop=wholesale` + - Wig Shop corresponds with `shop=wigs` + - Window Blind Store corresponds with `shop=window_blind` + - Wine Shop corresponds with `shop=wine` + + +Only visible if `id~^..*$` is shown + + + +### opening_hours + + + +The question is What are the opening hours of {title()}? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### payment-options + + + +The question is Which methods of payment are accepted here? + + + + + + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### copyshop-print-sizes + + + +The question is What paper formats does this shop offer? + + + + + + - This shop can print on papers of size A4 corresponds with `service:print:A4=yes` + - Unselecting this answer will add service:print:A4=no + - This shop can print on papers of size A3 corresponds with `service:print:A3=yes` + - Unselecting this answer will add service:print:A3=no + - This shop can print on papers of size A2 corresponds with `service:print:A2=yes` + - Unselecting this answer will add service:print:A2=no + - This shop can print on papers of size A1 corresponds with `service:print:A1=yes` + - Unselecting this answer will add service:print:A1=no + - This shop can print on papers of size A0 corresponds with `service:print:A0=yes` + - Unselecting this answer will add service:print:A0=no + + +Only visible if `shop~^.*copyshop.*$|shop~^.*stationary.*$|service:print=yes` is shown + + + +### questions + + + +This tagrendering has no question and is thus read-only + + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + + + + + +### questions + + + +Show the images block at this location + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only + + + +This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json) \ No newline at end of file diff --git a/Docs/Layers/drinking_water.md b/Docs/Layers/drinking_water.md index d6fbe3b045..dbc1b63614 100644 --- a/Docs/Layers/drinking_water.md +++ b/Docs/Layers/drinking_water.md @@ -15,7 +15,7 @@ A layer showing drinking water fountains - This layer is shown at zoomlevel **13** and higher - - This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water) + - This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water) - This layer is needed as dependency for layer [drinking_water](#drinking_water) @@ -44,12 +44,13 @@ Elements must have the all of following tags to be shown on this layer: - - amenity=drinking_water - - access!~^permissive$ - - access!~^private$ + - amenity=drinking_water|drinking_water=yes + - man_made!=reservoir_covered + - access!=permissive + - access!=private -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22drinking_water%22%5D%5B%22access%22!~%22%5Epermissive%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22drinking_water%22%5D%5B%22man_made%22!%3D%22reservoir_covered%22%5D%5B%22access%22!%3D%22permissive%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22drinking_water%22%3D%22yes%22%5D%5B%22man_made%22!%3D%22reservoir_covered%22%5D%5B%22access%22!%3D%22permissive%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -58,7 +59,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -74,7 +77,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -84,16 +89,19 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is this drinking water spot still operational?** +The question is Is this drinking water spot still operational? This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) -This is rendered with `The operational status is {operational_status}` + +This is rendered with The operational status is {operational_status} - - **This drinking water works** corresponds with - - **This drinking water is broken** corresponds with operational_status=broken - - **This drinking water is closed** corresponds with operational_status=closed + + + - This drinking water works corresponds with `` + - This drinking water is broken corresponds with `operational_status=broken` + - This drinking water is closed corresponds with `operational_status=closed` @@ -102,14 +110,14 @@ This is rendered with `The operational status is {operational_status}` -The question is **How easy is it to fill water bottles?** +The question is How easy is it to fill water bottles? - - **It is easy to refill water bottles** corresponds with bottle=yes - - **Water bottles may not fit** corresponds with bottle=no + - It is easy to refill water bottles corresponds with `bottle=yes` + - Water bottles may not fit corresponds with `bottle=no` @@ -118,10 +126,10 @@ The question is **How easy is it to fill water bottles?** -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `_closest_other_drinking_water_id~^..*$` is shown +Only visible if `_closest_other_drinking_water_id~^..*$` is shown This document is autogenerated from [assets/layers/drinking_water/drinking_water.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/drinking_water/drinking_water.json) \ No newline at end of file diff --git a/Docs/Layers/dumpstations.md b/Docs/Layers/dumpstations.md index ee728bff7b..f3a57f9e7b 100644 --- a/Docs/Layers/dumpstations.md +++ b/Docs/Layers/dumpstations.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -75,7 +77,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -85,14 +89,14 @@ _This tagrendering has no question and is thus read-only_ -The question is **Does this place charge a fee?** +The question is Does this place charge a fee? - - **You need to pay for use** corresponds with fee=yes - - **Can be used for free** corresponds with fee=no + - You need to pay for use corresponds with `fee=yes` + - Can be used for free corresponds with `fee=no` @@ -101,12 +105,15 @@ The question is **Does this place charge a fee?** -The question is **How much does this place charge?** +The question is How much does this place charge? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `This place charges {charge}` -Only visible if `fee=yes` is shown +This is rendered with This place charges {charge} + + + +Only visible if `fee=yes` is shown @@ -114,14 +121,14 @@ Only visible if `fee=yes` is shown -The question is **Does this place have a water point?** +The question is Does this place have a water point? - - **This place has a water point** corresponds with water_point=yes - - **This place does not have a water point** corresponds with water_point=no + - This place has a water point corresponds with `water_point=yes` + - This place does not have a water point corresponds with `water_point=no` @@ -130,14 +137,14 @@ The question is **Does this place have a water point?** -The question is **Can you dispose of grey water here?** +The question is Can you dispose of grey water here? - - **You can dispose of grey water here** corresponds with sanitary_dump_station:grey_water=yes - - **You cannot dispose of gray water here** corresponds with sanitary_dump_station:grey_water=no + - You can dispose of grey water here corresponds with `sanitary_dump_station:grey_water=yes` + - You cannot dispose of gray water here corresponds with `sanitary_dump_station:grey_water=no` @@ -146,14 +153,14 @@ The question is **Can you dispose of grey water here?** -The question is **Can you dispose of chemical toilet waste here?** +The question is Can you dispose of chemical toilet waste here? - - **You can dispose of chemical toilet waste here** corresponds with sanitary_dump_station:chemical_toilet=yes - - **You cannot dispose of chemical toilet waste here** corresponds with sanitary_dump_station:chemical_toilet=no + - You can dispose of chemical toilet waste here corresponds with `sanitary_dump_station:chemical_toilet=yes` + - You cannot dispose of chemical toilet waste here corresponds with `sanitary_dump_station:chemical_toilet=no` @@ -162,16 +169,17 @@ The question is **Can you dispose of chemical toilet waste here?** -The question is **Who can use this dump station?** +The question is Who can use this dump station? - - **You need a network key/code to use this** corresponds with access=network - - **You need to be a customer of camping/campersite to use this place** corresponds with access=customers - - **Anyone can use this dump station** corresponds with access=public_This option cannot be chosen as answer_ - - **Anyone can use this dump station** corresponds with access=yes + - You need a network key/code to use this corresponds with `access=network` + - You need to be a customer of camping/campersite to use this place corresponds with `access=customers` + - Anyone can use this dump station corresponds with `access=public` + - This option cannot be chosen as answer + - Anyone can use this dump station corresponds with `access=yes` @@ -180,10 +188,13 @@ The question is **Who can use this dump station?** -The question is **What network is this place a part of? (skip if none)** +The question is What network is this place a part of? (skip if none) This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network) -This is rendered with `This station is part of network {network}` + +This is rendered with This station is part of network {network} + + @@ -191,10 +202,13 @@ This is rendered with `This station is part of network {network}` -The question is **Who operates this place?** +The question is Who operates this place? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This place is operated by {operator}` + +This is rendered with This place is operated by {operator} + + @@ -202,14 +216,14 @@ This is rendered with `This place is operated by {operator}` -The question is **Does this place have a power supply?** +The question is Does this place have a power supply? - - **This place has a power supply** corresponds with power_supply=yes - - **This place does not have power supply** corresponds with power_supply=no + - This place has a power supply corresponds with `power_supply=yes` + - This place does not have power supply corresponds with `power_supply=no` @@ -218,7 +232,9 @@ The question is **Does this place have a power supply?** -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -228,7 +244,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/education_institutions_without_etymology.md b/Docs/Layers/education_institutions_without_etymology.md index 7ec1488f29..6068dd2142 100644 --- a/Docs/Layers/education_institutions_without_etymology.md +++ b/Docs/Layers/education_institutions_without_etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/elevator.md b/Docs/Layers/elevator.md new file mode 100644 index 0000000000..b2226337ff --- /dev/null +++ b/Docs/Layers/elevator.md @@ -0,0 +1,187 @@ + + + elevator +========== + + + + + +This layer show elevators and asks for operational status and elevator dimensions. Useful for wheelchair accessibility information + + + + + + + - This layer is shown at zoomlevel **13** and higher + + + + +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=elevator + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22elevator%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [string](../SpecialInputElements.md#string) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) [ok](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dok) +[](https://taginfo.openstreetmap.org/keys/door:width#values) [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/elevator:width#values) [elevator:width](https://wiki.openstreetmap.org/wiki/Key:elevator:width) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/elevator:depth#values) [elevator:depth](https://wiki.openstreetmap.org/wiki/Key:elevator:depth) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/hearing_loop#values) [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### multilevels + + + +The question is What levels does this elevator go to? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with This elevator goes to floors {level} + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### operational_status + + + +The question is Does this elevator work? + + + + + + - This elevator is broken corresponds with `operational_status=broken` + - This elevator is closed e.g. because renovation works are going on corresponds with `operational_status=closed` + - This elevator works corresponds with `operational_status=ok` + - This elevator works corresponds with `` + - This option cannot be chosen as answer + + + + +### door-width + + + +The question is What is the width of this elevator's entrance? + +This rendering asks information about the property [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) + +This is rendered with This elevator's doors have a width of {canonical(door:width)} + + + + + +### elevator-width + + + +The question is What is the width of this elevator? + +This rendering asks information about the property [elevator:width](https://wiki.openstreetmap.org/wiki/Key:elevator:width) + +This is rendered with This elevator has a width of {canonical(elevator:width)} + + + + + +### elevator-depth + + + +The question is What is the depth of this elevator? + +This rendering asks information about the property [elevator:depth](https://wiki.openstreetmap.org/wiki/Key:elevator:depth) + +This is rendered with This elevator has a depth of {canonical(elevator:depth)} + + + + + +### induction-loop + + + +An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver. + +The question is Does this place have an audio induction loop for people with reduced hearing? + + + + + + - This place has an audio induction loop corresponds with `hearing_loop=yes` + - This place does not have an audio induction loop corresponds with `hearing_loop=no` + + +This document is autogenerated from [assets/layers/elevator/elevator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elevator/elevator.json) \ No newline at end of file diff --git a/Docs/Layers/entrance.md b/Docs/Layers/entrance.md index fe78376551..e78500eb4a 100644 --- a/Docs/Layers/entrance.md +++ b/Docs/Layers/entrance.md @@ -5,9 +5,9 @@ - + -A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, ...) +A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, …) @@ -17,6 +17,8 @@ A layer showing entrances and offering capabilities to survey some advanced data - This layer is shown at zoomlevel **14** and higher - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [indoors](./indoors.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + - This layer is needed as dependency for layer [walls_and_buildings](#walls_and_buildings) @@ -27,7 +29,8 @@ A layer showing entrances and offering capabilities to survey some advanced data - - [entrances](https://mapcomplete.osm.be/entrances) + - [indoors](https://mapcomplete.osm.be/indoors) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) @@ -42,10 +45,10 @@ Elements must have the all of following tags to be shown on this layer: - - entrance~^..*$|indoor=door + - entrance~^..*$|indoor=door|door~^..*$ -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22entrance%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22entrance%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -54,16 +57,20 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) [](https://taginfo.openstreetmap.org/keys/entrance#values) [entrance](https://wiki.openstreetmap.org/wiki/Key:entrance) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:entrance%3D) [main](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain) [secondary](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary) [service](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice) [exit](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit) [entrance](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance) [emergency](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency) [home](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome) [](https://taginfo.openstreetmap.org/keys/door#values) [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno) [](https://taginfo.openstreetmap.org/keys/automatic_door#values) [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) -[](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/kerb:height#values) [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) @@ -72,8 +79,35 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` @@ -82,21 +116,22 @@ _This tagrendering has no question and is thus read-only_ -The question is **What type of entrance is this?** +The question is What type of entrance is this? - - **No specific entrance type is known** corresponds with entrance=yes_This option cannot be chosen as answer_ - - **This is an indoor door, separating a room or a corridor within a single building** corresponds with indoor=door - - **This is the main entrance** corresponds with entrance=main - - **This is a secondary entrance** corresponds with entrance=secondary - - **This is a service entrance - normally only used for employees, delivery, ...** corresponds with entrance=service - - **This is an exit where one can not enter** corresponds with entrance=exit - - **This is an entrance where one can only enter (but not exit)** corresponds with entrance=entrance - - **This is emergency exit** corresponds with entrance=emergency - - **This is the entrance to a private home** corresponds with entrance=home + - No specific entrance type is known corresponds with `entrance=yes` + - This option cannot be chosen as answer + - This is an indoor door, separating a room or a corridor within a single building corresponds with `indoor=door` + - This is the main entrance corresponds with `entrance=main` + - This is a secondary entrance corresponds with `entrance=secondary` + - This is a service entrance - normally only used for employees, delivery, … corresponds with `entrance=service` + - This is an exit where one can not enter corresponds with `entrance=exit` + - This is an entrance where one can only enter (but not exit) corresponds with `entrance=entrance` + - This is emergency exit corresponds with `entrance=emergency` + - This is the entrance to a private home corresponds with `entrance=home` @@ -105,18 +140,19 @@ The question is **What type of entrance is this?** -The question is **What is the type of this door?
Wether or not the door is automated is asked in the next question** +The question is What is the type of this door?
Wether or not the door is automated is asked in the next question - - **The door type is not known** corresponds with door=yes_This option cannot be chosen as answer_ - - **A classical, hinged door supported by joints** corresponds with door=hinged - - **A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure** corresponds with door=revolving - - **A sliding door where the door slides sidewards, typically parallel with a wall** corresponds with door=sliding - - **A door which rolls from overhead, typically seen for garages** corresponds with door=overhead - - **This is an entrance without a physical door** corresponds with door=no + - The door type is not known corresponds with `door=yes` + - This option cannot be chosen as answer + - A classical, hinged door supported by joints corresponds with `door=hinged` + - A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure corresponds with `door=revolving` + - A sliding door where the door slides sidewards, typically parallel with a wall corresponds with `door=sliding` + - A door which rolls from overhead, typically seen for garages corresponds with `door=overhead` + - This is an entrance without a physical door corresponds with `door=no` @@ -125,21 +161,22 @@ The question is **What is the type of this door?
Wether -The question is **Is this door automated?** +The question is Is this door automated? - - **This is an automatic door** corresponds with automatic_door=yes_This option cannot be chosen as answer_ - - **This door is not automated** corresponds with automatic_door=no - - **This door will open automatically when motion is detected** corresponds with automatic_door=motion - - **This door will open automatically when a sensor in the floor is triggered** corresponds with automatic_door=floor - - **This door will open automatically when a button is pressed** corresponds with automatic_door=button - - **This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users** corresponds with automatic_door=slowdown_button - - **This door revolves automatically all the time** corresponds with automatic_door=continuous - - **This door will be opened by staff when requested by pressing a button** corresponds with automatic_door=serviced_on_button_press - - **This door will be opened by staff when requested** corresponds with automatic_door=serviced_on_request + - This is an automatic door corresponds with `automatic_door=yes` + - This option cannot be chosen as answer + - This door is not automated corresponds with `automatic_door=no` + - This door will open automatically when motion is detected corresponds with `automatic_door=motion` + - This door will open automatically when a sensor in the floor is triggered corresponds with `automatic_door=floor` + - This door will open automatically when a button is pressed corresponds with `automatic_door=button` + - This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users corresponds with `automatic_door=slowdown_button` + - This door revolves automatically all the time corresponds with `automatic_door=continuous` + - This door will be opened by staff when requested by pressing a button corresponds with `automatic_door=serviced_on_button_press` + - This door will be opened by staff when requested corresponds with `automatic_door=serviced_on_request` @@ -148,9 +185,31 @@ The question is **Is this door automated?** -The question is **What is the width of this door/entrance?** +The question is What is the width of this door/entrance? This rendering asks information about the property [width](https://wiki.openstreetmap.org/wiki/Key:width) -This is rendered with `This door has a width of {canonical(width)} meter` + +This is rendered with This door has a width of {canonical(width)} meter + + + + + +### kerb-height + + + +The question is What is the height of this kerb? + +This rendering asks information about the property [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) + +This is rendered with The kerb height of this door is {kerb:height} + + + + + + - This door does not have a kerb corresponds with `kerb:height=0` + This document is autogenerated from [assets/layers/entrance/entrance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json) \ No newline at end of file diff --git a/Docs/Layers/etymology.md b/Docs/Layers/etymology.md index 86272e4dae..9e08edd96d 100644 --- a/Docs/Layers/etymology.md +++ b/Docs/Layers/etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/layers/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/extinguisher.md b/Docs/Layers/extinguisher.md index 394ec9bf1b..cb5c81a156 100644 --- a/Docs/Layers/extinguisher.md +++ b/Docs/Layers/extinguisher.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -67,15 +69,18 @@ attribute | type | values which are supported by this layer -The question is **Where is it positioned?** +The question is Where is it positioned? This rendering asks information about the property [location](https://wiki.openstreetmap.org/wiki/Key:location) -This is rendered with `Location: {location}` + +This is rendered with Location: {location} - - **Found indoors.** corresponds with location=indoor - - **Found outdoors.** corresponds with location=outdoor + + + - Found indoors. corresponds with `location=indoor` + - Found outdoors. corresponds with `location=outdoor` @@ -84,7 +89,9 @@ This is rendered with `Location: {location}` -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/facadegardens.md b/Docs/Layers/facadegardens.md index c207a738c8..f43d47b7c0 100644 --- a/Docs/Layers/facadegardens.md +++ b/Docs/Layers/facadegardens.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -83,10 +87,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the orientation of the garden?** +The question is What is the orientation of the garden? This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction) -This is rendered with `Orientation: {direction} (where 0=N and 90=O)` + +This is rendered with Orientation: {direction} (where 0=N and 90=O) + + @@ -94,15 +101,15 @@ This is rendered with `Orientation: {direction} (where 0=N and 90=O)` -The question is **Is the garden shaded or sunny?** +The question is Is the garden shaded or sunny? - - **The garden is in full sun** corresponds with direct_sunlight=yes - - **The garden is in partial shade** corresponds with direct_sunlight=partial - - **The garden is in the shade** corresponds with direct_sunlight=no + - The garden is in full sun corresponds with `direct_sunlight=yes` + - The garden is in partial shade corresponds with `direct_sunlight=partial` + - The garden is in the shade corresponds with `direct_sunlight=no` @@ -111,14 +118,14 @@ The question is **Is the garden shaded or sunny?** -The question is **Is there a water barrel installed for the garden?** +The question is Is there a water barrel installed for the garden? - - **There is a rain barrel** corresponds with rain_barrel=yes - - **There is no rain barrel** corresponds with rain_barrel=no + - There is a rain barrel corresponds with `rain_barrel=yes` + - There is no rain barrel corresponds with `rain_barrel=no` @@ -127,10 +134,13 @@ The question is **Is there a water barrel installed for the garden?** -The question is **When was the garden constructed? (a year is sufficient)** +The question is When was the garden constructed? (a year is sufficient) This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) -This is rendered with `Construction date of the garden: {start_date}` + +This is rendered with Construction date of the garden: {start_date} + + @@ -138,14 +148,14 @@ This is rendered with `Construction date of the garden: {start_date}` -The question is **Are there any edible plants?** +The question is Are there any edible plants? - - **There are edible plants** corresponds with edible=yes - - **There are no edible plants** corresponds with edible=no + - There are edible plants corresponds with `edible=yes` + - There are no edible plants corresponds with `edible=no` @@ -154,16 +164,16 @@ The question is **Are there any edible plants?** -The question is **What kinds of plants grow here?** +The question is What kinds of plants grow here? - - **There are vines** corresponds with plant=vine - - **There are flowering plants** corresponds with plant=flower - - **There are shrubs** corresponds with plant=shrub - - **There are groundcovering plants** corresponds with plant=groundcover + - There are vines corresponds with `plant=vine` + - There are flowering plants corresponds with `plant=flower` + - There are shrubs corresponds with `plant=shrub` + - There are groundcovering plants corresponds with `plant=groundcover` @@ -172,10 +182,13 @@ The question is **What kinds of plants grow here?** -The question is **Extra describing info about the garden (if needed and not yet described above)** +The question is Extra describing info about the garden (if needed and not yet described above) This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `More details: {description}` + +This is rendered with More details: {description} + + @@ -183,7 +196,9 @@ This is rendered with `More details: {description}` -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -193,7 +208,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/fietsstraat.md b/Docs/Layers/fietsstraat.md index b34c44b525..e8f4bec0b4 100644 --- a/Docs/Layers/fietsstraat.md +++ b/Docs/Layers/fietsstraat.md @@ -51,7 +51,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -67,7 +69,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -77,16 +81,16 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is the street {name} a cyclestreet?** +The question is Is the street {name} a cyclestreet? - - **This street is a cyclestreet (and has a speed limit of 30 km/h)** corresponds with cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no - - **This street is a cyclestreet** corresponds with cyclestreet=yes - - **This street will become a cyclstreet soon** corresponds with proposed:cyclestreet=yes - - **This street is not a cyclestreet** corresponds with + - This street is a cyclestreet (and has a speed limit of 30 km/h) corresponds with `cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no` + - This street is a cyclestreet corresponds with `cyclestreet=yes` + - This street will become a cyclstreet soon corresponds with `proposed:cyclestreet=yes` + - This street is not a cyclestreet corresponds with `` @@ -95,12 +99,15 @@ The question is **Is the street {name} a cyclestreet?** -The question is **When will this street become a cyclestreet?** +The question is When will this street become a cyclestreet? This rendering asks information about the property [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) -This is rendered with `This street will become a cyclestreet at {cyclestreet:start_date}` -Only visible if `proposed:cyclestreet=yes` is shown +This is rendered with This street will become a cyclestreet at {cyclestreet:start_date} + + + +Only visible if `proposed:cyclestreet=yes` is shown @@ -108,7 +115,9 @@ Only visible if `proposed:cyclestreet=yes` is shown -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -118,7 +127,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/fire_station.md b/Docs/Layers/fire_station.md index 36a76ced97..6fc4a60eb2 100644 --- a/Docs/Layers/fire_station.md +++ b/Docs/Layers/fire_station.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -71,10 +73,13 @@ attribute | type | values which are supported by this layer -The question is **What is the name of this fire station?** +The question is What is the name of this fire station? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This station is called {name}.` + +This is rendered with This station is called {name}. + + @@ -82,10 +87,13 @@ This is rendered with `This station is called {name}.` -The question is ** What is the street name where the station located?** +The question is What is the street name where the station located? This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) -This is rendered with `This station is along a highway called {addr:street}.` + +This is rendered with This station is along a highway called {addr:street}. + + @@ -93,10 +101,13 @@ This is rendered with `This station is along a highway called {addr:street}.` -The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)** +The question is Where is the station located? (e.g. name of neighborhood, villlage, or town) This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) -This is rendered with `This station is found within {addr:place}.` + +This is rendered with This station is found within {addr:place}. + + @@ -104,14 +115,17 @@ This is rendered with `This station is found within {addr:place}.` -The question is **What agency operates this station?** +The question is What agency operates this station? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This station is operated by {operator}.` + +This is rendered with This station is operated by {operator}. - - **Bureau of Fire Protection** corresponds with operator=Bureau of Fire Protection&operator:type=government + + + - Bureau of Fire Protection corresponds with `operator=Bureau of Fire Protection&operator:type=government` @@ -120,17 +134,20 @@ This is rendered with `This station is operated by {operator}.` -The question is **How is the station operator classified?** +The question is How is the station operator classified? This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) -This is rendered with `The operator is a(n) {operator:type} entity.` + +This is rendered with The operator is a(n) {operator:type} entity. - - **The station is operated by the government.** corresponds with operator:type=government - - **The station is operated by a community-based, or informal organization.** corresponds with operator:type=community - - **The station is operated by a formal group of volunteers.** corresponds with operator:type=ngo - - **The station is privately operated.** corresponds with operator:type=private + + + - The station is operated by the government. corresponds with `operator:type=government` + - The station is operated by a community-based, or informal organization. corresponds with `operator:type=community` + - The station is operated by a formal group of volunteers. corresponds with `operator:type=ngo` + - The station is privately operated. corresponds with `operator:type=private` @@ -139,7 +156,9 @@ This is rendered with `The operator is a(n) {operator:type} entity.` -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/food.md b/Docs/Layers/food.md index 6a585f2aec..f33ed20e40 100644 --- a/Docs/Layers/food.md +++ b/Docs/Layers/food.md @@ -27,7 +27,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [food](https://mapcomplete.osm.be/food) - [fritures](https://mapcomplete.osm.be/fritures) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) + - [pets](https://mapcomplete.osm.be/pets) @@ -53,12 +55,15 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) [](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | @@ -68,6 +73,7 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) [](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) +[](https://taginfo.openstreetmap.org/keys/delivery#values) [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) [](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) @@ -85,8 +91,35 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` @@ -95,10 +128,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this restaurant?** +The question is What is the name of this restaurant? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `The name of this restaurant is {name}` + +This is rendered with The name of this restaurant is {name} + + @@ -106,14 +142,14 @@ This is rendered with `The name of this restaurant is {name}` -The question is **What type of business is this?** +The question is What type of business is this? - - **This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.** corresponds with amenity=fast_food - - **A restaurant, focussed on creating a nice experience where one is served at the table** corresponds with amenity=restaurant + - This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional. corresponds with `amenity=fast_food` + - A restaurant, focused on creating a nice experience where one is served at the table corresponds with `amenity=restaurant` @@ -122,10 +158,13 @@ The question is **What type of business is this?** -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + @@ -133,14 +172,18 @@ This is rendered with `

Opening hours

{opening_hours_table(opening_hours) -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -149,14 +192,18 @@ This is rendered with `{website}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -165,14 +212,18 @@ This is rendered with `{email}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -181,14 +232,16 @@ This is rendered with `{phone}` -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no @@ -197,16 +250,16 @@ The question is **Which methods of payment are accepted here?** -The question is **Is this place accessible with a wheelchair?** +The question is Is this place accessible with a wheelchair? - - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated - - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes - - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited - - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` @@ -215,28 +268,31 @@ The question is **Is this place accessible with a wheelchair?** -The question is **Which food is served here?** +The question is Which food is served here? This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) -This is rendered with `This place mostly serves {cuisine}` + +This is rendered with This place mostly serves {cuisine} - - **This is a pizzeria** corresponds with cuisine=pizza - - **This is a friture** corresponds with cuisine=friture - - **Mainly serves pasta** corresponds with cuisine=pasta - - **This is kebab shop** corresponds with cuisine=kebab - - **This is a sandwichbar** corresponds with cuisine=sandwich - - **Burgers are served here** corresponds with cuisine=burger - - **Sushi is served here** corresponds with cuisine=sushi - - **Coffee is served here** corresponds with cuisine=coffee - - **This is an italian restaurant (which serves more then pasta and pizza)** corresponds with cuisine=italian - - **French dishes are served here** corresponds with cuisine=french - - **Chinese dishes are served here** corresponds with cuisine=chinese - - **Greek dishes are served here** corresponds with cuisine=greek - - **Indian dishes are served here** corresponds with cuisine=indian - - **Turkish dishes are served here** corresponds with cuisine=turkish - - **Thai dishes are served here** corresponds with cuisine=thai + + + - This is a pizzeria corresponds with `cuisine=pizza` + - This is a friture corresponds with `cuisine=friture` + - Mainly serves pasta corresponds with `cuisine=pasta` + - This is kebab shop corresponds with `cuisine=kebab` + - This is a sandwichbar corresponds with `cuisine=sandwich` + - Burgers are served here corresponds with `cuisine=burger` + - Sushi is served here corresponds with `cuisine=sushi` + - Coffee is served here corresponds with `cuisine=coffee` + - This is an italian restaurant (which serves more then pasta and pizza) corresponds with `cuisine=italian` + - French dishes are served here corresponds with `cuisine=french` + - Chinese dishes are served here corresponds with `cuisine=chinese` + - Greek dishes are served here corresponds with `cuisine=greek` + - Indian dishes are served here corresponds with `cuisine=indian` + - Turkish dishes are served here corresponds with `cuisine=turkish` + - Thai dishes are served here corresponds with `cuisine=thai` @@ -245,15 +301,31 @@ This is rendered with `This place mostly serves {cuisine}` -The question is **Does this place offer takea-way?** +The question is Does this place offer take-away? - - **This is a take-away only business** corresponds with takeaway=only - - **Take-away is possible here** corresponds with takeaway=yes - - **Take-away is not possible here** corresponds with takeaway=no + - This is a take-away only business corresponds with `takeaway=only` + - Take-away is possible here corresponds with `takeaway=yes` + - Take-away is not possible here corresponds with `takeaway=no` + + + + +### delivery + + + +The question is Delivers {title()} their food at home? + + + + + + - This business does home delivery (eventually via a third party) corresponds with `delivery=yes` + - This business does not deliver at home corresponds with `delivery=no` @@ -262,16 +334,16 @@ The question is **Does this place offer takea-way?** -The question is **Does this restaurant have a vegetarian option?** +The question is Does this restaurant have a vegetarian option? - - **No vegetarian options are available** corresponds with diet:vegetarian=no - - **Some vegetarian options are available** corresponds with diet:vegetarian=limited - - **Vegetarian options are available** corresponds with diet:vegetarian=yes - - **All dishes are vegetarian** corresponds with diet:vegetarian=only + - No vegetarian options are available corresponds with `diet:vegetarian=no` + - Some vegetarian options are available corresponds with `diet:vegetarian=limited` + - Vegetarian options are available corresponds with `diet:vegetarian=yes` + - All dishes are vegetarian corresponds with `diet:vegetarian=only` @@ -280,16 +352,16 @@ The question is **Does this restaurant have a vegetarian option?** -The question is **Does this business serve vegan meals?** +The question is Does this business serve vegan meals? - - **No vegan options available** corresponds with diet:vegan=no - - **Some vegan options are available** corresponds with diet:vegan=limited - - **Vegan options are available** corresponds with diet:vegan=yes - - **All dishes are vegan** corresponds with diet:vegan=only + - No vegan options available corresponds with `diet:vegan=no` + - Some vegan options are available corresponds with `diet:vegan=limited` + - Vegan options are available corresponds with `diet:vegan=yes` + - All dishes are vegan corresponds with `diet:vegan=only` @@ -298,16 +370,16 @@ The question is **Does this business serve vegan meals?** -The question is **Does this restaurant offer a halal menu?** +The question is Does this restaurant offer a halal menu? - - **There are no halal options available** corresponds with diet:halal=no - - **There is a small halal menu** corresponds with diet:halal=limited - - **There is a halal menu** corresponds with diet:halal=yes - - **Only halal options are available** corresponds with diet:halal=only + - There are no halal options available corresponds with `diet:halal=no` + - There is a small halal menu corresponds with `diet:halal=limited` + - There is a halal menu corresponds with `diet:halal=yes` + - Only halal options are available corresponds with `diet:halal=only` @@ -316,18 +388,18 @@ The question is **Does this restaurant offer a halal menu?** -The question is **Does this fries shop have vegetarian snacks?** +The question is Does this fries shop have vegetarian snacks? - - **Vegetarian snacks are available** corresponds with diet:vegetarian=yes - - **Only a small selection of snacks are vegetarian** corresponds with diet:vegetarian=limited - - **No vegetarian snacks are available** corresponds with diet:vegetarian=no + - Vegetarian snacks are available corresponds with `diet:vegetarian=yes` + - Only a small selection of snacks are vegetarian corresponds with `diet:vegetarian=limited` + - No vegetarian snacks are available corresponds with `diet:vegetarian=no` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -335,18 +407,18 @@ Only visible if `cuisine=friture` is shown -The question is **Does this fries shop have vegan snacks?** +The question is Does this fries shop have vegan snacks? - - **Vegan snacks are available** corresponds with diet:vegan=yes - - **A small selection of vegan snacks are available** corresponds with diet:vegan=limited - - **No vegan snacks are available** corresponds with diet:vegan=no + - Vegan snacks are available corresponds with `diet:vegan=yes` + - A small selection of vegan snacks are available corresponds with `diet:vegan=limited` + - No vegan snacks are available corresponds with `diet:vegan=no` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -354,17 +426,17 @@ Only visible if `cuisine=friture` is shown -The question is **Does this fries shop use vegetable or animal cooking?** +The question is Does this fries shop use vegetable or animal oil for cooking? - - **Vegetable oil** corresponds with friture:oil=vegetable - - **Animal oil** corresponds with friture:oil=animal + - The frying is done with vegetable oil corresponds with `friture:oil=vegetable` + - The frying is done with animal oil corresponds with `friture:oil=animal` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -372,18 +444,18 @@ Only visible if `cuisine=friture` is shown -The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
** +The question is If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
- - **You can bring your own containers to get your order, saving on single-use packaging material and thus waste** corresponds with reusable_packaging:accept=yes - - **Bringing your own container is not allowed** corresponds with reusable_packaging:accept=no - - **You must bring your own container to order here.** corresponds with reusable_packaging:accept=only + - You can bring your own containers to get your order, saving on single-use packaging material and thus waste corresponds with `reusable_packaging:accept=yes` + - Bringing your own container is not allowed corresponds with `reusable_packaging:accept=no` + - You must bring your own container to order here. corresponds with `reusable_packaging:accept=only` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -391,16 +463,16 @@ Only visible if `cuisine=friture` is shown -The question is **Does this amenity have electrical outlets, available to customers when they are inside?** +The question is Does this amenity have electrical outlets, available to customers when they are inside? - - **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=yes - - **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=limited - - **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with service:electricity=ask - - **There are a no domestic sockets available to customers seated indoors** corresponds with service:electricity=no + - There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=yes` + - There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=limited` + - There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `service:electricity=ask` + - There are a no domestic sockets available to customers seated indoors corresponds with `service:electricity=no` @@ -409,16 +481,16 @@ The question is **Does this amenity have electrical outlets, available to custom -The question is **Are dogs allowed in this business?** +The question is Are dogs allowed in this business? - - **Dogs are allowed** corresponds with dog=yes - - **Dogs are not allowed** corresponds with dog=no - - **Dogs are allowed, but they have to be leashed** corresponds with dog=leashed - - **Dogs are allowed and can run around freely** corresponds with dog=unleashed + - Dogs are allowed corresponds with `dog=yes` + - Dogs are not allowed corresponds with `dog=no` + - Dogs are allowed, but they have to be leashed corresponds with `dog=leashed` + - Dogs are allowed and can run around freely corresponds with `dog=unleashed` @@ -427,7 +499,9 @@ The question is **Are dogs allowed in this business?** -_This tagrendering has no question and is thus read-only_ +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/friture.md b/Docs/Layers/friture.md index b97318dac9..51ebe4cbeb 100644 --- a/Docs/Layers/friture.md +++ b/Docs/Layers/friture.md @@ -39,11 +39,11 @@ Elements must have the all of following tags to be shown on this layer: - - cuisine=friture + - cuisine~^(.*;)?friture(;.*)?$ - amenity=fast_food|amenity=restaurant -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22cuisine%22%3D%22friture%22%5D%5B%22amenity%22%3D%22fast_food%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cuisine%22%3D%22friture%22%5D%5B%22amenity%22%3D%22restaurant%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%5B%22cuisine%22~%22%5E(.*%3B)%3Ffriture(%3B.*)%3F%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22cuisine%22~%22%5E(.*%3B)%3Ffriture(%3B.*)%3F%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -52,12 +52,15 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) [](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | @@ -67,6 +70,7 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) [](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) +[](https://taginfo.openstreetmap.org/keys/delivery#values) [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) [](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) @@ -84,8 +88,35 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` @@ -94,10 +125,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this restaurant?** +The question is What is the name of this restaurant? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `The name of this restaurant is {name}` + +This is rendered with The name of this restaurant is {name} + + @@ -105,14 +139,14 @@ This is rendered with `The name of this restaurant is {name}` -The question is **What type of business is this?** +The question is What type of business is this? - - **This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.** corresponds with amenity=fast_food - - **A restaurant, focussed on creating a nice experience where one is served at the table** corresponds with amenity=restaurant + - This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional. corresponds with `amenity=fast_food` + - A restaurant, focused on creating a nice experience where one is served at the table corresponds with `amenity=restaurant` @@ -121,10 +155,13 @@ The question is **What type of business is this?** -The question is **What are the opening hours of {title()}?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + @@ -132,14 +169,18 @@ This is rendered with `

Opening hours

{opening_hours_table(opening_hours) -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -148,14 +189,18 @@ This is rendered with `{website}` -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer @@ -164,14 +209,18 @@ This is rendered with `{email}` -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer @@ -180,14 +229,16 @@ This is rendered with `{phone}` -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no @@ -196,16 +247,16 @@ The question is **Which methods of payment are accepted here?** -The question is **Is this place accessible with a wheelchair?** +The question is Is this place accessible with a wheelchair? - - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated - - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes - - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited - - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` @@ -214,28 +265,31 @@ The question is **Is this place accessible with a wheelchair?** -The question is **Which food is served here?** +The question is Which food is served here? This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) -This is rendered with `This place mostly serves {cuisine}` + +This is rendered with This place mostly serves {cuisine} - - **This is a pizzeria** corresponds with cuisine=pizza - - **This is a friture** corresponds with cuisine=friture - - **Mainly serves pasta** corresponds with cuisine=pasta - - **This is kebab shop** corresponds with cuisine=kebab - - **This is a sandwichbar** corresponds with cuisine=sandwich - - **Burgers are served here** corresponds with cuisine=burger - - **Sushi is served here** corresponds with cuisine=sushi - - **Coffee is served here** corresponds with cuisine=coffee - - **This is an italian restaurant (which serves more then pasta and pizza)** corresponds with cuisine=italian - - **French dishes are served here** corresponds with cuisine=french - - **Chinese dishes are served here** corresponds with cuisine=chinese - - **Greek dishes are served here** corresponds with cuisine=greek - - **Indian dishes are served here** corresponds with cuisine=indian - - **Turkish dishes are served here** corresponds with cuisine=turkish - - **Thai dishes are served here** corresponds with cuisine=thai + + + - This is a pizzeria corresponds with `cuisine=pizza` + - This is a friture corresponds with `cuisine=friture` + - Mainly serves pasta corresponds with `cuisine=pasta` + - This is kebab shop corresponds with `cuisine=kebab` + - This is a sandwichbar corresponds with `cuisine=sandwich` + - Burgers are served here corresponds with `cuisine=burger` + - Sushi is served here corresponds with `cuisine=sushi` + - Coffee is served here corresponds with `cuisine=coffee` + - This is an italian restaurant (which serves more then pasta and pizza) corresponds with `cuisine=italian` + - French dishes are served here corresponds with `cuisine=french` + - Chinese dishes are served here corresponds with `cuisine=chinese` + - Greek dishes are served here corresponds with `cuisine=greek` + - Indian dishes are served here corresponds with `cuisine=indian` + - Turkish dishes are served here corresponds with `cuisine=turkish` + - Thai dishes are served here corresponds with `cuisine=thai` @@ -244,15 +298,31 @@ This is rendered with `This place mostly serves {cuisine}` -The question is **Does this place offer takea-way?** +The question is Does this place offer take-away? - - **This is a take-away only business** corresponds with takeaway=only - - **Take-away is possible here** corresponds with takeaway=yes - - **Take-away is not possible here** corresponds with takeaway=no + - This is a take-away only business corresponds with `takeaway=only` + - Take-away is possible here corresponds with `takeaway=yes` + - Take-away is not possible here corresponds with `takeaway=no` + + + + +### delivery + + + +The question is Delivers {title()} their food at home? + + + + + + - This business does home delivery (eventually via a third party) corresponds with `delivery=yes` + - This business does not deliver at home corresponds with `delivery=no` @@ -261,16 +331,16 @@ The question is **Does this place offer takea-way?** -The question is **Does this restaurant have a vegetarian option?** +The question is Does this restaurant have a vegetarian option? - - **No vegetarian options are available** corresponds with diet:vegetarian=no - - **Some vegetarian options are available** corresponds with diet:vegetarian=limited - - **Vegetarian options are available** corresponds with diet:vegetarian=yes - - **All dishes are vegetarian** corresponds with diet:vegetarian=only + - No vegetarian options are available corresponds with `diet:vegetarian=no` + - Some vegetarian options are available corresponds with `diet:vegetarian=limited` + - Vegetarian options are available corresponds with `diet:vegetarian=yes` + - All dishes are vegetarian corresponds with `diet:vegetarian=only` @@ -279,16 +349,16 @@ The question is **Does this restaurant have a vegetarian option?** -The question is **Does this business serve vegan meals?** +The question is Does this business serve vegan meals? - - **No vegan options available** corresponds with diet:vegan=no - - **Some vegan options are available** corresponds with diet:vegan=limited - - **Vegan options are available** corresponds with diet:vegan=yes - - **All dishes are vegan** corresponds with diet:vegan=only + - No vegan options available corresponds with `diet:vegan=no` + - Some vegan options are available corresponds with `diet:vegan=limited` + - Vegan options are available corresponds with `diet:vegan=yes` + - All dishes are vegan corresponds with `diet:vegan=only` @@ -297,16 +367,16 @@ The question is **Does this business serve vegan meals?** -The question is **Does this restaurant offer a halal menu?** +The question is Does this restaurant offer a halal menu? - - **There are no halal options available** corresponds with diet:halal=no - - **There is a small halal menu** corresponds with diet:halal=limited - - **There is a halal menu** corresponds with diet:halal=yes - - **Only halal options are available** corresponds with diet:halal=only + - There are no halal options available corresponds with `diet:halal=no` + - There is a small halal menu corresponds with `diet:halal=limited` + - There is a halal menu corresponds with `diet:halal=yes` + - Only halal options are available corresponds with `diet:halal=only` @@ -315,18 +385,18 @@ The question is **Does this restaurant offer a halal menu?** -The question is **Does this fries shop have vegetarian snacks?** +The question is Does this fries shop have vegetarian snacks? - - **Vegetarian snacks are available** corresponds with diet:vegetarian=yes - - **Only a small selection of snacks are vegetarian** corresponds with diet:vegetarian=limited - - **No vegetarian snacks are available** corresponds with diet:vegetarian=no + - Vegetarian snacks are available corresponds with `diet:vegetarian=yes` + - Only a small selection of snacks are vegetarian corresponds with `diet:vegetarian=limited` + - No vegetarian snacks are available corresponds with `diet:vegetarian=no` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -334,18 +404,18 @@ Only visible if `cuisine=friture` is shown -The question is **Does this fries shop have vegan snacks?** +The question is Does this fries shop have vegan snacks? - - **Vegan snacks are available** corresponds with diet:vegan=yes - - **A small selection of vegan snacks are available** corresponds with diet:vegan=limited - - **No vegan snacks are available** corresponds with diet:vegan=no + - Vegan snacks are available corresponds with `diet:vegan=yes` + - A small selection of vegan snacks are available corresponds with `diet:vegan=limited` + - No vegan snacks are available corresponds with `diet:vegan=no` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -353,17 +423,17 @@ Only visible if `cuisine=friture` is shown -The question is **Does this fries shop use vegetable or animal cooking?** +The question is Does this fries shop use vegetable or animal oil for cooking? - - **Vegetable oil** corresponds with friture:oil=vegetable - - **Animal oil** corresponds with friture:oil=animal + - The frying is done with vegetable oil corresponds with `friture:oil=vegetable` + - The frying is done with animal oil corresponds with `friture:oil=animal` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -371,18 +441,18 @@ Only visible if `cuisine=friture` is shown -The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
** +The question is If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
- - **You can bring your own containers to get your order, saving on single-use packaging material and thus waste** corresponds with reusable_packaging:accept=yes - - **Bringing your own container is not allowed** corresponds with reusable_packaging:accept=no - - **You must bring your own container to order here.** corresponds with reusable_packaging:accept=only + - You can bring your own containers to get your order, saving on single-use packaging material and thus waste corresponds with `reusable_packaging:accept=yes` + - Bringing your own container is not allowed corresponds with `reusable_packaging:accept=no` + - You must bring your own container to order here. corresponds with `reusable_packaging:accept=only` -Only visible if `cuisine=friture` is shown +Only visible if `cuisine=friture` is shown @@ -390,16 +460,16 @@ Only visible if `cuisine=friture` is shown -The question is **Does this amenity have electrical outlets, available to customers when they are inside?** +The question is Does this amenity have electrical outlets, available to customers when they are inside? - - **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=yes - - **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=limited - - **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with service:electricity=ask - - **There are a no domestic sockets available to customers seated indoors** corresponds with service:electricity=no + - There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=yes` + - There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `service:electricity=limited` + - There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `service:electricity=ask` + - There are a no domestic sockets available to customers seated indoors corresponds with `service:electricity=no` @@ -408,16 +478,16 @@ The question is **Does this amenity have electrical outlets, available to custom -The question is **Are dogs allowed in this business?** +The question is Are dogs allowed in this business? - - **Dogs are allowed** corresponds with dog=yes - - **Dogs are not allowed** corresponds with dog=no - - **Dogs are allowed, but they have to be leashed** corresponds with dog=leashed - - **Dogs are allowed and can run around freely** corresponds with dog=unleashed + - Dogs are allowed corresponds with `dog=yes` + - Dogs are not allowed corresponds with `dog=no` + - Dogs are allowed, but they have to be leashed corresponds with `dog=leashed` + - Dogs are allowed and can run around freely corresponds with `dog=unleashed` @@ -426,7 +496,9 @@ The question is **Are dogs allowed in this business?** -_This tagrendering has no question and is thus read-only_ +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only @@ -436,7 +508,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -446,7 +520,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/ghost_bike.md b/Docs/Layers/ghost_bike.md index 6cfaffb53a..d4f58cdd2e 100644 --- a/Docs/Layers/ghost_bike.md +++ b/Docs/Layers/ghost_bike.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -70,7 +72,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -80,7 +82,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -90,14 +94,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **Whom is remembered by this ghost bike?
Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.
** +The question is Whom is remembered by this ghost bike?
Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `In remembrance of {name}` + +This is rendered with In remembrance of {name} - - **No name is marked on the bike** corresponds with noname=yes + + + - No name is marked on the bike corresponds with `noname=yes` @@ -106,10 +113,13 @@ This is rendered with `In remembrance of {name}` -The question is **On what webpage can one find more information about the Ghost bike or the accident?** +The question is On what webpage can one find more info about the ghost bike or the accident? This rendering asks information about the property [source](https://wiki.openstreetmap.org/wiki/Key:source) -This is rendered with `More information is available` + +This is rendered with More info available + + @@ -117,10 +127,13 @@ This is rendered with `More information is av -The question is **What is the inscription on this Ghost bike?** +The question is What is the inscription on this Ghost bike? This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) -This is rendered with `{inscription}` + +This is rendered with {inscription} + + @@ -128,9 +141,12 @@ This is rendered with `{inscription}` -The question is **When was this Ghost bike installed?** +The question is When was this Ghost bike installed? This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) -This is rendered with `Placed on {start_date}` + +This is rendered with Placed on {start_date} + + This document is autogenerated from [assets/layers/ghost_bike/ghost_bike.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ghost_bike/ghost_bike.json) \ No newline at end of file diff --git a/Docs/Layers/governments.md b/Docs/Layers/governments.md new file mode 100644 index 0000000000..d0371d10dc --- /dev/null +++ b/Docs/Layers/governments.md @@ -0,0 +1,155 @@ + + + governments +============= + + + + + +This layer show governmental buildings. It was setup as commissioned layer for the client of OSOC '22 + + + + + + + - This layer is shown at zoomlevel **13** and higher + + + + +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - office=government + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22office%22%3D%22government%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### name + + + +The question is What is the name of this Governmental Office? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This Governmental Office is called {name} + + + +This document is autogenerated from [assets/layers/governments/governments.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/governments/governments.json) \ No newline at end of file diff --git a/Docs/Layers/grass_in_parks.md b/Docs/Layers/grass_in_parks.md index c974348487..b03cd54197 100644 --- a/Docs/Layers/grass_in_parks.md +++ b/Docs/Layers/grass_in_parks.md @@ -7,7 +7,7 @@ -Searches for all accessible grass patches within public parks - these are 'groenzones'" +Searches for all accessible grass patches within public parks - these are 'groenzones' @@ -19,17 +19,6 @@ Searches for all accessible grass patches within public parks - these are 'groen -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -57,7 +46,9 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -67,7 +58,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -77,7 +68,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/hackerspace.md b/Docs/Layers/hackerspace.md new file mode 100644 index 0000000000..3bc884a0db --- /dev/null +++ b/Docs/Layers/hackerspace.md @@ -0,0 +1,294 @@ + + + hackerspace +============= + + + + + +Hackerspace + + + + + + + - This layer is shown at zoomlevel **8** and higher + + + + +#### Themes using this layer + + + + + + - [hackerspaces](https://mapcomplete.osm.be/hackerspaces) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=hackerspace + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22hackerspace%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/hackerspace#values) [hackerspace](https://wiki.openstreetmap.org/wiki/Key:hackerspace) | Multiple choice | [makerspace](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace) [](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3D) +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/service:3dprinter#values) [service:3dprinter](https://wiki.openstreetmap.org/wiki/Key:service:3dprinter) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:3dprinter%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:3dprinter%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:lasercutter#values) [service:lasercutter](https://wiki.openstreetmap.org/wiki/Key:service:lasercutter) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:lasercutter%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:lasercutter%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:cnc_drilling_machine#values) [service:cnc_drilling_machine](https://wiki.openstreetmap.org/wiki/Key:service:cnc_drilling_machine) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:cnc_drilling_machine%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:cnc_drilling_machine%3Dno) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/drink:club-mate#values) [drink:club-mate](https://wiki.openstreetmap.org/wiki/Key:drink:club-mate) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno) +[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | + + + + +### is_makerspace + + + +The question is Is this a hackerspace or a makerspace? + + + + + + - This is a makerspace corresponds with `hackerspace=makerspace` + - This is a traditional (software oriented) hackerspace corresponds with `` + + + + +### hackerspaces-name + + + +The question is What is the name of this hackerspace? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This hackerspace is named {name} + + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### hackerspaces-opening_hours + + + +The question is When is this hackerspace opened? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with {opening_hours_table()} + + + + + + - Opened 24/7 corresponds with `opening_hours=24/7` + + + + +### hackerspaces-service-3dprinter + + + +The question is Is a 3D-printer available at this hackerspace? + + + + + + - There is a 3D-printer available at this hackerspace corresponds with `service:3dprinter=yes` + - There is no 3D-printer available at this hackerspace corresponds with `service:3dprinter=no` + + + + +### hackerspaces-service-lasercutter + + + +The question is Is a laser cutter available at this hackerspace? + + + + + + - There is a laser cutter available at this hackerspace corresponds with `service:lasercutter=yes` + - There is no laser cutter available at this hackerspace corresponds with `service:lasercutter=no` + + + + +### hackerspaces-service-cnc_drilling_machine + + + +The question is Is a CNC drill available at this hackerspace? + + + + + + - There is a CNC drill available at this hackerspace corresponds with `service:cnc_drilling_machine=yes` + - There is no CNC drill available at this hackerspace corresponds with `service:cnc_drilling_machine=no` + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + + + + + +### wheelchair-access + + + +The question is Is this place accessible with a wheelchair? + + + + + + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` + + + + +### hs-club-mate + + + +The question is Does this hackerspace serve Club Mate? + + + + + + - This hackerspace serves club mate corresponds with `drink:club-mate=yes` + - This hackerspace does not serve club mate corresponds with `drink:club-mate=no` + + + + +### hackerspaces-start_date + + + +The question is When was this hackerspace founded? + +This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) + +This is rendered with This hackerspace was founded at {start_date} + + + +This document is autogenerated from [assets/layers/hackerspace/hackerspace.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hackerspace/hackerspace.json) \ No newline at end of file diff --git a/Docs/Layers/health_and_social_places_without_etymology.md b/Docs/Layers/health_and_social_places_without_etymology.md index 0119d8469a..f0a09340ec 100644 --- a/Docs/Layers/health_and_social_places_without_etymology.md +++ b/Docs/Layers/health_and_social_places_without_etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/hospital.md b/Docs/Layers/hospital.md new file mode 100644 index 0000000000..a23028ef1c --- /dev/null +++ b/Docs/Layers/hospital.md @@ -0,0 +1,144 @@ + + + hospital +========== + + + + + +A layer showing hospital grounds + + + + + + + - This layer is shown at zoomlevel **12** and higher + + + + +#### Themes using this layer + + + + + + - [healthcare](https://mapcomplete.osm.be/healthcare) + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=hospital + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22hospital%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | + + + + +### name + + + +The question is What is the name of this hospital? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This hospital is called {name} + + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + +This document is autogenerated from [assets/layers/hospital/hospital.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hospital/hospital.json) \ No newline at end of file diff --git a/Docs/Layers/hotel.md b/Docs/Layers/hotel.md new file mode 100644 index 0000000000..7bda3b05fc --- /dev/null +++ b/Docs/Layers/hotel.md @@ -0,0 +1,186 @@ + + + hotel +======= + + + + + +Layer showing all hotels + + + + + + + - This layer is shown at zoomlevel **13** and higher + + + + +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tourism=hotel + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22tourism%22%3D%22hotel%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + + + + + +### name + + + +The question is What is the name of this hotel? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This hotel is called {name} + + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### wheelchair-access + + + +The question is Is this place accessible with a wheelchair? + + + + + + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` + + +This document is autogenerated from [assets/layers/hotel/hotel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hotel/hotel.json) \ No newline at end of file diff --git a/Docs/Layers/hydrant.md b/Docs/Layers/hydrant.md index afa91e07b6..8ae1771c46 100644 --- a/Docs/Layers/hydrant.md +++ b/Docs/Layers/hydrant.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -69,16 +71,20 @@ attribute | type | values which are supported by this layer -The question is **What color is the hydrant?** +The question is What color is the hydrant? This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) -This is rendered with `The hydrant color is {colour}` + +This is rendered with The hydrant color is {colour} - - **The hydrant color is unknown.** corresponds with _This option cannot be chosen as answer_ - - **The hydrant color is yellow.** corresponds with colour=yellow - - **The hydrant color is red.** corresponds with colour=red + + + - The hydrant color is unknown. corresponds with `` + - This option cannot be chosen as answer + - The hydrant color is yellow. corresponds with `colour=yellow` + - The hydrant color is red. corresponds with `colour=red` @@ -87,18 +93,22 @@ This is rendered with `The hydrant color is {colour}` -The question is **What type of hydrant is it?** +The question is What type of hydrant is it? This rendering asks information about the property [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) -This is rendered with ` Hydrant type: {fire_hydrant:type}` + +This is rendered with Hydrant type: {fire_hydrant:type} - - **The hydrant type is unknown.** corresponds with _This option cannot be chosen as answer_ - - **Pillar type.** corresponds with fire_hydrant:type=pillar - - **Pipe type.** corresponds with fire_hydrant:type=pipe - - **Wall type.** corresponds with fire_hydrant:type=wall - - **Underground type.** corresponds with fire_hydrant:type=underground + + + - The hydrant type is unknown. corresponds with `` + - This option cannot be chosen as answer + - Pillar type. corresponds with `fire_hydrant:type=pillar` + - Pipe type. corresponds with `fire_hydrant:type=pipe` + - Wall type. corresponds with `fire_hydrant:type=wall` + - Underground type. corresponds with `fire_hydrant:type=underground` @@ -107,15 +117,15 @@ This is rendered with ` Hydrant type: {fire_hydrant:type}` -The question is **Is this hydrant still working?** +The question is Is this hydrant still working? - - **The hydrant is (fully or partially) working** corresponds with emergency=fire_hydrant - - **The hydrant is unavailable** corresponds with disused:emergency=fire_hydrant - - **The hydrant has been removed** corresponds with removed:emergency=fire_hydrant + - The hydrant is (fully or partially) working corresponds with `emergency=fire_hydrant` + - The hydrant is unavailable corresponds with `disused:emergency=fire_hydrant` + - The hydrant has been removed corresponds with `removed:emergency=fire_hydrant` @@ -124,7 +134,9 @@ The question is **Is this hydrant still working?** -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/id_presets.md b/Docs/Layers/id_presets.md new file mode 100644 index 0000000000..da51ccd10e --- /dev/null +++ b/Docs/Layers/id_presets.md @@ -0,0 +1,398 @@ + + + id_presets +============ + + + + + +Layer containing various presets and questions generated by ID. These are meant to be reused in other layers by importing the tagRenderings with `id_preset. + + + + + + + - This layer is shown at zoomlevel **0** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^..*$ + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22id%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | Multiple choice | [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [hobby](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhobby) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) +[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | Multiple choice | [boutique](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboutique) [fashion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion) [vacant](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacant) [yes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dyes) [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [hobby](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhobby) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) + + + + +### shop_types + + + +This tagrendering has no question and is thus read-only + + + + + + - Farm Supply Shop corresponds with `shop=agrarian` + - Liquor Store corresponds with `shop=alcohol` + - Anime / Manga Shop corresponds with `shop=anime` + - Antiques Shop corresponds with `shop=antiques` + - Appliance Store corresponds with `shop=appliance` + - Art Store corresponds with `shop=art` + - Baby Goods Store corresponds with `shop=baby_goods` + - Bag/Luggage Store corresponds with `shop=bag` + - Bakery corresponds with `shop=bakery` + - Bathroom Furnishing Store corresponds with `shop=bathroom_furnishing` + - Beauty Shop corresponds with `shop=beauty` + - Bedding/Mattress Store corresponds with `shop=bed` + - Beverage Store corresponds with `shop=beverages` + - Bicycle Shop corresponds with `shop=bicycle` + - Boat Store corresponds with `shop=boat` + - Bookmaker corresponds with `shop=bookmaker` + - Book Store corresponds with `shop=books` + - Brewing Supply Store corresponds with `shop=brewing_supplies` + - Butcher corresponds with `shop=butcher` + - Camera Equipment Store corresponds with `shop=camera` + - Candle Shop corresponds with `shop=candles` + - Cannabis Shop corresponds with `shop=cannabis` + - Car Dealership corresponds with `shop=car` + - Car Parts Store corresponds with `shop=car_parts` + - Car Repair Shop corresponds with `shop=car_repair` + - RV Dealership corresponds with `shop=caravan` + - Carpet Store corresponds with `shop=carpet` + - Catalog Shop corresponds with `shop=catalogue` + - Charity Store corresponds with `shop=charity` + - Cheese Store corresponds with `shop=cheese` + - Drugstore corresponds with `shop=chemist` + - Chocolate Store corresponds with `shop=chocolate` + - Clothing Store corresponds with `shop=clothes` + - Coffee Store corresponds with `shop=coffee` + - Collectibles Shop corresponds with `shop=collector` + - Computer Store corresponds with `shop=computer` + - Candy Store corresponds with `shop=confectionery` + - Convenience Store corresponds with `shop=convenience` + - Copy Store corresponds with `shop=copyshop` + - Cosmetics Store corresponds with `shop=cosmetics` + - Country Store corresponds with `shop=country_store` + - Arts & Crafts Store corresponds with `shop=craft` + - Curtain Store corresponds with `shop=curtain` + - Dairy Store corresponds with `shop=dairy` + - Deli corresponds with `shop=deli` + - Department Store corresponds with `shop=department_store` + - DIY Store corresponds with `shop=doityourself` + - Door Shop corresponds with `shop=doors` + - Dry Cleaner corresponds with `shop=dry_cleaning` + - E-Cigarette Shop corresponds with `shop=e-cigarette` + - Electrical Equipment Store corresponds with `shop=electrical` + - Electronics Store corresponds with `shop=electronics` + - Erotic Store corresponds with `shop=erotic` + - Fabric Store corresponds with `shop=fabric` + - Produce Stand corresponds with `shop=farm` + - Fashion Accessories Store corresponds with `shop=fashion_accessories` + - Fireplace Store corresponds with `shop=fireplace` + - Fishing Shop corresponds with `shop=fishing` + - Flooring Supply Shop corresponds with `shop=flooring` + - Florist corresponds with `shop=florist` + - Framing Shop corresponds with `shop=frame` + - Frozen Food Store corresponds with `shop=frozen_food` + - Fuel Shop corresponds with `shop=fuel` + - Funeral Home corresponds with `shop=funeral_directors` + - Furniture Store corresponds with `shop=furniture` + - Tabletop Game Store corresponds with `shop=games` + - Garden Center corresponds with `shop=garden_centre` + - Bottled Gas Shop corresponds with `shop=gas` + - General Store corresponds with `shop=general` + - Gift Shop corresponds with `shop=gift` + - Greengrocer corresponds with `shop=greengrocer` + - Hairdresser corresponds with `shop=hairdresser` + - Hairdresser Supply Store corresponds with `shop=hairdresser_supply` + - Hardware Store corresponds with `shop=hardware` + - Health Food Shop corresponds with `shop=health_food` + - Hearing Aids Store corresponds with `shop=hearing_aids` + - Herbalist corresponds with `shop=herbalist` + - Hifi Store corresponds with `shop=hifi` + - Hobby Shop corresponds with `shop=hobby` + - Household Linen Shop corresponds with `shop=household_linen` + - Houseware Store corresponds with `shop=houseware` + - Hunting Shop corresponds with `shop=hunting` + - Interior Decoration Store corresponds with `shop=interior_decoration` + - Jewelry Store corresponds with `shop=jewelry` + - Kiosk corresponds with `shop=kiosk` + - Kitchen Design Store corresponds with `shop=kitchen` + - Laundry corresponds with `shop=laundry` + - Leather Store corresponds with `shop=leather` + - Lighting Store corresponds with `shop=lighting` + - Locksmith corresponds with `shop=locksmith` + - Lottery Shop corresponds with `shop=lottery` + - Mall corresponds with `shop=mall` + - Massage Shop corresponds with `shop=massage` + - Medical Supply Store corresponds with `shop=medical_supply` + - Military Surplus Store corresponds with `shop=military_surplus` + - Mobile Phone Store corresponds with `shop=mobile_phone` + - Model Shop corresponds with `shop=model` + - Money Lender corresponds with `shop=money_lender` + - Motorcycle Dealership corresponds with `shop=motorcycle` + - Motorcycle Repair Shop corresponds with `shop=motorcycle_repair` + - Music Store corresponds with `shop=music` + - Musical Instrument Store corresponds with `shop=musical_instrument` + - Newspaper/Magazine Shop corresponds with `shop=newsagent` + - Nutrition Supplements Store corresponds with `shop=nutrition_supplements` + - Optician corresponds with `shop=optician` + - Outdoors Store corresponds with `shop=outdoor` + - Online Retailer Outpost corresponds with `shop=outpost` + - Paint Store corresponds with `shop=paint` + - Party Supply Store corresponds with `shop=party` + - Pastry Shop corresponds with `shop=pastry` + - Pawn Shop corresponds with `shop=pawnbroker` + - Perfume Store corresponds with `shop=perfumery` + - Pet Store corresponds with `shop=pet` + - Pet Grooming Store corresponds with `shop=pet_grooming` + - Photography Store corresponds with `shop=photo` + - Pottery Store corresponds with `shop=pottery` + - Printer Ink Store corresponds with `shop=printer_ink` + - Psychic corresponds with `shop=psychic` + - Fireworks Store corresponds with `shop=pyrotechnics` + - Radio/Electronic Component Store corresponds with `shop=radiotechnics` + - Religious Store corresponds with `shop=religion` + - Rental Shop corresponds with `shop=rental` + - Repair Shop corresponds with `shop=repair` + - Scuba Diving Shop corresponds with `shop=scuba_diving` + - Seafood Shop corresponds with `shop=seafood` + - Consignment/Thrift Store corresponds with `shop=second_hand` + - Sewing Supply Shop corresponds with `shop=sewing` + - Shoe Repair Shop corresponds with `shop=shoe_repair` + - Shoe Store corresponds with `shop=shoes` + - Spice Shop corresponds with `shop=spices` + - Sporting Goods Store corresponds with `shop=sports` + - Stationery Store corresponds with `shop=stationery` + - Storage Rental corresponds with `shop=storage_rental` + - Supermarket corresponds with `shop=supermarket` + - Pool Supply Store corresponds with `shop=swimming_pool` + - Tailor corresponds with `shop=tailor` + - Tattoo Parlor corresponds with `shop=tattoo` + - Tea Store corresponds with `shop=tea` + - Telecom Retail Store corresponds with `shop=telecommunication` + - Ticket Seller corresponds with `shop=ticket` + - Tile Shop corresponds with `shop=tiles` + - Tobacco Shop corresponds with `shop=tobacco` + - Tool Rental corresponds with `shop=tool_hire` + - Toy Store corresponds with `shop=toys` + - Trade Shop corresponds with `shop=trade` + - Travel Agency corresponds with `shop=travel_agency` + - Trophy Shop corresponds with `shop=trophy` + - Tire Store corresponds with `shop=tyres` + - Vacuum Cleaner Store corresponds with `shop=vacuum_cleaner` + - Variety Store corresponds with `shop=variety_store` + - Video Store corresponds with `shop=video` + - Video Game Store corresponds with `shop=video_games` + - Watches Shop corresponds with `shop=watches` + - Drinking Water Shop corresponds with `shop=water` + - Watersport/Swim Shop corresponds with `shop=water_sports` + - Weapon Shop corresponds with `shop=weapons` + - Wholesale Store corresponds with `shop=wholesale` + - Wig Shop corresponds with `shop=wigs` + - Window Blind Store corresponds with `shop=window_blind` + - Wine Shop corresponds with `shop=wine` + + + + +### shop_rendering + + + +This tagrendering has no question and is thus read-only + + + + + + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=boutique` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=fashion` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=vacant` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=yes` + - circle:white;./assets/layers/id_presets/fas-tractor.svg corresponds with `shop=agrarian` + - circle:white;./assets/layers/id_presets/fas-wine-bottle.svg corresponds with `shop=alcohol` + - circle:white;./assets/layers/id_presets/fas-dragon.svg corresponds with `shop=anime` + - circle:white;./assets/layers/id_presets/temaki-furniture.svg corresponds with `shop=antiques` + - circle:white;./assets/layers/id_presets/temaki-laundry.svg corresponds with `shop=appliance` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=art` + - circle:white;./assets/layers/id_presets/fas-baby-carriage.svg corresponds with `shop=baby_goods` + - circle:white;./assets/layers/id_presets/fas-suitcase-rolling.svg corresponds with `shop=bag` + - circle:white;./assets/layers/id_presets/maki-bakery.svg corresponds with `shop=bakery` + - circle:white;./assets/layers/id_presets/fas-bath.svg corresponds with `shop=bathroom_furnishing` + - circle:white;./assets/layers/id_presets/temaki-lipstick.svg corresponds with `shop=beauty` + - circle:white;./assets/layers/id_presets/maki-lodging.svg corresponds with `shop=bed` + - circle:white;./assets/layers/id_presets/temaki-bottles.svg corresponds with `shop=beverages` + - circle:white;./assets/layers/id_presets/maki-bicycle.svg corresponds with `shop=bicycle` + - circle:white;./assets/layers/id_presets/temaki-boat.svg corresponds with `shop=boat` + - circle:white;./assets/layers/id_presets/temaki-money_hand.svg corresponds with `shop=bookmaker` + - circle:white;./assets/layers/id_presets/fas-book.svg corresponds with `shop=books` + - circle:white;./assets/layers/id_presets/temaki-storage_fermenter.svg corresponds with `shop=brewing_supplies` + - circle:white;./assets/layers/id_presets/temaki-cleaver.svg corresponds with `shop=butcher` + - circle:white;./assets/layers/id_presets/fas-camera-retro.svg corresponds with `shop=camera` + - circle:white;./assets/layers/id_presets/fas-cannabis.svg corresponds with `shop=cannabis` + - circle:white;./assets/layers/id_presets/maki-car.svg corresponds with `shop=car` + - circle:white;./assets/layers/id_presets/fas-car-battery.svg corresponds with `shop=car_parts` + - circle:white;./assets/layers/id_presets/maki-car-repair.svg corresponds with `shop=car_repair` + - circle:white;./assets/layers/id_presets/temaki-camper_trailer.svg corresponds with `shop=caravan` + - circle:white;./assets/layers/id_presets/fas-tape.svg corresponds with `shop=carpet` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=catalogue` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=charity` + - circle:white;./assets/layers/id_presets/fas-cheese.svg corresponds with `shop=cheese` + - circle:white;./assets/layers/id_presets/maki-confectionery.svg corresponds with `shop=chocolate` + - circle:white;./assets/layers/id_presets/maki-clothing-store.svg corresponds with `shop=clothes` + - circle:white;./assets/layers/id_presets/temaki-coffee.svg corresponds with `shop=coffee` + - circle:white;./assets/layers/id_presets/fas-laptop.svg corresponds with `shop=computer` + - circle:white;./assets/layers/id_presets/maki-confectionery.svg corresponds with `shop=confectionery` + - circle:white;./assets/layers/id_presets/fas-print.svg corresponds with `shop=copyshop` + - circle:white;./assets/layers/id_presets/temaki-lipstick.svg corresponds with `shop=cosmetics` + - circle:white;./assets/layers/id_presets/fas-hat-cowboy-side.svg corresponds with `shop=country_store` + - circle:white;./assets/layers/id_presets/temaki-curtains.svg corresponds with `shop=curtain` + - circle:white;./assets/layers/id_presets/fas-cheese.svg corresponds with `shop=dairy` + - circle:white;./assets/layers/id_presets/temaki-meat.svg corresponds with `shop=deli` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=department_store` + - circle:white;./assets/layers/id_presets/temaki-tools.svg corresponds with `shop=doityourself` + - circle:white;./assets/layers/id_presets/fas-door-open.svg corresponds with `shop=doors` + - circle:white;./assets/layers/id_presets/temaki-clothes_hanger.svg corresponds with `shop=dry_cleaning` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=e-cigarette` + - circle:white;./assets/layers/id_presets/temaki-power.svg corresponds with `shop=electrical` + - circle:white;./assets/layers/id_presets/fas-plug.svg corresponds with `shop=electronics` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=erotic` + - circle:white;./assets/layers/id_presets/fas-tape.svg corresponds with `shop=fabric` + - circle:white;./assets/layers/id_presets/temaki-fashion_accessories.svg corresponds with `shop=fashion_accessories` + - circle:white;./assets/layers/id_presets/temaki-fireplace.svg corresponds with `shop=fireplace` + - circle:white;./assets/layers/id_presets/temaki-ice_fishing.svg corresponds with `shop=fishing` + - circle:white;./assets/layers/id_presets/temaki-tools.svg corresponds with `shop=flooring` + - circle:white;./assets/layers/id_presets/maki-florist.svg corresponds with `shop=florist` + - circle:white;./assets/layers/id_presets/fas-vector-square.svg corresponds with `shop=frame` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=frozen_food` + - circle:white;./assets/layers/id_presets/temaki-propane_tank.svg corresponds with `shop=fuel` + - circle:white;./assets/layers/id_presets/maki-cemetery.svg corresponds with `shop=funeral_directors` + - circle:white;./assets/layers/id_presets/fas-couch.svg corresponds with `shop=furniture` + - circle:white;./assets/layers/id_presets/fas-dice.svg corresponds with `shop=games` + - circle:white;./assets/layers/id_presets/maki-garden-centre.svg corresponds with `shop=garden_centre` + - circle:white;./assets/layers/id_presets/temaki-propane_tank.svg corresponds with `shop=gas` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=general` + - circle:white;./assets/layers/id_presets/maki-gift.svg corresponds with `shop=gift` + - circle:white;./assets/layers/id_presets/fas-carrot.svg corresponds with `shop=greengrocer` + - circle:white;./assets/layers/id_presets/temaki-beauty_salon.svg corresponds with `shop=hairdresser` + - circle:white;./assets/layers/id_presets/temaki-hair_care.svg corresponds with `shop=hairdresser_supply` + - circle:white;./assets/layers/id_presets/temaki-tools.svg corresponds with `shop=hardware` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=health_food` + - circle:white;./assets/layers/id_presets/temaki-hearing_aid.svg corresponds with `shop=hearing_aids` + - circle:white;./assets/layers/id_presets/fas-leaf.svg corresponds with `shop=herbalist` + - circle:white;./assets/layers/id_presets/temaki-speaker.svg corresponds with `shop=hifi` + - circle:white;./assets/layers/id_presets/fas-dragon.svg corresponds with `shop=hobby` + - circle:white;./assets/layers/id_presets/temaki-cloth.svg corresponds with `shop=household_linen` + - circle:white;./assets/layers/id_presets/fas-blender.svg corresponds with `shop=houseware` + - circle:white;./assets/layers/id_presets/temaki-bow_and_arrow.svg corresponds with `shop=hunting` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=interior_decoration` + - circle:white;./assets/layers/id_presets/maki-jewelry-store.svg corresponds with `shop=jewelry` + - circle:white;./assets/layers/id_presets/fas-store.svg corresponds with `shop=kiosk` + - circle:white;./assets/layers/id_presets/temaki-kitchen_sink.svg corresponds with `shop=kitchen` + - circle:white;./assets/layers/id_presets/temaki-laundry.svg corresponds with `shop=laundry` + - circle:white;./assets/layers/id_presets/temaki-handbag.svg corresponds with `shop=leather` + - circle:white;./assets/layers/id_presets/temaki-desk_lamp.svg corresponds with `shop=lighting` + - circle:white;./assets/layers/id_presets/fas-key.svg corresponds with `shop=locksmith` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=mall` + - circle:white;./assets/layers/id_presets/temaki-spa.svg corresponds with `shop=massage` + - circle:white;./assets/layers/id_presets/fas-crutch.svg corresponds with `shop=medical_supply` + - circle:white;./assets/layers/id_presets/temaki-military.svg corresponds with `shop=military_surplus` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=model` + - circle:white;./assets/layers/id_presets/temaki-money_hand.svg corresponds with `shop=money_lender` + - circle:white;./assets/layers/id_presets/fas-motorcycle.svg corresponds with `shop=motorcycle` + - circle:white;./assets/layers/id_presets/temaki-motorcycle_repair.svg corresponds with `shop=motorcycle_repair` + - circle:white;./assets/layers/id_presets/fas-compact-disc.svg corresponds with `shop=music` + - circle:white;./assets/layers/id_presets/fas-guitar.svg corresponds with `shop=musical_instrument` + - circle:white;./assets/layers/id_presets/fas-newspaper.svg corresponds with `shop=newsagent` + - circle:white;./assets/layers/id_presets/fas-pills.svg corresponds with `shop=nutrition_supplements` + - circle:white;./assets/layers/id_presets/maki-optician.svg corresponds with `shop=optician` + - circle:white;./assets/layers/id_presets/temaki-compass.svg corresponds with `shop=outdoor` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=outpost` + - circle:white;./assets/layers/id_presets/fas-paint-roller.svg corresponds with `shop=paint` + - circle:white;./assets/layers/id_presets/temaki-balloon.svg corresponds with `shop=party` + - circle:white;./assets/layers/id_presets/maki-bakery.svg corresponds with `shop=pastry` + - circle:white;./assets/layers/id_presets/temaki-money_hand.svg corresponds with `shop=pawnbroker` + - circle:white;./assets/layers/id_presets/temaki-perfume.svg corresponds with `shop=perfumery` + - circle:white;./assets/layers/id_presets/fas-cat.svg corresponds with `shop=pet` + - circle:white;./assets/layers/id_presets/temaki-pet_grooming.svg corresponds with `shop=pet_grooming` + - circle:white;./assets/layers/id_presets/fas-camera-retro.svg corresponds with `shop=photo` + - circle:white;./assets/layers/id_presets/temaki-vase.svg corresponds with `shop=pottery` + - circle:white;./assets/layers/id_presets/fas-print.svg corresponds with `shop=printer_ink` + - circle:white;./assets/layers/id_presets/temaki-psychic.svg corresponds with `shop=psychic` + - circle:white;./assets/layers/id_presets/temaki-rocket_firework.svg corresponds with `shop=pyrotechnics` + - circle:white;./assets/layers/id_presets/fas-microchip.svg corresponds with `shop=radiotechnics` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=religion` + - circle:white;./assets/layers/id_presets/fas-dolly.svg corresponds with `shop=rental` + - circle:white;./assets/layers/id_presets/temaki-scuba_diving.svg corresponds with `shop=scuba_diving` + - circle:white;./assets/layers/id_presets/temaki-fish_cleaning.svg corresponds with `shop=seafood` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=second_hand` + - circle:white;./assets/layers/id_presets/temaki-needle_and_spool.svg corresponds with `shop=sewing` + - circle:white;./assets/layers/id_presets/temaki-hammer_shoe.svg corresponds with `shop=shoe_repair` + - circle:white;./assets/layers/id_presets/maki-shoe.svg corresponds with `shop=shoes` + - circle:white;./assets/layers/id_presets/temaki-spice_bottle.svg corresponds with `shop=spices` + - circle:white;./assets/layers/id_presets/fas-futbol.svg corresponds with `shop=sports` + - circle:white;./assets/layers/id_presets/fas-paperclip.svg corresponds with `shop=stationery` + - circle:white;./assets/layers/id_presets/temaki-storage_rental.svg corresponds with `shop=storage_rental` + - circle:white;./assets/layers/id_presets/maki-grocery.svg corresponds with `shop=supermarket` + - circle:white;./assets/layers/id_presets/temaki-needle_and_spool.svg corresponds with `shop=tailor` + - circle:white;./assets/layers/id_presets/temaki-tattoo_machine.svg corresponds with `shop=tattoo` + - circle:white;./assets/layers/id_presets/maki-teahouse.svg corresponds with `shop=tea` + - circle:white;./assets/layers/id_presets/maki-telephone.svg corresponds with `shop=telecommunication` + - circle:white;./assets/layers/id_presets/temaki-tiling.svg corresponds with `shop=tiles` + - circle:white;./assets/layers/id_presets/temaki-pipe.svg corresponds with `shop=tobacco` + - circle:white;./assets/layers/id_presets/temaki-tools.svg corresponds with `shop=tool_hire` + - circle:white;./assets/layers/id_presets/fas-rocket.svg corresponds with `shop=toys` + - circle:white;./assets/layers/id_presets/temaki-tools.svg corresponds with `shop=trade` + - circle:white;./assets/layers/id_presets/fas-suitcase.svg corresponds with `shop=travel_agency` + - circle:white;./assets/layers/id_presets/fas-trophy.svg corresponds with `shop=trophy` + - circle:white;./assets/layers/id_presets/temaki-tire.svg corresponds with `shop=tyres` + - circle:white;./assets/layers/id_presets/temaki-vacuum.svg corresponds with `shop=vacuum_cleaner` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=variety_store` + - circle:white;./assets/layers/id_presets/temaki-movie_rental.svg corresponds with `shop=video` + - circle:white;./assets/layers/id_presets/maki-gaming.svg corresponds with `shop=video_games` + - circle:white;./assets/layers/id_presets/maki-watch.svg corresponds with `shop=watches` + - circle:white;./assets/layers/id_presets/temaki-water_bottle.svg corresponds with `shop=water` + - circle:white;./assets/layers/id_presets/temaki-dagger.svg corresponds with `shop=weapons` + - circle:white;./assets/layers/id_presets/maki-warehouse.svg corresponds with `shop=wholesale` + - circle:white;./assets/layers/id_presets/maki-shop.svg corresponds with `shop=wigs` + - circle:white;./assets/layers/id_presets/temaki-window.svg corresponds with `shop=window_blind` + - circle:white;./assets/layers/id_presets/maki-alcohol-shop.svg corresponds with `shop=wine` + + +This document is autogenerated from [assets/layers/id_presets/id_presets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/id_presets/id_presets.json) \ No newline at end of file diff --git a/Docs/Layers/indoors.md b/Docs/Layers/indoors.md new file mode 100644 index 0000000000..4b5b0b9614 --- /dev/null +++ b/Docs/Layers/indoors.md @@ -0,0 +1,94 @@ + + + indoors +========= + + + + + +Basic indoor mapping: shows room outlines + + + + + + + - This layer is shown at zoomlevel **13** and higher + - This layer is needed as dependency for layer [entrance](#entrance) + + + + +#### Themes using this layer + + + + + + - [indoors](https://mapcomplete.osm.be/indoors) + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - indoor=room|indoor=area|indoor=wall|indoor=door|indoor=level + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22indoor%22%3D%22room%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22area%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22level%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### ref + + + +The question is What is the name of this room? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This room is named {name} + + + +This document is autogenerated from [assets/layers/indoors/indoors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/indoors/indoors.json) \ No newline at end of file diff --git a/Docs/Layers/information_board.md b/Docs/Layers/information_board.md index 6c29b93378..4f1c10672a 100644 --- a/Docs/Layers/information_board.md +++ b/Docs/Layers/information_board.md @@ -7,7 +7,7 @@ -A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...) +A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, …) @@ -58,7 +58,9 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/kerbs.md b/Docs/Layers/kerbs.md new file mode 100644 index 0000000000..5942804914 --- /dev/null +++ b/Docs/Layers/kerbs.md @@ -0,0 +1,129 @@ + + + kerbs +======= + + + + + +A layer showing kerbs. + + + + + + + - This layer is shown at zoomlevel **13** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [kerbs](./kerbs.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer is needed as dependency for layer [kerbs](#kerbs) + + + + +#### Themes using this layer + + + + + + - [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings) + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - barrier=kerb + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22barrier%22%3D%22kerb%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/kerb#values) [kerb](https://wiki.openstreetmap.org/wiki/Key:kerb) | Multiple choice | [raised](https://wiki.openstreetmap.org/wiki/Tag:kerb%3Draised) [lowered](https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dlowered) [flush](https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dflush) +[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) +[](https://taginfo.openstreetmap.org/keys/kerb:height#values) [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | + + + + +### kerb-type + + + +The question is What is the height of this kerb? + + + + + + - This kerb is raised (>3 cm) corresponds with `kerb=raised` + - This kerb is lowered (~3 cm) corresponds with `kerb=lowered` + - This kerb is flush (~0cm) corresponds with `kerb=flush` + - There is no kerb here corresponds with `kerb=no` + - This option cannot be chosen as answer + - There is a kerb of unknown height corresponds with `kerb=yes` + - This option cannot be chosen as answer + + +Only visible if `_geometry:type=Point` is shown + + + +### tactile-paving + + + +The question is Is there tactile paving at this kerb? + + + + + + - This kerb has tactile paving. corresponds with `tactile_paving=yes` + - This kerb does not have tactile paving. corresponds with `tactile_paving=no` + - This kerb has tactile paving, but it is incorrect corresponds with `tactile_paving=incorrect` + - This option cannot be chosen as answer + + +Only visible if `_geometry:type=Point` is shown + + + +### kerb-height + + + +The question is What is the height of this kerb? + +This rendering asks information about the property [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) + +This is rendered with Kerb height: {kerb:height} + + + +This document is autogenerated from [assets/layers/kerbs/kerbs.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kerbs/kerbs.json) \ No newline at end of file diff --git a/Docs/Layers/kindergarten_childcare.md b/Docs/Layers/kindergarten_childcare.md new file mode 100644 index 0000000000..41b37ee6a6 --- /dev/null +++ b/Docs/Layers/kindergarten_childcare.md @@ -0,0 +1,192 @@ + + + kindergarten_childcare +======================== + + + + + +Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other + + + + + + + - This layer is shown at zoomlevel **12** and higher + + + + +#### Themes using this layer + + + + + + - [education](https://mapcomplete.osm.be/education) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=childcare|amenity=kindergarten|isced:level:2011=early_childhood + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22childcare%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22kindergarten%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22isced%3Alevel%3A2011%22%3D%22early_childhood%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [kindergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten) [childcare](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare) +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | + + + + +### childcare-type + + + +The question is What type of facility is this? + + + + + + - This is a kindergarten (also known as preschool) where small kids receive early education. corresponds with `amenity=kindergarten` + - This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses corresponds with `amenity=childcare` + + + + +### name + + + +The question is What is the name of this facility? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This facility is named {name} + + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### opening_hours + + + +The question is When is this childcare opened? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + +Only visible if `amenity=childcare` is shown + + + +### capacity + + + +The question is How much kids (at most) can be enrolled here? + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) + +This is rendered with This facility has room for {capacity} kids + + + +This document is autogenerated from [assets/layers/kindergarten_childcare/kindergarten_childcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kindergarten_childcare/kindergarten_childcare.json) \ No newline at end of file diff --git a/Docs/Layers/lit_streets.md b/Docs/Layers/lit_streets.md index 6568031604..0e0ade82df 100644 --- a/Docs/Layers/lit_streets.md +++ b/Docs/Layers/lit_streets.md @@ -12,7 +12,7 @@ - - This layer is shown at zoomlevel **0** and higher + - This layer is shown at zoomlevel **16** and higher - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` @@ -39,12 +39,12 @@ Elements must have the all of following tags to be shown on this layer: - highway~^..*$ - - lit!~^no$ + - lit!=no - lit~^..*$ - - service!~^driveway$ + - service!=driveway -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%5D%5B%22lit%22!~%22%5Eno%24%22%5D%5B%22lit%22%5D%5B%22service%22!~%22%5Edriveway%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%5D%5B%22lit%22!%3D%22no%22%5D%5B%22lit%22%5D%5B%22service%22!%3D%22driveway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -64,20 +66,33 @@ attribute | type | values which are supported by this layer +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + ### lit -The question is **Is this street lit?** +The question is Is this street lit? - - **This street is lit** corresponds with lit=yes - - **This street is not lit** corresponds with lit=no - - **This street is lit at night** corresponds with lit=sunset-sunrise_This option cannot be chosen as answer_ - - **This street is lit 24/7** corresponds with lit=24/7 + - This street is lit corresponds with `lit=yes` + - This street is not lit corresponds with `lit=no` + - This street is lit at night corresponds with `lit=sunset-sunrise` + - This option cannot be chosen as answer + - This street is lit 24/7 corresponds with `lit=24/7` @@ -86,7 +101,9 @@ The question is **Is this street lit?** -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -96,7 +113,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/map.md b/Docs/Layers/map.md index dacf476dec..7118c2ad3a 100644 --- a/Docs/Layers/map.md +++ b/Docs/Layers/map.md @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -69,7 +71,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -79,14 +83,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **On which data is this map based?** +The question is On which data is this map based? This rendering asks information about the property [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) -This is rendered with `This map is based on {map_source}` + +This is rendered with This map is based on {map_source} - - **This map is based on OpenStreetMap** corresponds with map_source=OpenStreetMap + + + - This map is based on OpenStreetMap corresponds with `map_source=OpenStreetMap` @@ -95,19 +102,20 @@ This is rendered with `This map is based on {map_source}` -The question is **Is the OpenStreetMap-attribution given?** +The question is Is the OpenStreetMap-attribution given? - - **OpenStreetMap is clearly attributed, including the ODBL-license** corresponds with map_source:attribution=yes - - **OpenStreetMap is clearly attributed, but the license is not mentioned** corresponds with map_source:attribution=incomplete - - **OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it** corresponds with map_source:attribution=sticker - - **There is no attribution at all** corresponds with map_source:attribution=none - - **There is no attribution at all** corresponds with map_source:attribution=no_This option cannot be chosen as answer_ + - OpenStreetMap is clearly attributed, including the ODBL-license corresponds with `map_source:attribution=yes` + - OpenStreetMap is clearly attributed, but the license is not mentioned corresponds with `map_source:attribution=incomplete` + - OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it corresponds with `map_source:attribution=sticker` + - There is no attribution at all corresponds with `map_source:attribution=none` + - There is no attribution at all corresponds with `map_source:attribution=no` + - This option cannot be chosen as answer -Only visible if `map_source~^(O|)pen(S|s)treet(M|m)ap$|map_source=osm|map_source=OSM` is shown +Only visible if `map_source~^(O|)pen(S|s)treet(M|m)ap$|map_source=osm|map_source=OSM` is shown This document is autogenerated from [assets/layers/map/map.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/map/map.json) \ No newline at end of file diff --git a/Docs/Layers/maproulette.md b/Docs/Layers/maproulette.md new file mode 100644 index 0000000000..4a20e0ca80 --- /dev/null +++ b/Docs/Layers/maproulette.md @@ -0,0 +1,89 @@ + + + maproulette +============= + + + + + +Layer showing all tasks in MapRoulette + + + + + + + - This layer is shown at zoomlevel **15** and higher + - This layer is loaded from an external source, namely `https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}` + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^..*$ + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22id%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/status#values) [status](https://wiki.openstreetmap.org/wiki/Key:status) | Multiple choice | [0](https://wiki.openstreetmap.org/wiki/Tag:status%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:status%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:status%3D2) [3](https://wiki.openstreetmap.org/wiki/Tag:status%3D3) [4](https://wiki.openstreetmap.org/wiki/Tag:status%3D4) [5](https://wiki.openstreetmap.org/wiki/Tag:status%3D5) [6](https://wiki.openstreetmap.org/wiki/Tag:status%3D6) [9](https://wiki.openstreetmap.org/wiki/Tag:status%3D9) + + + + +### status + + + +This tagrendering has no question and is thus read-only + + + + + + - Task is created corresponds with `status=0` + - Task is fixed corresponds with `status=1` + - Task is a false positive corresponds with `status=2` + - Task is skipped corresponds with `status=3` + - Task is deleted corresponds with `status=4` + - Task is already fixed corresponds with `status=5` + - Task is marked as too hard corresponds with `status=6` + - Task is disabled corresponds with `status=9` + + + + +### blurb + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `blurb~^..*$` is shown + +This document is autogenerated from [assets/layers/maproulette/maproulette.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maproulette/maproulette.json) \ No newline at end of file diff --git a/Docs/Layers/maproulette_challenge.md b/Docs/Layers/maproulette_challenge.md new file mode 100644 index 0000000000..9f95374490 --- /dev/null +++ b/Docs/Layers/maproulette_challenge.md @@ -0,0 +1,112 @@ + + + maproulette_challenge +======================= + + + + + +Layer showing tasks of a MapRoulette challenge + + + + + + + - This layer is shown at zoomlevel **0** and higher + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - This layer is loaded from an external source, namely `https://maproulette.org/api/v2/challenge/view/27971` + + + + +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^..*$ + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22id%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/mr_taskStatus#values) [mr_taskStatus](https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus) | Multiple choice | [Created](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DCreated) [Fixed](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DFixed) [False positive](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DFalse positive) [Skipped](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DSkipped) [Deleted](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DDeleted) [Already fixed](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DAlready fixed) [Too hard](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DToo hard) [Disabled](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DDisabled) + + + + +### details + + + +This tagrendering has no question and is thus read-only + + + + + +### status + + + +This tagrendering has no question and is thus read-only + + + + + + - Task is created corresponds with `mr_taskStatus=Created` + - Task is fixed corresponds with `mr_taskStatus=Fixed` + - Task is a false positive corresponds with `mr_taskStatus=False positive` + - Task is skipped corresponds with `mr_taskStatus=Skipped` + - Task is deleted corresponds with `mr_taskStatus=Deleted` + - Task is already fixed corresponds with `mr_taskStatus=Already fixed` + - Task is marked as too hard corresponds with `mr_taskStatus=Too hard` + - Task is disabled corresponds with `mr_taskStatus=Disabled` + + + + +### blurb + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `blurb~^..*$` is shown + +This document is autogenerated from [assets/layers/maproulette_challenge/maproulette_challenge.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maproulette_challenge/maproulette_challenge.json) \ No newline at end of file diff --git a/Docs/Layers/maxspeed.md b/Docs/Layers/maxspeed.md new file mode 100644 index 0000000000..7810648d1e --- /dev/null +++ b/Docs/Layers/maxspeed.md @@ -0,0 +1,89 @@ + + + maxspeed +========== + + + + + +Shows the allowed speed for every road + + + + + + + - This layer is shown at zoomlevel **16** and higher + + + + +#### Themes using this layer + + + + + + - [maxspeed](https://mapcomplete.osm.be/maxspeed) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=residential|highway=living_street|highway=motorway|highway=tertiary|highway=unclassified|highway=secondary|highway=primary|highway=trunk|highway=motorway|highway=tertiary_link|highway=secondary_link|highway=primary_link|highway=trunk_link|highway=motorway_link + - type!=multipolygon + - area!=yes + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22motorway%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22trunk%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22motorway%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22trunk_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22motorway_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [pnat](../SpecialInputElements.md#pnat) | + + + + +### maxspeed-maxspeed + + + +The question is What is the legal maximum speed one is allowed to drive on this road? + +This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) + +This is rendered with The maximum allowed speed on this road is {maxspeed} + + + + + + - This is a living street, which has a maxspeed of 20km/h corresponds with `highway=living_street&_country!=be` + - This option cannot be chosen as answer + - This is a living street, which has a maxspeed of 20km/h corresponds with `highway=living_street` + + +This document is autogenerated from [assets/layers/maxspeed/maxspeed.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maxspeed/maxspeed.json) \ No newline at end of file diff --git a/Docs/Layers/named_streets.md b/Docs/Layers/named_streets.md index f729fc5132..52a0c6a8bd 100644 --- a/Docs/Layers/named_streets.md +++ b/Docs/Layers/named_streets.md @@ -16,7 +16,7 @@ Hidden layer with all streets which have a name. Useful to detect addresses - This layer is shown at zoomlevel **18** and higher - This layer is not visible by default and must be enabled in the filter by the user. - - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` @@ -25,17 +25,6 @@ Hidden layer with all streets which have a name. Useful to detect addresses -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- diff --git a/Docs/Layers/nature_reserve.md b/Docs/Layers/nature_reserve.md index 4b5a14a5fb..9a511f64a0 100644 --- a/Docs/Layers/nature_reserve.md +++ b/Docs/Layers/nature_reserve.md @@ -40,10 +40,10 @@ Elements must have the all of following tags to be shown on this layer: - - leisure=nature_reserve|protect_class!~^98$&boundary=protected_area + - leisure=nature_reserve|protect_class!=98&boundary=protected_area -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22nature_reserve%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22boundary%22%3D%22protected_area%22%5D%5B%22protect_class%22!~%22%5E98%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22nature_reserve%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22boundary%22%3D%22protected_area%22%5D%5B%22protect_class%22!%3D%2298%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -77,7 +79,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -87,19 +91,22 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is this nature reserve accessible to the public?** +The question is Is this nature reserve accessible to the public? This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) -This is rendered with `Accessin this nature reserve: {access:description}` + +This is rendered with Accessin this nature reserve: {access:description} - - **Publicly accessible** corresponds with access=yes - - **Not accessible** corresponds with access=no - - **Not accessible as this is a private area** corresponds with access=private - - **Accessible despite being a privately owned area** corresponds with access=permissive - - **Only accessible with a guide or during organised activities** corresponds with access=guided - - **Accessible with fee** corresponds with access=yes&fee=yes + + + - Publicly accessible corresponds with `access=yes` + - Not accessible corresponds with `access=no` + - Not accessible as this is a private area corresponds with `access=private` + - Accessible despite being a privately owned area corresponds with `access=permissive` + - Only accessible with a guide or during organised activities corresponds with `access=guided` + - Accessible with fee corresponds with `access=yes&fee=yes` @@ -108,16 +115,20 @@ This is rendered with `Accessin this nature reserve: {access:description}` -The question is **Who operates this area?** +The question is Who operates this area? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Operated by {operator}` + +This is rendered with Operated by {operator} - - **Operated by Natuurpunt** corresponds with operator=Natuurpunt - - **Operated by {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_ - - **Operated by Agentschap Natuur en Bos** corresponds with operator=Agentschap Natuur en Bos + + + - Operated by Natuurpunt corresponds with `operator=Natuurpunt` + - Operated by {operator} corresponds with `operator~^(n|N)atuurpunt.*$` + - This option cannot be chosen as answer + - Operated by Agentschap Natuur en Bos corresponds with `operator=Agentschap Natuur en Bos` @@ -126,14 +137,17 @@ This is rendered with `Operated by {operator}` -The question is **What is the name of this area?** +The question is What is the name of this area? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This area is named {name}` + +This is rendered with This area is named {name} - - **This area doesn't have a name** corresponds with noname=yes + + + - This area doesn't have a name corresponds with `noname=yes` @@ -142,18 +156,18 @@ This is rendered with `This area is named {name}` -The question is **Are dogs allowed in this nature reserve?** +The question is Are dogs allowed in this nature reserve? - - **Dogs have to be leashed** corresponds with dog=leashed - - **No dogs allowed** corresponds with dog=no - - **Dogs are allowed to roam freely** corresponds with dog=yes + - Dogs have to be leashed corresponds with `dog=leashed` + - No dogs allowed corresponds with `dog=no` + - Dogs are allowed to roam freely corresponds with `dog=yes` -Only visible if `access=yes|access=permissive|access=guided` is shown +Only visible if `access=yes|access=permissive|access=guided` is shown @@ -161,14 +175,18 @@ Only visible if `access=yes|access=permissive|access=guided` is shown -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -177,10 +195,13 @@ This is rendered with `{website}` -The question is **Whom is the curator of this nature reserve?
Respect privacy - only fill out a name if this is widely published** +The question is Whom is the curator of this nature reserve?
Respect privacy - only fill out a name if this is widely published This rendering asks information about the property [curator](https://wiki.openstreetmap.org/wiki/Key:curator) -This is rendered with `{curator} is the curator of this nature reserve` + +This is rendered with {curator} is the curator of this nature reserve + + @@ -188,10 +209,13 @@ This is rendered with `{curator} is the curator of this nature reserve` -The question is **What email adress can one send to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal email address if this is widely published** +The question is What email adress can one send to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal email address if this is widely published This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} + + @@ -199,10 +223,13 @@ This is rendered with `{email}` -The question is **What phone number can one call to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal phone number address if this is widely published** +The question is What phone number can one call to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal phone number address if this is widely published This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} + + @@ -210,10 +237,13 @@ This is rendered with `{phone}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `Extra information: {description}` + +This is rendered with Extra information: {description} + + @@ -221,10 +251,13 @@ This is rendered with `Extra information: {description}` -The question is **Is there some extra info?** +The question is Is there some extra info? This rendering asks information about the property [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) -This is rendered with `Extra info: {description:0}` + +This is rendered with Extra info: {description:0} + + @@ -232,7 +265,7 @@ This is rendered with `Extra info: {description:0}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -242,14 +275,22 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the corresponding Wikidata entity?** +Shows a wikipedia box with the corresponding wikipedia article + +The question is What is the corresponding Wikidata entity? This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) -This is rendered with `{wikipedia():max-height:25rem}` + +This is rendered with {wikipedia():max-height:25rem} - - **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_ + + + - {wikipedia():max-height:25rem} corresponds with `wikipedia~^..*$` + - This option cannot be chosen as answer + - No Wikipedia page has been linked yet corresponds with `` + - This option cannot be chosen as answer This document is autogenerated from [assets/layers/nature_reserve/nature_reserve.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/nature_reserve/nature_reserve.json) \ No newline at end of file diff --git a/Docs/Layers/note_import.md b/Docs/Layers/note_import.md index 43ffa283bf..ac3a9f5f48 100644 --- a/Docs/Layers/note_import.md +++ b/Docs/Layers/note_import.md @@ -59,7 +59,7 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -69,7 +69,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -79,7 +79,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -89,7 +89,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,7 +99,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -109,7 +109,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -119,7 +119,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/observation_tower.md b/Docs/Layers/observation_tower.md index 1b9125d7e8..051e15cff3 100644 --- a/Docs/Layers/observation_tower.md +++ b/Docs/Layers/observation_tower.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -76,7 +78,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -86,14 +90,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this tower?** +The question is What is the name of this tower? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This tower is called {name}` + +This is rendered with This tower is called {name} - - **This tower doesn't have a specific name** corresponds with noname=yes + + + - This tower doesn't have a specific name corresponds with `noname=yes` @@ -102,10 +109,13 @@ This is rendered with `This tower is called {name}` -The question is **What is the height of this tower?** +The question is What is the height of this tower? This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height) -This is rendered with `This tower is {height} high` + +This is rendered with This tower is {height} high + + @@ -113,14 +123,14 @@ This is rendered with `This tower is {height} high` -The question is **Can this tower be visited?** +The question is Can this tower be visited? - - **This tower is publicly accessible** corresponds with access=yes - - **This tower can only be visited with a guide** corresponds with access=guided + - This tower is publicly accessible corresponds with `access=yes` + - This tower can only be visited with a guide corresponds with `access=guided` @@ -129,17 +139,20 @@ The question is **Can this tower be visited?** -The question is **How much does one have to pay to enter this tower?** +The question is How much does one have to pay to enter this tower? This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `Visiting this tower costs {charge}` + +This is rendered with Visiting this tower costs {charge} - - **Free to visit** corresponds with fee=no -Only visible if `access=yes|access=guided` is shown + - Free to visit corresponds with `fee=no` + + +Only visible if `access=yes|access=guided` is shown @@ -147,17 +160,19 @@ Only visible if `access=yes|access=guided` is shown -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no -Only visible if `fee=yes|charge~^..*$` is shown +Only visible if `fee=yes|charge~^..*$` is shown @@ -165,14 +180,18 @@ Only visible if `fee=yes|charge~^..*$` is shown -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -181,12 +200,15 @@ This is rendered with `{website}` -The question is **How much individual steps does one have to climb to reach the top of this tower?** +The question is How much individual steps does one have to climb to reach the top of this tower? This rendering asks information about the property [step_count](https://wiki.openstreetmap.org/wiki/Key:step_count) -This is rendered with `This tower has {step_count} steps to reach the top` -Only visible if `access=yes|access=guided` is shown +This is rendered with This tower has {step_count} steps to reach the top + + + +Only visible if `access=yes|access=guided` is shown @@ -194,17 +216,17 @@ Only visible if `access=yes|access=guided` is shown -The question is **Does this tower have an elevator?** +The question is Does this tower have an elevator? - - **This tower has an elevator which takes visitors to the top** corresponds with elevator=yes - - **This tower does not have an elevator** corresponds with elevator=no + - This tower has an elevator which takes visitors to the top corresponds with `elevator=yes` + - This tower does not have an elevator corresponds with `elevator=no` -Only visible if `access=yes|access=guided` is shown +Only visible if `access=yes|access=guided` is shown @@ -212,10 +234,13 @@ Only visible if `access=yes|access=guided` is shown -The question is **Who maintains this tower?** +The question is Who maintains this tower? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Maintained by {operator}` + +This is rendered with Maintained by {operator} + + @@ -223,19 +248,19 @@ This is rendered with `Maintained by {operator}` -The question is **Is this place accessible with a wheelchair?** +The question is Is this place accessible with a wheelchair? - - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated - - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes - - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited - - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` -Only visible if `elevator=yes&access=yes|access=guided` is shown +Only visible if `elevator=yes&access=yes|access=guided` is shown @@ -243,14 +268,22 @@ Only visible if `elevator=yes&access=yes|access=guided` is shown -The question is **What is the corresponding Wikidata entity?** +Shows a wikipedia box with the corresponding wikipedia article + +The question is What is the corresponding Wikidata entity? This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) -This is rendered with `{wikipedia():max-height:25rem}` + +This is rendered with {wikipedia():max-height:25rem} - - **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_ + + + - {wikipedia():max-height:25rem} corresponds with `wikipedia~^..*$` + - This option cannot be chosen as answer + - No Wikipedia page has been linked yet corresponds with `` + - This option cannot be chosen as answer This document is autogenerated from [assets/layers/observation_tower/observation_tower.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/observation_tower/observation_tower.json) \ No newline at end of file diff --git a/Docs/Layers/parking.md b/Docs/Layers/parking.md index 61f6b2c501..2926c14296 100644 --- a/Docs/Layers/parking.md +++ b/Docs/Layers/parking.md @@ -25,8 +25,10 @@ A layer showing car parkings + - [onwheels](https://mapcomplete.osm.be/onwheels) - [parkings](https://mapcomplete.osm.be/parkings) - [personal](https://mapcomplete.osm.be/personal) + - [transit](https://mapcomplete.osm.be/transit) @@ -52,13 +54,114 @@ Elements must have the all of following tags to be shown on this layer: +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/parking#values) [parking](https://wiki.openstreetmap.org/wiki/Key:parking) | Multiple choice | [surface](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsurface) [street_side](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dstreet_side) [underground](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dunderground) [multi-storey](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dmulti-storey) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:parking%3Drooftop) [lane](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlane) [carports](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dcarports) [garage_boxes](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dgarage_boxes) [layby](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlayby) [sheds](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsheds) +[](https://taginfo.openstreetmap.org/keys/capacity:disabled#values) [capacity:disabled](https://wiki.openstreetmap.org/wiki/Key:capacity:disabled) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | + + ### images -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### parking-type + + + +The question is What kind of parking is this? + + + + + + - This is a surface parking lot corresponds with `parking=surface` + - This is a parking bay next to a street corresponds with `parking=street_side` + - This is an underground parking garage corresponds with `parking=underground` + - This is a multi-storey parking garage corresponds with `parking=multi-storey` + - This is a rooftop parking deck corresponds with `parking=rooftop` + - This is a lane for parking on the road corresponds with `parking=lane` + - This is parking covered by carports corresponds with `parking=carports` + - This a parking consisting of garage boxes corresponds with `parking=garage_boxes` + - This is a parking on a layby corresponds with `parking=layby` + - This is a parking consisting of sheds corresponds with `parking=sheds` + + + + +### capacity-disabled + + + +The question is How many disabled parking spots are there at this parking? + +This rendering asks information about the property [capacity:disabled](https://wiki.openstreetmap.org/wiki/Key:capacity:disabled) + +This is rendered with There are {capacity:disabled} disabled parking spots + + + + + + - There are disabled parking spots, but it is not known how many corresponds with `capacity:disabled=yes` + - This option cannot be chosen as answer + - There are no disabled parking spots corresponds with `capacity:disabled=no` + - This option cannot be chosen as answer + + + + +### capacity + + + +The question is How many parking spots are there at this parking? + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) + +This is rendered with There are {capacity} parking spots diff --git a/Docs/Layers/parks_and_forests_without_etymology.md b/Docs/Layers/parks_and_forests_without_etymology.md index c0150bdfd1..dd6d08a10b 100644 --- a/Docs/Layers/parks_and_forests_without_etymology.md +++ b/Docs/Layers/parks_and_forests_without_etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/pedestrian_path.md b/Docs/Layers/pedestrian_path.md index 748945885d..030dd57552 100644 --- a/Docs/Layers/pedestrian_path.md +++ b/Docs/Layers/pedestrian_path.md @@ -15,6 +15,7 @@ Pedestrian footpaths, especially used for indoor navigation and snapping entranc - This layer is shown at zoomlevel **18** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - This layer is needed as dependency for layer [entrance](#entrance) @@ -26,7 +27,8 @@ Pedestrian footpaths, especially used for indoor navigation and snapping entranc - - [entrances](https://mapcomplete.osm.be/entrances) + - [indoors](https://mapcomplete.osm.be/indoors) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) diff --git a/Docs/Layers/pharmacy.md b/Docs/Layers/pharmacy.md new file mode 100644 index 0000000000..e87795e888 --- /dev/null +++ b/Docs/Layers/pharmacy.md @@ -0,0 +1,190 @@ + + + pharmacy +========== + + + + + +A layer showing pharmacies, which (probably) dispense prescription drugs + + + + + + + - This layer is shown at zoomlevel **13** and higher + + + + +#### Themes using this layer + + + + + + - [healthcare](https://mapcomplete.osm.be/healthcare) + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + - [shops](https://mapcomplete.osm.be/shops) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=pharmacy + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22pharmacy%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### name + + + +The question is What is the name of the pharmacy? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This pharmacy is called {name} + + + + + +### opening_hours + + + +The question is What are the opening hours of {title()}? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### wheelchair + + + +The question is Is this pharmacy easy to access on a wheelchair? + + + + + + - This pharmacy is easy to access on a wheelchair corresponds with `wheelchair=yes` + - This pharmacy is hard to access on a wheelchair corresponds with `wheelchair=no` + - This pharmacy has limited access for wheelchair users corresponds with `wheelchair=limited` + + +This document is autogenerated from [assets/layers/pharmacy/pharmacy.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/pharmacy/pharmacy.json) \ No newline at end of file diff --git a/Docs/Layers/picnic_table.md b/Docs/Layers/picnic_table.md index a0cc5ece81..f8a7a83672 100644 --- a/Docs/Layers/picnic_table.md +++ b/Docs/Layers/picnic_table.md @@ -53,13 +53,16 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) @@ -68,8 +71,35 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` @@ -78,15 +108,19 @@ _This tagrendering has no question and is thus read-only_ -The question is **What material is this picnic table made of?** +The question is What material is this picnic table made of? This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material) -This is rendered with `This picnic table is made of {material}` + +This is rendered with This picnic table is made of {material} - - **This is a wooden picnic table** corresponds with material=wood - - **This is a concrete picnic table** corresponds with material=concrete + + + - This is a wooden picnic table corresponds with `material=wood` + - This is a concrete picnic table corresponds with `material=concrete` + - This picnic table is made from (recycled) plastic corresponds with `material=plastic` This document is autogenerated from [assets/layers/picnic_table/picnic_table.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/picnic_table/picnic_table.json) \ No newline at end of file diff --git a/Docs/Layers/play_forest.md b/Docs/Layers/play_forest.md index 570732415d..e01e5b3345 100644 --- a/Docs/Layers/play_forest.md +++ b/Docs/Layers/play_forest.md @@ -19,17 +19,6 @@ Een speelbos is een vrij toegankelijke zone in een bos -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -51,7 +40,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -69,7 +60,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -79,15 +72,19 @@ _This tagrendering has no question and is thus read-only_ -The question is **Wie beheert dit gebied?** +The question is Wie beheert dit gebied? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Dit gebied wordt beheerd door {operator}` + +This is rendered with Dit gebied wordt beheerd door {operator} - - **Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with operator~^[aA][nN][bB]$_This option cannot be chosen as answer_ - - **Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with operator=Agenstchap Natuur en Bos + + + - Dit gebied wordt beheerd door het Agentschap Natuur en Bos corresponds with `operator~^[aA][nN][bB]$` + - This option cannot be chosen as answer + - Dit gebied wordt beheerd door het Agentschap Natuur en Bos corresponds with `operator=Agenstchap Natuur en Bos` @@ -96,14 +93,14 @@ This is rendered with `Dit gebied wordt beheerd door {operator}` -The question is **Wanneer is deze speelzone toegankelijk?** +The question is Wanneer is deze speelzone toegankelijk? - - **Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00)** corresponds with opening_hours=08:00-22:00 - - **Enkel in de zomervakantie en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00** corresponds with opening_hours=Jul-Aug 08:00-22:00 + - Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00) corresponds with `opening_hours=08:00-22:00` + - Enkel in de zomervakantie en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00 corresponds with `opening_hours=Jul-Aug 08:00-22:00` @@ -112,10 +109,13 @@ The question is **Wanneer is deze speelzone toegankelijk?** -The question is **Wie kan men emailen indien er problemen zijn met de speelzone?** +The question is Wie kan men emailen indien er problemen zijn met de speelzone? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `De bevoegde dienst kan bereikt worden via {email}` + +This is rendered with De bevoegde dienst kan bereikt worden via {email} + + @@ -123,10 +123,13 @@ This is rendered with `De bevoegde dienst kan bereikt worden via {email}` -The question is **Wie kan men bellen indien er problemen zijn met de speelzone?** +The question is Wie kan men bellen indien er problemen zijn met de speelzone? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}` + +This is rendered with De bevoegde dienst kan getelefoneerd worden via {phone} + + @@ -134,7 +137,7 @@ This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -144,7 +147,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/playground.md b/Docs/Layers/playground.md index 6aa96fc393..958dc54e5f 100644 --- a/Docs/Layers/playground.md +++ b/Docs/Layers/playground.md @@ -41,10 +41,10 @@ Elements must have the all of following tags to be shown on this layer: - leisure=playground - - playground!~^forest$ + - playground!=forest -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22playground%22%5D%5B%22playground%22!~%22%5Eforest%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22playground%22%5D%5B%22playground%22!%3D%22forest%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -77,7 +79,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -87,21 +91,26 @@ _This tagrendering has no question and is thus read-only_ -The question is **Which is the surface of this playground?
If there are multiple, select the most occuring one** +The question is Which is the surface of this playground?
If there are multiple, select the most occuring one This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) -This is rendered with `The surface is {surface}` + +This is rendered with The surface is {surface} - - **The surface is grass** corresponds with surface=grass - - **The surface is sand** corresponds with surface=sand - - **The surface consist of woodchips** corresponds with surface=woodchips - - **The surface is paving stones** corresponds with surface=paving_stones - - **The surface is asphalt** corresponds with surface=asphalt - - **The surface is concrete** corresponds with surface=concrete - - **The surface is unpaved** corresponds with surface=unpaved_This option cannot be chosen as answer_ - - **The surface is paved** corresponds with surface=paved_This option cannot be chosen as answer_ + + + - The surface is grass corresponds with `surface=grass` + - The surface is sand corresponds with `surface=sand` + - The surface consist of woodchips corresponds with `surface=woodchips` + - The surface is paving stones corresponds with `surface=paving_stones` + - The surface is asphalt corresponds with `surface=asphalt` + - The surface is concrete corresponds with `surface=concrete` + - The surface is unpaved corresponds with `surface=unpaved` + - This option cannot be chosen as answer + - The surface is paved corresponds with `surface=paved` + - This option cannot be chosen as answer @@ -110,14 +119,14 @@ This is rendered with `The surface is {surface}` -The question is **Is this playground lit at night?** +The question is Is this playground lit at night? - - **This playground is lit at night** corresponds with lit=yes - - **This playground is not lit at night** corresponds with lit=no + - This playground is lit at night corresponds with `lit=yes` + - This playground is not lit at night corresponds with `lit=no` This tagrendering has labels `extra` @@ -128,10 +137,13 @@ This tagrendering has labels `extra` -The question is **What is the minimum age required to access this playground?** +The question is What is the minimum age required to access this playground? This rendering asks information about the property [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age) -This is rendered with `Accessible to kids older than {min_age} years` + +This is rendered with Accessible to kids older than {min_age} years + + This tagrendering has labels `extra` @@ -141,10 +153,13 @@ This tagrendering has labels `extra` -The question is **What is the maximum age allowed to access this playground?** +The question is What is the maximum age allowed to access this playground? This rendering asks information about the property [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age) -This is rendered with `Accessible to kids of at most {max_age}` + +This is rendered with Accessible to kids of at most {max_age} + + This tagrendering has labels `extra` @@ -154,10 +169,13 @@ This tagrendering has labels `extra` -The question is **Who operates this playground?** +The question is Who operates this playground? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Operated by {operator}` + +This is rendered with Operated by {operator} + + @@ -165,17 +183,19 @@ This is rendered with `Operated by {operator}` -The question is **Is this playground accessible to the general public?** +The question is Is this playground accessible to the general public? - - **Accessible to the general public** corresponds with access=yes - - **This is a paid playground** corresponds with fee=yes - - **Only accessible for clients of the operating business** corresponds with access=customers - - **Only accessible to students of the school** corresponds with access=students_This option cannot be chosen as answer_ - - **Not accessible** corresponds with access=private + - Accessible to the general public corresponds with `access=yes` + - This is a paid playground corresponds with `fee=yes` + - Only accessible for clients of the operating business corresponds with `access=customers` + - Only accessible to students of the school corresponds with `access=students` + - This option cannot be chosen as answer + - Not accessible corresponds with `access=private` + - This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public corresponds with `leisure=schoolyard` @@ -184,14 +204,18 @@ The question is **Is this playground accessible to the general public?** -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer @@ -200,10 +224,13 @@ This is rendered with `{website}` -The question is **What is the email address of the playground maintainer?** +The question is What is the email address of the playground maintainer? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} + + @@ -211,10 +238,13 @@ This is rendered with `{email}` -The question is **What is the phone number of the playground maintainer?** +The question is What is the phone number of the playground maintainer? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} + + @@ -222,15 +252,15 @@ This is rendered with `{phone}` -The question is **Is this playground accessible to wheelchair users?** +The question is Is this playground accessible to wheelchair users? - - **Completely accessible for wheelchair users** corresponds with wheelchair=yes - - **Limited accessibility for wheelchair users** corresponds with wheelchair=limited - - **Not accessible for wheelchair users** corresponds with wheelchair=no + - Completely accessible for wheelchair users corresponds with `wheelchair=yes` + - Limited accessibility for wheelchair users corresponds with `wheelchair=limited` + - Not accessible for wheelchair users corresponds with `wheelchair=no` @@ -239,15 +269,18 @@ The question is **Is this playground accessible to wheelchair users?** -The question is **When is this playground accessible?** +The question is When is this playground accessible? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table(opening_hours)}` + +This is rendered with {opening_hours_table(opening_hours)} - - **Accessible from sunrise till sunset** corresponds with opening_hours=sunrise-sunset - - **Always accessible** corresponds with opening_hours=24/7 + + + - Accessible from sunrise till sunset corresponds with `opening_hours=sunrise-sunset` + - Always accessible corresponds with `opening_hours=24/7` @@ -256,7 +289,7 @@ This is rendered with `{opening_hours_table(opening_hours)}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -266,7 +299,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/postboxes.md b/Docs/Layers/postboxes.md index 68d08387f2..e1094ca886 100644 --- a/Docs/Layers/postboxes.md +++ b/Docs/Layers/postboxes.md @@ -57,7 +57,9 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -67,7 +69,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/postoffices.md b/Docs/Layers/postoffices.md index f11400b1de..06547ab309 100644 --- a/Docs/Layers/postoffices.md +++ b/Docs/Layers/postoffices.md @@ -51,7 +51,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -66,7 +68,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -76,7 +80,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -86,14 +90,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What are the opening hours for this post office?** +The question is What are the opening hours for this post office? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `Opening Hours: {opening_hours_table()}` + +This is rendered with Opening Hours: {opening_hours_table()} - - **24/7 opened (including holidays)** corresponds with opening_hours=24/7 + + + - 24/7 opened (including holidays) corresponds with `opening_hours=24/7` This document is autogenerated from [assets/themes/postboxes/postboxes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/postboxes/postboxes.json) \ No newline at end of file diff --git a/Docs/Layers/public_bookcase.md b/Docs/Layers/public_bookcase.md index b1ac7c6488..bd9e97f96d 100644 --- a/Docs/Layers/public_bookcase.md +++ b/Docs/Layers/public_bookcase.md @@ -15,7 +15,6 @@ A streetside cabinet with books, accessible to anyone - This layer is shown at zoomlevel **10** and higher - - This layer is needed as dependency for layer [note_import](#note_import) @@ -53,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -61,7 +62,7 @@ attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ [](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) [](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | Multiple choice | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) [children;adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults) +[](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | [string](../SpecialInputElements.md#string) | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) [](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) [](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | @@ -77,7 +78,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -87,14 +90,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this public bookcase?** +The question is What is the name of this public bookcase? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `The name of this bookcase is {name}` + +This is rendered with The name of this bookcase is {name} - - **This bookcase doesn't have a name** corresponds with noname=yes + + + - This bookcase doesn't have a name corresponds with `noname=yes` @@ -103,10 +109,13 @@ This is rendered with `The name of this bookcase is {name}` -The question is **How many books fit into this public bookcase?** +The question is How many books fit into this public bookcase? This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) -This is rendered with `{capacity} books fit in this bookcase` + +This is rendered with {capacity} books fit in this bookcase + + @@ -114,15 +123,18 @@ This is rendered with `{capacity} books fit in this bookcase` -The question is **What kind of books can be found in this public bookcase?** +The question is What kind of books can be found in this public bookcase? + +This rendering asks information about the property [books](https://wiki.openstreetmap.org/wiki/Key:books) + +This is rendered with This place mostly serves {books} - - **Mostly children books** corresponds with books=children - - **Mostly books for adults** corresponds with books=adults - - **Both books for kids and adults** corresponds with books=children;adults + - Mostly children books corresponds with `books=children` + - Mostly books for adults corresponds with `books=adults` @@ -131,15 +143,16 @@ The question is **What kind of books can be found in this public bookcase?** -The question is **Is this bookcase located outdoors?** +The question is Is this bookcase located outdoors? - - **This bookcase is located indoors** corresponds with indoor=yes - - **This bookcase is located outdoors** corresponds with indoor=no - - **This bookcase is located outdoors** corresponds with _This option cannot be chosen as answer_ + - This bookcase is located indoors corresponds with `indoor=yes` + - This bookcase is located outdoors corresponds with `indoor=no` + - This bookcase is located outdoors corresponds with `` + - This option cannot be chosen as answer @@ -148,17 +161,17 @@ The question is **Is this bookcase located outdoors?** -The question is **Is this public bookcase freely accessible?** +The question is Is this public bookcase freely accessible? - - **Publicly accessible** corresponds with access=yes - - **Only accessible to customers** corresponds with access=customers + - Publicly accessible corresponds with `access=yes` + - Only accessible to customers corresponds with `access=customers` -Only visible if `indoor=yes` is shown +Only visible if `indoor=yes` is shown @@ -166,10 +179,13 @@ Only visible if `indoor=yes` is shown -The question is **Who maintains this public bookcase?** +The question is Who maintains this public bookcase? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Operated by {operator}` + +This is rendered with Operated by {operator} + + @@ -177,15 +193,18 @@ This is rendered with `Operated by {operator}` -The question is **Is this public bookcase part of a bigger network?** +The question is Is this public bookcase part of a bigger network? This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand) -This is rendered with `This public bookcase is part of {brand}` + +This is rendered with This public bookcase is part of {brand} - - **Part of the network 'Little Free Library'** corresponds with brand=Little Free Library - - **This public bookcase is not part of a bigger network** corresponds with nobrand=yes + + + - Part of the network 'Little Free Library' corresponds with `brand=Little Free Library` + - This public bookcase is not part of a bigger network corresponds with `nobrand=yes` @@ -194,17 +213,20 @@ This is rendered with `This public bookcase is part of {brand}` -The question is **What is the reference number of this public bookcase?** +The question is What is the reference number of this public bookcase? This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) -This is rendered with `The reference number of this public bookcase within {brand} is {ref}` + +This is rendered with The reference number of this public bookcase within {brand} is {ref} - - **This bookcase is not part of a bigger network** corresponds with nobrand=yes -Only visible if `brand~^..*$` is shown + - This bookcase is not part of a bigger network corresponds with `nobrand=yes` + + +Only visible if `brand~^..*$` is shown @@ -212,10 +234,13 @@ Only visible if `brand~^..*$` is shown -The question is **When was this public bookcase installed?** +The question is When was this public bookcase installed? This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) -This is rendered with `Installed on {start_date}` + +This is rendered with Installed on {start_date} + + @@ -223,9 +248,12 @@ This is rendered with `Installed on {start_date}` -The question is **Is there a website with more information about this public bookcase?** +The question is Is there a website with more information about this public bookcase? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `More info on the website` + +This is rendered with More info on the website + + This document is autogenerated from [assets/layers/public_bookcase/public_bookcase.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/public_bookcase/public_bookcase.json) \ No newline at end of file diff --git a/Docs/Layers/rainbow_crossing_high_zoom.md b/Docs/Layers/rainbow_crossing_high_zoom.md new file mode 100644 index 0000000000..8de253429e --- /dev/null +++ b/Docs/Layers/rainbow_crossing_high_zoom.md @@ -0,0 +1,112 @@ + + + rainbow_crossing_high_zoom +============================ + + + + + +A layer showing pedestrian crossings with rainbow paintings + + + + + + + - This layer is shown at zoomlevel **10** and higher + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + + + + +#### Themes using this layer + + + + + + - [rainbow_crossings](https://mapcomplete.osm.be/rainbow_crossings) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=crossing + - crossing:marking=rainbow + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22crossing%3Amarking%22%3D%22rainbow%22%5D%5B%22highway%22%3D%22crossing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### crossing-with-rainbow + + + +The question is Does this crossing has rainbow paintings? + + + + + + - This crossing has rainbow paintings corresponds with `crossing:marking=rainbow` + - No rainbow paintings here corresponds with `not:crossing:marking=rainbow` + - No rainbow paintings here corresponds with `crossing:marking!=rainbow` + - This option cannot be chosen as answer + + +Only visible if `highway=crossing` is shown + + + +### questions + + + +Show the images block at this location + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only + + + +This document is autogenerated from [assets/themes/rainbow_crossings/rainbow_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/rainbow_crossings/rainbow_crossings.json) \ No newline at end of file diff --git a/Docs/Layers/rainbow_crossings.md b/Docs/Layers/rainbow_crossings.md new file mode 100644 index 0000000000..ee309ee94e --- /dev/null +++ b/Docs/Layers/rainbow_crossings.md @@ -0,0 +1,88 @@ + + + rainbow_crossings +=================== + + + + + +A layer showing pedestrian crossings with rainbow paintings + + + + + + + - This layer is shown at zoomlevel **17** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [rainbow_crossings](https://mapcomplete.osm.be/rainbow_crossings) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=crossing + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22crossing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### crossing-with-rainbow + + + +The question is Does this crossing has rainbow paintings? + + + + + + - This crossing has rainbow paintings corresponds with `crossing:marking=rainbow` + - No rainbow paintings here corresponds with `not:crossing:marking=rainbow` + - No rainbow paintings here corresponds with `crossing:marking!=rainbow` + - This option cannot be chosen as answer + + +Only visible if `highway=crossing` is shown + +This document is autogenerated from [assets/layers/rainbow_crossings/rainbow_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/rainbow_crossings/rainbow_crossings.json) \ No newline at end of file diff --git a/Docs/Layers/reception_desk.md b/Docs/Layers/reception_desk.md new file mode 100644 index 0000000000..f0eb1bcaf2 --- /dev/null +++ b/Docs/Layers/reception_desk.md @@ -0,0 +1,137 @@ + + + reception_desk +================ + + + + + +A layer showing where the reception desks are and which asks some accessibility information + + + + + + + - This layer is shown at zoomlevel **0** and higher + + + + +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=reception_desk + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22reception_desk%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/desk:height#values) [desk:height](https://wiki.openstreetmap.org/wiki/Key:desk:height) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/hearing_loop#values) [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### desk-height + + + +The question is What is the height of the reception desk?
This is measured from the floor to the lowest usable part of the desk
+ +This rendering asks information about the property [desk:height](https://wiki.openstreetmap.org/wiki/Key:desk:height) + +This is rendered with The height of the desk is {canonical(desk:height)} + + + + + +### induction-loop + + + +An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver. + +The question is Does this place have an audio induction loop for people with reduced hearing? + + + + + + - This place has an audio induction loop corresponds with `hearing_loop=yes` + - This place does not have an audio induction loop corresponds with `hearing_loop=no` + + +This document is autogenerated from [assets/layers/reception_desk/reception_desk.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/reception_desk/reception_desk.json) \ No newline at end of file diff --git a/Docs/Layers/recycling.md b/Docs/Layers/recycling.md index 85a3570390..77e580f2ff 100644 --- a/Docs/Layers/recycling.md +++ b/Docs/Layers/recycling.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -83,15 +87,15 @@ _This tagrendering has no question and is thus read-only_ -The question is **What type of recycling is this?** +The question is What type of recycling is this? - - **This is a recycling container** corresponds with recycling_type=container - - **This is a recycling centre** corresponds with recycling_type=centre - - **Waste disposal container for residual waste** corresponds with amenity=waste_disposal + - This is a recycling container corresponds with `recycling_type=container` + - This is a recycling centre corresponds with `recycling_type=centre` + - Waste disposal container for residual waste corresponds with `amenity=waste_disposal` @@ -100,17 +104,20 @@ The question is **What type of recycling is this?** -The question is **What is the name of this recycling centre?** +The question is What is the name of this recycling centre? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This recycling centre is named {name}` + +This is rendered with This recycling centre is named {name} - - **This recycling centre doesn't have a specific name** corresponds with noname=yes -Only visible if `recycling_type=centre` is shown + - This recycling centre doesn't have a specific name corresponds with `noname=yes` + + +Only visible if `recycling_type=centre` is shown @@ -118,18 +125,18 @@ Only visible if `recycling_type=centre` is shown -The question is **Where is this container located?** +The question is Where is this container located? - - **This is an underground container** corresponds with location=underground - - **This container is located indoors** corresponds with location=indoor - - **This container is located outdoors** corresponds with + - This is an underground container corresponds with `location=underground` + - This container is located indoors corresponds with `location=indoor` + - This container is located outdoors corresponds with `` -Only visible if `recycling_type=container` is shown +Only visible if `recycling_type=container` is shown @@ -137,33 +144,56 @@ Only visible if `recycling_type=container` is shown -The question is **What can be recycled here?** +The question is What can be recycled here? - - **Batteries can be recycled here** corresponds with recycling:batteries=yesUnselecting this answer will add - - **Beverage cartons can be recycled here** corresponds with recycling:beverage_cartons=yesUnselecting this answer will add - - **Cans can be recycled here** corresponds with recycling:cans=yesUnselecting this answer will add - - **Clothes can be recycled here** corresponds with recycling:clothes=yesUnselecting this answer will add - - **Cooking oil can be recycled here** corresponds with recycling:cooking_oil=yesUnselecting this answer will add - - **Engine oil can be recycled here** corresponds with recycling:engine_oil=yesUnselecting this answer will add - - **Green waste can be recycled here** corresponds with recycling:green_waste=yesUnselecting this answer will add - - **Organic waste can be recycled here** corresponds with recycling:organic=yes_This option cannot be chosen as answer_Unselecting this answer will add - - **Glass bottles can be recycled here** corresponds with recycling:glass_bottles=yesUnselecting this answer will add - - **Glass can be recycled here** corresponds with recycling:glass=yesUnselecting this answer will add - - **Newspapers can be recycled here** corresponds with recycling:newspaper=yesUnselecting this answer will add - - **Paper can be recycled here** corresponds with recycling:paper=yesUnselecting this answer will add - - **Plastic bottles can be recycled here** corresponds with recycling:plastic_bottles=yesUnselecting this answer will add - - **Plastic packaging can be recycled here** corresponds with recycling:plastic_packaging=yesUnselecting this answer will add - - **Plastic can be recycled here** corresponds with recycling:plastic=yesUnselecting this answer will add - - **Scrap metal can be recycled here** corresponds with recycling:scrap_metal=yesUnselecting this answer will add - - **Shoes can be recycled here** corresponds with recycling:shoes=yesUnselecting this answer will add - - **Small electrical appliances can be recycled here** corresponds with recycling:small_appliances=yesUnselecting this answer will add - - **Small electrical appliances can be recycled here** corresponds with recycling:small_electrical_appliances=yes_This option cannot be chosen as answer_Unselecting this answer will add - - **Needles can be recycled here** corresponds with recycling:needles=yesUnselecting this answer will add - - **Residual waste can be recycled here** corresponds with recycling:waste=yesUnselecting this answer will add + - Batteries can be recycled here corresponds with `recycling:batteries=yes` + - Unselecting this answer will add + - Beverage cartons can be recycled here corresponds with `recycling:beverage_cartons=yes` + - Unselecting this answer will add + - Cans can be recycled here corresponds with `recycling:cans=yes` + - Unselecting this answer will add + - Clothes can be recycled here corresponds with `recycling:clothes=yes` + - Unselecting this answer will add + - Cooking oil can be recycled here corresponds with `recycling:cooking_oil=yes` + - Unselecting this answer will add + - Engine oil can be recycled here corresponds with `recycling:engine_oil=yes` + - Unselecting this answer will add + - Green waste can be recycled here corresponds with `recycling:green_waste=yes` + - Unselecting this answer will add + - Organic waste can be recycled here corresponds with `recycling:organic=yes` + - This option cannot be chosen as answer + - Unselecting this answer will add + - Glass bottles can be recycled here corresponds with `recycling:glass_bottles=yes` + - Unselecting this answer will add + - Glass can be recycled here corresponds with `recycling:glass=yes` + - Unselecting this answer will add + - Newspapers can be recycled here corresponds with `recycling:newspaper=yes` + - Unselecting this answer will add + - Paper can be recycled here corresponds with `recycling:paper=yes` + - Unselecting this answer will add + - Plastic bottles can be recycled here corresponds with `recycling:plastic_bottles=yes` + - Unselecting this answer will add + - Plastic packaging can be recycled here corresponds with `recycling:plastic_packaging=yes` + - Unselecting this answer will add + - Plastic can be recycled here corresponds with `recycling:plastic=yes` + - Unselecting this answer will add + - Scrap metal can be recycled here corresponds with `recycling:scrap_metal=yes` + - Unselecting this answer will add + - Shoes can be recycled here corresponds with `recycling:shoes=yes` + - Unselecting this answer will add + - Small electrical appliances can be recycled here corresponds with `recycling:small_appliances=yes` + - Unselecting this answer will add + - Small electrical appliances can be recycled here corresponds with `recycling:small_electrical_appliances=yes` + - This option cannot be chosen as answer + - Unselecting this answer will add + - Needles can be recycled here corresponds with `recycling:needles=yes` + - Unselecting this answer will add + - Residual waste can be recycled here corresponds with `recycling:waste=yes` + - Unselecting this answer will add @@ -172,10 +202,13 @@ The question is **What can be recycled here?** -The question is **What company operates this recycling facility?** +The question is What company operates this recycling facility? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This recycling facility is operated by {operator}` + +This is rendered with This recycling facility is operated by {operator} + + @@ -183,17 +216,21 @@ This is rendered with `This recycling facility is operated by {operator}` -The question is **What is the website of {title()}?** +The question is What is the website of {title()}? This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` + +This is rendered with {website} - - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ -Only visible if `recycling_type=centre` is shown + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + +Only visible if `recycling_type=centre` is shown @@ -201,17 +238,21 @@ Only visible if `recycling_type=centre` is shown -The question is **What is the email address of {title()}?** +The question is What is the email address of {title()}? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} - - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ -Only visible if `recycling_type=centre` is shown + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + +Only visible if `recycling_type=centre` is shown @@ -219,17 +260,21 @@ Only visible if `recycling_type=centre` is shown -The question is **What is the phone number of {title()}?** +The question is What is the phone number of {title()}? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} - - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ -Only visible if `recycling_type=centre` is shown + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + +Only visible if `recycling_type=centre` is shown @@ -237,14 +282,17 @@ Only visible if `recycling_type=centre` is shown -The question is **What are the opening hours of this recycling facility?** +The question is What are the opening hours of this recycling facility? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table()}` + +This is rendered with {opening_hours_table()} - - **24/7** corresponds with opening_hours=24/7 + + + - 24/7 corresponds with `opening_hours=24/7` This document is autogenerated from [assets/layers/recycling/recycling.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/recycling/recycling.json) \ No newline at end of file diff --git a/Docs/Layers/school.md b/Docs/Layers/school.md new file mode 100644 index 0000000000..44326b4b19 --- /dev/null +++ b/Docs/Layers/school.md @@ -0,0 +1,739 @@ + + + school +======== + + + + + +Schools giving primary and secondary education and post-secondary, non-tertiary education. Note that this level of education does not imply an age of the pupiles + + + + + + + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [school](./school.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _enclosing) + - This layer is needed as dependency for layer [school](#school) + + + + +#### Themes using this layer + + + + + + - [education](https://mapcomplete.osm.be/education) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=school + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/school#values) [school](https://wiki.openstreetmap.org/wiki/Key:school) | Multiple choice | [kindergarten](https://wiki.openstreetmap.org/wiki/Tag:school%3Dkindergarten) [primary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dprimary) [secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dsecondary) [lower_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dlower_secondary) [middle_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dmiddle_secondary) [upper_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dupper_secondary) [post_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dpost_secondary) +[](https://taginfo.openstreetmap.org/keys/school:gender#values) [school:gender](https://wiki.openstreetmap.org/wiki/Key:school:gender) | Multiple choice | [mixed](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmixed) [separated](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dseparated) [male](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmale) [female](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dfemale) +[](https://taginfo.openstreetmap.org/keys/school:for#values) [school:for](https://wiki.openstreetmap.org/wiki/Key:school:for) | [string](../SpecialInputElements.md#string) | [mainstream](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dmainstream) [adults](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dadults) [autism](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dautism) [learning_disabilities](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dlearning_disabilities) [blind](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dblind) [deaf](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Ddeaf) [disabilities](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Ddisabilities) [special_needs](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dspecial_needs) +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/school:language#values) [school:language](https://wiki.openstreetmap.org/wiki/Key:school:language) | Multiple choice | [ay](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Day) [ab](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dab) [an](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dan) [de](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dde) [ca](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dca) [az](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Daz) [hr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhr) [eo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Deo) [ba](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dba) [ar](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dar) [he](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhe) [gl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgl) [el](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Del) [cs](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcs) [da](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dda) [af](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Daf) [ga](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dga) [hi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhi) [bg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbg) [be](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbe) [gu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgu) [cy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcy) [fr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfr) [hsb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhsb) [fy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfy) [ak](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dak) [am](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dam) [es](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Des) [bs](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbs) [diq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddiq) [dz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddz) [co](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dco) [cr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcr) [csb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcsb) [gv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgv) [cv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcv) [bn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbn) [gd](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgd) [av](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dav) [awa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dawa) [br](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbr) [ee](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dee) [dag](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddag) [dv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddv) [fi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfi) [en](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Den) [ady](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dady) [as](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Das) [gn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgn) [hif](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhif) [ast](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dast) [dsb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddsb) [haw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhaw) [glk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dglk) [gag](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgag) [gan](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgan) [ase](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dase) [cal](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcal) [gil](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgil) [arz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Darz) [ban](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dban) [hak](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhak) [din](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddin) [egl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Degl) [dty](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddty) [fa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfa) [cnr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcnr) [bxr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbxr) [ckb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dckb) [eu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Deu) [et](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Det) [bar](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbar) [fo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfo) [frr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfrr) [ch](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dch) [chy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dchy) [ce](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dce) [no](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dno) [bjn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbjn) [ceb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dceb) [ha](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dha) [frp](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfrp) [chr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dchr) [gcr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgcr) [gor](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgor) [ext](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dext) [fj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfj) [fur](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfur) [bss](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbss) [prg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dprg) [ses](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dses) [pko](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpko) [ccp](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dccp) [dua](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddua) [tr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtr) [ur](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dur) [bm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbm) [ff](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dff) [ru](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dru) [sid](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsid) [niu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dniu) [oj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Doj) [vot](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dvot) [bfi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbfi) [bla](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbla) [bbc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbbc) [ctg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dctg) [brh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbrh) [bug](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbug) [pa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpa) [pnb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpnb) [brx](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbrx) [sjd](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsjd) [bo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbo) [bi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbi) [cdo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcdo) [sw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsw) [gom](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgom) [mfe](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmfe) [zh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzh) [sdc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsdc) [pdt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpdt) [sty](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsty) [rmc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drmc) [nys](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnys) [gsw-fr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgsw-fr) [zun](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzun) [sms](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsms) [pis](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpis) [nr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnr) [umu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dumu) [gaa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgaa) [fon](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfon) [loz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dloz) [crs](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcrs) [tru](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtru) [agq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dagq) [ary](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dary) [atj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Datj) [alt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dalt) [ta](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dta) [ps](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dps) [nqo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnqo) [ro](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dro) [cbk-zam](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcbk-zam) [ovd](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dovd) [vmf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dvmf) [bto](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbto) [bcc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbcc) [crl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcrl) [lrc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlrc) [akl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dakl) [bpy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbpy) [mic](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmic) [sk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsk) [sl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsl) [ryu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dryu) [yai](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyai) [efi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Defi) [te](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dte) [yi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyi) [tg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtg) [bat-smg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbat-smg) [nod](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnod) [lag](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlag) [krj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkrj) [yap](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyap) [ydg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dydg) [vi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dvi) [it](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dit) [bzg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbzg) [pyu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpyu) [guc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dguc) [ood](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dood) [bdr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbdr) [btm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbtm) [gcf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgcf) [srq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsrq) [ins](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dins) [rki](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drki) [wls](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwls) [sje](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsje) [smj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsmj) [kum](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkum) [nui](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnui) [zh-min-nan](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzh-min-nan) [pl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpl) [cpx](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcpx) [khg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkhg) [fkv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfkv) [fuf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfuf) [jax](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Djax) [dtp](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddtp) [zgh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzgh) [bgn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbgn) [yav](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyav) [sv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsv) [azb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dazb) [xnb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dxnb) [fa-af](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfa-af) [qu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dqu) [sei](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsei) [sq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsq) [uk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Duk) [uz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Duz) [ka](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dka) [pt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpt) [hy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhy) [nl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnl) [rm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drm) [aln](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Daln) [mr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmr) [mg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmg) [sh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsh) [zu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzu) [is](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dis) [lb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlb) [tk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtk) [th](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dth) [ja](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dja) [lv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlv) [rmy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drmy) [km](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkm) [lo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlo) [so](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dso) [sma](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsma) [moe](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmoe) [sr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsr) [lt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlt) [hu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhu) [my](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmy) [ms](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dms) [xh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dxh) [udm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dudm) [rue](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drue) [stq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dstq) [ky](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dky) [mt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmt) [mk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmk) [za](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dza) [ug](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dug) [ko](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dko) [si](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsi) [kk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkk) [na](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dna) [nv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnv) [fit](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfit) [xmf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dxmf) [aa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Daa) [anp](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Danp) [rup](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drup) [vec](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dvec) [vep](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dvep) [bh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbh) [shy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dshy) [hz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhz) [mnw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmnw) [mzn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmzn) [oc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Doc) [id](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Did) [ve](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dve) [min](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmin) [mwl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmwl) [pdc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpdc) [pfl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpfl) [nn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnn) [nb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnb) [kw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkw) [sco](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsco) [mdf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmdf) [sd](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsd) [tt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtt) [szl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dszl) [kaa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkaa) [jv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Djv) [tl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtl) [to](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dto) [myv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmyv) [lez](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlez) [cho](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcho) [kl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkl) [pms](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpms) [crh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcrh) [smn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsmn) [ksh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dksh) [ny](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dny) [mn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmn) [ks](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dks) [ig](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dig) [rw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drw) [nds](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnds) [ng](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dng) [skr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dskr) [se](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dse) [ik](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dik) [kjh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkjh) [ne](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dne) [nap](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnap) [lg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlg) [ht](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dht) [os](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dos) [new](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnew) [su](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsu) [iu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Diu) [ki](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dki) [kn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkn) [inh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dinh) [pcd](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpcd) [sc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsc) [srn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsrn) [rn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drn) [ho](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dho) [sg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsg) [pap](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpap) [kbd](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkbd) [or](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dor) [arn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Darn) [om](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dom) [sat](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsat) [ii](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dii) [kbp](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkbp) [kab](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkab) [kg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkg) [krc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkrc) [tum](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtum) [tsg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtsg) [shi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dshi) [sn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsn) [tpi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtpi) [rif](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drif) [tyv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtyv) [ti](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dti) [tet](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtet) [scn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dscn) [lmo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlmo) [ilo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dilo) [sm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsm) [ss](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dss) [mni](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmni) [kv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkv) [ku](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dku) [lad](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlad) [ts](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dts) [st](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dst) [lij](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlij) [mai](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmai) [tvl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtvl) [tn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtn) [wa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwa) [nan](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnan) [pih](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpih) [lld](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlld) [ty](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dty) [wo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwo) [war](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwar) [lbe](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlbe) [ltg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dltg) [mad](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmad) [mh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmh) [mo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmo) [yrk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyrk) [chn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dchn) [kr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkr) [tw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtw) [shn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dshn) [vls](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dvls) [pag](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpag) [nso](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnso) [ln](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dln) [zea](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzea) [tay](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtay) [wuu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwuu) [sah](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsah) [jam](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Djam) [lkt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlkt) [krl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkrl) [tcy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtcy) [sju](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsju) [sou](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsou) [adx](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dadx) [sli](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsli) [als](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dals) [kha](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkha) [mnc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmnc) [yo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyo) [ml](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dml) [hai](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhai) [kut](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkut) [hoc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhoc) [gsg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgsg) [li](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dli) [hyw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhyw) [esu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Desu) [abq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dabq) [tli](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtli) [trv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtrv) [szy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dszy) [lus](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlus) [olo](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dolo) [pnt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpnt) [koi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkoi) [nog](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnog) [wbl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwbl) [tly](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtly) [mhr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmhr) [ruq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Druq) [mwv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmwv) [koy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkoy) [clc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dclc) [fiu-vro](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfiu-vro) [frc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfrc) [guw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dguw) [cnh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcnh) [sjm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsjm) [bzs](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbzs) [kcg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkcg) [mi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmi) [aeb](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Daeb) [nrf-gg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnrf-gg) [lki](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlki) [bej](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbej) [ckt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dckt) [mus](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmus) [pwn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpwn) [kj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkj) [rgn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drgn) [abs](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dabs) [sxr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsxr) [ckv](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dckv) [tsu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtsu) [xsy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dxsy) [lvk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlvk) [zh-yue](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzh-yue) [tvn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtvn) [pmy](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpmy) [kbg](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkbg) [rwr](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drwr) [ttm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dttm) [mrj](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmrj) [nia](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnia) [yrl](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dyrl) [cak](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcak) [ami](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dami) [krx](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkrx) [hil](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhil) [uun](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Duun) [sjt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsjt) [wal](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwal) [wym](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dwym) [arq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Darq) [bsk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbsk) [bqi](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbqi) [hrx](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dhrx) [ssf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dssf) [mrh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dmrh) [aoc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Daoc) [tsk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtsk) [luz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dluz) [tce](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtce) [quc](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dquc) [bnn](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbnn) [lzz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dlzz) [sdh](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dsdh) [nsk](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dnsk) [akz](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dakz) [kri](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkri) [kea](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkea) [dru](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Ddru) [tzm](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dtzm) [bfq](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dbfq) [khw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkhw) [uzs](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Duzs) [rmf](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drmf) [osa](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dosa) [cps](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dcps) [pjt](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpjt) [kjp](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkjp) [gpe](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dgpe) [kiu](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dkiu) [rar](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Drar) [ksw](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dksw) [zh_Hant](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dzh_Hant) [pt_BR](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dpt_BR) [fil](https://wiki.openstreetmap.org/wiki/Tag:school:language%3Dfil) + + + + +### school-name + + + +The question is What is the name of this school? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This school is named {name} + + + + + +### capacity + + + +The question is How much students can at most enroll in this school? + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) + +This is rendered with This school can enroll at most {capacity} students + + + + + +### education-level-belgium + + + +The question is What level of education is given on this school? + + + + + + - This is a school with a kindergarten section where young kids receive some education which prepares reading and writing. corresponds with `school=kindergarten` + - This is a school where one learns primary skills such as basic literacy and numerical skills.
Pupils typically enroll from 6 years old till 12 years old
corresponds with `school=primary` + - This is a secondary school which offers all grades corresponds with `school=secondary` + - This is a secondary school which does not have all grades, but offers first and second grade corresponds with `school=lower_secondary` + - This is a secondary school which does not have all grades, but offers third and fourth grade corresponds with `school=middle_secondary` + - This is a secondary school which does not have all grades, but offers fifth and sixth grade corresponds with `school=upper_secondary` + - This school offers post-secondary education (e.g. a seventh or eight specialisation year) corresponds with `school=post_secondary` + + +Only visible if `_country=be` is shown + + + +### gender + + + +The question is Which genders can enroll at this school? + + + + + + - Both boys and girls can enroll here and have classes together corresponds with `school:gender=mixed` + - Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times) corresponds with `school:gender=separated` + - This is a boys only-school corresponds with `school:gender=male` + - This is a girls-only school corresponds with `school:gender=female` + + + + +### target-audience + + + +The question is Does this school target students with a special need? Which structural facilities does this school have?
Ad-hoc + +This rendering asks information about the property [school:for](https://wiki.openstreetmap.org/wiki/Key:school:for) + +This is rendered with This school has facilities for students with {school:for} + + + + + + - This is a school where students study skills at their age-adequate level.
There are little or no special facilities to cater for students with special needs or facilities are ad-hoc
corresponds with `` + - This option cannot be chosen as answer + - This is a school for students without special needs
This includes students who can follow the courses with small, ad hoc measurements
corresponds with `school:for=mainstream` + - This is a school where adults are taught skills on the level as specified. corresponds with `school:for=adults` + - This is a school for students with autism corresponds with `school:for=autism` + - This is a school for students with learning disabilities corresponds with `school:for=learning_disabilities` + - This is a school for blind students or students with sight impairments corresponds with `school:for=blind` + - This is a school for deaf students or students with hearing impairments corresponds with `school:for=deaf` + - This is a school for students with disabilities corresponds with `school:for=disabilities` + - This is a school for students with special needs corresponds with `school:for=special_needs` + + +Only visible if `school:for~^..*$` is shown + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### school-language + + + +Enables to pick a single 'school:language=' within the mappings + +The question is What is the main language of this school?
What language is spoken with the students in non-language related courses and with the administration?
+ + + + + + - The main language of this school is unknown corresponds with `` + - This option cannot be chosen as answer + - Aymara corresponds with `school:language=ay` + - Abkhaz corresponds with `school:language=ab` + - Aragonese corresponds with `school:language=an` + - German corresponds with `school:language=de` + - Catalan corresponds with `school:language=ca` + - Azerbaijani corresponds with `school:language=az` + - Croatian corresponds with `school:language=hr` + - Esperanto corresponds with `school:language=eo` + - Bashkir corresponds with `school:language=ba` + - Arabic corresponds with `school:language=ar` + - Hebrew corresponds with `school:language=he` + - Galician corresponds with `school:language=gl` + - Modern Greek corresponds with `school:language=el` + - Czech corresponds with `school:language=cs` + - Danish corresponds with `school:language=da` + - Afrikaans corresponds with `school:language=af` + - Irish corresponds with `school:language=ga` + - Hindi corresponds with `school:language=hi` + - Bulgarian corresponds with `school:language=bg` + - Belarusian corresponds with `school:language=be` + - Gujarati corresponds with `school:language=gu` + - Welsh corresponds with `school:language=cy` + - French corresponds with `school:language=fr` + - Upper Sorbian corresponds with `school:language=hsb` + - West Frisian corresponds with `school:language=fy` + - Akan corresponds with `school:language=ak` + - Amharic corresponds with `school:language=am` + - Spanish corresponds with `school:language=es` + - Bosnian corresponds with `school:language=bs` + - Zazaki corresponds with `school:language=diq` + - Dzongkha corresponds with `school:language=dz` + - Corsican corresponds with `school:language=co` + - Cree corresponds with `school:language=cr` + - Kashubian corresponds with `school:language=csb` + - Manx corresponds with `school:language=gv` + - Chuvash corresponds with `school:language=cv` + - Bengali corresponds with `school:language=bn` + - Scottish Gaelic corresponds with `school:language=gd` + - Avaric corresponds with `school:language=av` + - Awadhi corresponds with `school:language=awa` + - Breton corresponds with `school:language=br` + - Ewe corresponds with `school:language=ee` + - Dagbani corresponds with `school:language=dag` + - Maldivian corresponds with `school:language=dv` + - Finnish corresponds with `school:language=fi` + - English corresponds with `school:language=en` + - Adyghe corresponds with `school:language=ady` + - Assamese corresponds with `school:language=as` + - Guarani corresponds with `school:language=gn` + - Fiji Hindi corresponds with `school:language=hif` + - Asturian corresponds with `school:language=ast` + - Lower Sorbian corresponds with `school:language=dsb` + - Hawaiian corresponds with `school:language=haw` + - Gilaki corresponds with `school:language=glk` + - Gagauz corresponds with `school:language=gag` + - Gan corresponds with `school:language=gan` + - American Sign Language corresponds with `school:language=ase` + - Carolinian corresponds with `school:language=cal` + - Gilbertese corresponds with `school:language=gil` + - Egyptian Arabic corresponds with `school:language=arz` + - Balinese corresponds with `school:language=ban` + - Hakka corresponds with `school:language=hak` + - Dinka corresponds with `school:language=din` + - Emilian corresponds with `school:language=egl` + - Doteli corresponds with `school:language=dty` + - Persian corresponds with `school:language=fa` + - Montenegrin corresponds with `school:language=cnr` + - Russia Buriat corresponds with `school:language=bxr` + - Sorani corresponds with `school:language=ckb` + - Basque corresponds with `school:language=eu` + - Estonian corresponds with `school:language=et` + - Bavarian corresponds with `school:language=bar` + - Faroese corresponds with `school:language=fo` + - North Frisian corresponds with `school:language=frr` + - Chamorro corresponds with `school:language=ch` + - Cheyenne corresponds with `school:language=chy` + - Chechen corresponds with `school:language=ce` + - Norwegian corresponds with `school:language=no` + - Banjar corresponds with `school:language=bjn` + - Cebuano corresponds with `school:language=ceb` + - Hausa corresponds with `school:language=ha` + - Franco-Provençal corresponds with `school:language=frp` + - Cherokee corresponds with `school:language=chr` + - Guianan Creole corresponds with `school:language=gcr` + - Gorontalo corresponds with `school:language=gor` + - Extremaduran corresponds with `school:language=ext` + - Fijian corresponds with `school:language=fj` + - Friulian corresponds with `school:language=fur` + - Kose corresponds with `school:language=bss` + - Old Prussian corresponds with `school:language=prg` + - Koyraboro Senni corresponds with `school:language=ses` + - Pökoot corresponds with `school:language=pko` + - Chakma corresponds with `school:language=ccp` + - Duala corresponds with `school:language=dua` + - Turkish corresponds with `school:language=tr` + - Urdu corresponds with `school:language=ur` + - Bambara corresponds with `school:language=bm` + - Fula corresponds with `school:language=ff` + - Russian corresponds with `school:language=ru` + - Sidamo corresponds with `school:language=sid` + - Niuean corresponds with `school:language=niu` + - Ojibwe corresponds with `school:language=oj` + - Votic corresponds with `school:language=vot` + - British Sign Language corresponds with `school:language=bfi` + - Blackfoot corresponds with `school:language=bla` + - Toba Batak corresponds with `school:language=bbc` + - Chittagonian corresponds with `school:language=ctg` + - Brahui corresponds with `school:language=brh` + - Bugis corresponds with `school:language=bug` + - Punjabi corresponds with `school:language=pa` + - Punjabi corresponds with `school:language=pnb` + - Bodo corresponds with `school:language=brx` + - Kildin Sami corresponds with `school:language=sjd` + - Tibetan corresponds with `school:language=bo` + - Bislama corresponds with `school:language=bi` + - Min Dong corresponds with `school:language=cdo` + - Swahili corresponds with `school:language=sw` + - Goan Konkani corresponds with `school:language=gom` + - Mauritian Creole corresponds with `school:language=mfe` + - Chinese corresponds with `school:language=zh` + - Sassarese corresponds with `school:language=sdc` + - Plautdietsch corresponds with `school:language=pdt` + - Siberian Tatar corresponds with `school:language=sty` + - Carpathian Romani corresponds with `school:language=rmc` + - Noongar corresponds with `school:language=nys` + - Alsatian corresponds with `school:language=gsw-fr` + - Zuni corresponds with `school:language=zun` + - Skolt Sami corresponds with `school:language=sms` + - Pijin corresponds with `school:language=pis` + - Southern Ndebele corresponds with `school:language=nr` + - Munsee corresponds with `school:language=umu` + - Ga corresponds with `school:language=gaa` + - Fon corresponds with `school:language=fon` + - Lozi corresponds with `school:language=loz` + - Seychellois Creole corresponds with `school:language=crs` + - Turoyo corresponds with `school:language=tru` + - Aghem corresponds with `school:language=agq` + - Moroccan Arabic corresponds with `school:language=ary` + - Atikamekw corresponds with `school:language=atj` + - Altai corresponds with `school:language=alt` + - Tamil corresponds with `school:language=ta` + - Pashto corresponds with `school:language=ps` + - N'Ko corresponds with `school:language=nqo` + - Romanian corresponds with `school:language=ro` + - Chavacano corresponds with `school:language=cbk-zam` + - Elfdalian corresponds with `school:language=ovd` + - Main-Franconian corresponds with `school:language=vmf` + - Rinconada Bikol corresponds with `school:language=bto` + - Southern Balochi corresponds with `school:language=bcc` + - Northern East Cree corresponds with `school:language=crl` + - Northern Luri corresponds with `school:language=lrc` + - Aklan corresponds with `school:language=akl` + - Bishnupriya Manipuri corresponds with `school:language=bpy` + - Mi'kmaq corresponds with `school:language=mic` + - Slovak corresponds with `school:language=sk` + - Slovene corresponds with `school:language=sl` + - Okinawan corresponds with `school:language=ryu` + - Yaghnobi corresponds with `school:language=yai` + - Efik corresponds with `school:language=efi` + - Telugu corresponds with `school:language=te` + - Yiddish corresponds with `school:language=yi` + - Tajik corresponds with `school:language=tg` + - Samogitian corresponds with `school:language=bat-smg` + - Northern Thai corresponds with `school:language=nod` + - Rangi corresponds with `school:language=lag` + - Kinaray-a corresponds with `school:language=krj` + - Yapese corresponds with `school:language=yap` + - Yidgha corresponds with `school:language=ydg` + - Vietnamese corresponds with `school:language=vi` + - Italian corresponds with `school:language=it` + - Babuza corresponds with `school:language=bzg` + - Puyuma corresponds with `school:language=pyu` + - Wayuu corresponds with `school:language=guc` + - O'odham corresponds with `school:language=ood` + - West Coast Bajau corresponds with `school:language=bdr` + - Mandailing corresponds with `school:language=btm` + - Guadeloupean Creole corresponds with `school:language=gcf` + - Sirionó corresponds with `school:language=srq` + - Indian Sign Language corresponds with `school:language=ins` + - Arakanese corresponds with `school:language=rki` + - Wallisian corresponds with `school:language=wls` + - Pite Sami corresponds with `school:language=sje` + - Lule Sami corresponds with `school:language=smj` + - Kumyk corresponds with `school:language=kum` + - Kombe corresponds with `school:language=nui` + - Southern Min corresponds with `school:language=zh-min-nan` + - Polish corresponds with `school:language=pl` + - Pu-Xian Min corresponds with `school:language=cpx` + - Khams Tibetan corresponds with `school:language=khg` + - Kven corresponds with `school:language=fkv` + - Pular corresponds with `school:language=fuf` + - Jambi Malay corresponds with `school:language=jax` + - Kadazandusun corresponds with `school:language=dtp` + - Standard Moroccan Berber corresponds with `school:language=zgh` + - Western Balochi corresponds with `school:language=bgn` + - Yangben corresponds with `school:language=yav` + - Swedish corresponds with `school:language=sv` + - South Azerbaijani corresponds with `school:language=azb` + - Kanakanavu corresponds with `school:language=xnb` + - Dari corresponds with `school:language=fa-af` + - Quechua corresponds with `school:language=qu` + - Seri corresponds with `school:language=sei` + - Albanian corresponds with `school:language=sq` + - Ukrainian corresponds with `school:language=uk` + - Uzbek corresponds with `school:language=uz` + - Georgian corresponds with `school:language=ka` + - Portuguese corresponds with `school:language=pt` + - Armenian corresponds with `school:language=hy` + - Dutch corresponds with `school:language=nl` + - Romansh corresponds with `school:language=rm` + - Gheg Albanian corresponds with `school:language=aln` + - Marathi corresponds with `school:language=mr` + - Malagasy corresponds with `school:language=mg` + - Serbo-Croatian corresponds with `school:language=sh` + - Zulu corresponds with `school:language=zu` + - Icelandic corresponds with `school:language=is` + - Luxembourgish corresponds with `school:language=lb` + - Turkmen corresponds with `school:language=tk` + - Thai corresponds with `school:language=th` + - Japanese corresponds with `school:language=ja` + - Latvian corresponds with `school:language=lv` + - Romani corresponds with `school:language=rmy` + - Khmer corresponds with `school:language=km` + - Lao corresponds with `school:language=lo` + - Somali corresponds with `school:language=so` + - Southern Sami corresponds with `school:language=sma` + - Innu-aimun corresponds with `school:language=moe` + - Serbian corresponds with `school:language=sr` + - Lithuanian corresponds with `school:language=lt` + - Hungarian corresponds with `school:language=hu` + - Burmese corresponds with `school:language=my` + - Malay corresponds with `school:language=ms` + - Xhosa corresponds with `school:language=xh` + - Udmurt corresponds with `school:language=udm` + - Rusyn corresponds with `school:language=rue` + - Saterland Frisian corresponds with `school:language=stq` + - Kyrgyz corresponds with `school:language=ky` + - Maltese corresponds with `school:language=mt` + - Macedonian corresponds with `school:language=mk` + - Zhuang corresponds with `school:language=za` + - Uyghur corresponds with `school:language=ug` + - Korean corresponds with `school:language=ko` + - Sinhala corresponds with `school:language=si` + - Kazakh corresponds with `school:language=kk` + - Nauruan corresponds with `school:language=na` + - Navajo corresponds with `school:language=nv` + - Meänkieli corresponds with `school:language=fit` + - Mingrelian corresponds with `school:language=xmf` + - Afar corresponds with `school:language=aa` + - Angika corresponds with `school:language=anp` + - Aromanian corresponds with `school:language=rup` + - Venetian corresponds with `school:language=vec` + - Veps corresponds with `school:language=vep` + - Bhojpuri corresponds with `school:language=bh` + - Shawiya corresponds with `school:language=shy` + - Herero corresponds with `school:language=hz` + - Mon corresponds with `school:language=mnw` + - Mazanderani corresponds with `school:language=mzn` + - Occitan corresponds with `school:language=oc` + - Indonesian corresponds with `school:language=id` + - Venda corresponds with `school:language=ve` + - Minangkabau corresponds with `school:language=min` + - Mirandese corresponds with `school:language=mwl` + - Pennsylvania German corresponds with `school:language=pdc` + - Palatinate German corresponds with `school:language=pfl` + - Nynorsk corresponds with `school:language=nn` + - Bokmål corresponds with `school:language=nb` + - Cornish corresponds with `school:language=kw` + - Scots corresponds with `school:language=sco` + - Moksha corresponds with `school:language=mdf` + - Sindhi corresponds with `school:language=sd` + - Tatar corresponds with `school:language=tt` + - Silesian corresponds with `school:language=szl` + - Karakalpak corresponds with `school:language=kaa` + - Javanese corresponds with `school:language=jv` + - Tagalog corresponds with `school:language=tl` + - Tongan corresponds with `school:language=to` + - Erzya corresponds with `school:language=myv` + - Lezgian corresponds with `school:language=lez` + - Choctaw corresponds with `school:language=cho` + - Greenlandic corresponds with `school:language=kl` + - Piedmontese corresponds with `school:language=pms` + - Crimean Tatar corresponds with `school:language=crh` + - Inari Sami corresponds with `school:language=smn` + - Ripuarian corresponds with `school:language=ksh` + - Chewa corresponds with `school:language=ny` + - Mongolian corresponds with `school:language=mn` + - Kashmiri corresponds with `school:language=ks` + - Igbo corresponds with `school:language=ig` + - Kinyarwanda corresponds with `school:language=rw` + - Low German corresponds with `school:language=nds` + - Ndonga corresponds with `school:language=ng` + - Saraiki corresponds with `school:language=skr` + - Northern Sami corresponds with `school:language=se` + - Inupiaq corresponds with `school:language=ik` + - Khakas corresponds with `school:language=kjh` + - Nepali corresponds with `school:language=ne` + - Neapolitan corresponds with `school:language=nap` + - Luganda corresponds with `school:language=lg` + - Haitian Creole corresponds with `school:language=ht` + - Ossetian corresponds with `school:language=os` + - Newar corresponds with `school:language=new` + - Sundanese corresponds with `school:language=su` + - Inuktitut corresponds with `school:language=iu` + - Gikuyu corresponds with `school:language=ki` + - Kannada corresponds with `school:language=kn` + - Ingush corresponds with `school:language=inh` + - Picard corresponds with `school:language=pcd` + - Sardinian corresponds with `school:language=sc` + - Sranan Tongo corresponds with `school:language=srn` + - Kirundi corresponds with `school:language=rn` + - Hiri Motu corresponds with `school:language=ho` + - Sango corresponds with `school:language=sg` + - Papiamento corresponds with `school:language=pap` + - Kabardian corresponds with `school:language=kbd` + - Odia corresponds with `school:language=or` + - Mapudungun corresponds with `school:language=arn` + - Oromo corresponds with `school:language=om` + - Santali corresponds with `school:language=sat` + - Nuosu corresponds with `school:language=ii` + - Kabiye corresponds with `school:language=kbp` + - Kabyle corresponds with `school:language=kab` + - Kongo corresponds with `school:language=kg` + - Karachay-Balkar corresponds with `school:language=krc` + - Tumbuka corresponds with `school:language=tum` + - Tausug corresponds with `school:language=tsg` + - Shilha corresponds with `school:language=shi` + - Shona corresponds with `school:language=sn` + - Tok Pisin corresponds with `school:language=tpi` + - Tarifit corresponds with `school:language=rif` + - Tuvan corresponds with `school:language=tyv` + - Tigrinya corresponds with `school:language=ti` + - Tetum corresponds with `school:language=tet` + - Sicilian corresponds with `school:language=scn` + - Lombard corresponds with `school:language=lmo` + - Ilocano corresponds with `school:language=ilo` + - Samoan corresponds with `school:language=sm` + - Swazi corresponds with `school:language=ss` + - Meitei corresponds with `school:language=mni` + - Komi corresponds with `school:language=kv` + - Kurdish corresponds with `school:language=ku` + - Judaeo-Spanish corresponds with `school:language=lad` + - Tsonga corresponds with `school:language=ts` + - Sesotho corresponds with `school:language=st` + - Ligurian corresponds with `school:language=lij` + - Maithili corresponds with `school:language=mai` + - Tuvaluan corresponds with `school:language=tvl` + - Tswana corresponds with `school:language=tn` + - Walloon corresponds with `school:language=wa` + - Southern Min corresponds with `school:language=nan` + - Pitkern corresponds with `school:language=pih` + - Ladin corresponds with `school:language=lld` + - Tahitian corresponds with `school:language=ty` + - Wolof corresponds with `school:language=wo` + - Waray corresponds with `school:language=war` + - Lak corresponds with `school:language=lbe` + - Latgalian corresponds with `school:language=ltg` + - Madurese corresponds with `school:language=mad` + - Marshallese corresponds with `school:language=mh` + - Moldovan corresponds with `school:language=mo` + - Nenets corresponds with `school:language=yrk` + - Chinook Jargon corresponds with `school:language=chn` + - Kanuri corresponds with `school:language=kr` + - Twi corresponds with `school:language=tw` + - Shan corresponds with `school:language=shn` + - West Flemish corresponds with `school:language=vls` + - Pangasinan corresponds with `school:language=pag` + - Northern Sotho corresponds with `school:language=nso` + - Lingala corresponds with `school:language=ln` + - Zeelandic corresponds with `school:language=zea` + - Atayal corresponds with `school:language=tay` + - Wu Chinese corresponds with `school:language=wuu` + - Sakha corresponds with `school:language=sah` + - Jamaican Creole corresponds with `school:language=jam` + - Lakota corresponds with `school:language=lkt` + - Karelian corresponds with `school:language=krl` + - Tulu corresponds with `school:language=tcy` + - Ume Sami corresponds with `school:language=sju` + - Southern Thai corresponds with `school:language=sou` + - Amdo Tibetan corresponds with `school:language=adx` + - Silesian German corresponds with `school:language=sli` + - Swiss German corresponds with `school:language=als` + - Khasi corresponds with `school:language=kha` + - Manchu corresponds with `school:language=mnc` + - Yoruba corresponds with `school:language=yo` + - Malayalam corresponds with `school:language=ml` + - Haida corresponds with `school:language=hai` + - Kutenai corresponds with `school:language=kut` + - Ho corresponds with `school:language=hoc` + - German Sign Language corresponds with `school:language=gsg` + - Limburgish corresponds with `school:language=li` + - Western Armenian corresponds with `school:language=hyw` + - Central Alaskan Yup'ik corresponds with `school:language=esu` + - Abaza corresponds with `school:language=abq` + - Tlingit corresponds with `school:language=tli` + - Seediq corresponds with `school:language=trv` + - Sakizaya corresponds with `school:language=szy` + - Mizo corresponds with `school:language=lus` + - Livvi-Karelian corresponds with `school:language=olo` + - Pontic Greek corresponds with `school:language=pnt` + - Permyak corresponds with `school:language=koi` + - Nogai corresponds with `school:language=nog` + - Wakhi corresponds with `school:language=wbl` + - Talysh corresponds with `school:language=tly` + - Meadow Mari corresponds with `school:language=mhr` + - Megleno-Romanian corresponds with `school:language=ruq` + - Mentawai corresponds with `school:language=mwv` + - Koyukon corresponds with `school:language=koy` + - Chilcotin corresponds with `school:language=clc` + - Võro corresponds with `school:language=fiu-vro` + - Louisiana French corresponds with `school:language=frc` + - Gun corresponds with `school:language=guw` + - Hakha-Chin corresponds with `school:language=cnh` + - Mapun corresponds with `school:language=sjm` + - Brazilian Sign Language corresponds with `school:language=bzs` + - Tyap corresponds with `school:language=kcg` + - Māori corresponds with `school:language=mi` + - Tunisian Arabic corresponds with `school:language=aeb` + - Guernésiais corresponds with `school:language=nrf-gg` + - Laki corresponds with `school:language=lki` + - Beja corresponds with `school:language=bej` + - Chukchi corresponds with `school:language=ckt` + - Muscogee corresponds with `school:language=mus` + - Paiwan corresponds with `school:language=pwn` + - Kwanyama corresponds with `school:language=kj` + - Romagnol corresponds with `school:language=rgn` + - Ambonese corresponds with `school:language=abs` + - Saaroa corresponds with `school:language=sxr` + - Kavalan corresponds with `school:language=ckv` + - Tsou corresponds with `school:language=tsu` + - Saisiyat corresponds with `school:language=xsy` + - Lavukaleve corresponds with `school:language=lvk` + - Yue Chinese corresponds with `school:language=zh-yue` + - Tavoyan corresponds with `school:language=tvn` + - Papuan Malay corresponds with `school:language=pmy` + - Khamba corresponds with `school:language=kbg` + - Marwari corresponds with `school:language=rwr` + - Northern Tutchone corresponds with `school:language=ttm` + - Hill Mari corresponds with `school:language=mrj` + - Nias corresponds with `school:language=nia` + - Nheengatu corresponds with `school:language=yrl` + - Kaqchikel corresponds with `school:language=cak` + - Amis corresponds with `school:language=ami` + - Karon corresponds with `school:language=krx` + - Hiligaynon corresponds with `school:language=hil` + - Pazeh corresponds with `school:language=uun` + - Ter Sami corresponds with `school:language=sjt` + - Wolaytta corresponds with `school:language=wal` + - Vilamovian corresponds with `school:language=wym` + - Algerian Arabic corresponds with `school:language=arq` + - Burushaski corresponds with `school:language=bsk` + - Bakhtiari corresponds with `school:language=bqi` + - Hunsrik corresponds with `school:language=hrx` + - Thao corresponds with `school:language=ssf` + - Mara corresponds with `school:language=mrh` + - Pemon corresponds with `school:language=aoc` + - Tseku corresponds with `school:language=tsk` + - Southern Luri corresponds with `school:language=luz` + - Southern Tutchone corresponds with `school:language=tce` + - K’iche’ corresponds with `school:language=quc` + - Bunun corresponds with `school:language=bnn` + - Laz corresponds with `school:language=lzz` + - Southern Kurdish corresponds with `school:language=sdh` + - Naskapi corresponds with `school:language=nsk` + - Alabama corresponds with `school:language=akz` + - Krio corresponds with `school:language=kri` + - Cape Verdean Creole corresponds with `school:language=kea` + - Rukai corresponds with `school:language=dru` + - Central Atlas Tamazight corresponds with `school:language=tzm` + - Badaga corresponds with `school:language=bfq` + - Khowar corresponds with `school:language=khw` + - Southern Uzbek corresponds with `school:language=uzs` + - Finnish Kalo corresponds with `school:language=rmf` + - Osage corresponds with `school:language=osa` + - Capiznon corresponds with `school:language=cps` + - Pitjantjatjara corresponds with `school:language=pjt` + - Eastern Pwo corresponds with `school:language=kjp` + - Ghanaian Pidgin English corresponds with `school:language=gpe` + - Kirmanjki corresponds with `school:language=kiu` + - Cook Islands Maori corresponds with `school:language=rar` + - S'gaw Karen corresponds with `school:language=ksw` + - Simplified Chinese corresponds with `school:language=zh_Hant` + - Brazilian Portuguese corresponds with `school:language=pt_BR` + - Filipino corresponds with `school:language=fil` + + +Only visible if `id~^..*$` is shown + +This document is autogenerated from [assets/layers/school/school.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/school/school.json) \ No newline at end of file diff --git a/Docs/Layers/shelter.md b/Docs/Layers/shelter.md new file mode 100644 index 0000000000..4befae14ef --- /dev/null +++ b/Docs/Layers/shelter.md @@ -0,0 +1,91 @@ + + + shelter +========= + + + + + +Layer showing shelter structures + + + + + + + - This layer is shown at zoomlevel **13** and higher + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [transit](https://mapcomplete.osm.be/transit) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=shelter + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22shelter%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/shelter_type#values) [shelter_type](https://wiki.openstreetmap.org/wiki/Key:shelter_type) | [string](../SpecialInputElements.md#string) | [public_transport](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dpublic_transport) [picnic_shelter](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dpicnic_shelter) [gazebo](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dgazebo) [weather_shelter](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dweather_shelter) [lean_to](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dlean_to) [pavilion](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dpavilion) [basic_hut](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dbasic_hut) + + + + +### shelter-type + + + +The question is What kind of shelter is this? + +This rendering asks information about the property [shelter_type](https://wiki.openstreetmap.org/wiki/Key:shelter_type) + +This is rendered with Shelter type: {shelter_type} + + + + + + - This is a shelter at a public transport stop. corresponds with `shelter_type=public_transport` + - This is a shelter protecting from rain at a picnic site. corresponds with `shelter_type=picnic_shelter` + - This is a gazebo. corresponds with `shelter_type=gazebo` + - This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads. corresponds with `shelter_type=weather_shelter` + - This is a shed with 3 walls, primarily intended for camping. corresponds with `shelter_type=lean_to` + - This is a pavilion corresponds with `shelter_type=pavilion` + - This is a basic hut, providing basic shelter and sleeping facilities. corresponds with `shelter_type=basic_hut` + + +This document is autogenerated from [assets/layers/shelter/shelter.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/shelter/shelter.json) \ No newline at end of file diff --git a/Docs/Layers/shops.md b/Docs/Layers/shops.md index b00a3b1030..51c5d9baf1 100644 --- a/Docs/Layers/shops.md +++ b/Docs/Layers/shops.md @@ -5,7 +5,7 @@ - + A shop @@ -25,7 +25,9 @@ A shop + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) + - [pets](https://mapcomplete.osm.be/pets) - [shops](https://mapcomplete.osm.be/shops) @@ -52,18 +54,21 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ [](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [hobby](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhobby) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | [](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) @@ -72,7 +77,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -82,76 +89,267 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the name of this shop?** +The question is What is the name of this shop? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `This shop is called {name}` + +This is rendered with This shop is called {name} -### shops-shop + + +### shop_types -The question is **What does this shop sell?** +The question is What kind of shop is this? This rendering asks information about the property [shop](https://wiki.openstreetmap.org/wiki/Key:shop) -This is rendered with `This shop sells {shop}` - - - - **Convenience store** corresponds with shop=convenience - - **Supermarket** corresponds with shop=supermarket - - **Clothing store** corresponds with shop=clothes - - **Hairdresser** corresponds with shop=hairdresser - - **Bakery** corresponds with shop=bakery - - **Car repair (garage)** corresponds with shop=car_repair - - **Car dealer** corresponds with shop=car +This is rendered with This is a {shop} -### shops-phone + + - Farm Supply Shop corresponds with `shop=agrarian` + - Liquor Store corresponds with `shop=alcohol` + - Anime / Manga Shop corresponds with `shop=anime` + - Antiques Shop corresponds with `shop=antiques` + - Appliance Store corresponds with `shop=appliance` + - Art Store corresponds with `shop=art` + - Baby Goods Store corresponds with `shop=baby_goods` + - Bag/Luggage Store corresponds with `shop=bag` + - Bakery corresponds with `shop=bakery` + - Bathroom Furnishing Store corresponds with `shop=bathroom_furnishing` + - Beauty Shop corresponds with `shop=beauty` + - Bedding/Mattress Store corresponds with `shop=bed` + - Beverage Store corresponds with `shop=beverages` + - Bicycle Shop corresponds with `shop=bicycle` + - Boat Store corresponds with `shop=boat` + - Bookmaker corresponds with `shop=bookmaker` + - Book Store corresponds with `shop=books` + - Brewing Supply Store corresponds with `shop=brewing_supplies` + - Butcher corresponds with `shop=butcher` + - Camera Equipment Store corresponds with `shop=camera` + - Candle Shop corresponds with `shop=candles` + - Cannabis Shop corresponds with `shop=cannabis` + - Car Dealership corresponds with `shop=car` + - Car Parts Store corresponds with `shop=car_parts` + - Car Repair Shop corresponds with `shop=car_repair` + - RV Dealership corresponds with `shop=caravan` + - Carpet Store corresponds with `shop=carpet` + - Catalog Shop corresponds with `shop=catalogue` + - Charity Store corresponds with `shop=charity` + - Cheese Store corresponds with `shop=cheese` + - Drugstore corresponds with `shop=chemist` + - Chocolate Store corresponds with `shop=chocolate` + - Clothing Store corresponds with `shop=clothes` + - Coffee Store corresponds with `shop=coffee` + - Collectibles Shop corresponds with `shop=collector` + - Computer Store corresponds with `shop=computer` + - Candy Store corresponds with `shop=confectionery` + - Convenience Store corresponds with `shop=convenience` + - Copy Store corresponds with `shop=copyshop` + - Cosmetics Store corresponds with `shop=cosmetics` + - Country Store corresponds with `shop=country_store` + - Arts & Crafts Store corresponds with `shop=craft` + - Curtain Store corresponds with `shop=curtain` + - Dairy Store corresponds with `shop=dairy` + - Deli corresponds with `shop=deli` + - Department Store corresponds with `shop=department_store` + - DIY Store corresponds with `shop=doityourself` + - Door Shop corresponds with `shop=doors` + - Dry Cleaner corresponds with `shop=dry_cleaning` + - E-Cigarette Shop corresponds with `shop=e-cigarette` + - Electrical Equipment Store corresponds with `shop=electrical` + - Electronics Store corresponds with `shop=electronics` + - Erotic Store corresponds with `shop=erotic` + - Fabric Store corresponds with `shop=fabric` + - Produce Stand corresponds with `shop=farm` + - Fashion Accessories Store corresponds with `shop=fashion_accessories` + - Fireplace Store corresponds with `shop=fireplace` + - Fishing Shop corresponds with `shop=fishing` + - Flooring Supply Shop corresponds with `shop=flooring` + - Florist corresponds with `shop=florist` + - Framing Shop corresponds with `shop=frame` + - Frozen Food Store corresponds with `shop=frozen_food` + - Fuel Shop corresponds with `shop=fuel` + - Funeral Home corresponds with `shop=funeral_directors` + - Furniture Store corresponds with `shop=furniture` + - Tabletop Game Store corresponds with `shop=games` + - Garden Center corresponds with `shop=garden_centre` + - Bottled Gas Shop corresponds with `shop=gas` + - General Store corresponds with `shop=general` + - Gift Shop corresponds with `shop=gift` + - Greengrocer corresponds with `shop=greengrocer` + - Hairdresser corresponds with `shop=hairdresser` + - Hairdresser Supply Store corresponds with `shop=hairdresser_supply` + - Hardware Store corresponds with `shop=hardware` + - Health Food Shop corresponds with `shop=health_food` + - Hearing Aids Store corresponds with `shop=hearing_aids` + - Herbalist corresponds with `shop=herbalist` + - Hifi Store corresponds with `shop=hifi` + - Hobby Shop corresponds with `shop=hobby` + - Household Linen Shop corresponds with `shop=household_linen` + - Houseware Store corresponds with `shop=houseware` + - Hunting Shop corresponds with `shop=hunting` + - Interior Decoration Store corresponds with `shop=interior_decoration` + - Jewelry Store corresponds with `shop=jewelry` + - Kiosk corresponds with `shop=kiosk` + - Kitchen Design Store corresponds with `shop=kitchen` + - Laundry corresponds with `shop=laundry` + - Leather Store corresponds with `shop=leather` + - Lighting Store corresponds with `shop=lighting` + - Locksmith corresponds with `shop=locksmith` + - Lottery Shop corresponds with `shop=lottery` + - Mall corresponds with `shop=mall` + - Massage Shop corresponds with `shop=massage` + - Medical Supply Store corresponds with `shop=medical_supply` + - Military Surplus Store corresponds with `shop=military_surplus` + - Mobile Phone Store corresponds with `shop=mobile_phone` + - Model Shop corresponds with `shop=model` + - Money Lender corresponds with `shop=money_lender` + - Motorcycle Dealership corresponds with `shop=motorcycle` + - Motorcycle Repair Shop corresponds with `shop=motorcycle_repair` + - Music Store corresponds with `shop=music` + - Musical Instrument Store corresponds with `shop=musical_instrument` + - Newspaper/Magazine Shop corresponds with `shop=newsagent` + - Nutrition Supplements Store corresponds with `shop=nutrition_supplements` + - Optician corresponds with `shop=optician` + - Outdoors Store corresponds with `shop=outdoor` + - Online Retailer Outpost corresponds with `shop=outpost` + - Paint Store corresponds with `shop=paint` + - Party Supply Store corresponds with `shop=party` + - Pastry Shop corresponds with `shop=pastry` + - Pawn Shop corresponds with `shop=pawnbroker` + - Perfume Store corresponds with `shop=perfumery` + - Pet Store corresponds with `shop=pet` + - Pet Grooming Store corresponds with `shop=pet_grooming` + - Photography Store corresponds with `shop=photo` + - Pottery Store corresponds with `shop=pottery` + - Printer Ink Store corresponds with `shop=printer_ink` + - Psychic corresponds with `shop=psychic` + - Fireworks Store corresponds with `shop=pyrotechnics` + - Radio/Electronic Component Store corresponds with `shop=radiotechnics` + - Religious Store corresponds with `shop=religion` + - Rental Shop corresponds with `shop=rental` + - Repair Shop corresponds with `shop=repair` + - Scuba Diving Shop corresponds with `shop=scuba_diving` + - Seafood Shop corresponds with `shop=seafood` + - Consignment/Thrift Store corresponds with `shop=second_hand` + - Sewing Supply Shop corresponds with `shop=sewing` + - Shoe Repair Shop corresponds with `shop=shoe_repair` + - Shoe Store corresponds with `shop=shoes` + - Spice Shop corresponds with `shop=spices` + - Sporting Goods Store corresponds with `shop=sports` + - Stationery Store corresponds with `shop=stationery` + - Storage Rental corresponds with `shop=storage_rental` + - Supermarket corresponds with `shop=supermarket` + - Pool Supply Store corresponds with `shop=swimming_pool` + - Tailor corresponds with `shop=tailor` + - Tattoo Parlor corresponds with `shop=tattoo` + - Tea Store corresponds with `shop=tea` + - Telecom Retail Store corresponds with `shop=telecommunication` + - Ticket Seller corresponds with `shop=ticket` + - Tile Shop corresponds with `shop=tiles` + - Tobacco Shop corresponds with `shop=tobacco` + - Tool Rental corresponds with `shop=tool_hire` + - Toy Store corresponds with `shop=toys` + - Trade Shop corresponds with `shop=trade` + - Travel Agency corresponds with `shop=travel_agency` + - Trophy Shop corresponds with `shop=trophy` + - Tire Store corresponds with `shop=tyres` + - Vacuum Cleaner Store corresponds with `shop=vacuum_cleaner` + - Variety Store corresponds with `shop=variety_store` + - Video Store corresponds with `shop=video` + - Video Game Store corresponds with `shop=video_games` + - Watches Shop corresponds with `shop=watches` + - Drinking Water Shop corresponds with `shop=water` + - Watersport/Swim Shop corresponds with `shop=water_sports` + - Weapon Shop corresponds with `shop=weapons` + - Wholesale Store corresponds with `shop=wholesale` + - Wig Shop corresponds with `shop=wigs` + - Window Blind Store corresponds with `shop=window_blind` + - Wine Shop corresponds with `shop=wine` + + +Only visible if `id~^..*$` is shown -The question is **What is the phone number?** - -This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` +### opening_hours -### shops-website - - - -The question is **What is the website of this shop?** - -This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) -This is rendered with `{website}` - - - -### shops-email - - - -The question is **What is the email address of this shop?** - -This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` - - - -### shops-opening_hours - - - -The question is **What are the opening hours of this shop?** +The question is What are the opening hours of {title()}? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table(opening_hours)}` + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + @@ -159,23 +357,76 @@ This is rendered with `{opening_hours_table(opening_hours)}` -The question is **Which methods of payment are accepted here?** +The question is Which methods of payment are accepted here? - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no +### level + + + +The question is On what level is this feature located? + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) + +This is rendered with Located on the {level}th floor + + + + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### copyshop-print-sizes + + + +The question is What paper formats does this shop offer? + + + + + + - This shop can print on papers of size A4 corresponds with `service:print:A4=yes` + - Unselecting this answer will add service:print:A4=no + - This shop can print on papers of size A3 corresponds with `service:print:A3=yes` + - Unselecting this answer will add service:print:A3=no + - This shop can print on papers of size A2 corresponds with `service:print:A2=yes` + - Unselecting this answer will add service:print:A2=no + - This shop can print on papers of size A1 corresponds with `service:print:A1=yes` + - Unselecting this answer will add service:print:A1=no + - This shop can print on papers of size A0 corresponds with `service:print:A0=yes` + - Unselecting this answer will add service:print:A0=no + + +Only visible if `shop~^.*copyshop.*$|shop~^.*stationary.*$|service:print=yes` is shown + + + ### questions -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -185,7 +436,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/slow_roads.md b/Docs/Layers/slow_roads.md index 8c9fce9b01..ee7ab5074d 100644 --- a/Docs/Layers/slow_roads.md +++ b/Docs/Layers/slow_roads.md @@ -19,17 +19,6 @@ All carfree roads -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -40,11 +29,11 @@ Elements must have the all of following tags to be shown on this layer: - highway=pedestrian|highway=footway|highway=path|highway=bridleway|highway=living_street|highway=track - - access!~^no$ - - access!~^private$ + - access!=no + - access!=private -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22pedestrian%22%5D%5B%22access%22!~%22%5Eno%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D%5B%22access%22!~%22%5Eno%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22path%22%5D%5B%22access%22!~%22%5Eno%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22bridleway%22%5D%5B%22access%22!~%22%5Eno%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D%5B%22access%22!~%22%5Eno%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22track%22%5D%5B%22access%22!~%22%5Eno%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22pedestrian%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22path%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22bridleway%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22track%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -53,7 +42,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -70,7 +61,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -80,18 +73,18 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only - - **
Dit is een woonerf:
  • Voetgangers mogen hier de volledige breedte van de straat gebruiken
  • Gemotoriseerd verkeer mag maximaal 20km/h rijden
** corresponds with highway=living_street - - **Dit is een brede, autovrije straat** corresponds with highway=pedestrian - - **Dit is een voetpaadje** corresponds with highway=footway - - **Dit is een wegeltje of bospad** corresponds with highway=path - - **Dit is een ruiterswegel** corresponds with highway=bridleway - - **Dit is een tractorspoor of weg om landbouwgrond te bereikken** corresponds with highway=track + -
Dit is een woonerf:
  • Voetgangers mogen hier de volledige breedte van de straat gebruiken
  • Gemotoriseerd verkeer mag maximaal 20km/h rijden
corresponds with `highway=living_street` + - Dit is een brede, autovrije straat corresponds with `highway=pedestrian` + - Dit is een voetpaadje corresponds with `highway=footway` + - Dit is een wegeltje of bospad corresponds with `highway=path` + - Dit is een ruiterswegel corresponds with `highway=bridleway` + - Dit is een tractorspoor of weg om landbouwgrond te bereikken corresponds with `highway=track` @@ -100,21 +93,26 @@ _This tagrendering has no question and is thus read-only_ -The question is **Wat is de wegverharding van dit pad?** +The question is Wat is de wegverharding van dit pad? This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) -This is rendered with `The surface is {surface}` + +This is rendered with The surface is {surface} - - **The surface is grass** corresponds with surface=grass - - **The surface is ground** corresponds with surface=ground - - **The surface is unpaved** corresponds with surface=unpaved_This option cannot be chosen as answer_ - - **The surface is sand** corresponds with surface=sand - - **The surface is paving stones** corresponds with surface=paving_stones - - **The surface is asphalt** corresponds with surface=asphalt - - **The surface is concrete** corresponds with surface=concrete - - **The surface is paved** corresponds with surface=paved_This option cannot be chosen as answer_ + + + - The surface is grass corresponds with `surface=grass` + - The surface is ground corresponds with `surface=ground` + - The surface is unpaved corresponds with `surface=unpaved` + - This option cannot be chosen as answer + - The surface is sand corresponds with `surface=sand` + - The surface is paving stones corresponds with `surface=paving_stones` + - The surface is asphalt corresponds with `surface=asphalt` + - The surface is concrete corresponds with `surface=concrete` + - The surface is paved corresponds with `surface=paved` + - This option cannot be chosen as answer @@ -123,14 +121,14 @@ This is rendered with `The surface is {surface}` -The question is **Is deze weg 's nachts verlicht?** +The question is Is deze weg 's nachts verlicht? - - **'s nachts verlicht** corresponds with lit=yes - - **Niet verlicht** corresponds with lit=no + - 's nachts verlicht corresponds with `lit=yes` + - Niet verlicht corresponds with `lit=no` This document is autogenerated from [assets/layers/slow_roads/slow_roads.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/slow_roads/slow_roads.json) \ No newline at end of file diff --git a/Docs/Layers/sport_pitch.md b/Docs/Layers/sport_pitch.md index a250e277ad..db606f70aa 100644 --- a/Docs/Layers/sport_pitch.md +++ b/Docs/Layers/sport_pitch.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -83,19 +87,23 @@ _This tagrendering has no question and is thus read-only_ -The question is **Which sport can be played here?** +The question is Which sport can be played here? This rendering asks information about the property [sport](https://wiki.openstreetmap.org/wiki/Key:sport) -This is rendered with `{sport} is played here` + +This is rendered with {sport} is played here - - **Basketball is played here** corresponds with sport=basketball - - **Soccer is played here** corresponds with sport=soccer - - **This is a pingpong table** corresponds with sport=table_tennis - - **Tennis is played here** corresponds with sport=tennis - - **Korfball is played here** corresponds with sport=korfball - - **Basketball is played here** corresponds with sport=basket_This option cannot be chosen as answer_ + + + - Basketball is played here corresponds with `sport=basketball` + - Soccer is played here corresponds with `sport=soccer` + - This is a pingpong table corresponds with `sport=table_tennis` + - Tennis is played here corresponds with `sport=tennis` + - Korfball is played here corresponds with `sport=korfball` + - Basketball is played here corresponds with `sport=basket` + - This option cannot be chosen as answer @@ -104,18 +112,21 @@ This is rendered with `{sport} is played here` -The question is **Which is the surface of this sport pitch?** +The question is Which is the surface of this sport pitch? This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) -This is rendered with `The surface is {surface}` + +This is rendered with The surface is {surface} - - **The surface is grass** corresponds with surface=grass - - **The surface is sand** corresponds with surface=sand - - **The surface is paving stones** corresponds with surface=paving_stones - - **The surface is asphalt** corresponds with surface=asphalt - - **The surface is concrete** corresponds with surface=concrete + + + - The surface is grass corresponds with `surface=grass` + - The surface is sand corresponds with `surface=sand` + - The surface is paving stones corresponds with `surface=paving_stones` + - The surface is asphalt corresponds with `surface=asphalt` + - The surface is concrete corresponds with `surface=concrete` @@ -124,16 +135,16 @@ This is rendered with `The surface is {surface}` -The question is **Is this sport pitch publicly accessible?** +The question is Is this sport pitch publicly accessible? - - **Public access** corresponds with access=public - - **Limited access (e.g. only with an appointment, during certain hours, ...)** corresponds with access=limited - - **Only accessible for members of the club** corresponds with access=members - - **Private - not accessible to the public** corresponds with access=private + - Public access corresponds with `access=public` + - Limited access (e.g. only with an appointment, during certain hours, …) corresponds with `access=limited` + - Only accessible for members of the club corresponds with `access=members` + - Private - not accessible to the public corresponds with `access=private` @@ -142,16 +153,16 @@ The question is **Is this sport pitch publicly accessible?** -The question is **Does one have to make an appointment to use this sport pitch?** +The question is Does one have to make an appointment to use this sport pitch? - - **Making an appointment is obligatory to use this sport pitch** corresponds with reservation=required - - **Making an appointment is recommended when using this sport pitch** corresponds with reservation=recommended - - **Making an appointment is possible, but not necessary to use this sport pitch** corresponds with reservation=yes - - **Making an appointment is not possible** corresponds with reservation=no + - Making an appointment is obligatory to use this sport pitch corresponds with `reservation=required` + - Making an appointment is recommended when using this sport pitch corresponds with `reservation=recommended` + - Making an appointment is possible, but not necessary to use this sport pitch corresponds with `reservation=yes` + - Making an appointment is not possible corresponds with `reservation=no` @@ -160,10 +171,13 @@ The question is **Does one have to make an appointment to use this sport pitch?* -The question is **What is the phone number of the operator?** +The question is What is the phone number of the operator? This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) -This is rendered with `{phone}` + +This is rendered with {phone} + + @@ -171,10 +185,13 @@ This is rendered with `{phone}` -The question is **What is the email address of the operator?** +The question is What is the email address of the operator? This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) -This is rendered with `{email}` + +This is rendered with {email} + + @@ -182,18 +199,22 @@ This is rendered with `{email}` -The question is **When is this pitch accessible?** +The question is When is this pitch accessible? This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `Openingsuren: {opening_hours_table()}` + +This is rendered with Openingsuren: {opening_hours_table()} - - **24/7 toegankelijk** corresponds with _This option cannot be chosen as answer_ - - **Always accessible** corresponds with opening_hours=24/7 -Only visible if `access~^..*$` is shown + - Always accessible corresponds with `` + - This option cannot be chosen as answer + - Always accessible corresponds with `opening_hours=24/7` + + +Only visible if `access~^..*$` is shown @@ -201,7 +222,7 @@ Only visible if `access~^..*$` is shown -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -211,7 +232,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/sport_places_without_etymology.md b/Docs/Layers/sport_places_without_etymology.md index e849b4daf3..0406c941e6 100644 --- a/Docs/Layers/sport_places_without_etymology.md +++ b/Docs/Layers/sport_places_without_etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/street_lamps.md b/Docs/Layers/street_lamps.md index 291fed8925..5d69cfa9e5 100644 --- a/Docs/Layers/street_lamps.md +++ b/Docs/Layers/street_lamps.md @@ -14,7 +14,7 @@ A layer showing street lights - - This layer is shown at zoomlevel **0** and higher + - This layer is shown at zoomlevel **16** and higher @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -70,14 +72,29 @@ attribute | type | values which are supported by this layer +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + ### ref -The question is **What is the reference number of this street lamp?** +The question is What is the reference number of this street lamp? This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) -This is rendered with `This street lamp has the reference number {ref}` + +This is rendered with This street lamp has the reference number {ref} + + @@ -85,19 +102,19 @@ This is rendered with `This street lamp has the reference number {ref}` -The question is **How is this street lamp mounted?** +The question is How is this street lamp mounted? - - **This lamp is suspended using cables** corresponds with support=catenary - - **This lamp is mounted on a ceiling** corresponds with support=ceiling - - **This lamp is mounted in the ground** corresponds with support=ground - - **This lamp is mounted on a short pole (mostly < 1.5m)** corresponds with support=pedestal - - **This lamp is mounted on a pole** corresponds with support=pole - - **This lamp is mounted directly to the wall** corresponds with support=wall - - **This lamp is mounted to the wall using a metal bar** corresponds with support=wall_mount + - This lamp is suspended using cables corresponds with `support=catenary` + - This lamp is mounted on a ceiling corresponds with `support=ceiling` + - This lamp is mounted in the ground corresponds with `support=ground` + - This lamp is mounted on a short pole (mostly < 1.5m) corresponds with `support=pedestal` + - This lamp is mounted on a pole corresponds with `support=pole` + - This lamp is mounted directly to the wall corresponds with `support=wall` + - This lamp is mounted to the wall using a metal bar corresponds with `support=wall_mount` @@ -106,17 +123,17 @@ The question is **How is this street lamp mounted?** -The question is **How is this lamp mounted to the pole?** +The question is How is this lamp mounted to the pole? - - **This lamp sits atop of a straight mast** corresponds with lamp_mount=straight_mast - - **This lamp sits at the end of a bent mast** corresponds with lamp_mount=bent_mast + - This lamp sits atop of a straight mast corresponds with `lamp_mount=straight_mast` + - This lamp sits at the end of a bent mast corresponds with `lamp_mount=bent_mast` -Only visible if `support=pole` is shown +Only visible if `support=pole` is shown @@ -124,24 +141,25 @@ Only visible if `support=pole` is shown -The question is **What kind of lighting does this lamp use?** +The question is What kind of lighting does this lamp use? - - **This lamp is lit electrically** corresponds with light:method=electric_This option cannot be chosen as answer_ - - **This lamp uses LEDs** corresponds with light:method=LED - - **This lamp uses incandescent lighting** corresponds with light:method=incandescent - - **This lamp uses halogen lighting** corresponds with light:method=halogen - - **This lamp uses discharge lamps (unknown type)** corresponds with light:method=discharge - - **This lamp uses a mercury-vapour lamp (lightly blueish)** corresponds with light:method=mercury - - **This lamp uses metal-halide lamps (bright white)** corresponds with light:method=metal-halide - - **This lamp uses fluorescent lighting** corresponds with light:method=fluorescent - - **This lamp uses sodium lamps (unknown type)** corresponds with light:method=sodium - - **This lamp uses low pressure sodium lamps (monochrome orange)** corresponds with light:method=low_pressure_sodium - - **This lamp uses high pressure sodium lamps (orange with white)** corresponds with light:method=high_pressure_sodium - - **This lamp is lit using gas** corresponds with light:method=gas + - This lamp is lit electrically corresponds with `light:method=electric` + - This option cannot be chosen as answer + - This lamp uses LEDs corresponds with `light:method=LED` + - This lamp uses incandescent lighting corresponds with `light:method=incandescent` + - This lamp uses halogen lighting corresponds with `light:method=halogen` + - This lamp uses discharge lamps (unknown type) corresponds with `light:method=discharge` + - This lamp uses a mercury-vapour lamp (lightly blueish) corresponds with `light:method=mercury` + - This lamp uses metal-halide lamps (bright white) corresponds with `light:method=metal-halide` + - This lamp uses fluorescent lighting corresponds with `light:method=fluorescent` + - This lamp uses sodium lamps (unknown type) corresponds with `light:method=sodium` + - This lamp uses low pressure sodium lamps (monochrome orange) corresponds with `light:method=low_pressure_sodium` + - This lamp uses high pressure sodium lamps (orange with white) corresponds with `light:method=high_pressure_sodium` + - This lamp is lit using gas corresponds with `light:method=gas` @@ -150,16 +168,19 @@ The question is **What kind of lighting does this lamp use?** -The question is **What colour light does this lamp emit?** +The question is What colour light does this lamp emit? This rendering asks information about the property [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour) -This is rendered with `This lamp emits {light:colour} light` + +This is rendered with This lamp emits {light:colour} light - - **This lamp emits white light** corresponds with light:colour=white - - **This lamp emits green light** corresponds with light:colour=green - - **This lamp emits orange light** corresponds with light:colour=orange + + + - This lamp emits white light corresponds with `light:colour=white` + - This lamp emits green light corresponds with `light:colour=green` + - This lamp emits orange light corresponds with `light:colour=orange` @@ -168,18 +189,21 @@ This is rendered with `This lamp emits {light:colour} light` -The question is **How many fixtures does this light have?** +The question is How many fixtures does this light have? This rendering asks information about the property [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count) -This is rendered with `This lamp has {light:count} fixtures` + +This is rendered with This lamp has {light:count} fixtures - - **This lamp has 1 fixture** corresponds with light:count=1 - - **This lamp has 2 fixtures** corresponds with light:count=2 -Only visible if `support=pole` is shown + - This lamp has 1 fixture corresponds with `light:count=1` + - This lamp has 2 fixtures corresponds with `light:count=2` + + +Only visible if `support=pole` is shown @@ -187,16 +211,16 @@ Only visible if `support=pole` is shown -The question is **When is this lamp lit?** +The question is When is this lamp lit? - - **This lamp is lit at night** corresponds with light:lit=dusk-dawn - - **This lamp is lit 24/7** corresponds with light:lit=24/7 - - **This lamp is lit based on motion** corresponds with light:lit=motion - - **This lamp is lit based on demand (e.g. with a pushbutton)** corresponds with light:lit=demand + - This lamp is lit at night corresponds with `light:lit=dusk-dawn` + - This lamp is lit 24/7 corresponds with `light:lit=24/7` + - This lamp is lit based on motion corresponds with `light:lit=motion` + - This lamp is lit based on demand (e.g. with a pushbutton) corresponds with `light:lit=demand` @@ -205,11 +229,14 @@ The question is **When is this lamp lit?** -The question is **Where does this lamp point to?** +The question is Where does this lamp point to? This rendering asks information about the property [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction) -This is rendered with `This lamp points towards {light:direction}` -Only visible if `light:count=1` is shown +This is rendered with This lamp points towards {light:direction} + + + +Only visible if `light:count=1` is shown This document is autogenerated from [assets/layers/street_lamps/street_lamps.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/street_lamps/street_lamps.json) \ No newline at end of file diff --git a/Docs/Layers/streets_without_etymology.md b/Docs/Layers/streets_without_etymology.md index c5f90e151e..b6fd5eeb3b 100644 --- a/Docs/Layers/streets_without_etymology.md +++ b/Docs/Layers/streets_without_etymology.md @@ -41,10 +41,10 @@ Elements must have the all of following tags to be shown on this layer: - name~^..*$ - highway~^..*$ - - highway!~^bus_stop$ + - highway!=bus_stop -[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22name%22%5D%5B%22highway%22%5D%5B%22highway%22!~%22%5Ebus_stop%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22name%22%5D%5B%22highway%22%5D%5B%22highway%22!%3D%22bus_stop%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) @@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -69,7 +71,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -79,10 +81,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -90,7 +95,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -100,14 +105,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -116,7 +124,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -126,7 +134,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -136,7 +144,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -146,7 +154,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -156,10 +164,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/surveillance_camera.md b/Docs/Layers/surveillance_camera.md index e08e18f951..511eaafa84 100644 --- a/Docs/Layers/surveillance_camera.md +++ b/Docs/Layers/surveillance_camera.md @@ -54,7 +54,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -67,7 +69,7 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) [](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [nat](../SpecialInputElements.md#nat) | [](https://taginfo.openstreetmap.org/keys/surveillance:zone#values) [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) | [string](../SpecialInputElements.md#string) | [parking](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking) [traffic](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic) [entrance](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance) [corridor](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor) [public_transport_platform](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform) [shop](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop) -[](https://taginfo.openstreetmap.org/keys/camera:mount#values) [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) | [string](../SpecialInputElements.md#string) | [wall](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall) [pole](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling) +[](https://taginfo.openstreetmap.org/keys/camera:mount#values) [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) | [string](../SpecialInputElements.md#string) | [wall](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall) [pole](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling) [street_lamp](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dstreet_lamp) [tree](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dtree) @@ -76,7 +78,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -86,15 +90,15 @@ _This tagrendering has no question and is thus read-only_ -The question is **What kind of camera is this?** +The question is What kind of camera is this? - - **A fixed (non-moving) camera** corresponds with camera:type=fixed - - **A dome camera (which can turn)** corresponds with camera:type=dome - - **A panning camera** corresponds with camera:type=panning + - A fixed (non-moving) camera corresponds with `camera:type=fixed` + - A dome camera (which can turn) corresponds with `camera:type=dome` + - A panning camera corresponds with `camera:type=panning` @@ -103,14 +107,18 @@ The question is **What kind of camera is this?** -The question is **In which geographical direction does this camera film?** +The question is In which geographical direction does this camera film? This rendering asks information about the property [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) -This is rendered with `Films to a compass heading of {camera:direction}` + +This is rendered with Films to a compass heading of {camera:direction} - - **Films to a compass heading of {direction}** corresponds with direction~^..*$_This option cannot be chosen as answer_ + + + - Films to a compass heading of {direction} corresponds with `direction~^..*$` + - This option cannot be chosen as answer @@ -119,10 +127,13 @@ This is rendered with `Films to a compass heading of {camera:direction}` -The question is **Who operates this CCTV?** +The question is Who operates this CCTV? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Operated by {operator}` + +This is rendered with Operated by {operator} + + @@ -130,15 +141,15 @@ This is rendered with `Operated by {operator}` -The question is **What kind of surveillance is this camera** +The question is What kind of surveillance is this camera? - - **A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,...** corresponds with surveillance=public - - **An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)** corresponds with surveillance=outdoor - - **A private indoor area is surveilled, e.g. a shop, a private underground parking, ...** corresponds with surveillance=indoor + - A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, … corresponds with `surveillance=public` + - An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …) corresponds with `surveillance=outdoor` + - A private indoor area is surveilled, e.g. a shop, a private underground parking, … corresponds with `surveillance=indoor` @@ -147,18 +158,19 @@ The question is **What kind of surveillance is this camera** -The question is **Is the public space surveilled by this camera an indoor or outdoor space?** +The question is Is the public space surveilled by this camera an indoor or outdoor space? - - **This camera is located indoors** corresponds with indoor=yes - - **This camera is located outdoors** corresponds with indoor=no - - **This camera is probably located outdoors** corresponds with _This option cannot be chosen as answer_ + - This camera is located indoors corresponds with `indoor=yes` + - This camera is located outdoors corresponds with `indoor=no` + - This camera is probably located outdoors corresponds with `` + - This option cannot be chosen as answer -Only visible if `surveillance:type=public` is shown +Only visible if `surveillance:type=public` is shown @@ -166,12 +178,15 @@ Only visible if `surveillance:type=public` is shown -The question is **On which level is this camera located?** +The question is On which level is this camera located? This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) -This is rendered with `Located on level {level}` -Only visible if `indoor=yes|surveillance:type=ye` is shown +This is rendered with Located on level {level} + + + +Only visible if `indoor=yes|surveillance:type=ye` is shown @@ -179,19 +194,22 @@ Only visible if `indoor=yes|surveillance:type=ye` is shown -The question is **What exactly is surveilled here?** +The question is What exactly is surveilled here? This rendering asks information about the property [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) -This is rendered with ` Surveills a {surveillance:zone}` + +This is rendered with Surveills a {surveillance:zone} - - **Surveills a parking** corresponds with surveillance:zone=parking - - **Surveills the traffic** corresponds with surveillance:zone=traffic - - **Surveills an entrance** corresponds with surveillance:zone=entrance - - **Surveills a corridor** corresponds with surveillance:zone=corridor - - **Surveills a public tranport platform** corresponds with surveillance:zone=public_transport_platform - - **Surveills a shop** corresponds with surveillance:zone=shop + + + - Surveills a parking corresponds with `surveillance:zone=parking` + - Surveills the traffic corresponds with `surveillance:zone=traffic` + - Surveills an entrance corresponds with `surveillance:zone=entrance` + - Surveills a corridor corresponds with `surveillance:zone=corridor` + - Surveills a public tranport platform corresponds with `surveillance:zone=public_transport_platform` + - Surveills a shop corresponds with `surveillance:zone=shop` @@ -200,16 +218,21 @@ This is rendered with ` Surveills a {surveillance:zone}` -The question is **How is this camera placed?** +The question is How is this camera placed? This rendering asks information about the property [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) -This is rendered with `Mounting method: {camera:mount}` + +This is rendered with Mounting method: {camera:mount} - - **This camera is placed against a wall** corresponds with camera:mount=wall - - **This camera is placed one a pole** corresponds with camera:mount=pole - - **This camera is placed on the ceiling** corresponds with camera:mount=ceiling + + + - This camera is placed against a wall corresponds with `camera:mount=wall` + - This camera is placed on a pole corresponds with `camera:mount=pole` + - This camera is placed on the ceiling corresponds with `camera:mount=ceiling` + - This camera is placed on a street light corresponds with `camera:mount=street_lamp` + - This camera is placed on a tree corresponds with `camera:mount=tree` This document is autogenerated from [assets/layers/surveillance_camera/surveillance_camera.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/surveillance_camera/surveillance_camera.json) \ No newline at end of file diff --git a/Docs/Layers/tertiary_education.md b/Docs/Layers/tertiary_education.md new file mode 100644 index 0000000000..c729522def --- /dev/null +++ b/Docs/Layers/tertiary_education.md @@ -0,0 +1,199 @@ + + + tertiary_education +==================== + + + + + +Layer with all tertiary education institutes (ISCED:2011 levels 6,7 and 8) + + + + + + + - This layer is shown at zoomlevel **0** and higher + + + + +#### Themes using this layer + + + + + + - [education](https://mapcomplete.osm.be/education) + - [personal](https://mapcomplete.osm.be/personal) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=college|amenity=university|amenity=school&isced:2011:level~^.*bachelor.*$|isced:2011:level~^.*master.*$ + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22college%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22university%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D%5B%22isced%3A2011%3Alevel%22~%22%5E.*bachelor.*%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D%5B%22isced%3A2011%3Alevel%22~%22%5E.*master.*%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [college](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcollege) [university](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Duniversity) +[](https://taginfo.openstreetmap.org/keys/isced:2011:level#values) [isced:2011:level](https://wiki.openstreetmap.org/wiki/Key:isced:2011:level) | Multiple choice | [bachelor](https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Dbachelor) [master](https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Dmaster) [doctorate](https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Ddoctorate) +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/school:gender#values) [school:gender](https://wiki.openstreetmap.org/wiki/Key:school:gender) | Multiple choice | [mixed](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmixed) [separated](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dseparated) [male](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmale) [female](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dfemale) +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | + + + + +### institution-kind + + + +The question is What kind of institution is this? + + + + + + - This is an institution of post-secondary, non-tertiary education. One has to have completed secondary education to enroll here, but no bachelor (or higher) degrees are awarded here corresponds with `amenity=college` + - This is a university, an institution of tertiary education where bachelor degrees or higher are awarded. corresponds with `amenity=university` + + + + +### isced + + + +The question is What level of education is given here? + + + + + + - Bachelor degrees are awarded here corresponds with `isced:2011:level=bachelor` + - Master degrees are awarded here corresponds with `isced:2011:level=master` + - Doctorate degrees are awarded here corresponds with `isced:2011:level=doctorate` + + +Only visible if `amenity=university` is shown + + + +### capacity + + + +The question is How much students can at most enroll in this school? + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) + +This is rendered with This school can enroll at most {capacity} students + + + + + +### gender + + + +The question is Which genders can enroll at this school? + + + + + + - Both boys and girls can enroll here and have classes together corresponds with `school:gender=mixed` + - Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times) corresponds with `school:gender=separated` + - This is a boys only-school corresponds with `school:gender=male` + - This is a girls-only school corresponds with `school:gender=female` + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### email + + + +The question is What is the email address of {title()}? + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) + +This is rendered with {email} + + + + + + - {contact:email} corresponds with `contact:email~^..*$` + - This option cannot be chosen as answer + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + +This document is autogenerated from [assets/layers/tertiary_education/tertiary_education.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tertiary_education/tertiary_education.json) \ No newline at end of file diff --git a/Docs/Layers/toekomstige_fietsstraat.md b/Docs/Layers/toekomstige_fietsstraat.md index beda8208b0..b5eb375039 100644 --- a/Docs/Layers/toekomstige_fietsstraat.md +++ b/Docs/Layers/toekomstige_fietsstraat.md @@ -51,7 +51,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -67,7 +69,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -77,16 +81,16 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is the street {name} a cyclestreet?** +The question is Is the street {name} a cyclestreet? - - **This street is a cyclestreet (and has a speed limit of 30 km/h)** corresponds with cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no - - **This street is a cyclestreet** corresponds with cyclestreet=yes - - **This street will become a cyclstreet soon** corresponds with proposed:cyclestreet=yes - - **This street is not a cyclestreet** corresponds with + - This street is a cyclestreet (and has a speed limit of 30 km/h) corresponds with `cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no` + - This street is a cyclestreet corresponds with `cyclestreet=yes` + - This street will become a cyclstreet soon corresponds with `proposed:cyclestreet=yes` + - This street is not a cyclestreet corresponds with `` @@ -95,12 +99,15 @@ The question is **Is the street {name} a cyclestreet?** -The question is **When will this street become a cyclestreet?** +The question is When will this street become a cyclestreet? This rendering asks information about the property [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) -This is rendered with `This street will become a cyclestreet at {cyclestreet:start_date}` -Only visible if `proposed:cyclestreet=yes` is shown +This is rendered with This street will become a cyclestreet at {cyclestreet:start_date} + + + +Only visible if `proposed:cyclestreet=yes` is shown @@ -108,7 +115,9 @@ Only visible if `proposed:cyclestreet=yes` is shown -_This tagrendering has no question and is thus read-only_ +Show the images block at this location + +This tagrendering has no question and is thus read-only @@ -118,7 +127,9 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +Shows a small map with the feature. Added by default to every popup + +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/toilet.md b/Docs/Layers/toilet.md index 40252ee93c..c9f90d4ed9 100644 --- a/Docs/Layers/toilet.md +++ b/Docs/Layers/toilet.md @@ -26,6 +26,7 @@ A layer showing (public) toilets - [nature](https://mapcomplete.osm.be/nature) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) - [toilets](https://mapcomplete.osm.be/toilets) @@ -53,23 +54,26 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete attribute | type | values which are supported by this layer ----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) [](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) [](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) +[](https://taginfo.openstreetmap.org/keys/door:width#values) [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | [](https://taginfo.openstreetmap.org/keys/toilets:position#values) [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) [](https://taginfo.openstreetmap.org/keys/changing_table#values) [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) [](https://taginfo.openstreetmap.org/keys/changing_table:location#values) [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) [](https://taginfo.openstreetmap.org/keys/toilets:handwashing#values) [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) [](https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values) [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) [](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | @@ -79,214 +83,251 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` +This tagrendering has no question and is thus read-only -### toilet-access - - - -The question is **Are these toilets publicly accessible?** - -This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) -This is rendered with `Access is {access}` - - - - - **Public access** corresponds with access=yes - - **Only access to customers** corresponds with access=customers - - **Not accessible** corresponds with access=no - - **Accessible, but one has to ask a key to enter** corresponds with access=key - - **Public access** corresponds with access=public_This option cannot be chosen as answer_ - - - - -### toilets-fee - - - -The question is **Are these toilets free to use?** - - - - - - - **These are paid toilets** corresponds with fee=yes - - **Free to use** corresponds with fee=no - - - - -### toilet-charge - - - -The question is **How much does one have to pay for these toilets?** - -This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) -This is rendered with `The fee is {charge}` - -Only visible if `fee=yes` is shown - - - -### payment-options - - - -The question is **Which methods of payment are accepted here?** - - - - - - - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no - - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no - - -Only visible if `fee=yes` is shown - - - -### Opening-hours - - - -The question is **When are these toilets opened?** - -This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) -This is rendered with `{opening_hours_table()}` - - - - - **Opened 24/7** corresponds with opening_hours=24/7 - - - - -### toilets-wheelchair - - - -The question is **Is there a dedicated toilet for wheelchair users** - - - - - - - **There is a dedicated toilet for wheelchair users** corresponds with wheelchair=yes - - **No wheelchair access** corresponds with wheelchair=no - - - - -### toilets-type - - - -The question is **Which kind of toilets are this?** - - - - - - - **There are only seated toilets** corresponds with toilets:position=seated - - **There are only urinals here** corresponds with toilets:position=urinal - - **There are only squat toilets here** corresponds with toilets:position=squat - - **Both seated toilets and urinals are available here** corresponds with toilets:position=seated;urinal - - - - -### toilets-changing-table - - - -The question is **Is a changing table (to change diapers) available?** - - - - - - - **A changing table is available** corresponds with changing_table=yes - - **No changing table is available** corresponds with changing_table=no - - - - -### toilet-changing_table:location - - - -The question is **Where is the changing table located?** - -This rendering asks information about the property [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) -This is rendered with `The changing table is located at {changing_table:location}` - - - - - **The changing table is in the toilet for women. ** corresponds with changing_table:location=female_toilet - - **The changing table is in the toilet for men. ** corresponds with changing_table:location=male_toilet - - **The changing table is in the toilet for wheelchair users. ** corresponds with changing_table:location=wheelchair_toilet - - **The changing table is in a dedicated room. ** corresponds with changing_table:location=dedicated_room - - -Only visible if `changing_table=yes` is shown - - - -### toilet-handwashing - - - -The question is **Do these toilets have a sink to wash your hands?** - - - - - - - **This toilets have a sink to wash your hands** corresponds with toilets:handwashing=yes - - **This toilets don't have a sink to wash your hands** corresponds with toilets:handwashing=no - - - - -### toilet-has-paper - - - -The question is **Does one have to bring their own toilet paper to this toilet?** - - - - - - - **This toilet is equipped with toilet paper** corresponds with toilets:paper_supplied=yes - - **You have to bring your own toilet paper to this toilet** corresponds with toilets:paper_supplied=no - - - ### level -The question is **On what level is this feature located?** +The question is On what level is this feature located? This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) -This is rendered with `Located on the {level}th floor` + +This is rendered with Located on the {level}th floor - - **Located underground** corresponds with location=underground_This option cannot be chosen as answer_ - - **Located on the ground floor** corresponds with level=0 - - **Located on the ground floor** corresponds with _This option cannot be chosen as answer_ - - **Located on the first floor** corresponds with level=1 - - **Located on the first basement level** corresponds with level=-1 + + + - Located underground corresponds with `location=underground` + - This option cannot be chosen as answer + - Located on the ground floor corresponds with `level=0` + - Located on the ground floor corresponds with `` + - This option cannot be chosen as answer + - Located on the first floor corresponds with `level=1` + - Located on the first basement level corresponds with `level=-1` + + + + +### toilet-access + + + +The question is Are these toilets publicly accessible? + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) + +This is rendered with Access is {access} + + + + + + - Public access corresponds with `access=yes` + - Only access to customers corresponds with `access=customers` + - Not accessible corresponds with `access=no` + - Accessible, but one has to ask a key to enter corresponds with `access=key` + - Public access corresponds with `access=public` + - This option cannot be chosen as answer + + + + +### toilets-fee + + + +The question is Are these toilets free to use? + + + + + + - These are paid toilets corresponds with `fee=yes` + - Free to use corresponds with `fee=no` + + + + +### toilet-charge + + + +The question is How much does one have to pay for these toilets? + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) + +This is rendered with The fee is {charge} + + + +Only visible if `fee=yes` is shown + + + +### payment-options + + + +The question is Which methods of payment are accepted here? + + + + + + - Cash is accepted here corresponds with `payment:cash=yes` + - Unselecting this answer will add payment:cash=no + - Payment cards are accepted here corresponds with `payment:cards=yes` + - Unselecting this answer will add payment:cards=no + + +Only visible if `fee=yes` is shown + + + +### Opening-hours + + + +The question is When are these toilets opened? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with {opening_hours_table()} + + + + + + - Opened 24/7 corresponds with `opening_hours=24/7` + + + + +### toilets-wheelchair + + + +The question is Is there a dedicated toilet for wheelchair users? + + + + + + - There is a dedicated toilet for wheelchair users corresponds with `wheelchair=yes` + - No wheelchair access corresponds with `wheelchair=no` + - There is only a dedicated toilet for wheelchair users corresponds with `wheelchair=designated` + + + + +### wheelchair-door-width + + + +The question is What is the width of the door to the wheelchair accessible toilet? + +This rendering asks information about the property [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) + +This is rendered with The door to the wheelchair-accessible toilet is {canonical(door:width)} wide + + + + + +### toilets-type + + + +The question is Which kind of toilets are this? + + + + + + - There are only seated toilets corresponds with `toilets:position=seated` + - There are only urinals here corresponds with `toilets:position=urinal` + - There are only squat toilets here corresponds with `toilets:position=squat` + - Both seated toilets and urinals are available here corresponds with `toilets:position=seated;urinal` + + + + +### toilets-changing-table + + + +The question is Is a changing table (to change diapers) available? + + + + + + - A changing table is available corresponds with `changing_table=yes` + - No changing table is available corresponds with `changing_table=no` + + + + +### toilet-changing_table:location + + + +The question is Where is the changing table located? + +This rendering asks information about the property [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) + +This is rendered with The changing table is located at {changing_table:location} + + + + + + - The changing table is in the toilet for women. corresponds with `changing_table:location=female_toilet` + - The changing table is in the toilet for men. corresponds with `changing_table:location=male_toilet` + - The changing table is in the toilet for wheelchair users. corresponds with `changing_table:location=wheelchair_toilet` + - The changing table is in a dedicated room. corresponds with `changing_table:location=dedicated_room` + + +Only visible if `changing_table=yes` is shown + + + +### toilet-handwashing + + + +The question is Do these toilets have a sink to wash your hands? + + + + + + - This toilets have a sink to wash your hands corresponds with `toilets:handwashing=yes` + - This toilets don't have a sink to wash your hands corresponds with `toilets:handwashing=no` + + + + +### toilet-has-paper + + + +The question is Does one have to bring their own toilet paper to this toilet? + + + + + + - This toilet is equipped with toilet paper corresponds with `toilets:paper_supplied=yes` + - You have to bring your own toilet paper to this toilet corresponds with `toilets:paper_supplied=no` @@ -295,9 +336,12 @@ This is rendered with `Located on the {level}th floor` -The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** +The question is Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `{description}` + +This is rendered with {description} + + This document is autogenerated from [assets/layers/toilet/toilet.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/toilet/toilet.json) \ No newline at end of file diff --git a/Docs/Layers/toursistic_places_without_etymology.md b/Docs/Layers/toursistic_places_without_etymology.md index d8fcb101de..e4b327f359 100644 --- a/Docs/Layers/toursistic_places_without_etymology.md +++ b/Docs/Layers/toursistic_places_without_etymology.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is the Wikidata-item that this object is named after?** +The question is What is the Wikidata-item that this object is named after? This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) -This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + +This is rendered with

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem} + + @@ -89,7 +94,7 @@ This is rendered with `

Wikipedia article of the name giver

{wikipedia(na -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_ -The question is **What is this object named after?
This might be written on the street name sign** +The question is What is this object named after?
This might be written on the street name sign This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) -This is rendered with `Named after {name:etymology}` + +This is rendered with Named after {name:etymology} - - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + - The origin of this name is unknown in all literature corresponds with `name:etymology=unknown` @@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}` -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -Only visible if `wikidata~^..*$` is shown +Only visible if `wikidata~^..*$` is shown This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/trail.md b/Docs/Layers/trail.md index e73b829440..a81623dfad 100644 --- a/Docs/Layers/trail.md +++ b/Docs/Layers/trail.md @@ -19,17 +19,6 @@ Aangeduide wandeltochten -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -51,7 +40,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -70,7 +61,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -80,7 +73,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -90,10 +83,13 @@ _This tagrendering has no question and is thus read-only_ -The question is **Wat is de naam van deze wandeling?** +The question is Wat is de naam van deze wandeling? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `Deze wandeling heet {name}` + +This is rendered with Deze wandeling heet {name} + + @@ -101,15 +97,19 @@ This is rendered with `Deze wandeling heet {name}` -The question is **Wie beheert deze wandeltocht?** +The question is Wie beheert deze wandeltocht? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Beheer door {operator}` + +This is rendered with Beheer door {operator} - - **Dit gebied wordt beheerd door Natuurpunt** corresponds with operator=Natuurpunt - - **Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_ + + + - Dit gebied wordt beheerd door Natuurpunt corresponds with `operator=Natuurpunt` + - Dit gebied wordt beheerd door {operator} corresponds with `operator~^(n|N)atuurpunt.*$` + - This option cannot be chosen as answer @@ -118,17 +118,20 @@ This is rendered with `Beheer door {operator}` -The question is **Welke kleur heeft deze wandeling?** +The question is Welke kleur heeft deze wandeling? This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) -This is rendered with `Deze wandeling heeft kleur {colour}` + +This is rendered with Deze wandeling heeft kleur {colour} - - **Blue trail** corresponds with colour=blue - - **Red trail** corresponds with colour=red - - **Green trail** corresponds with colour=green - - **Yellow trail** corresponds with colour=yellow + + + - Blue trail corresponds with `colour=blue` + - Red trail corresponds with `colour=red` + - Green trail corresponds with `colour=green` + - Yellow trail corresponds with `colour=yellow` @@ -137,14 +140,14 @@ This is rendered with `Deze wandeling heeft kleur {colour}` -The question is **Is deze wandeling toegankelijk met de rolstoel?** +The question is Is deze wandeling toegankelijk met de rolstoel? - - **deze wandeltocht is toegankelijk met de rolstoel** corresponds with wheelchair=yes - - **deze wandeltocht is niet toegankelijk met de rolstoel** corresponds with wheelchair=no + - deze wandeltocht is toegankelijk met de rolstoel corresponds with `wheelchair=yes` + - deze wandeltocht is niet toegankelijk met de rolstoel corresponds with `wheelchair=no` @@ -153,14 +156,14 @@ The question is **Is deze wandeling toegankelijk met de rolstoel?** -The question is **Is deze wandeltocht toegankelijk met de buggy?** +The question is Is deze wandeltocht toegankelijk met de buggy? - - **deze wandeltocht is toegankelijk met de buggy** corresponds with pushchair=yes - - **deze wandeltocht is niet toegankelijk met de buggy** corresponds with pushchair=no + - deze wandeltocht is toegankelijk met de buggy corresponds with `pushchair=yes` + - deze wandeltocht is niet toegankelijk met de buggy corresponds with `pushchair=no` This document is autogenerated from [assets/layers/trail/trail.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/trail/trail.json) \ No newline at end of file diff --git a/Docs/Layers/transit_routes.md b/Docs/Layers/transit_routes.md new file mode 100644 index 0000000000..f5cc1f06aa --- /dev/null +++ b/Docs/Layers/transit_routes.md @@ -0,0 +1,172 @@ + + + transit_routes +================ + + + + + +Layer showing bus lines + + + + + + + - This layer is shown at zoomlevel **15** and higher + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [transit](https://mapcomplete.osm.be/transit) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - type=route + - route=bus + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22route%22%3D%22bus%22%5D%5B%22type%22%3D%22route%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/from#values) [from](https://wiki.openstreetmap.org/wiki/Key:from) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/via#values) [via](https://wiki.openstreetmap.org/wiki/Key:via) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/to#values) [to](https://wiki.openstreetmap.org/wiki/Key:to) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | +[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | + + + + +### name + + + +The question is What is the name for this bus line? (i.e. Bus XX: From => Via => To) + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with {name} + + + + + +### from + + + +The question is What is the starting point for this bus line? + +This rendering asks information about the property [from](https://wiki.openstreetmap.org/wiki/Key:from) + +This is rendered with This bus line begins at {from} + + + + + +### via + + + +The question is What is the via point for this bus line? + +This rendering asks information about the property [via](https://wiki.openstreetmap.org/wiki/Key:via) + +This is rendered with This bus line goes via {via} + + + + + +### to + + + +The question is What is the ending point for this bus line? + +This rendering asks information about the property [to](https://wiki.openstreetmap.org/wiki/Key:to) + +This is rendered with This bus line ends at {to} + + + + + +### colour + + + +The question is What is the colour for this bus line? + +This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) + +This is rendered with This bus line has the color {colour} + + + + + +### network + + + +The question is What network does this bus line belong to? + +This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network) + +This is rendered with This bus line is part of the {network} network + + + + + +### operator + + + +The question is What company operates this bus line? + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) + +This is rendered with This bus line is operated by {operator} + + + +This document is autogenerated from [assets/layers/transit_routes/transit_routes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/transit_routes/transit_routes.json) \ No newline at end of file diff --git a/Docs/Layers/transit_stops.md b/Docs/Layers/transit_stops.md new file mode 100644 index 0000000000..fc1899f9d1 --- /dev/null +++ b/Docs/Layers/transit_stops.md @@ -0,0 +1,242 @@ + + + transit_stops +=============== + + + + + +Layer showing different types of transit stops. + + + + + + + - This layer is shown at zoomlevel **15** and higher + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [transit](https://mapcomplete.osm.be/transit) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=bus_stop + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/shelter#values) [shelter](https://wiki.openstreetmap.org/wiki/Key:shelter) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno) +[](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno) +[](https://taginfo.openstreetmap.org/keys/bin#values) [bin](https://wiki.openstreetmap.org/wiki/Key:bin) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bin%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bin%3Dno) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) +[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) +[](https://taginfo.openstreetmap.org/keys/departures_board#values) [departures_board](https://wiki.openstreetmap.org/wiki/Key:departures_board) | Multiple choice | [realtime](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Drealtime) [timetable](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Dtimetable) [interval](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Dinterval) [no](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Dno) + + + + +### stop_name + + + +The question is What is the name of this stop? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with This stop is called {name} + + + + + + - This stop has no name corresponds with `noname=yes` + + + + +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + +### shelter + + + +The question is Does this stop have a shelter? + + + + + + - This stop has a shelter corresponds with `shelter=yes` + - This stop does not have a shelter corresponds with `shelter=no` + - This stop has a shelter, that's separately mapped corresponds with `shelter=separate` + - This option cannot be chosen as answer + + + + +### bench + + + +The question is Does this stop have a bench? + + + + + + - This stop has a bench corresponds with `bench=yes` + - This stop does not have a bench corresponds with `bench=no` + - This stop has a bench, that's separately mapped corresponds with `bench=separate` + - This option cannot be chosen as answer + + + + +### bin + + + +The question is Does this stop have a bin? + + + + + + - This stop has a bin corresponds with `bin=yes` + - This stop does not have a bin corresponds with `bin=no` + - This stop has a bin, that's separately mapped corresponds with `bin=separate` + - This option cannot be chosen as answer + + + + +### wheelchair-access + + + +The question is Is this place accessible with a wheelchair? + + + + + + - This place is specially adapted for wheelchair users corresponds with `wheelchair=designated` + - This place is easily reachable with a wheelchair corresponds with `wheelchair=yes` + - It is possible to reach this place in a wheelchair, but it is not easy corresponds with `wheelchair=limited` + - This place is not reachable with a wheelchair corresponds with `wheelchair=no` + + + + +### tactile_paving + + + +The question is Does this stop have tactile paving? + + + + + + - This stop has tactile paving corresponds with `tactile_paving=yes` + - This stop does not have tactile paving corresponds with `tactile_paving=no` + + + + +### lit + + + +The question is Is this stop lit? + + + + + + - This stop is lit corresponds with `lit=yes` + - This stop is not lit corresponds with `lit=no` + + + + +### departures_board + + + +This tagrendering has no question and is thus read-only + + + + + + - This stop has a departures board of unknown type corresponds with `departures_board=yes` + - This option cannot be chosen as answer + - This stop has a board showing realtime departure information corresponds with `departures_board=realtime` + - This stop has a board showing realtime departure information corresponds with `passenger_information_display=yes` + - This option cannot be chosen as answer + - This stop has a timetable showing regular departures corresponds with `departures_board=timetable` + - This stop has a timetable containing just the interval between departures corresponds with `departures_board=interval` + - This stop does not have a departures board corresponds with `departures_board=no` + + + + +### contained_routes + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `_contained_routes~^..*$` is shown + +This document is autogenerated from [assets/layers/transit_stops/transit_stops.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/transit_stops/transit_stops.json) \ No newline at end of file diff --git a/Docs/Layers/tree_node.md b/Docs/Layers/tree_node.md index cc99e49af3..6290599681 100644 --- a/Docs/Layers/tree_node.md +++ b/Docs/Layers/tree_node.md @@ -5,7 +5,7 @@ - + A layer showing trees @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -62,6 +64,7 @@ attribute | type | values which are supported by this layer [](https://taginfo.openstreetmap.org/keys/leaf_type#values) [leaf_type](https://wiki.openstreetmap.org/wiki/Key:leaf_type) | Multiple choice | [broadleaved](https://wiki.openstreetmap.org/wiki/Tag:leaf_type%3Dbroadleaved) [needleleaved](https://wiki.openstreetmap.org/wiki/Tag:leaf_type%3Dneedleleaved) [](https://taginfo.openstreetmap.org/keys/denotation#values) [denotation](https://wiki.openstreetmap.org/wiki/Key:denotation) | Multiple choice | [landmark](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dlandmark) [natural_monument](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dnatural_monument) [agricultural](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dagricultural) [park](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dpark) [garden](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dgarden) [avenue](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Davenue) [urban](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Durban) [none](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dnone) [](https://taginfo.openstreetmap.org/keys/leaf_cycle#values) [leaf_cycle](https://wiki.openstreetmap.org/wiki/Key:leaf_cycle) | Multiple choice | [deciduous](https://wiki.openstreetmap.org/wiki/Tag:leaf_cycle%3Ddeciduous) [evergreen](https://wiki.openstreetmap.org/wiki/Tag:leaf_cycle%3Devergreen) +[](https://taginfo.openstreetmap.org/keys/species:wikidata#values) [species:wikidata](https://wiki.openstreetmap.org/wiki/Key:species:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | [](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) [](https://taginfo.openstreetmap.org/keys/heritage#values) [heritage](https://wiki.openstreetmap.org/wiki/Key:heritage) | Multiple choice | [4](https://wiki.openstreetmap.org/wiki/Tag:heritage%3D4) [4](https://wiki.openstreetmap.org/wiki/Tag:heritage%3D4) [yes](https://wiki.openstreetmap.org/wiki/Tag:heritage%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:heritage%3Dno) [](https://taginfo.openstreetmap.org/keys/ref:OnroerendErfgoed#values) [ref:OnroerendErfgoed](https://wiki.openstreetmap.org/wiki/Key:ref:OnroerendErfgoed) | [nat](../SpecialInputElements.md#nat) | @@ -74,7 +77,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -84,16 +89,16 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only - - **Height: {height} m** corresponds with height~^[0-9.]+$ + - Height: {height} m corresponds with `height~^^[0-9.]+$$` -Only visible if `height~^..*$` is shown +Only visible if `height~^..*$` is shown @@ -101,15 +106,16 @@ Only visible if `height~^..*$` is shown -The question is **Is this a broadleaved or needleleaved tree?** +The question is Is this a broadleaved or needleleaved tree? - - **Broadleaved** corresponds with leaf_type=broadleaved - - **Needleleaved** corresponds with leaf_type=needleleaved - - **Permanently leafless** corresponds with leaf_type=leafless_This option cannot be chosen as answer_ + - Broadleaved corresponds with `leaf_type=broadleaved` + - Needleleaved corresponds with `leaf_type=needleleaved` + - Permanently leafless corresponds with `leaf_type=leafless` + - This option cannot be chosen as answer @@ -118,20 +124,20 @@ The question is **Is this a broadleaved or needleleaved tree?** -The question is **How significant is this tree? Choose the first answer that applies.** +The question is How significant is this tree? Choose the first answer that applies. - - **The tree is remarkable due to its size or prominent location. It is useful for navigation.** corresponds with denotation=landmark - - **The tree is a natural monument, e.g. because it is especially old, or of a valuable species.** corresponds with denotation=natural_monument - - **The tree is used for agricultural purposes, e.g. in an orchard.** corresponds with denotation=agricultural - - **The tree is in a park or similar (cemetery, school grounds, …).** corresponds with denotation=park - - **The tree is a residential garden.** corresponds with denotation=garden - - **This is a tree along an avenue.** corresponds with denotation=avenue - - **The tree is an urban area.** corresponds with denotation=urban - - **The tree is outside of an urban area.** corresponds with denotation=none + - The tree is remarkable due to its size or prominent location. It is useful for navigation. corresponds with `denotation=landmark` + - The tree is a natural monument, e.g. because it is especially old, or of a valuable species. corresponds with `denotation=natural_monument` + - The tree is used for agricultural purposes, e.g. in an orchard. corresponds with `denotation=agricultural` + - The tree is in a park or similar (cemetery, school grounds, …). corresponds with `denotation=park` + - The tree is in a residential garden. corresponds with `denotation=garden` + - This is a tree along an avenue. corresponds with `denotation=avenue` + - The tree is in an urban area. corresponds with `denotation=urban` + - The tree is outside of an urban area. corresponds with `denotation=none` @@ -140,33 +146,62 @@ The question is **How significant is this tree? Choose the first answer that app -The question is **Is this tree evergreen or deciduous?** +The question is Is this tree evergreen or deciduous? - - **Deciduous: the tree loses its leaves for some time of the year.** corresponds with leaf_cycle=deciduous - - **Evergreen.** corresponds with leaf_cycle=evergreen + - Deciduous: the tree loses its leaves for some time of the year. corresponds with `leaf_cycle=deciduous` + - Evergreen. corresponds with `leaf_cycle=evergreen` +### tree-species-wikidata + + + +The question is What species is this tree? + +This rendering asks information about the property [species:wikidata](https://wiki.openstreetmap.org/wiki/Key:species:wikidata) + +This is rendered with {wikipedia(species:wikidata):max-height: 25rem} + + + + + +### tree-wikipedia + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `wikipedia~^..*$|wikidata~^..*$` is shown + + + ### tree_node-name -The question is **Does the tree have a name?** +The question is Does the tree have a name? This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) -This is rendered with `Name: {name}` + +This is rendered with Name: {name} - - **The tree does not have a name.** corresponds with noname=yes -Only visible if `denotation=landmark|denotation=natural_monument|name~^..*$` is shown + - The tree does not have a name. corresponds with `noname=yes` + + +Only visible if `denotation=landmark|denotation=natural_monument|name~^..*$` is shown @@ -174,20 +209,21 @@ Only visible if `denotation=landmark|denotation=natural_monument|name~^..*$` is -The question is **Is this tree registered heritage?** +The question is Is this tree registered heritage? - - **Registered as heritage by Onroerend Erfgoed Flanders** corresponds with heritage=4&heritage:operator=OnroerendErfgoed - - **Registered as heritage by Direction du Patrimoine culturel Brussels** corresponds with heritage=4&heritage:operator=aatl - - **Registered as heritage by a different organisation** corresponds with heritage=yes - - **Not registered as heritage** corresponds with heritage=no - - **Registered as heritage by a different organisation** corresponds with heritage~^..*$_This option cannot be chosen as answer_ + - Registered as heritage by Onroerend Erfgoed Flanders corresponds with `heritage=4&heritage:operator=OnroerendErfgoed` + - Registered as heritage by Direction du Patrimoine culturel Brussels corresponds with `heritage=4&heritage:operator=aatl` + - Registered as heritage by a different organisation corresponds with `heritage=yes` + - Not registered as heritage corresponds with `heritage=no` + - Registered as heritage by a different organisation corresponds with `heritage~^..*$` + - This option cannot be chosen as answer -Only visible if `denotation=landmark|denotation=natural_monument` is shown +Only visible if `denotation=landmark|denotation=natural_monument` is shown @@ -195,12 +231,15 @@ Only visible if `denotation=landmark|denotation=natural_monument` is shown -The question is **What is the ID issued by Onroerend Erfgoed Flanders?** +The question is What is the ID issued by Onroerend Erfgoed Flanders? This rendering asks information about the property [ref:OnroerendErfgoed](https://wiki.openstreetmap.org/wiki/Key:ref:OnroerendErfgoed) -This is rendered with ` Onroerend Erfgoed ID: {ref:OnroerendErfgoed}` -Only visible if `heritage=4&heritage:operator=OnroerendErfgoed` is shown +This is rendered with Onroerend Erfgoed ID: {ref:OnroerendErfgoed} + + + +Only visible if `heritage=4&heritage:operator=OnroerendErfgoed` is shown @@ -208,11 +247,14 @@ Only visible if `heritage=4&heritage:operator=OnroerendErfgoed` is shown -The question is **What is the Wikidata ID for this tree?** +The question is What is the Wikidata ID for this tree? This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) -This is rendered with ` Wikidata: {wikidata}` -Only visible if `denotation=landmark|denotation=natural_monument|wikidata~^..*$` is shown +This is rendered with Wikidata: {wikidata} + + + +Only visible if `denotation=landmark|denotation=natural_monument|wikidata~^..*$` is shown This document is autogenerated from [assets/layers/tree_node/tree_node.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tree_node/tree_node.json) \ No newline at end of file diff --git a/Docs/Layers/veterinary.md b/Docs/Layers/veterinary.md new file mode 100644 index 0000000000..16d0b75693 --- /dev/null +++ b/Docs/Layers/veterinary.md @@ -0,0 +1,149 @@ + + + veterinary +============ + + + + + +A layer showing veterinarians + + + + + + + - This layer is shown at zoomlevel **10** and higher + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [pets](https://mapcomplete.osm.be/pets) + + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=veterinary + + +[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22veterinary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) + + + + Supported attributes +---------------------- + + + +Warning: + +this quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | + + + + +### website + + + +The question is What is the website of {title()}? + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) + +This is rendered with {website} + + + + + + - {contact:website} corresponds with `contact:website~^..*$` + - This option cannot be chosen as answer + + + + +### reviews + + + +Shows the reviews module (including the possibility to leave a review) + +This tagrendering has no question and is thus read-only + + + + + +### phone + + + +The question is What is the phone number of {title()}? + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) + +This is rendered with {phone} + + + + + + - {contact:phone} corresponds with `contact:phone~^..*$` + - This option cannot be chosen as answer + + + + +### opening_hours + + + +The question is What are the opening hours of {title()}? + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) + +This is rendered with

Opening hours

{opening_hours_table(opening_hours)} + + + + + +### vetName + + + +The question is What is the name of this veterinarian? + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) + +This is rendered with The name of this veterinarian is {name} + + + +This document is autogenerated from [assets/layers/veterinary/veterinary.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/veterinary/veterinary.json) \ No newline at end of file diff --git a/Docs/Layers/viewpoint.md b/Docs/Layers/viewpoint.md index b2bac8d415..36bbb68d0a 100644 --- a/Docs/Layers/viewpoint.md +++ b/Docs/Layers/viewpoint.md @@ -19,17 +19,6 @@ A nice viewpoint or nice view. Ideal to add an image if no other category fits -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -51,7 +40,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -66,7 +57,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -76,9 +69,12 @@ _This tagrendering has no question and is thus read-only_ -The question is **Do you want to add a description?** +The question is Do you want to add a description? This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) -This is rendered with `{description}` + +This is rendered with {description} + + This document is autogenerated from [assets/layers/viewpoint/viewpoint.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/viewpoint/viewpoint.json) \ No newline at end of file diff --git a/Docs/Layers/village_green.md b/Docs/Layers/village_green.md index f38e8d236d..67dd28e93b 100644 --- a/Docs/Layers/village_green.md +++ b/Docs/Layers/village_green.md @@ -19,17 +19,6 @@ A layer showing village-green (which are communal green areas, but not quite par -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -57,7 +46,9 @@ Elements must have the all of following tags to be shown on this layer: -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -67,7 +58,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only @@ -77,7 +68,7 @@ _This tagrendering has no question and is thus read-only_ -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only diff --git a/Docs/Layers/visitor_information_centre.md b/Docs/Layers/visitor_information_centre.md index 932e14c08d..f2aa964375 100644 --- a/Docs/Layers/visitor_information_centre.md +++ b/Docs/Layers/visitor_information_centre.md @@ -19,17 +19,6 @@ A visitor center offers information about a specific attraction or place of inte -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- diff --git a/Docs/Layers/walls_and_buildings.md b/Docs/Layers/walls_and_buildings.md index bb24335506..5f5a8915ec 100644 --- a/Docs/Layers/walls_and_buildings.md +++ b/Docs/Layers/walls_and_buildings.md @@ -7,7 +7,7 @@ -Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, ...). This layer is invisible by default and not toggleable by the user. +Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, …). This layer is invisible by default and not toggleable by the user. @@ -16,8 +16,10 @@ Special builtin layer providing all walls and buildings. This layer is useful in - This layer is shown at zoomlevel **18** and higher - This layer is not visible by default and must be enabled in the filter by the user. + - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer will automatically load [entrance](./entrance.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _entrance_properties) - This layer is needed as dependency for layer [defibrillator](#defibrillator) - This layer is needed as dependency for layer [entrance](#entrance) - This layer is needed as dependency for layer [surveillance_camera](#surveillance_camera) @@ -32,7 +34,8 @@ Special builtin layer providing all walls and buildings. This layer is useful in - [aed](https://mapcomplete.osm.be/aed) - - [entrances](https://mapcomplete.osm.be/entrances) + - [indoors](https://mapcomplete.osm.be/indoors) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) - [surveillance](https://mapcomplete.osm.be/surveillance) @@ -58,6 +61,34 @@ Elements must have the all of following tags to be shown on this layer: Supported attributes ---------------------- - + + + + +### entrance_info + + + +This tagrendering has no question and is thus read-only + + + + + + - No entrance has been marked corresponds with `_entrances_count=0` + - None of the {_entrance_count} entrances have width information yet corresponds with `_entrances_count_without_width=_entrances_count` + + + + +### biggest_width + + + +This tagrendering has no question and is thus read-only + + + +Only visible if `_biggest_width_id~^..*$` is shown This document is autogenerated from [assets/layers/walls_and_buildings/walls_and_buildings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/walls_and_buildings/walls_and_buildings.json) \ No newline at end of file diff --git a/Docs/Layers/waste_basket.md b/Docs/Layers/waste_basket.md index a8386f4194..702fa1ac6f 100644 --- a/Docs/Layers/waste_basket.md +++ b/Docs/Layers/waste_basket.md @@ -26,6 +26,7 @@ This is a public waste basket, thrash can, where you can throw away your thrash. - [personal](https://mapcomplete.osm.be/personal) + - [pets](https://mapcomplete.osm.be/pets) - [waste](https://mapcomplete.osm.be/waste) - [waste_basket](https://mapcomplete.osm.be/waste_basket) @@ -53,7 +54,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -65,23 +68,36 @@ attribute | type | values which are supported by this layer +### images + + + +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only + + + + + ### waste-basket-waste-types -The question is **What kind of waste basket is this?** +The question is What kind of waste basket is this? - - **A waste basket for general waste** corresponds with _This option cannot be chosen as answer_ - - **A waste basket for general waste** corresponds with waste=trash - - **A waste basket for dog excrements** corresponds with waste=dog_excrement - - **A waste basket for cigarettes** corresponds with waste=cigarettes - - **A waste basket for drugs** corresponds with waste=drugs - - **A waste basket for needles and other sharp objects** corresponds with waste=sharps - - **A waste basket for plastic** corresponds with waste=plastic + - A waste basket for general waste corresponds with `` + - This option cannot be chosen as answer + - A waste basket for general waste corresponds with `waste=trash` + - A waste basket for dog excrements corresponds with `waste=dog_excrement` + - A waste basket for cigarettes corresponds with `waste=cigarettes` + - A waste basket for drugs corresponds with `waste=drugs` + - A waste basket for needles and other sharp objects corresponds with `waste=sharps` + - A waste basket for plastic corresponds with `waste=plastic` @@ -90,15 +106,16 @@ The question is **What kind of waste basket is this?** -The question is **Does this waste basket have a dispenser for dog excrement bags?** +The question is Does this waste basket have a dispenser for dog excrement bags? - - **This waste basket has a dispenser for (dog) excrement bags** corresponds with vending=dog_excrement_bag - - **This waste basket does not have a dispenser for (dog) excrement bags** corresponds with not:vending=dog_excrement_bag - - **This waste basket does not have a dispenser for (dog) excrement bags** corresponds with _This option cannot be chosen as answer_ + - This waste basket has a dispenser for (dog) excrement bags corresponds with `vending=dog_excrement_bag` + - This waste basket does not have a dispenser for (dog) excrement bags corresponds with `not:vending=dog_excrement_bag` + - This waste basket does not have a dispenser for (dog) excrement bags corresponds with `` + - This option cannot be chosen as answer This document is autogenerated from [assets/layers/waste_basket/waste_basket.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/waste_basket/waste_basket.json) \ No newline at end of file diff --git a/Docs/Layers/waste_disposal.md b/Docs/Layers/waste_disposal.md index e045ca33f0..fdce75be1d 100644 --- a/Docs/Layers/waste_disposal.md +++ b/Docs/Layers/waste_disposal.md @@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,16 +70,19 @@ attribute | type | values which are supported by this layer -The question is **Who can use this waste disposal bin?** +The question is Who can use this waste disposal bin? This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) -This is rendered with `Access: {access}` + +This is rendered with Access: {access} - - **This bin can be used by anyone** corresponds with access=yes - - **This bin is private** corresponds with access=no - - **This bin is only for residents** corresponds with access=residents + + + - This bin can be used by anyone corresponds with `access=yes` + - This bin is private corresponds with `access=no` + - This bin is only for residents corresponds with `access=residents` @@ -86,15 +91,15 @@ This is rendered with `Access: {access}` -The question is **Where is this container located?** +The question is Where is this container located? - - **This is an underground container** corresponds with location=underground - - **This container is located indoors** corresponds with location=indoor - - **This container is located outdoors** corresponds with + - This is an underground container corresponds with `location=underground` + - This container is located indoors corresponds with `location=indoor` + - This container is located outdoors corresponds with `` This document is autogenerated from [assets/layers/waste_disposal/waste_disposal.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/waste_disposal/waste_disposal.json) \ No newline at end of file diff --git a/Docs/Layers/watermill.md b/Docs/Layers/watermill.md index 6d1e624eb9..5340e87ba4 100644 --- a/Docs/Layers/watermill.md +++ b/Docs/Layers/watermill.md @@ -19,17 +19,6 @@ Watermolens -#### Themes using this layer - - - - - - - [personal](https://mapcomplete.osm.be/personal) - - - - Basic tags for this layer --------------------------- @@ -51,7 +40,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -67,7 +58,9 @@ attribute | type | values which are supported by this layer -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` + +This tagrendering has no question and is thus read-only @@ -77,19 +70,22 @@ _This tagrendering has no question and is thus read-only_ -The question is **Is dit gebied toegankelijk?** +The question is Is dit gebied toegankelijk? This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) -This is rendered with `De toegankelijkheid van dit gebied is: {access:description}` + +This is rendered with De toegankelijkheid van dit gebied is: {access:description} - - **Vrij toegankelijk** corresponds with access=yes - - **Niet toegankelijk** corresponds with access=no - - **Niet toegankelijk, want privégebied** corresponds with access=private - - **Toegankelijk, ondanks dat het privegebied is** corresponds with access=permissive - - **Enkel toegankelijk met een gids of tijdens een activiteit** corresponds with access=guided - - **Toegankelijk mits betaling** corresponds with access=yes&fee=yes + + + - Vrij toegankelijk corresponds with `access=yes` + - Niet toegankelijk corresponds with `access=no` + - Niet toegankelijk, want privégebied corresponds with `access=private` + - Toegankelijk, ondanks dat het privegebied is corresponds with `access=permissive` + - Enkel toegankelijk met een gids of tijdens een activiteit corresponds with `access=guided` + - Toegankelijk mits betaling corresponds with `access=yes&fee=yes` @@ -98,15 +94,19 @@ This is rendered with `De toegankelijkheid van dit gebied is: {access:descriptio -The question is **Wie beheert dit pad?** +The question is Wie beheert dit pad? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `Beheer door {operator}` + +This is rendered with Beheer door {operator} - - **Dit gebied wordt beheerd door Natuurpunt** corresponds with operator=Natuurpunt - - **Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_ + + + - Dit gebied wordt beheerd door Natuurpunt corresponds with `operator=Natuurpunt` + - Dit gebied wordt beheerd door {operator} corresponds with `operator~^(n|N)atuurpunt.*$` + - This option cannot be chosen as answer This document is autogenerated from [assets/layers/watermill/watermill.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/watermill/watermill.json) \ No newline at end of file diff --git a/Docs/Layers/windturbine.md b/Docs/Layers/windturbine.md index 110fe27418..7e7149f65e 100644 --- a/Docs/Layers/windturbine.md +++ b/Docs/Layers/windturbine.md @@ -7,6 +7,8 @@ +Modern windmills generating electricity + @@ -24,6 +26,7 @@ - [openwindpowermap](https://mapcomplete.osm.be/openwindpowermap) + - [personal](https://mapcomplete.osm.be/personal) @@ -49,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer: -**Warning** This quick overview is incomplete +Warning: + +this quick overview is incomplete @@ -68,10 +73,13 @@ attribute | type | values which are supported by this layer -The question is **What is the power output of this wind turbine? (e.g. 2.3 MW)** +The question is What is the power output of this wind turbine? (e.g. 2.3 MW) This rendering asks information about the property [generator:output:electricity](https://wiki.openstreetmap.org/wiki/Key:generator:output:electricity) -This is rendered with `The power output of this wind turbine is {generator:output:electricity}.` + +This is rendered with The power output of this wind turbine is {generator:output:electricity}. + + @@ -79,10 +87,13 @@ This is rendered with `The power output of this wind turbine is {generator:outpu -The question is **Who operates this wind turbine?** +The question is Who operates this wind turbine? This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) -This is rendered with `This wind turbine is operated by {operator}.` + +This is rendered with This wind turbine is operated by {operator}. + + @@ -90,10 +101,13 @@ This is rendered with `This wind turbine is operated by {operator}.` -The question is **What is the total height of this wind turbine (including rotor radius), in metres?** +The question is What is the total height of this wind turbine (including rotor radius), in metres? This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height) -This is rendered with `The total height (including rotor radius) of this wind turbine is {height} metres.` + +This is rendered with The total height (including rotor radius) of this wind turbine is {height} metres. + + @@ -101,10 +115,13 @@ This is rendered with `The total height (including rotor radius) of this wind tu -The question is **What is the rotor diameter of this wind turbine, in metres?** +The question is What is the rotor diameter of this wind turbine, in metres? This rendering asks information about the property [rotor:diameter](https://wiki.openstreetmap.org/wiki/Key:rotor:diameter) -This is rendered with `The rotor diameter of this wind turbine is {rotor:diameter} metres.` + +This is rendered with The rotor diameter of this wind turbine is {rotor:diameter} metres. + + @@ -112,10 +129,13 @@ This is rendered with `The rotor diameter of this wind turbine is {rotor:diamete -The question is **When did this wind turbine go into operation?** +The question is When did this wind turbine go into operation? This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) -This is rendered with `This wind turbine went into operation on/in {start_date}.` + +This is rendered with This wind turbine went into operation on/in {start_date}. + + @@ -123,28 +143,10 @@ This is rendered with `This wind turbine went into operation on/in {start_date}. -_This tagrendering has no question and is thus read-only_ +This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` - - - - -### questions - - - -_This tagrendering has no question and is thus read-only_ - - - - - -### minimap - - - -_This tagrendering has no question and is thus read-only_ +This tagrendering has no question and is thus read-only -This document is autogenerated from [assets/themes/openwindpowermap/openwindpowermap.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/openwindpowermap/openwindpowermap.json) \ No newline at end of file +This document is autogenerated from [assets/layers/windturbine/windturbine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/windturbine/windturbine.json) \ No newline at end of file diff --git a/Docs/Making_Your_Own_Theme.md b/Docs/Making_Your_Own_Theme.md index 7848988d22..80c27a7f4b 100644 --- a/Docs/Making_Your_Own_Theme.md +++ b/Docs/Making_Your_Own_Theme.md @@ -261,14 +261,21 @@ If you have your JSON file, there are three ways to distribute your theme: ### Getting your theme included into the official mapcomplete Did you make an awesome theme that you want to share with the OpenStreetMap community? Have it included in the main -application, which makes it more discoverable. +application. This makes sure that: -Your theme has to be: +- Your theme will be discovered by more people +- It will be included in the translation program +- Metadata will be generated (such as links with TagInfo or layer documentation) +- Maintanence is included +- Parts of your theme might be reused by others -0) Make sure the theme has an English version. This makes it easier for me to understand what is going on. The more +The following conditions must be met: + +0) The theme must be relevant for a global audience +1) There must be an English translation. This makes it easier for me to understand what is going on and is needed for the translators. The more other languages, the better of course! -1) Make sure your theme has good tagging -3) Make sure there are somewhat decent icons. Note that there is _no_ styleguide at the moment though. +2) Make sure your theme has good tagging - i.e. a wiki page must exist for the used tags +3) Make sure there are somewhat decent icons. Note that there is _no_ styleguide at the moment though. Icons must be included and have license info in the corresponding `license_info.json`-files. (Run `npm run query:licenses` to build those) The preferred way to add your theme is via a Pull Request. A Pull Request is less work for the maintainer (which makes it really easy for me to add it) and your name will be included in the git history (so you'll be listed as diff --git a/Docs/Misc/EtymoogyExample.png b/Docs/Misc/EtymoogyExample.png new file mode 100644 index 0000000000..1bd89f672a Binary files /dev/null and b/Docs/Misc/EtymoogyExample.png differ diff --git a/Docs/Misc/SpokenLanguageSelector.gif b/Docs/Misc/SpokenLanguageSelector.gif new file mode 100644 index 0000000000..7f889d1813 Binary files /dev/null and b/Docs/Misc/SpokenLanguageSelector.gif differ diff --git a/Docs/Misc/TreesWikidataExample b/Docs/Misc/TreesWikidataExample new file mode 100644 index 0000000000..e790a89322 Binary files /dev/null and b/Docs/Misc/TreesWikidataExample differ diff --git a/Docs/Misc/TreesWithWikidata.gif b/Docs/Misc/TreesWithWikidata.gif new file mode 100644 index 0000000000..32973b0f37 Binary files /dev/null and b/Docs/Misc/TreesWithWikidata.gif differ diff --git a/Docs/Misc/WikipediaArticleExample_dutch.png b/Docs/Misc/WikipediaArticleExample_dutch.png new file mode 100644 index 0000000000..64636d9135 Binary files /dev/null and b/Docs/Misc/WikipediaArticleExample_dutch.png differ diff --git a/Docs/Presentations/LinkedData4Wikidata.odp b/Docs/Presentations/LinkedData4Wikidata.odp new file mode 100644 index 0000000000..f51a505ea6 Binary files /dev/null and b/Docs/Presentations/LinkedData4Wikidata.odp differ diff --git a/Docs/Presentations/collage.png b/Docs/Presentations/collage.png new file mode 100644 index 0000000000..709d9144c5 Binary files /dev/null and b/Docs/Presentations/collage.png differ diff --git a/Docs/Schemas/AndTagConfigJson.schema.json b/Docs/Schemas/AndTagConfigJson.schema.json new file mode 100644 index 0000000000..9f510d6b26 --- /dev/null +++ b/Docs/Schemas/AndTagConfigJson.schema.json @@ -0,0 +1,66 @@ +{ + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], + "additionalProperties": false + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false +} \ No newline at end of file diff --git a/Docs/Schemas/AndTagConfigJsonJSC.ts b/Docs/Schemas/AndTagConfigJsonJSC.ts new file mode 100644 index 0000000000..2903f36b1a --- /dev/null +++ b/Docs/Schemas/AndTagConfigJsonJSC.ts @@ -0,0 +1,63 @@ +export default { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" +} \ No newline at end of file diff --git a/Docs/Schemas/DeleteConfigJson.schema.json b/Docs/Schemas/DeleteConfigJson.schema.json index bdaca19eda..e0b80f573b 100644 --- a/Docs/Schemas/DeleteConfigJson.schema.json +++ b/Docs/Schemas/DeleteConfigJson.schema.json @@ -28,9 +28,12 @@ "type": "object", "properties": { "if": { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" }, - "then": {} + "then": { + "description": "The human explanation for the options" + } }, "required": [ "if", @@ -42,7 +45,12 @@ "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -55,36 +63,62 @@ } }, "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false } }, diff --git a/Docs/Schemas/DeleteConfigJsonJSC.ts b/Docs/Schemas/DeleteConfigJsonJSC.ts index eb67718d7b..14fd5ed83f 100644 --- a/Docs/Schemas/DeleteConfigJsonJSC.ts +++ b/Docs/Schemas/DeleteConfigJsonJSC.ts @@ -1,91 +1,124 @@ export default { - "type": "object", - "properties": { - "extraDeleteReasons": { - "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", - "type": "array", - "items": { - "type": "object", - "properties": { - "explanation": { - "description": "The text that will be shown to the user - translatable" - }, - "changesetMessage": { - "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", - "type": "string" - } - }, - "required": [ - "changesetMessage", - "explanation" - ] - } + "type": "object", + "properties": { + "extraDeleteReasons": { + "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", + "type": "array", + "items": { + "type": "object", + "properties": { + "explanation": { + "description": "The text that will be shown to the user - translatable" + }, + "changesetMessage": { + "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", + "type": "string" + } }, - "nonDeleteMappings": { - "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - "then": {} - }, - "required": [ - "if", - "then" - ] - } - }, - "softDeletionTags": { - "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "neededChangesets": { - "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", - "type": "number" - } + "required": [ + "changesetMessage", + "explanation" + ] + } }, - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } - } + "nonDeleteMappings": { + "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" + }, + "then": { + "description": "The human explanation for the options" + } + }, + "required": [ + "if", + "then" + ] + } }, - "$schema": "http://json-schema.org/draft-07/schema#" + "softDeletionTags": { + "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "neededChangesets": { + "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", + "type": "number" + } + }, + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/ExtraLinkConfigJson.schema.json b/Docs/Schemas/ExtraLinkConfigJson.schema.json index 9d232d1f21..157922a93a 100644 --- a/Docs/Schemas/ExtraLinkConfigJson.schema.json +++ b/Docs/Schemas/ExtraLinkConfigJson.schema.json @@ -28,36 +28,62 @@ "href" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false } }, diff --git a/Docs/Schemas/ExtraLinkConfigJsonJSC.ts b/Docs/Schemas/ExtraLinkConfigJsonJSC.ts index 1c751bf9ad..762e6f4ad9 100644 --- a/Docs/Schemas/ExtraLinkConfigJsonJSC.ts +++ b/Docs/Schemas/ExtraLinkConfigJsonJSC.ts @@ -1,64 +1,89 @@ export default { - "type": "object", - "properties": { - "icon": { - "type": "string" - }, - "text": {}, - "href": { - "type": "string" - }, - "newTab": { - "type": "boolean" - }, - "requirements": { - "type": "array", - "items": { - "enum": [ - "iframe", - "no-iframe", - "no-welcome-message", - "welcome-message" - ], - "type": "string" - } - } + "type": "object", + "properties": { + "icon": { + "type": "string" }, - "required": [ - "href" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } - } + "text": {}, + "href": { + "type": "string" }, - "$schema": "http://json-schema.org/draft-07/schema#" + "newTab": { + "type": "boolean" + }, + "requirements": { + "type": "array", + "items": { + "enum": [ + "iframe", + "no-iframe", + "no-welcome-message", + "welcome-message" + ], + "type": "string" + } + } + }, + "required": [ + "href" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/FilterConfigJson.schema.json b/Docs/Schemas/FilterConfigJson.schema.json index 5e50195609..d6557cac42 100644 --- a/Docs/Schemas/FilterConfigJson.schema.json +++ b/Docs/Schemas/FilterConfigJson.schema.json @@ -13,9 +13,15 @@ "properties": { "question": {}, "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -55,36 +61,62 @@ "options" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false } }, diff --git a/Docs/Schemas/FilterConfigJsonJSC.ts b/Docs/Schemas/FilterConfigJsonJSC.ts index 014ec8b6fb..6030dd61d2 100644 --- a/Docs/Schemas/FilterConfigJsonJSC.ts +++ b/Docs/Schemas/FilterConfigJsonJSC.ts @@ -1,91 +1,122 @@ export default { - "type": "object", - "properties": { - "id": { - "description": "An id/name for this filter, used to set the URL parameters", - "type": "string" - }, - "options": { - "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", + "type": "object", + "properties": { + "id": { + "description": "An id/name for this filter, used to set the URL parameters", + "type": "string" + }, + "options": { + "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", + "type": "array", + "items": { + "type": "object", + "properties": { + "question": {}, + "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "default": { + "type": "boolean" + }, + "fields": { "type": "array", "items": { - "type": "object", - "properties": { - "question": {}, - "osmTags": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "default": { - "type": "boolean" - }, - "fields": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", - "type": "string" - }, - "type": { - "type": "string" - } - }, - "required": [ - "name" - ] - } - } + "type": "object", + "properties": { + "name": { + "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", + "type": "string" }, - "required": [ - "question" - ] - } - } - }, - "required": [ - "id", - "options" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } + "type": { + "type": "string" } + }, + "required": [ + "name" + ] } + } + }, + "required": [ + "question" + ] + } + } + }, + "required": [ + "id", + "options" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" } + ] }, - "$schema": "http://json-schema.org/draft-07/schema#" + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/LayerConfigJson.schema.json b/Docs/Schemas/LayerConfigJson.schema.json index 7b46dfbdcd..89fcd06ba9 100644 --- a/Docs/Schemas/LayerConfigJson.schema.json +++ b/Docs/Schemas/LayerConfigJson.schema.json @@ -21,15 +21,8 @@ "type": "object", "properties": { "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." }, "maxCacheAge": { "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", @@ -44,6 +37,7 @@ "type": "object", "properties": { "overpassScript": { + "description": "If set, this custom overpass-script will be used instead of building one by using the OSM-tags.\nSpecifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline.\n_This should be really rare_.\n\nFor example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: \n```\n\"source\": {\n \"overpassScript\": \n \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\",\n \"osmTags\": \"access=yes\"\n}\n```", "type": "string" } } @@ -56,15 +50,8 @@ "type": "object", "properties": { "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." }, "maxCacheAge": { "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", @@ -119,8 +106,20 @@ "type": "boolean" }, "isShown": { - "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", - "$ref": "#/definitions/TagRenderingConfigJson" + "description": "If set, only features matching this extra tag will be shown.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] }, "forceLoad": { "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", @@ -304,9 +303,21 @@ "type": "object", "properties": { "builtin": { - "type": "string" + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] }, - "override": {} + "override": { + "$ref": "#/definitions/Partial" + } }, "required": [ "builtin", @@ -314,7 +325,7 @@ ] }, { - "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>" + "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>" }, { "type": "string" @@ -367,7 +378,7 @@ ] }, "allowSplit": { - "description": "IF set, a 'split this road' button is shown", + "description": "If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways.\n\nIf the way is part of a relation, MapComplete will attempt to update this relation as well", "type": "boolean" }, "units": { @@ -378,7 +389,7 @@ } }, "syncSelection": { - "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "description": "If set, synchronizes whether or not this layer is enabled.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", "enum": [ "global", "local", @@ -394,36 +405,62 @@ "source" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -487,10 +524,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -517,15 +559,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" @@ -565,6 +600,114 @@ }, "additionalProperties": false }, + "Record": { + "type": "object", + "additionalProperties": false + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "additionalProperties": false + }, "T": { "type": "object", "additionalProperties": false @@ -598,14 +741,8 @@ "type": "object", "properties": { "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" }, "then": { "description": "Badge to show\nType: icon", @@ -648,7 +785,7 @@ ] }, "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -756,7 +893,7 @@ "additionalProperties": false }, "default": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -864,83 +1001,7 @@ "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", "type": "array", "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] + "$ref": "#/definitions/MappingConfigJson" } }, "id": { @@ -962,10 +1023,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -975,8 +1041,101 @@ }, "additionalProperties": false }, - "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "Partial": { + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "additionalProperties": false + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -1014,7 +1173,9 @@ "builtin": { "type": "string" }, - "override": {} + "override": { + "$ref": "#/definitions/Partial" + } }, "required": [ "builtin", @@ -1049,9 +1210,15 @@ "properties": { "question": {}, "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -1122,9 +1289,12 @@ "type": "object", "properties": { "if": { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" }, - "then": {} + "then": { + "description": "The human explanation for the options" + } }, "required": [ "if", @@ -1136,7 +1306,12 @@ "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" diff --git a/Docs/Schemas/LayerConfigJsonJSC.ts b/Docs/Schemas/LayerConfigJsonJSC.ts index 19fb401341..3cb6accfe5 100644 --- a/Docs/Schemas/LayerConfigJsonJSC.ts +++ b/Docs/Schemas/LayerConfigJsonJSC.ts @@ -1,1184 +1,1355 @@ export default { - "description": "Configuration for a single layer", - "type": "object", - "properties": { - "id": { - "description": "The id of this layer.\nThis should be a simple, lowercase, human readable string that is used to identify the layer.", - "type": "string" - }, - "name": { - "description": "The name of this layer\nUsed in the layer control panel and the 'Personal theme'.\n\nIf not given, will be hidden (and thus not toggable) in the layer control" - }, - "description": { - "description": "A description for this layer.\nShown in the layer selections and in the personel theme" - }, - "source": { - "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", - "anyOf": [ - { - "allOf": [ - { - "type": "object", - "properties": { - "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" - } - }, - "required": [ - "osmTags" - ] - }, - { - "type": "object", - "properties": { - "overpassScript": { - "type": "string" - } - } - } - ] + "description": "Configuration for a single layer", + "type": "object", + "properties": { + "id": { + "description": "The id of this layer.\nThis should be a simple, lowercase, human readable string that is used to identify the layer.", + "type": "string" + }, + "name": { + "description": "The name of this layer\nUsed in the layer control panel and the 'Personal theme'.\n\nIf not given, will be hidden (and thus not toggable) in the layer control" + }, + "description": { + "description": "A description for this layer.\nShown in the layer selections and in the personel theme" + }, + "source": { + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", + "anyOf": [ + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." }, - { - "allOf": [ - { - "type": "object", - "properties": { - "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" - } - }, - "required": [ - "osmTags" - ] - }, - { - "type": "object", - "properties": { - "geoJson": { - "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", - "type": "string" - }, - "geoJsonZoomLevel": { - "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", - "type": "number" - }, - "isOsmCache": { - "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", - "type": "boolean" - }, - "mercatorCrs": { - "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", - "type": "boolean" - }, - "idKey": { - "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", - "type": "string" - } - }, - "required": [ - "geoJson" - ] - } - ] + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" } - ] - }, - "calculatedTags": { - "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", - "type": "array", - "items": { - "type": "string" + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "overpassScript": { + "description": "If set, this custom overpass-script will be used instead of building one by using the OSM-tags.\nSpecifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline.\n_This should be really rare_.\n\nFor example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: \n```\n\"source\": {\n \"overpassScript\": \n \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\",\n \"osmTags\": \"access=yes\"\n}\n```", + "type": "string" + } + } } + ] }, - "doNotDownload": { - "description": "If set, this layer will not query overpass; but it'll still match the tags above which are by chance returned by other layers.\nWorks well together with 'passAllFeatures', to add decoration", - "type": "boolean" - }, - "isShown": { - "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", - "$ref": "#/definitions/TagRenderingConfigJson" - }, - "forceLoad": { - "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", - "type": "boolean" - }, - "minzoom": { - "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", - "type": "number" - }, - "shownByDefault": { - "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", - "type": "boolean" - }, - "minzoomVisible": { - "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", - "type": "number" - }, - "title": { - "description": "The title shown in a popup for elements of this layer.", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." }, - { - "type": "string" + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" } - ] - }, - "titleIcons": { - "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", - "anyOf": [ - { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" }, - { - "type": "array", - "items": [ - { - "type": "string", - "enum": [ - "defaults" - ] - } - ], - "minItems": 1, - "maxItems": 1 - } - ] - }, - "mapRendering": { - "description": "Visualisation of the items on the map", - "anyOf": [ - { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/default_4" - }, - { - "$ref": "#/definitions/default_5" - }, - { - "$ref": "#/definitions/default" - } - ] - } + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", + "type": "number" }, - { - "type": "null" + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" } + }, + "required": [ + "geoJson" + ] + } + ] + } + ] + }, + "calculatedTags": { + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", + "type": "array", + "items": { + "type": "string" + } + }, + "doNotDownload": { + "description": "If set, this layer will not query overpass; but it'll still match the tags above which are by chance returned by other layers.\nWorks well together with 'passAllFeatures', to add decoration", + "type": "boolean" + }, + "isShown": { + "description": "If set, only features matching this extra tag will be shown.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, + "minzoom": { + "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", + "type": "number" + }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, + "minzoomVisible": { + "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", + "type": "number" + }, + "title": { + "description": "The title shown in a popup for elements of this layer.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "titleIcons": { + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } ] + } }, - "passAllFeatures": { - "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", - "type": "boolean" + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] + }, + "mapRendering": { + "description": "Visualisation of the items on the map", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "$ref": "#/definitions/default" + } + ] + } }, - "presets": { - "description": "Presets for this layer.\nA preset shows up when clicking the map on a without data (or when right-clicking/long-pressing);\nit will prompt the user to add a new point.\n\nThe most important aspect are the tags, which define which tags the new point will have;\nThe title is shown in the dialog, along with the first sentence of the description.\n\nUpon confirmation, the full description is shown beneath the buttons - perfect to add pictures and examples.\n\nNote: the icon of the preset is determined automatically based on the tags and the icon above. Don't worry about that!\nNB: if no presets are defined, the popup to add new points doesn't show up at all", + { + "type": "null" + } + ] + }, + "passAllFeatures": { + "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", + "type": "boolean" + }, + "presets": { + "description": "Presets for this layer.\nA preset shows up when clicking the map on a without data (or when right-clicking/long-pressing);\nit will prompt the user to add a new point.\n\nThe most important aspect are the tags, which define which tags the new point will have;\nThe title is shown in the dialog, along with the first sentence of the description.\n\nUpon confirmation, the full description is shown beneath the buttons - perfect to add pictures and examples.\n\nNote: the icon of the preset is determined automatically based on the tags and the icon above. Don't worry about that!\nNB: if no presets are defined, the popup to add new points doesn't show up at all", + "type": "array", + "items": { + "type": "object", + "properties": { + "title": { + "description": "The title - shown on the 'add-new'-button.\n\nThis should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'.\nThis text will be inserted into `Add {category} here`, becoming `Add a hydrant here`.\n\nDo _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped!" + }, + "tags": { + "description": "The tags to add. It determines the icon too", "type": "array", "items": { + "type": "string" + } + }, + "description": { + "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" + }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, + "preciseInput": { + "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", + "anyOf": [ + { "type": "object", "properties": { - "title": { - "description": "The title - shown on the 'add-new'-button.\n\nThis should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'.\nThis text will be inserted into `Add {category} here`, becoming `Add a hydrant here`.\n\nDo _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped!" - }, - "tags": { - "description": "The tags to add. It determines the icon too", + "preferredBackground": { + "description": "The type of background picture", + "anyOf": [ + { "type": "array", "items": { - "type": "string" + "type": "string" } - }, - "description": { - "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" - }, - "exampleImages": { - "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + }, + { + "type": "string" + } + ] + }, + "snapToLayer": { + "description": "If specified, these layers will be shown to and the new point will be snapped towards it", + "anyOf": [ + { "type": "array", "items": { - "type": "string" + "type": "string" } - }, - "preciseInput": { - "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", - "anyOf": [ - { - "type": "object", - "properties": { - "preferredBackground": { - "description": "The type of background picture", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "snapToLayer": { - "description": "If specified, these layers will be shown to and the new point will be snapped towards it", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "maxSnapDistance": { - "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", - "type": "number" - } - }, - "required": [ - "preferredBackground" - ] - }, - { - "enum": [ - true - ], - "type": "boolean" - } - ] - } + }, + { + "type": "string" + } + ] + }, + "maxSnapDistance": { + "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", + "type": "number" + } }, "required": [ - "tags", - "title" + "preferredBackground" ] - } + }, + { + "enum": [ + true + ], + "type": "boolean" + } + ] + } }, - "tagRenderings": { - "description": "All the tag renderings.\nA tag rendering is a block that either shows the known value or asks a question.\n\nRefer to the class `TagRenderingConfigJson` to see the possibilities.\n\nNote that we can also use a string here - where the string refers to a tag rendering defined in `assets/questions/questions.json`,\nwhere a few very general questions are defined e.g. website, phone number, ...\nFurthermore, _all_ the questions of another layer can be reused with `otherlayer.*`\nIf you need only a single of the tagRenderings, use `otherlayer.tagrenderingId`\nIf one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group`\nRemark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition.\nIf they are not wanted, remove them with an override\n\nA special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox.\n\nAt last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings.\nThis is mainly create questions for a 'left' and a 'right' side of the road.\nThese will be grouped and questions will be asked together", - "type": "array", - "items": { + "required": [ + "tags", + "title" + ] + } + }, + "tagRenderings": { + "description": "All the tag renderings.\nA tag rendering is a block that either shows the known value or asks a question.\n\nRefer to the class `TagRenderingConfigJson` to see the possibilities.\n\nNote that we can also use a string here - where the string refers to a tag rendering defined in `assets/questions/questions.json`,\nwhere a few very general questions are defined e.g. website, phone number, ...\nFurthermore, _all_ the questions of another layer can be reused with `otherlayer.*`\nIf you need only a single of the tagRenderings, use `otherlayer.tagrenderingId`\nIf one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group`\nRemark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition.\nIf they are not wanted, remove them with an override\n\nA special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox.\n\nAt last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings.\nThis is mainly create questions for a 'left' and a 'right' side of the road.\nThese will be grouped and questions will be asked together", + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { "anyOf": [ - { - "$ref": "#/definitions/QuestionableTagRenderingConfigJson" - }, - { - "type": "object", - "properties": { - "builtin": { - "type": "string" - }, - "override": {} - }, - "required": [ - "builtin", - "override" - ] - }, - { - "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>" - }, - { - "type": "string" + { + "type": "array", + "items": { + "type": "string" } + }, + { + "type": "string" + } ] - } - }, - "filter": { - "description": "All the extra questions for filtering", - "anyOf": [ - { - "type": "array", - "items": { - "$ref": "#/definitions/default_1" - } - }, - { - "type": "object", - "properties": { - "sameAs": { - "type": "string" - } - }, - "required": [ - "sameAs" - ] - } + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" ] - }, - "deletion": { - "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", - "anyOf": [ - { - "$ref": "#/definitions/DeleteConfigJson" - }, - { - "type": "boolean" - } - ] - }, - "allowMove": { - "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", - "anyOf": [ - { - "$ref": "#/definitions/default_3" - }, - { - "type": "boolean" - } - ] - }, - "allowSplit": { - "description": "IF set, a 'split this road' button is shown", - "type": "boolean" - }, - "units": { - "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", - "type": "array", - "items": { - "$ref": "#/definitions/default_2" - } - }, - "syncSelection": { - "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", - "enum": [ - "global", - "local", - "no", - "theme-only" - ], + }, + { + "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>" + }, + { "type": "string" - } + } + ] + } }, - "required": [ + "filter": { + "description": "All the extra questions for filtering", + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] + }, + "deletion": { + "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", + "anyOf": [ + { + "$ref": "#/definitions/DeleteConfigJson" + }, + { + "type": "boolean" + } + ] + }, + "allowMove": { + "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", + "anyOf": [ + { + "$ref": "#/definitions/default_3" + }, + { + "type": "boolean" + } + ] + }, + "allowSplit": { + "description": "If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways.\n\nIf the way is part of a relation, MapComplete will attempt to update this relation as well", + "type": "boolean" + }, + "units": { + "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", + "type": "array", + "items": { + "$ref": "#/definitions/default_2" + } + }, + "syncSelection": { + "description": "If set, synchronizes whether or not this layer is enabled.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" + } + }, + "required": [ + "id", + "mapRendering", + "source" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + } + } + }, + "Record": { + "type": "object" + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + }, + "T": { + "type": "object" + }, + "default_4": { + "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", + "type": "object", + "properties": { + "location": { + "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", + "type": "array", + "items": { + "type": "string" + } + }, + "icon": { + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "iconBadges": { + "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Badge to show\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + }, + "iconSize": { + "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "rotation": { + "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "label": { + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "location" + ] + }, + "default_5": { + "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", + "type": "object", + "properties": { + "color": { + "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "width": { + "description": "The stroke-width for way-elements", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": [ + "string", + "number" + ] + } + ] + }, + "dashArray": { + "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "lineCap": { + "description": "The form at the end of a line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "fill": { + "description": "Whether or not to fill polygons", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "enum": [ + "no", + "yes" + ], + "type": "string" + } + ] + }, + "fillColor": { + "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "offset": { + "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "number" + } + ] + } + } + }, + "default": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } + }, + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] + }, + "renderings": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/default_5" + } + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/default_4" + } + } + ] + } + }, + "required": [ + "renderings", + "rewrite" + ] + }, + "QuestionableTagRenderingConfigJson": { + "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + } + }, + "Partial": { + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + } + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } + }, + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] + }, + "renderings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { + "type": "string" + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "type": "string" + } + ] + } + } + }, + "required": [ + "renderings", + "rewrite" + ] + }, + "default_1": { + "type": "object", + "properties": { + "id": { + "description": "An id/name for this filter, used to set the URL parameters", + "type": "string" + }, + "options": { + "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", + "type": "array", + "items": { + "type": "object", + "properties": { + "question": {}, + "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } + } + }, + "required": [ + "question" + ] + } + } + }, + "required": [ "id", - "mapRendering", - "source" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } - }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } - }, - "required": [ - "canonicalDenomination" - ] - }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", - "type": "object", - "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - } - } - }, - "T": { - "type": "object" - }, - "default_4": { - "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", - "type": "object", - "properties": { - "location": { - "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", - "type": "array", - "items": { - "type": "string" - } - }, - "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "iconBadges": { - "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Badge to show\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - }, - "iconSize": { - "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "rotation": { - "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "location" - ] - }, - "default_5": { - "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", - "type": "object", - "properties": { - "color": { - "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "width": { - "description": "The stroke-width for way-elements", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": [ - "string", - "number" - ] - } - ] - }, - "dashArray": { - "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "lineCap": { - "description": "The form at the end of a line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "fill": { - "description": "Whether or not to fill polygons", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "enum": [ - "no", - "yes" - ], - "type": "string" - } - ] - }, - "fillColor": { - "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "offset": { - "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "number" - } - ] - } - } - }, - "default": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] - }, - "renderings": { - "anyOf": [ - { - "$ref": "#/definitions/default_4" - }, - { - "$ref": "#/definitions/default_5" - }, - { - "type": "array", - "items": { - "$ref": "#/definitions/default_5" - } - }, - { - "type": "array", - "items": { - "$ref": "#/definitions/default_4" - } - } - ] - } - }, - "required": [ - "renderings", - "rewrite" - ] - }, - "QuestionableTagRenderingConfigJson": { - "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", - "type": "object", - "properties": { - "question": { - "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "type": "string" - }, - "type": { - "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", - "type": "string" - }, - "placeholder": { - "description": "A (translated) text that is shown (as gray text) within the textfield" - }, - "helperArgs": { - "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", - "type": "array", - "items": {} - }, - "addExtraTags": { - "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", - "type": "array", - "items": { - "type": "string" - } - }, - "inline": { - "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", - "type": "boolean" - }, - "default": { - "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "multiAnswer": { - "description": "If true, use checkboxes instead of radio buttons when asking the question", - "type": "boolean" - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] - } - }, - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - }, - "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] - }, - "renderings": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/QuestionableTagRenderingConfigJson" - }, - { - "type": "object", - "properties": { - "builtin": { - "type": "string" - }, - "override": {} - }, - "required": [ - "builtin", - "override" - ] - }, - { - "type": "string" - } - ] - } - } - }, - "required": [ - "renderings", - "rewrite" - ] - }, - "default_1": { - "type": "object", - "properties": { - "id": { - "description": "An id/name for this filter, used to set the URL parameters", - "type": "string" - }, - "options": { - "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", - "type": "array", - "items": { - "type": "object", - "properties": { - "question": {}, - "osmTags": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "default": { - "type": "boolean" - }, - "fields": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", - "type": "string" - }, - "type": { - "type": "string" - } - }, - "required": [ - "name" - ] - } - } - }, - "required": [ - "question" - ] - } - } - }, - "required": [ - "id", - "options" - ] - }, - "DeleteConfigJson": { - "type": "object", - "properties": { - "extraDeleteReasons": { - "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", - "type": "array", - "items": { - "type": "object", - "properties": { - "explanation": { - "description": "The text that will be shown to the user - translatable" - }, - "changesetMessage": { - "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", - "type": "string" - } - }, - "required": [ - "changesetMessage", - "explanation" - ] - } - }, - "nonDeleteMappings": { - "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - "then": {} - }, - "required": [ - "if", - "then" - ] - } - }, - "softDeletionTags": { - "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "neededChangesets": { - "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", - "type": "number" - } - } - }, - "default_3": { - "type": "object", - "properties": { - "enableImproveAccuracy": { - "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", - "type": "boolean" - }, - "enableRelocation": { - "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", - "type": "boolean" - } - } - }, - "default_2": { - "type": "object", - "properties": { - "appliesToKey": { - "description": "Every key from this list will be normalized", - "type": "array", - "items": { - "type": "string" - } - }, - "eraseInvalidValues": { - "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", - "type": "boolean" - }, - "applicableUnits": { - "description": "The possible denominations", - "type": "array", - "items": { - "$ref": "#/definitions/ApplicableUnitJson" - } - } - }, - "required": [ - "applicableUnits", - "appliesToKey" - ] - } + "options" + ] }, - "$schema": "http://json-schema.org/draft-07/schema#" + "DeleteConfigJson": { + "type": "object", + "properties": { + "extraDeleteReasons": { + "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", + "type": "array", + "items": { + "type": "object", + "properties": { + "explanation": { + "description": "The text that will be shown to the user - translatable" + }, + "changesetMessage": { + "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", + "type": "string" + } + }, + "required": [ + "changesetMessage", + "explanation" + ] + } + }, + "nonDeleteMappings": { + "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" + }, + "then": { + "description": "The human explanation for the options" + } + }, + "required": [ + "if", + "then" + ] + } + }, + "softDeletionTags": { + "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "neededChangesets": { + "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", + "type": "number" + } + } + }, + "default_3": { + "type": "object", + "properties": { + "enableImproveAccuracy": { + "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", + "type": "boolean" + }, + "enableRelocation": { + "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", + "type": "boolean" + } + } + }, + "default_2": { + "type": "object", + "properties": { + "appliesToKey": { + "description": "Every key from this list will be normalized", + "type": "array", + "items": { + "type": "string" + } + }, + "eraseInvalidValues": { + "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", + "type": "boolean" + }, + "applicableUnits": { + "description": "The possible denominations", + "type": "array", + "items": { + "$ref": "#/definitions/ApplicableUnitJson" + } + } + }, + "required": [ + "applicableUnits", + "appliesToKey" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/LayoutConfigJson.schema.json b/Docs/Schemas/LayoutConfigJson.schema.json index ec1bd4df9e..577eabe6f9 100644 --- a/Docs/Schemas/LayoutConfigJson.schema.json +++ b/Docs/Schemas/LayoutConfigJson.schema.json @@ -68,7 +68,8 @@ "type": "number" }, "overrideAll": { - "description": "An override applied on all layers of the theme.\n\nE.g.: if there are two layers defined:\n```\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ...}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ...}}\n]\n```\n\nand overrideAll is specified:\n```\n\"overrideAll\": {\n \"osmSource\":{\"geoJsonSource\":\"xyz\"}\n}\nthen the result will be that all the layers will have these properties applied and result in:\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ..., \"geoJsonSource\":\"xyz\"}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ..., \"geoJsonSource\":\"xyz\"}}\n]\n```\n\nIf the overrideAll contains a list where the keys starts with a plus, the values will be appended (instead of discarding the old list), for example\n\n\"overrideAll\": {\n \"+tagRenderings\": [ { ... some tagrendering ... }]\n}\n\nIn the above scenario, `sometagrendering` will be added at the beginning of the tagrenderings of every layer" + "description": "An override applied on all layers of the theme.\n\nE.g.: if there are two layers defined:\n```\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ...}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ...}}\n]\n```\n\nand overrideAll is specified:\n```\n\"overrideAll\": {\n \"osmSource\":{\"geoJsonSource\":\"xyz\"}\n}\nthen the result will be that all the layers will have these properties applied and result in:\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ..., \"geoJsonSource\":\"xyz\"}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ..., \"geoJsonSource\":\"xyz\"}}\n]\n```\n\nIf the overrideAll contains a list where the keys starts with a plus, the values will be appended (instead of discarding the old list), for example\n\n\"overrideAll\": {\n \"+tagRenderings\": [ { ... some tagrendering ... }]\n}\n\nIn the above scenario, `sometagrendering` will be added at the beginning of the tagrenderings of every layer", + "$ref": "#/definitions/Partial" }, "defaultBackgroundId": { "description": "The id of the default background. BY default: vanilla OSM", @@ -253,7 +254,7 @@ "type": "boolean" }, "enableNoteImports": { - "description": "If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete),\nthese notes will be shown if a relevant layer is present.", + "description": "If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete),\nthese notes will be shown if a relevant layer is present.\n\nDefault is true for official layers and false for unofficial (sideloaded) layers", "type": "boolean" }, "overpassUrl": { @@ -288,36 +289,62 @@ "version" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -381,10 +408,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -411,15 +443,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" @@ -459,6 +484,114 @@ }, "additionalProperties": false }, + "Record": { + "type": "object", + "additionalProperties": false + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "additionalProperties": false + }, "T": { "type": "object", "additionalProperties": false @@ -492,14 +625,8 @@ "type": "object", "properties": { "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" }, "then": { "description": "Badge to show\nType: icon", @@ -542,7 +669,7 @@ ] }, "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -650,7 +777,7 @@ "additionalProperties": false }, "default": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -758,83 +885,7 @@ "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", "type": "array", "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] + "$ref": "#/definitions/MappingConfigJson" } }, "id": { @@ -856,10 +907,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -869,8 +925,101 @@ }, "additionalProperties": false }, - "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "Partial": { + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "additionalProperties": false + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -908,7 +1057,9 @@ "builtin": { "type": "string" }, - "override": {} + "override": { + "$ref": "#/definitions/Partial" + } }, "required": [ "builtin", @@ -943,9 +1094,15 @@ "properties": { "question": {}, "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -1016,9 +1173,12 @@ "type": "object", "properties": { "if": { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" }, - "then": {} + "then": { + "description": "The human explanation for the options" + } }, "required": [ "if", @@ -1030,7 +1190,12 @@ "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -1086,47 +1251,7 @@ ], "additionalProperties": false }, - "default_6": { - "description": "Configuration for a tilesource config", - "type": "object", - "properties": { - "id": { - "description": "Id of this overlay, used in the URL-parameters to set the state", - "type": "string" - }, - "source": { - "description": "The path, where {x}, {y} and {z} will be substituted", - "type": "string" - }, - "isOverlay": { - "description": "Wether or not this is an overlay. Default: true", - "type": "boolean" - }, - "name": { - "description": "How this will be shown in the selection menu.\nMake undefined if this may not be toggled" - }, - "minZoom": { - "description": "Only visible at this or a higher zoom level", - "type": "number" - }, - "maxZoom": { - "description": "Only visible at this or a lower zoom level", - "type": "number" - }, - "defaultState": { - "description": "The default state, set to false to hide by default", - "type": "boolean" - } - }, - "required": [ - "defaultState", - "id", - "source" - ], - "additionalProperties": false - }, - "LayerConfigJson": { - "description": "Configuration for a single layer", + "Partial": { "type": "object", "properties": { "id": { @@ -1148,15 +1273,8 @@ "type": "object", "properties": { "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." }, "maxCacheAge": { "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", @@ -1171,6 +1289,7 @@ "type": "object", "properties": { "overpassScript": { + "description": "If set, this custom overpass-script will be used instead of building one by using the OSM-tags.\nSpecifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline.\n_This should be really rare_.\n\nFor example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: \n```\n\"source\": {\n \"overpassScript\": \n \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\",\n \"osmTags\": \"access=yes\"\n}\n```", "type": "string" } } @@ -1183,15 +1302,8 @@ "type": "object", "properties": { "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." }, "maxCacheAge": { "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", @@ -1246,8 +1358,20 @@ "type": "boolean" }, "isShown": { - "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", - "$ref": "#/definitions/TagRenderingConfigJson" + "description": "If set, only features matching this extra tag will be shown.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] }, "forceLoad": { "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", @@ -1431,9 +1555,21 @@ "type": "object", "properties": { "builtin": { - "type": "string" + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] }, - "override": {} + "override": { + "$ref": "#/definitions/Partial" + } }, "required": [ "builtin", @@ -1441,7 +1577,7 @@ ] }, { - "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>" + "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>" }, { "type": "string" @@ -1494,7 +1630,7 @@ ] }, "allowSplit": { - "description": "IF set, a 'split this road' button is shown", + "description": "If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways.\n\nIf the way is part of a relation, MapComplete will attempt to update this relation as well", "type": "boolean" }, "units": { @@ -1505,7 +1641,449 @@ } }, "syncSelection": { - "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "description": "If set, synchronizes whether or not this layer is enabled.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" + } + }, + "additionalProperties": false + }, + "default_6": { + "description": "Configuration for a tilesource config", + "type": "object", + "properties": { + "id": { + "description": "Id of this overlay, used in the URL-parameters to set the state", + "type": "string" + }, + "source": { + "description": "The path, where {x}, {y} and {z} will be substituted", + "type": "string" + }, + "isOverlay": { + "description": "Wether or not this is an overlay. Default: true", + "type": "boolean" + }, + "name": { + "description": "How this will be shown in the selection menu.\nMake undefined if this may not be toggled" + }, + "minZoom": { + "description": "Only visible at this or a higher zoom level", + "type": "number" + }, + "maxZoom": { + "description": "Only visible at this or a lower zoom level", + "type": "number" + }, + "defaultState": { + "description": "The default state, set to false to hide by default", + "type": "boolean" + } + }, + "required": [ + "defaultState", + "id", + "source" + ], + "additionalProperties": false + }, + "LayerConfigJson": { + "description": "Configuration for a single layer", + "type": "object", + "properties": { + "id": { + "description": "The id of this layer.\nThis should be a simple, lowercase, human readable string that is used to identify the layer.", + "type": "string" + }, + "name": { + "description": "The name of this layer\nUsed in the layer control panel and the 'Personal theme'.\n\nIf not given, will be hidden (and thus not toggable) in the layer control" + }, + "description": { + "description": "A description for this layer.\nShown in the layer selections and in the personel theme" + }, + "source": { + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", + "anyOf": [ + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "overpassScript": { + "description": "If set, this custom overpass-script will be used instead of building one by using the OSM-tags.\nSpecifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline.\n_This should be really rare_.\n\nFor example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: \n```\n\"source\": {\n \"overpassScript\": \n \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\",\n \"osmTags\": \"access=yes\"\n}\n```", + "type": "string" + } + } + } + ] + }, + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", + "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" + } + }, + "required": [ + "geoJson" + ] + } + ] + } + ] + }, + "calculatedTags": { + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", + "type": "array", + "items": { + "type": "string" + } + }, + "doNotDownload": { + "description": "If set, this layer will not query overpass; but it'll still match the tags above which are by chance returned by other layers.\nWorks well together with 'passAllFeatures', to add decoration", + "type": "boolean" + }, + "isShown": { + "description": "If set, only features matching this extra tag will be shown.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, + "minzoom": { + "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", + "type": "number" + }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, + "minzoomVisible": { + "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", + "type": "number" + }, + "title": { + "description": "The title shown in a popup for elements of this layer.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "titleIcons": { + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] + }, + "mapRendering": { + "description": "Visualisation of the items on the map", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "$ref": "#/definitions/default" + } + ] + } + }, + { + "type": "null" + } + ] + }, + "passAllFeatures": { + "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", + "type": "boolean" + }, + "presets": { + "description": "Presets for this layer.\nA preset shows up when clicking the map on a without data (or when right-clicking/long-pressing);\nit will prompt the user to add a new point.\n\nThe most important aspect are the tags, which define which tags the new point will have;\nThe title is shown in the dialog, along with the first sentence of the description.\n\nUpon confirmation, the full description is shown beneath the buttons - perfect to add pictures and examples.\n\nNote: the icon of the preset is determined automatically based on the tags and the icon above. Don't worry about that!\nNB: if no presets are defined, the popup to add new points doesn't show up at all", + "type": "array", + "items": { + "type": "object", + "properties": { + "title": { + "description": "The title - shown on the 'add-new'-button.\n\nThis should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'.\nThis text will be inserted into `Add {category} here`, becoming `Add a hydrant here`.\n\nDo _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped!" + }, + "tags": { + "description": "The tags to add. It determines the icon too", + "type": "array", + "items": { + "type": "string" + } + }, + "description": { + "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" + }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, + "preciseInput": { + "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", + "anyOf": [ + { + "type": "object", + "properties": { + "preferredBackground": { + "description": "The type of background picture", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "snapToLayer": { + "description": "If specified, these layers will be shown to and the new point will be snapped towards it", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "maxSnapDistance": { + "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", + "type": "number" + } + }, + "required": [ + "preferredBackground" + ] + }, + { + "enum": [ + true + ], + "type": "boolean" + } + ] + } + }, + "required": [ + "tags", + "title" + ] + } + }, + "tagRenderings": { + "description": "All the tag renderings.\nA tag rendering is a block that either shows the known value or asks a question.\n\nRefer to the class `TagRenderingConfigJson` to see the possibilities.\n\nNote that we can also use a string here - where the string refers to a tag rendering defined in `assets/questions/questions.json`,\nwhere a few very general questions are defined e.g. website, phone number, ...\nFurthermore, _all_ the questions of another layer can be reused with `otherlayer.*`\nIf you need only a single of the tagRenderings, use `otherlayer.tagrenderingId`\nIf one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group`\nRemark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition.\nIf they are not wanted, remove them with an override\n\nA special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox.\n\nAt last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings.\nThis is mainly create questions for a 'left' and a 'right' side of the road.\nThese will be grouped and questions will be asked together", + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>" + }, + { + "type": "string" + } + ] + } + }, + "filter": { + "description": "All the extra questions for filtering", + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] + }, + "deletion": { + "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", + "anyOf": [ + { + "$ref": "#/definitions/DeleteConfigJson" + }, + { + "type": "boolean" + } + ] + }, + "allowMove": { + "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", + "anyOf": [ + { + "$ref": "#/definitions/default_3" + }, + { + "type": "boolean" + } + ] + }, + "allowSplit": { + "description": "If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways.\n\nIf the way is part of a relation, MapComplete will attempt to update this relation as well", + "type": "boolean" + }, + "units": { + "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", + "type": "array", + "items": { + "$ref": "#/definitions/default_2" + } + }, + "syncSelection": { + "description": "If set, synchronizes whether or not this layer is enabled.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", "enum": [ "global", "local", diff --git a/Docs/Schemas/LayoutConfigJsonJSC.ts b/Docs/Schemas/LayoutConfigJsonJSC.ts index 7b03e721b4..1801637080 100644 --- a/Docs/Schemas/LayoutConfigJsonJSC.ts +++ b/Docs/Schemas/LayoutConfigJsonJSC.ts @@ -1,1542 +1,2115 @@ export default { - "description": "Defines the entire theme.\n\nA theme is the collection of the layers that are shown; the intro text, the icon, ...\nIt more or less defines the entire experience.\n\nMost of the fields defined here are metadata about the theme, such as its name, description, supported languages, default starting location, ...\n\nThe main chunk of the json will however be the 'layers'-array, where the details of your layers are.\n\nGeneral remark: a type (string | any) indicates either a fixed or a translatable string.", - "type": "object", - "properties": { - "id": { - "description": "The id of this layout.\n\nThis is used as hashtag in the changeset message, which will read something like \"Adding data with #mapcomplete for theme #\"\nMake sure it is something decent and descriptive, it should be a simple, lowercase string.\n\nOn official themes, it'll become the name of the page, e.g.\n'cyclestreets' which become 'cyclestreets.html'", - "type": "string" - }, - "credits": { - "description": "Who helped to create this theme and should be attributed?", - "type": "string" - }, - "maintainer": { - "description": "Who does maintain this preset?", - "type": "string" - }, - "version": { - "description": "A version number, either semantically or by date.\nShould be sortable, where the higher value is the later version", - "type": "string" - }, - "mustHaveLanguage": { - "description": "Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated.\n\nThis must be a list of two-letter, lowercase codes which identifies the language, e.g. \"en\", \"nl\", ...", - "type": "array", - "items": { - "type": "string" - } - }, - "title": { - "description": "The title, as shown in the welcome message and the more-screen." - }, - "shortDescription": { - "description": "A short description, showed as social description and in the 'more theme'-buttons.\nNote that if this one is not defined, the first sentence of 'description' is used" - }, - "description": { - "description": "The description, as shown in the welcome message and the more-screen" - }, - "descriptionTail": { - "description": "A part of the description, shown under the login-button." - }, - "icon": { - "description": "The icon representing this theme.\nUsed as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ...\nEither a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64)\n\nType: icon", - "type": "string" - }, - "socialImage": { - "description": "Link to a 'social image' which is included as og:image-tag on official themes.\nUseful to share the theme on social media.\nSee https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information$\n\nType: image", - "type": "string" - }, - "startZoom": { - "description": "Default location and zoom to start.\nNote that this is barely used. Once the user has visited mapcomplete at least once, the previous location of the user will be used", - "type": "number" - }, - "startLat": { - "type": "number" - }, - "startLon": { - "type": "number" - }, - "widenFactor": { - "description": "When a query is run, the data within bounds of the visible map is loaded.\nHowever, users tend to pan and zoom a lot. It is pretty annoying if every single pan means a reloading of the data.\nFor this, the bounds are widened in order to make a small pan still within bounds of the loaded data.\n\nIF widenfactor is 1, this feature is disabled. A recommended value is between 1 and 3", - "type": "number" - }, - "overpassMaxZoom": { - "description": "At low zoom levels, overpass is used to query features.\nAt high zoom level, the OSM api is used to fetch one or more BBOX aligning with a slippy tile.\nThe overpassMaxZoom controls the flipoverpoint: if the zoom is this or lower, overpass is used.", - "type": "number" - }, - "osmApiTileSize": { - "description": "When the OSM-api is used to fetch features, it does so in a tiled fashion.\nThese tiles are using a ceratin zoom level, that can be controlled here\nDefault: overpassMaxZoom + 1", - "type": "number" - }, - "overrideAll": { - "description": "An override applied on all layers of the theme.\n\nE.g.: if there are two layers defined:\n```\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ...}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ...}}\n]\n```\n\nand overrideAll is specified:\n```\n\"overrideAll\": {\n \"osmSource\":{\"geoJsonSource\":\"xyz\"}\n}\nthen the result will be that all the layers will have these properties applied and result in:\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ..., \"geoJsonSource\":\"xyz\"}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ..., \"geoJsonSource\":\"xyz\"}}\n]\n```\n\nIf the overrideAll contains a list where the keys starts with a plus, the values will be appended (instead of discarding the old list), for example\n\n\"overrideAll\": {\n \"+tagRenderings\": [ { ... some tagrendering ... }]\n}\n\nIn the above scenario, `sometagrendering` will be added at the beginning of the tagrenderings of every layer" - }, - "defaultBackgroundId": { - "description": "The id of the default background. BY default: vanilla OSM", - "type": "string" - }, - "tileLayerSources": { - "description": "Define some (overlay) slippy map tilesources", - "type": "array", - "items": { - "$ref": "#/definitions/default_6" - } - }, - "layers": { - "description": "The layers to display.\n\nEvery layer contains a description of which feature to display - the overpassTags which are queried.\nInstead of running one query for every layer, the query is fused.\n\nAfterwards, every layer is given the list of features.\nEvery layer takes away the features that match with them*, and give the leftovers to the next layers.\n\nThis implies that the _order_ of the layers is important in the case of features with the same tags;\nas the later layers might never receive their feature.\n\n*layers can also remove 'leftover'-features if the leftovers overlap with a feature in the layer itself\n\nNote that builtin layers can be reused. Either put in the name of the layer to reuse, or use {builtin: \"layername\", override: ...}\n\nThe 'override'-object will be copied over the original values of the layer, which allows to change certain aspects of the layer\n\nFor example: If you would like to use layer nature reserves, but only from a specific operator (eg. Natuurpunt) you would use the following in your theme:\n\n```\n\"layer\": {\n \"builtin\": \"nature_reserve\",\n \"override\": {\"source\": \n {\"osmTags\": {\n \"+and\":[\"operator=Natuurpunt\"]\n }\n }\n }\n}\n```\n\nIt's also possible to load multiple layers at once, for example, if you would like for both drinking water and benches to start at the zoomlevel at 12, you would use the following:\n\n```\n\"layer\": {\n \"builtin\": [\"benches\", \"drinking_water\"],\n \"override\": {\"minzoom\": 12}\n}\n```", - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/LayerConfigJson" - }, - { - "type": "object", - "properties": { - "builtin": { - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "override": {}, - "hideTagRenderingsWithLabels": { - "description": "TagRenderings with any of these labels will be removed from the layer.\nNote that the 'id' and 'group' are considered labels too", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "builtin", - "override" - ] - }, - { - "type": "string" - } - ] - } - }, - "clustering": { - "description": "If defined, data will be clustered.\nDefaults to {maxZoom: 16, minNeeded: 500}", - "anyOf": [ - { - "type": "object", - "properties": { - "maxZoom": { - "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", - "type": "number" - }, - "minNeededElements": { - "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 250", - "type": "number" - } - } - }, - { - "enum": [ - false - ], - "type": "boolean" - } - ] - }, - "customCss": { - "description": "The URL of a custom CSS stylesheet to modify the layout", - "type": "string" - }, - "hideFromOverview": { - "description": "If set to true, this layout will not be shown in the overview with more themes", - "type": "boolean" - }, - "lockLocation": { - "description": "If set to true, the basemap will not scroll outside of the area visible on initial zoom.\nIf set to [[lon, lat], [lon, lat]], the map will not scroll outside of those bounds.\nOff by default, which will enable panning to the entire world", - "anyOf": [ - { - "type": "array", - "items": [ - { - "type": "array", - "items": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "minItems": 2, - "maxItems": 2 - }, - { - "type": "array", - "items": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "minItems": 2, - "maxItems": 2 - } - ], - "minItems": 2, - "maxItems": 2 - }, - { - "type": "array", - "items": { - "type": "array", - "items": { - "type": "number" - } - } - } - ] - }, - "extraLink": { - "description": "Adds an additional button on the top-left of the application.\nThis can link to an arbitrary location.\n\nNote that {lat},{lon},{zoom}, {language} and {theme} will be replaced\n\nDefault: {icon: \"./assets/svg/pop-out.svg\", href: 'https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}, requirements: [\"iframe\",\"no-welcome-message]},", - "$ref": "#/definitions/default" - }, - "enableUserBadge": { - "description": "If set to false, disables logging in.\nThe userbadge will be hidden, all login-buttons will be hidden and editing will be disabled", - "type": "boolean" - }, - "enableShareScreen": { - "description": "If false, hides the tab 'share'-tab in the welcomeMessage", - "type": "boolean" - }, - "enableMoreQuests": { - "description": "Hides the tab with more themes in the welcomeMessage", - "type": "boolean" - }, - "enableLayers": { - "description": "If false, the layer selection/filter view will be hidden\nThe corresponding URL-parameter is 'fs-filters' instead of 'fs-layers'", - "type": "boolean" - }, - "enableSearch": { - "description": "If set to false, hides the search bar", - "type": "boolean" - }, - "enableAddNewPoints": { - "description": "If set to false, the ability to add new points or nodes will be disabled.\nEditing already existing features will still be possible", - "type": "boolean" - }, - "enableGeolocation": { - "description": "If set to false, the 'geolocation'-button will be hidden.", - "type": "boolean" - }, - "enableBackgroundLayerSelection": { - "description": "Enable switching the backgroundlayer.\nIf false, the quickswitch-buttons are removed (bottom left) and the dropdown in the layer selection is removed as well", - "type": "boolean" - }, - "enableShowAllQuestions": { - "description": "If set to true, will show _all_ unanswered questions in a popup instead of just the next one", - "type": "boolean" - }, - "enableDownload": { - "description": "If set to true, download button for the data will be shown (offers downloading as geojson and csv)", - "type": "boolean" - }, - "enablePdfDownload": { - "description": "If set to true, exporting a pdf is enabled", - "type": "boolean" - }, - "enableNoteImports": { - "description": "If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete),\nthese notes will be shown if a relevant layer is present.", - "type": "boolean" - }, - "overpassUrl": { - "description": "Set one or more overpass URLs to use for this theme..", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "overpassTimeout": { - "description": "Set a different timeout for overpass queries - in seconds. Default: 30s", - "type": "number" - } + "description": "Defines the entire theme.\n\nA theme is the collection of the layers that are shown; the intro text, the icon, ...\nIt more or less defines the entire experience.\n\nMost of the fields defined here are metadata about the theme, such as its name, description, supported languages, default starting location, ...\n\nThe main chunk of the json will however be the 'layers'-array, where the details of your layers are.\n\nGeneral remark: a type (string | any) indicates either a fixed or a translatable string.", + "type": "object", + "properties": { + "id": { + "description": "The id of this layout.\n\nThis is used as hashtag in the changeset message, which will read something like \"Adding data with #mapcomplete for theme #\"\nMake sure it is something decent and descriptive, it should be a simple, lowercase string.\n\nOn official themes, it'll become the name of the page, e.g.\n'cyclestreets' which become 'cyclestreets.html'", + "type": "string" }, - "required": [ - "description", - "icon", - "id", - "layers", - "maintainer", - "startLat", - "startLon", - "startZoom", - "title", - "version" - ], - "definitions": { - "AndOrTagConfigJson": { + "credits": { + "description": "Who helped to create this theme and should be attributed?", + "type": "string" + }, + "maintainer": { + "description": "Who does maintain this preset?", + "type": "string" + }, + "version": { + "description": "A version number, either semantically or by date.\nShould be sortable, where the higher value is the later version", + "type": "string" + }, + "mustHaveLanguage": { + "description": "Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated.\n\nThis must be a list of two-letter, lowercase codes which identifies the language, e.g. \"en\", \"nl\", ...", + "type": "array", + "items": { + "type": "string" + } + }, + "title": { + "description": "The title, as shown in the welcome message and the more-screen." + }, + "shortDescription": { + "description": "A short description, showed as social description and in the 'more theme'-buttons.\nNote that if this one is not defined, the first sentence of 'description' is used" + }, + "description": { + "description": "The description, as shown in the welcome message and the more-screen" + }, + "descriptionTail": { + "description": "A part of the description, shown under the login-button." + }, + "icon": { + "description": "The icon representing this theme.\nUsed as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ...\nEither a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64)\n\nType: icon", + "type": "string" + }, + "socialImage": { + "description": "Link to a 'social image' which is included as og:image-tag on official themes.\nUseful to share the theme on social media.\nSee https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information$\n\nType: image", + "type": "string" + }, + "startZoom": { + "description": "Default location and zoom to start.\nNote that this is barely used. Once the user has visited mapcomplete at least once, the previous location of the user will be used", + "type": "number" + }, + "startLat": { + "type": "number" + }, + "startLon": { + "type": "number" + }, + "widenFactor": { + "description": "When a query is run, the data within bounds of the visible map is loaded.\nHowever, users tend to pan and zoom a lot. It is pretty annoying if every single pan means a reloading of the data.\nFor this, the bounds are widened in order to make a small pan still within bounds of the loaded data.\n\nIF widenfactor is 1, this feature is disabled. A recommended value is between 1 and 3", + "type": "number" + }, + "overpassMaxZoom": { + "description": "At low zoom levels, overpass is used to query features.\nAt high zoom level, the OSM api is used to fetch one or more BBOX aligning with a slippy tile.\nThe overpassMaxZoom controls the flipoverpoint: if the zoom is this or lower, overpass is used.", + "type": "number" + }, + "osmApiTileSize": { + "description": "When the OSM-api is used to fetch features, it does so in a tiled fashion.\nThese tiles are using a ceratin zoom level, that can be controlled here\nDefault: overpassMaxZoom + 1", + "type": "number" + }, + "overrideAll": { + "description": "An override applied on all layers of the theme.\n\nE.g.: if there are two layers defined:\n```\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ...}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ...}}\n]\n```\n\nand overrideAll is specified:\n```\n\"overrideAll\": {\n \"osmSource\":{\"geoJsonSource\":\"xyz\"}\n}\nthen the result will be that all the layers will have these properties applied and result in:\n\"layers\":[\n {\"title\": ..., \"tagRenderings\": [...], \"osmSource\":{\"tags\": ..., \"geoJsonSource\":\"xyz\"}},\n {\"title\", ..., \"tagRenderings\", [...], \"osmSource\":{\"tags\" ..., \"geoJsonSource\":\"xyz\"}}\n]\n```\n\nIf the overrideAll contains a list where the keys starts with a plus, the values will be appended (instead of discarding the old list), for example\n\n\"overrideAll\": {\n \"+tagRenderings\": [ { ... some tagrendering ... }]\n}\n\nIn the above scenario, `sometagrendering` will be added at the beginning of the tagrenderings of every layer", + "$ref": "#/definitions/Partial" + }, + "defaultBackgroundId": { + "description": "The id of the default background. BY default: vanilla OSM", + "type": "string" + }, + "tileLayerSources": { + "description": "Define some (overlay) slippy map tilesources", + "type": "array", + "items": { + "$ref": "#/definitions/default_6" + } + }, + "layers": { + "description": "The layers to display.\n\nEvery layer contains a description of which feature to display - the overpassTags which are queried.\nInstead of running one query for every layer, the query is fused.\n\nAfterwards, every layer is given the list of features.\nEvery layer takes away the features that match with them*, and give the leftovers to the next layers.\n\nThis implies that the _order_ of the layers is important in the case of features with the same tags;\nas the later layers might never receive their feature.\n\n*layers can also remove 'leftover'-features if the leftovers overlap with a feature in the layer itself\n\nNote that builtin layers can be reused. Either put in the name of the layer to reuse, or use {builtin: \"layername\", override: ...}\n\nThe 'override'-object will be copied over the original values of the layer, which allows to change certain aspects of the layer\n\nFor example: If you would like to use layer nature reserves, but only from a specific operator (eg. Natuurpunt) you would use the following in your theme:\n\n```\n\"layer\": {\n \"builtin\": \"nature_reserve\",\n \"override\": {\"source\": \n {\"osmTags\": {\n \"+and\":[\"operator=Natuurpunt\"]\n }\n }\n }\n}\n```\n\nIt's also possible to load multiple layers at once, for example, if you would like for both drinking water and benches to start at the zoomlevel at 12, you would use the following:\n\n```\n\"layer\": {\n \"builtin\": [\"benches\", \"drinking_water\"],\n \"override\": {\"minzoom\": 12}\n}\n```", + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/LayerConfigJson" + }, + { "type": "object", "properties": { - "and": { + "builtin": { + "anyOf": [ + { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "type": "string" } + }, + { + "type": "string" + } + ] + }, + "override": {}, + "hideTagRenderingsWithLabels": { + "description": "TagRenderings with any of these labels will be removed from the layer.\nNote that the 'id' and 'group' are considered labels too", + "type": "array", + "items": { + "type": "string" } + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "type": "string" + } + ] + } + }, + "clustering": { + "description": "If defined, data will be clustered.\nDefaults to {maxZoom: 16, minNeeded: 500}", + "anyOf": [ + { + "type": "object", + "properties": { + "maxZoom": { + "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", + "type": "number" + }, + "minNeededElements": { + "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 250", + "type": "number" } + } }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" + { + "enum": [ + false + ], + "type": "boolean" + } + ] + }, + "customCss": { + "description": "The URL of a custom CSS stylesheet to modify the layout", + "type": "string" + }, + "hideFromOverview": { + "description": "If set to true, this layout will not be shown in the overview with more themes", + "type": "boolean" + }, + "lockLocation": { + "description": "If set to true, the basemap will not scroll outside of the area visible on initial zoom.\nIf set to [[lon, lat], [lon, lat]], the map will not scroll outside of those bounds.\nOff by default, which will enable panning to the entire world", + "anyOf": [ + { + "type": "array", + "items": [ + { + "type": "array", + "items": [ + { + "type": "number" }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" + { + "type": "number" } + ], + "minItems": 2, + "maxItems": 2 }, - "required": [ - "canonicalDenomination" - ] - }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", - "type": "object", - "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" + { + "type": "array", + "items": [ + { + "type": "number" }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } + { + "type": "number" } + ], + "minItems": 2, + "maxItems": 2 } + ], + "minItems": 2, + "maxItems": 2 }, - "T": { - "type": "object" - }, - "default_4": { - "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", - "type": "object", - "properties": { - "location": { - "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", - "type": "array", - "items": { - "type": "string" - } - }, - "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "iconBadges": { - "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Badge to show\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - }, - "iconSize": { - "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "rotation": { - "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "location" - ] - }, - "default_5": { - "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", - "type": "object", - "properties": { - "color": { - "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "width": { - "description": "The stroke-width for way-elements", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": [ - "string", - "number" - ] - } - ] - }, - "dashArray": { - "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "lineCap": { - "description": "The form at the end of a line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "fill": { - "description": "Whether or not to fill polygons", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "enum": [ - "no", - "yes" - ], - "type": "string" - } - ] - }, - "fillColor": { - "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "offset": { - "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "number" - } - ] - } + { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number" } + } + } + ] + }, + "extraLink": { + "description": "Adds an additional button on the top-left of the application.\nThis can link to an arbitrary location.\n\nNote that {lat},{lon},{zoom}, {language} and {theme} will be replaced\n\nDefault: {icon: \"./assets/svg/pop-out.svg\", href: 'https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}, requirements: [\"iframe\",\"no-welcome-message]},", + "$ref": "#/definitions/default" + }, + "enableUserBadge": { + "description": "If set to false, disables logging in.\nThe userbadge will be hidden, all login-buttons will be hidden and editing will be disabled", + "type": "boolean" + }, + "enableShareScreen": { + "description": "If false, hides the tab 'share'-tab in the welcomeMessage", + "type": "boolean" + }, + "enableMoreQuests": { + "description": "Hides the tab with more themes in the welcomeMessage", + "type": "boolean" + }, + "enableLayers": { + "description": "If false, the layer selection/filter view will be hidden\nThe corresponding URL-parameter is 'fs-filters' instead of 'fs-layers'", + "type": "boolean" + }, + "enableSearch": { + "description": "If set to false, hides the search bar", + "type": "boolean" + }, + "enableAddNewPoints": { + "description": "If set to false, the ability to add new points or nodes will be disabled.\nEditing already existing features will still be possible", + "type": "boolean" + }, + "enableGeolocation": { + "description": "If set to false, the 'geolocation'-button will be hidden.", + "type": "boolean" + }, + "enableBackgroundLayerSelection": { + "description": "Enable switching the backgroundlayer.\nIf false, the quickswitch-buttons are removed (bottom left) and the dropdown in the layer selection is removed as well", + "type": "boolean" + }, + "enableShowAllQuestions": { + "description": "If set to true, will show _all_ unanswered questions in a popup instead of just the next one", + "type": "boolean" + }, + "enableDownload": { + "description": "If set to true, download button for the data will be shown (offers downloading as geojson and csv)", + "type": "boolean" + }, + "enablePdfDownload": { + "description": "If set to true, exporting a pdf is enabled", + "type": "boolean" + }, + "enableNoteImports": { + "description": "If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete),\nthese notes will be shown if a relevant layer is present.\n\nDefault is true for official layers and false for unofficial (sideloaded) layers", + "type": "boolean" + }, + "overpassUrl": { + "description": "Set one or more overpass URLs to use for this theme..", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } }, - "default": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] - }, - "renderings": { - "anyOf": [ - { - "$ref": "#/definitions/default_4" - }, - { - "$ref": "#/definitions/default_5" - }, - { - "type": "array", - "items": { - "$ref": "#/definitions/default_5" - } - }, - { - "type": "array", - "items": { - "$ref": "#/definitions/default_4" - } - } - ] - } - }, - "required": [ - "renderings", - "rewrite" - ] + { + "type": "string" + } + ] + }, + "overpassTimeout": { + "description": "Set a different timeout for overpass queries - in seconds. Default: 30s", + "type": "number" + } + }, + "required": [ + "description", + "icon", + "id", + "layers", + "maintainer", + "startLat", + "startLon", + "startZoom", + "title", + "version" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" }, - "QuestionableTagRenderingConfigJson": { - "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", - "type": "object", - "properties": { - "question": { - "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "type": "string" - }, - "type": { - "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", - "type": "string" - }, - "placeholder": { - "description": "A (translated) text that is shown (as gray text) within the textfield" - }, - "helperArgs": { - "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", - "type": "array", - "items": {} - }, - "addExtraTags": { - "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", - "type": "array", - "items": { - "type": "string" - } - }, - "inline": { - "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", - "type": "boolean" - }, - "default": { - "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "multiAnswer": { - "description": "If true, use checkboxes instead of radio buttons when asking the question", - "type": "boolean" - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] - } - }, - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } } + }, + "required": [ + "or" + ] }, - "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] - }, - "renderings": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/QuestionableTagRenderingConfigJson" - }, - { - "type": "object", - "properties": { - "builtin": { - "type": "string" - }, - "override": {} - }, - "required": [ - "builtin", - "override" - ] - }, - { - "type": "string" - } - ] - } - } - }, - "required": [ - "renderings", - "rewrite" - ] + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" }, - "default_1": { - "type": "object", - "properties": { - "id": { - "description": "An id/name for this filter, used to set the URL parameters", - "type": "string" - }, - "options": { - "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", - "type": "array", - "items": { - "type": "object", - "properties": { - "question": {}, - "osmTags": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "default": { - "type": "boolean" - }, - "fields": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", - "type": "string" - }, - "type": { - "type": "string" - } - }, - "required": [ - "name" - ] - } - } - }, - "required": [ - "question" - ] - } - } - }, - "required": [ - "id", - "options" - ] + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" }, - "DeleteConfigJson": { - "type": "object", - "properties": { - "extraDeleteReasons": { - "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", - "type": "array", - "items": { - "type": "object", - "properties": { - "explanation": { - "description": "The text that will be shown to the user - translatable" - }, - "changesetMessage": { - "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", - "type": "string" - } - }, - "required": [ - "changesetMessage", - "explanation" - ] - } - }, - "nonDeleteMappings": { - "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - "then": {} - }, - "required": [ - "if", - "then" - ] - } - }, - "softDeletionTags": { - "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "neededChangesets": { - "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", - "type": "number" - } - } + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } }, - "default_3": { - "type": "object", - "properties": { - "enableImproveAccuracy": { - "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", - "type": "boolean" - }, - "enableRelocation": { - "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", - "type": "boolean" - } - } + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" }, - "default_2": { - "type": "object", - "properties": { - "appliesToKey": { - "description": "Every key from this list will be normalized", - "type": "array", - "items": { - "type": "string" - } - }, - "eraseInvalidValues": { - "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", - "type": "boolean" - }, - "applicableUnits": { - "description": "The possible denominations", - "type": "array", - "items": { - "$ref": "#/definitions/ApplicableUnitJson" - } - } - }, - "required": [ - "applicableUnits", - "appliesToKey" - ] + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" }, - "default_6": { - "description": "Configuration for a tilesource config", - "type": "object", - "properties": { - "id": { - "description": "Id of this overlay, used in the URL-parameters to set the state", - "type": "string" - }, - "source": { - "description": "The path, where {x}, {y} and {z} will be substituted", - "type": "string" - }, - "isOverlay": { - "description": "Wether or not this is an overlay. Default: true", - "type": "boolean" - }, - "name": { - "description": "How this will be shown in the selection menu.\nMake undefined if this may not be toggled" - }, - "minZoom": { - "description": "Only visible at this or a higher zoom level", - "type": "number" - }, - "maxZoom": { - "description": "Only visible at this or a lower zoom level", - "type": "number" - }, - "defaultState": { - "description": "The default state, set to false to hide by default", - "type": "boolean" - } - }, - "required": [ - "defaultState", - "id", - "source" - ] - }, - "LayerConfigJson": { - "description": "Configuration for a single layer", - "type": "object", - "properties": { - "id": { - "description": "The id of this layer.\nThis should be a simple, lowercase, human readable string that is used to identify the layer.", - "type": "string" - }, - "name": { - "description": "The name of this layer\nUsed in the layer control panel and the 'Personal theme'.\n\nIf not given, will be hidden (and thus not toggable) in the layer control" - }, - "description": { - "description": "A description for this layer.\nShown in the layer selections and in the personel theme" - }, - "source": { - "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", - "anyOf": [ - { - "allOf": [ - { - "type": "object", - "properties": { - "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" - } - }, - "required": [ - "osmTags" - ] - }, - { - "type": "object", - "properties": { - "overpassScript": { - "type": "string" - } - } - } - ] - }, - { - "allOf": [ - { - "type": "object", - "properties": { - "osmTags": { - "description": "Every source must set which tags have to be present in order to load the given layer.", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" - } - }, - "required": [ - "osmTags" - ] - }, - { - "type": "object", - "properties": { - "geoJson": { - "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", - "type": "string" - }, - "geoJsonZoomLevel": { - "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", - "type": "number" - }, - "isOsmCache": { - "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", - "type": "boolean" - }, - "mercatorCrs": { - "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", - "type": "boolean" - }, - "idKey": { - "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", - "type": "string" - } - }, - "required": [ - "geoJson" - ] - } - ] - } - ] - }, - "calculatedTags": { - "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", - "type": "array", - "items": { - "type": "string" - } - }, - "doNotDownload": { - "description": "If set, this layer will not query overpass; but it'll still match the tags above which are by chance returned by other layers.\nWorks well together with 'passAllFeatures', to add decoration", - "type": "boolean" - }, - "isShown": { - "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", - "$ref": "#/definitions/TagRenderingConfigJson" - }, - "forceLoad": { - "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", - "type": "boolean" - }, - "minzoom": { - "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", - "type": "number" - }, - "shownByDefault": { - "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", - "type": "boolean" - }, - "minzoomVisible": { - "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", - "type": "number" - }, - "title": { - "description": "The title shown in a popup for elements of this layer.", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "titleIcons": { - "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", - "anyOf": [ - { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - { - "type": "array", - "items": [ - { - "type": "string", - "enum": [ - "defaults" - ] - } - ], - "minItems": 1, - "maxItems": 1 - } - ] - }, - "mapRendering": { - "description": "Visualisation of the items on the map", - "anyOf": [ - { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/default_4" - }, - { - "$ref": "#/definitions/default_5" - }, - { - "$ref": "#/definitions/default" - } - ] - } - }, - { - "type": "null" - } - ] - }, - "passAllFeatures": { - "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", - "type": "boolean" - }, - "presets": { - "description": "Presets for this layer.\nA preset shows up when clicking the map on a without data (or when right-clicking/long-pressing);\nit will prompt the user to add a new point.\n\nThe most important aspect are the tags, which define which tags the new point will have;\nThe title is shown in the dialog, along with the first sentence of the description.\n\nUpon confirmation, the full description is shown beneath the buttons - perfect to add pictures and examples.\n\nNote: the icon of the preset is determined automatically based on the tags and the icon above. Don't worry about that!\nNB: if no presets are defined, the popup to add new points doesn't show up at all", - "type": "array", - "items": { - "type": "object", - "properties": { - "title": { - "description": "The title - shown on the 'add-new'-button.\n\nThis should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'.\nThis text will be inserted into `Add {category} here`, becoming `Add a hydrant here`.\n\nDo _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped!" - }, - "tags": { - "description": "The tags to add. It determines the icon too", - "type": "array", - "items": { - "type": "string" - } - }, - "description": { - "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" - }, - "exampleImages": { - "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", - "type": "array", - "items": { - "type": "string" - } - }, - "preciseInput": { - "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", - "anyOf": [ - { - "type": "object", - "properties": { - "preferredBackground": { - "description": "The type of background picture", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "snapToLayer": { - "description": "If specified, these layers will be shown to and the new point will be snapped towards it", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "maxSnapDistance": { - "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", - "type": "number" - } - }, - "required": [ - "preferredBackground" - ] - }, - { - "enum": [ - true - ], - "type": "boolean" - } - ] - } - }, - "required": [ - "tags", - "title" - ] - } - }, - "tagRenderings": { - "description": "All the tag renderings.\nA tag rendering is a block that either shows the known value or asks a question.\n\nRefer to the class `TagRenderingConfigJson` to see the possibilities.\n\nNote that we can also use a string here - where the string refers to a tag rendering defined in `assets/questions/questions.json`,\nwhere a few very general questions are defined e.g. website, phone number, ...\nFurthermore, _all_ the questions of another layer can be reused with `otherlayer.*`\nIf you need only a single of the tagRenderings, use `otherlayer.tagrenderingId`\nIf one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group`\nRemark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition.\nIf they are not wanted, remove them with an override\n\nA special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox.\n\nAt last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings.\nThis is mainly create questions for a 'left' and a 'right' side of the road.\nThese will be grouped and questions will be asked together", - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/QuestionableTagRenderingConfigJson" - }, - { - "type": "object", - "properties": { - "builtin": { - "type": "string" - }, - "override": {} - }, - "required": [ - "builtin", - "override" - ] - }, - { - "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>" - }, - { - "type": "string" - } - ] - } - }, - "filter": { - "description": "All the extra questions for filtering", - "anyOf": [ - { - "type": "array", - "items": { - "$ref": "#/definitions/default_1" - } - }, - { - "type": "object", - "properties": { - "sameAs": { - "type": "string" - } - }, - "required": [ - "sameAs" - ] - } - ] - }, - "deletion": { - "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", - "anyOf": [ - { - "$ref": "#/definitions/DeleteConfigJson" - }, - { - "type": "boolean" - } - ] - }, - "allowMove": { - "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", - "anyOf": [ - { - "$ref": "#/definitions/default_3" - }, - { - "type": "boolean" - } - ] - }, - "allowSplit": { - "description": "IF set, a 'split this road' button is shown", - "type": "boolean" - }, - "units": { - "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", - "type": "array", - "items": { - "$ref": "#/definitions/default_2" - } - }, - "syncSelection": { - "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", - "enum": [ - "global", - "local", - "no", - "theme-only" - ], - "type": "string" - } - }, - "required": [ - "id", - "mapRendering", - "source" - ] + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" }, "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { "type": "object", "properties": { - "icon": { - "type": "string" - }, - "text": {}, - "href": { - "type": "string" - }, - "newTab": { - "type": "boolean" - }, - "requirements": { - "type": "array", - "items": { - "enum": [ - "iframe", - "no-iframe", - "no-welcome-message", - "welcome-message" - ], + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", "type": "string" - } - } + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + } }, "required": [ - "href" + "if", + "then" ] + } } + } }, - "$schema": "http://json-schema.org/draft-07/schema#" + "Record": { + "type": "object" + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + }, + "T": { + "type": "object" + }, + "default_4": { + "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", + "type": "object", + "properties": { + "location": { + "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", + "type": "array", + "items": { + "type": "string" + } + }, + "icon": { + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "iconBadges": { + "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Badge to show\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + }, + "iconSize": { + "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "rotation": { + "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "label": { + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "location" + ] + }, + "default_5": { + "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", + "type": "object", + "properties": { + "color": { + "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "width": { + "description": "The stroke-width for way-elements", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": [ + "string", + "number" + ] + } + ] + }, + "dashArray": { + "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "lineCap": { + "description": "The form at the end of a line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "fill": { + "description": "Whether or not to fill polygons", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "enum": [ + "no", + "yes" + ], + "type": "string" + } + ] + }, + "fillColor": { + "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "offset": { + "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "number" + } + ] + } + } + }, + "default": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } + }, + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] + }, + "renderings": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/default_5" + } + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/default_4" + } + } + ] + } + }, + "required": [ + "renderings", + "rewrite" + ] + }, + "QuestionableTagRenderingConfigJson": { + "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + } + }, + "Partial": { + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + } + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } + }, + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] + }, + "renderings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { + "type": "string" + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "type": "string" + } + ] + } + } + }, + "required": [ + "renderings", + "rewrite" + ] + }, + "default_1": { + "type": "object", + "properties": { + "id": { + "description": "An id/name for this filter, used to set the URL parameters", + "type": "string" + }, + "options": { + "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", + "type": "array", + "items": { + "type": "object", + "properties": { + "question": {}, + "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } + } + }, + "required": [ + "question" + ] + } + } + }, + "required": [ + "id", + "options" + ] + }, + "DeleteConfigJson": { + "type": "object", + "properties": { + "extraDeleteReasons": { + "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", + "type": "array", + "items": { + "type": "object", + "properties": { + "explanation": { + "description": "The text that will be shown to the user - translatable" + }, + "changesetMessage": { + "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", + "type": "string" + } + }, + "required": [ + "changesetMessage", + "explanation" + ] + } + }, + "nonDeleteMappings": { + "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" + }, + "then": { + "description": "The human explanation for the options" + } + }, + "required": [ + "if", + "then" + ] + } + }, + "softDeletionTags": { + "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "neededChangesets": { + "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", + "type": "number" + } + } + }, + "default_3": { + "type": "object", + "properties": { + "enableImproveAccuracy": { + "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", + "type": "boolean" + }, + "enableRelocation": { + "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", + "type": "boolean" + } + } + }, + "default_2": { + "type": "object", + "properties": { + "appliesToKey": { + "description": "Every key from this list will be normalized", + "type": "array", + "items": { + "type": "string" + } + }, + "eraseInvalidValues": { + "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", + "type": "boolean" + }, + "applicableUnits": { + "description": "The possible denominations", + "type": "array", + "items": { + "$ref": "#/definitions/ApplicableUnitJson" + } + } + }, + "required": [ + "applicableUnits", + "appliesToKey" + ] + }, + "Partial": { + "type": "object", + "properties": { + "id": { + "description": "The id of this layer.\nThis should be a simple, lowercase, human readable string that is used to identify the layer.", + "type": "string" + }, + "name": { + "description": "The name of this layer\nUsed in the layer control panel and the 'Personal theme'.\n\nIf not given, will be hidden (and thus not toggable) in the layer control" + }, + "description": { + "description": "A description for this layer.\nShown in the layer selections and in the personel theme" + }, + "source": { + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", + "anyOf": [ + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "overpassScript": { + "description": "If set, this custom overpass-script will be used instead of building one by using the OSM-tags.\nSpecifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline.\n_This should be really rare_.\n\nFor example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: \n```\n\"source\": {\n \"overpassScript\": \n \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\",\n \"osmTags\": \"access=yes\"\n}\n```", + "type": "string" + } + } + } + ] + }, + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", + "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" + } + }, + "required": [ + "geoJson" + ] + } + ] + } + ] + }, + "calculatedTags": { + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", + "type": "array", + "items": { + "type": "string" + } + }, + "doNotDownload": { + "description": "If set, this layer will not query overpass; but it'll still match the tags above which are by chance returned by other layers.\nWorks well together with 'passAllFeatures', to add decoration", + "type": "boolean" + }, + "isShown": { + "description": "If set, only features matching this extra tag will be shown.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, + "minzoom": { + "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", + "type": "number" + }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, + "minzoomVisible": { + "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", + "type": "number" + }, + "title": { + "description": "The title shown in a popup for elements of this layer.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "titleIcons": { + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] + }, + "mapRendering": { + "description": "Visualisation of the items on the map", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "$ref": "#/definitions/default" + } + ] + } + }, + { + "type": "null" + } + ] + }, + "passAllFeatures": { + "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", + "type": "boolean" + }, + "presets": { + "description": "Presets for this layer.\nA preset shows up when clicking the map on a without data (or when right-clicking/long-pressing);\nit will prompt the user to add a new point.\n\nThe most important aspect are the tags, which define which tags the new point will have;\nThe title is shown in the dialog, along with the first sentence of the description.\n\nUpon confirmation, the full description is shown beneath the buttons - perfect to add pictures and examples.\n\nNote: the icon of the preset is determined automatically based on the tags and the icon above. Don't worry about that!\nNB: if no presets are defined, the popup to add new points doesn't show up at all", + "type": "array", + "items": { + "type": "object", + "properties": { + "title": { + "description": "The title - shown on the 'add-new'-button.\n\nThis should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'.\nThis text will be inserted into `Add {category} here`, becoming `Add a hydrant here`.\n\nDo _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped!" + }, + "tags": { + "description": "The tags to add. It determines the icon too", + "type": "array", + "items": { + "type": "string" + } + }, + "description": { + "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" + }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, + "preciseInput": { + "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", + "anyOf": [ + { + "type": "object", + "properties": { + "preferredBackground": { + "description": "The type of background picture", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "snapToLayer": { + "description": "If specified, these layers will be shown to and the new point will be snapped towards it", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "maxSnapDistance": { + "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", + "type": "number" + } + }, + "required": [ + "preferredBackground" + ] + }, + { + "enum": [ + true + ], + "type": "boolean" + } + ] + } + }, + "required": [ + "tags", + "title" + ] + } + }, + "tagRenderings": { + "description": "All the tag renderings.\nA tag rendering is a block that either shows the known value or asks a question.\n\nRefer to the class `TagRenderingConfigJson` to see the possibilities.\n\nNote that we can also use a string here - where the string refers to a tag rendering defined in `assets/questions/questions.json`,\nwhere a few very general questions are defined e.g. website, phone number, ...\nFurthermore, _all_ the questions of another layer can be reused with `otherlayer.*`\nIf you need only a single of the tagRenderings, use `otherlayer.tagrenderingId`\nIf one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group`\nRemark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition.\nIf they are not wanted, remove them with an override\n\nA special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox.\n\nAt last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings.\nThis is mainly create questions for a 'left' and a 'right' side of the road.\nThese will be grouped and questions will be asked together", + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>" + }, + { + "type": "string" + } + ] + } + }, + "filter": { + "description": "All the extra questions for filtering", + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] + }, + "deletion": { + "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", + "anyOf": [ + { + "$ref": "#/definitions/DeleteConfigJson" + }, + { + "type": "boolean" + } + ] + }, + "allowMove": { + "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", + "anyOf": [ + { + "$ref": "#/definitions/default_3" + }, + { + "type": "boolean" + } + ] + }, + "allowSplit": { + "description": "If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways.\n\nIf the way is part of a relation, MapComplete will attempt to update this relation as well", + "type": "boolean" + }, + "units": { + "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", + "type": "array", + "items": { + "$ref": "#/definitions/default_2" + } + }, + "syncSelection": { + "description": "If set, synchronizes whether or not this layer is enabled.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" + } + } + }, + "default_6": { + "description": "Configuration for a tilesource config", + "type": "object", + "properties": { + "id": { + "description": "Id of this overlay, used in the URL-parameters to set the state", + "type": "string" + }, + "source": { + "description": "The path, where {x}, {y} and {z} will be substituted", + "type": "string" + }, + "isOverlay": { + "description": "Wether or not this is an overlay. Default: true", + "type": "boolean" + }, + "name": { + "description": "How this will be shown in the selection menu.\nMake undefined if this may not be toggled" + }, + "minZoom": { + "description": "Only visible at this or a higher zoom level", + "type": "number" + }, + "maxZoom": { + "description": "Only visible at this or a lower zoom level", + "type": "number" + }, + "defaultState": { + "description": "The default state, set to false to hide by default", + "type": "boolean" + } + }, + "required": [ + "defaultState", + "id", + "source" + ] + }, + "LayerConfigJson": { + "description": "Configuration for a single layer", + "type": "object", + "properties": { + "id": { + "description": "The id of this layer.\nThis should be a simple, lowercase, human readable string that is used to identify the layer.", + "type": "string" + }, + "name": { + "description": "The name of this layer\nUsed in the layer control panel and the 'Personal theme'.\n\nIf not given, will be hidden (and thus not toggable) in the layer control" + }, + "description": { + "description": "A description for this layer.\nShown in the layer selections and in the personel theme" + }, + "source": { + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", + "anyOf": [ + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "overpassScript": { + "description": "If set, this custom overpass-script will be used instead of building one by using the OSM-tags.\nSpecifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline.\n_This should be really rare_.\n\nFor example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: \n```\n\"source\": {\n \"overpassScript\": \n \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\",\n \"osmTags\": \"access=yes\"\n}\n```", + "type": "string" + } + } + } + ] + }, + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "$ref": "#/definitions/TagConfigJson", + "description": "Every source must set which tags have to be present in order to load the given layer." + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", + "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" + } + }, + "required": [ + "geoJson" + ] + } + ] + } + ] + }, + "calculatedTags": { + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", + "type": "array", + "items": { + "type": "string" + } + }, + "doNotDownload": { + "description": "If set, this layer will not query overpass; but it'll still match the tags above which are by chance returned by other layers.\nWorks well together with 'passAllFeatures', to add decoration", + "type": "boolean" + }, + "isShown": { + "description": "If set, only features matching this extra tag will be shown.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, + "minzoom": { + "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", + "type": "number" + }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, + "minzoomVisible": { + "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", + "type": "number" + }, + "title": { + "description": "The title shown in a popup for elements of this layer.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "titleIcons": { + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] + }, + "mapRendering": { + "description": "Visualisation of the items on the map", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "$ref": "#/definitions/default" + } + ] + } + }, + { + "type": "null" + } + ] + }, + "passAllFeatures": { + "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", + "type": "boolean" + }, + "presets": { + "description": "Presets for this layer.\nA preset shows up when clicking the map on a without data (or when right-clicking/long-pressing);\nit will prompt the user to add a new point.\n\nThe most important aspect are the tags, which define which tags the new point will have;\nThe title is shown in the dialog, along with the first sentence of the description.\n\nUpon confirmation, the full description is shown beneath the buttons - perfect to add pictures and examples.\n\nNote: the icon of the preset is determined automatically based on the tags and the icon above. Don't worry about that!\nNB: if no presets are defined, the popup to add new points doesn't show up at all", + "type": "array", + "items": { + "type": "object", + "properties": { + "title": { + "description": "The title - shown on the 'add-new'-button.\n\nThis should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'.\nThis text will be inserted into `Add {category} here`, becoming `Add a hydrant here`.\n\nDo _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped!" + }, + "tags": { + "description": "The tags to add. It determines the icon too", + "type": "array", + "items": { + "type": "string" + } + }, + "description": { + "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" + }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, + "preciseInput": { + "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", + "anyOf": [ + { + "type": "object", + "properties": { + "preferredBackground": { + "description": "The type of background picture", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "snapToLayer": { + "description": "If specified, these layers will be shown to and the new point will be snapped towards it", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "maxSnapDistance": { + "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", + "type": "number" + } + }, + "required": [ + "preferredBackground" + ] + }, + { + "enum": [ + true + ], + "type": "boolean" + } + ] + } + }, + "required": [ + "tags", + "title" + ] + } + }, + "tagRenderings": { + "description": "All the tag renderings.\nA tag rendering is a block that either shows the known value or asks a question.\n\nRefer to the class `TagRenderingConfigJson` to see the possibilities.\n\nNote that we can also use a string here - where the string refers to a tag rendering defined in `assets/questions/questions.json`,\nwhere a few very general questions are defined e.g. website, phone number, ...\nFurthermore, _all_ the questions of another layer can be reused with `otherlayer.*`\nIf you need only a single of the tagRenderings, use `otherlayer.tagrenderingId`\nIf one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group`\nRemark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition.\nIf they are not wanted, remove them with an override\n\nA special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox.\n\nAt last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings.\nThis is mainly create questions for a 'left' and a 'right' side of the road.\nThese will be grouped and questions will be asked together", + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "$ref": "#/definitions/default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>" + }, + { + "type": "string" + } + ] + } + }, + "filter": { + "description": "All the extra questions for filtering", + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] + }, + "deletion": { + "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", + "anyOf": [ + { + "$ref": "#/definitions/DeleteConfigJson" + }, + { + "type": "boolean" + } + ] + }, + "allowMove": { + "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", + "anyOf": [ + { + "$ref": "#/definitions/default_3" + }, + { + "type": "boolean" + } + ] + }, + "allowSplit": { + "description": "If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways.\n\nIf the way is part of a relation, MapComplete will attempt to update this relation as well", + "type": "boolean" + }, + "units": { + "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", + "type": "array", + "items": { + "$ref": "#/definitions/default_2" + } + }, + "syncSelection": { + "description": "If set, synchronizes whether or not this layer is enabled.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" + } + }, + "required": [ + "id", + "mapRendering", + "source" + ] + }, + "default": { + "type": "object", + "properties": { + "icon": { + "type": "string" + }, + "text": {}, + "href": { + "type": "string" + }, + "newTab": { + "type": "boolean" + }, + "requirements": { + "type": "array", + "items": { + "enum": [ + "iframe", + "no-iframe", + "no-welcome-message", + "welcome-message" + ], + "type": "string" + } + } + }, + "required": [ + "href" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/LineRenderingConfigJson.schema.json b/Docs/Schemas/LineRenderingConfigJson.schema.json index a852559fd0..bb1365aeac 100644 --- a/Docs/Schemas/LineRenderingConfigJson.schema.json +++ b/Docs/Schemas/LineRenderingConfigJson.schema.json @@ -88,36 +88,62 @@ } }, "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -181,10 +207,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -211,15 +242,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" diff --git a/Docs/Schemas/LineRenderingConfigJsonJSC.ts b/Docs/Schemas/LineRenderingConfigJsonJSC.ts index 5f4e0a4435..5c7aea7cd3 100644 --- a/Docs/Schemas/LineRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/LineRenderingConfigJsonJSC.ts @@ -1,261 +1,284 @@ export default { - "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", - "type": "object", - "properties": { - "color": { - "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] + "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", + "type": "object", + "properties": { + "color": { + "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" }, - "width": { - "description": "The stroke-width for way-elements", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": [ - "string", - "number" - ] - } - ] - }, - "dashArray": { - "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "lineCap": { - "description": "The form at the end of a line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "fill": { - "description": "Whether or not to fill polygons", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "enum": [ - "no", - "yes" - ], - "type": "string" - } - ] - }, - "fillColor": { - "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "offset": { - "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "number" - } - ] + { + "type": "string" } + ] }, - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } + "width": { + "description": "The stroke-width for way-elements", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": [ + "string", + "number" + ] + } + ] + }, + "dashArray": { + "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "lineCap": { + "description": "The form at the end of a line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "fill": { + "description": "Whether or not to fill polygons", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "enum": [ + "no", + "yes" + ], + "type": "string" + } + ] + }, + "fillColor": { + "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "offset": { + "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "number" + } + ] + } + }, + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } } + }, + "required": [ + "or" + ] }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, - "required": [ - "canonicalDenomination" - ] + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { "type": "object", "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { "type": "object", "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } }, "required": [ - "key" + "class", + "path" ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - } - } + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } } - }, - "$schema": "http://json-schema.org/draft-07/schema#" + } + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/MappingConfigJson.schema.json b/Docs/Schemas/MappingConfigJson.schema.json new file mode 100644 index 0000000000..b2dd05386f --- /dev/null +++ b/Docs/Schemas/MappingConfigJson.schema.json @@ -0,0 +1,306 @@ +{ + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], + "additionalProperties": false + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ], + "additionalProperties": false + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + } + }, + "additionalProperties": false + }, + "Record": { + "type": "object", + "additionalProperties": false + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false +} \ No newline at end of file diff --git a/Docs/Schemas/MappingConfigJsonJSC.ts b/Docs/Schemas/MappingConfigJsonJSC.ts new file mode 100644 index 0000000000..5f3d2c5c70 --- /dev/null +++ b/Docs/Schemas/MappingConfigJsonJSC.ts @@ -0,0 +1,300 @@ +export default { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + } + } + }, + "Record": { + "type": "object" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" +} \ No newline at end of file diff --git a/Docs/Schemas/MoveConfigJson.schema.json b/Docs/Schemas/MoveConfigJson.schema.json index d248960bec..eee6d82e72 100644 --- a/Docs/Schemas/MoveConfigJson.schema.json +++ b/Docs/Schemas/MoveConfigJson.schema.json @@ -11,36 +11,62 @@ } }, "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { diff --git a/Docs/Schemas/MoveConfigJsonJSC.ts b/Docs/Schemas/MoveConfigJsonJSC.ts index 9c62ce5ca0..c321779559 100644 --- a/Docs/Schemas/MoveConfigJsonJSC.ts +++ b/Docs/Schemas/MoveConfigJsonJSC.ts @@ -1,84 +1,109 @@ export default { - "type": "object", - "properties": { - "enableImproveAccuracy": { - "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", - "type": "boolean" - }, - "enableRelocation": { - "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", - "type": "boolean" - } + "type": "object", + "properties": { + "enableImproveAccuracy": { + "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", + "type": "boolean" }, - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } + "enableRelocation": { + "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", + "type": "boolean" + } + }, + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } } + }, + "required": [ + "or" + ] }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } - }, - "required": [ - "canonicalDenomination" - ] + { + "type": "string" } + ] }, - "$schema": "http://json-schema.org/draft-07/schema#" + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/OrTagConfigJson.schema.json b/Docs/Schemas/OrTagConfigJson.schema.json new file mode 100644 index 0000000000..338fb9524f --- /dev/null +++ b/Docs/Schemas/OrTagConfigJson.schema.json @@ -0,0 +1,66 @@ +{ + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], + "additionalProperties": false + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false +} \ No newline at end of file diff --git a/Docs/Schemas/OrTagConfigJsonJSC.ts b/Docs/Schemas/OrTagConfigJsonJSC.ts new file mode 100644 index 0000000000..c0aa3ec562 --- /dev/null +++ b/Docs/Schemas/OrTagConfigJsonJSC.ts @@ -0,0 +1,63 @@ +export default { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" +} \ No newline at end of file diff --git a/Docs/Schemas/PointRenderingConfigJson.schema.json b/Docs/Schemas/PointRenderingConfigJson.schema.json index dea072665c..211201cd90 100644 --- a/Docs/Schemas/PointRenderingConfigJson.schema.json +++ b/Docs/Schemas/PointRenderingConfigJson.schema.json @@ -27,14 +27,8 @@ "type": "object", "properties": { "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" }, "then": { "description": "Badge to show\nType: icon", @@ -77,7 +71,7 @@ ] }, "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -92,36 +86,62 @@ "location" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -185,10 +205,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -215,15 +240,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" diff --git a/Docs/Schemas/PointRenderingConfigJsonJSC.ts b/Docs/Schemas/PointRenderingConfigJsonJSC.ts index 09c31651d4..d3ec5552ae 100644 --- a/Docs/Schemas/PointRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/PointRenderingConfigJsonJSC.ts @@ -1,265 +1,282 @@ export default { - "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", - "type": "object", - "properties": { - "location": { - "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", - "type": "array", - "items": { - "type": "string" - } - }, - "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "iconBadges": { - "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Badge to show\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - }, - "iconSize": { - "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "rotation": { - "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } + "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", + "type": "object", + "properties": { + "location": { + "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", + "type": "array", + "items": { + "type": "string" + } }, - "required": [ - "location" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } + "icon": { + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } - }, - "required": [ - "canonicalDenomination" + { + "type": "string" + } + ] + }, + "iconBadges": { + "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Badge to show\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } ] + } }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "required": [ + "if", + "then" + ] + } + }, + "iconSize": { + "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "rotation": { + "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "label": { + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "location" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { "type": "object", "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { "type": "object", "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } }, "required": [ - "key" + "class", + "path" ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - } - } + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } } - }, - "$schema": "http://json-schema.org/draft-07/schema#" + } + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/QuestionableTagRenderingConfigJson.schema.json b/Docs/Schemas/QuestionableTagRenderingConfigJson.schema.json index 8bf8cdfa11..ea5bf65af6 100644 --- a/Docs/Schemas/QuestionableTagRenderingConfigJson.schema.json +++ b/Docs/Schemas/QuestionableTagRenderingConfigJson.schema.json @@ -52,83 +52,7 @@ "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", "type": "array", "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] + "$ref": "#/definitions/MappingConfigJson" } }, "id": { @@ -150,10 +74,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -162,36 +91,62 @@ } }, "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -255,10 +210,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -285,15 +245,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" @@ -332,6 +285,114 @@ } }, "additionalProperties": false + }, + "Record": { + "type": "object", + "additionalProperties": false + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "additionalProperties": false } }, "$schema": "http://json-schema.org/draft-07/schema#", diff --git a/Docs/Schemas/QuestionableTagRenderingConfigJsonJSC.ts b/Docs/Schemas/QuestionableTagRenderingConfigJsonJSC.ts index 3bdb300666..cb14ce95b4 100644 --- a/Docs/Schemas/QuestionableTagRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/QuestionableTagRenderingConfigJsonJSC.ts @@ -1,335 +1,393 @@ export default { - "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", - "type": "object", - "properties": { - "question": { - "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "type": "string" - }, - "type": { - "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", - "type": "string" - }, - "placeholder": { - "description": "A (translated) text that is shown (as gray text) within the textfield" - }, - "helperArgs": { - "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", - "type": "array", - "items": {} - }, - "addExtraTags": { - "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", - "type": "array", - "items": { - "type": "string" - } - }, - "inline": { - "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", - "type": "boolean" - }, - "default": { - "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", - "type": "string" - } - }, - "required": [ - "key" - ] + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" }, - "multiAnswer": { - "description": "If true, use checkboxes instead of radio buttons when asking the question", - "type": "boolean" + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] - } + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} }, - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" }, "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" }, "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } - }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, - "required": [ - "canonicalDenomination" - ] + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { "type": "object", "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { "type": "object", "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } }, "required": [ - "key" + "class", + "path" ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - } - } + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } } + } }, - "$schema": "http://json-schema.org/draft-07/schema#" + "Record": { + "type": "object" + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/RewritableConfigJson.schema.json b/Docs/Schemas/RewritableConfigJson.schema.json index 81d22de45c..120b922da1 100644 --- a/Docs/Schemas/RewritableConfigJson.schema.json +++ b/Docs/Schemas/RewritableConfigJson.schema.json @@ -1,5 +1,5 @@ { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -33,36 +33,62 @@ "rewrite" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -126,10 +152,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -156,15 +187,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" @@ -204,6 +228,114 @@ }, "additionalProperties": false }, + "Record": { + "type": "object", + "additionalProperties": false + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "additionalProperties": false + }, "T": { "type": "object", "additionalProperties": false diff --git a/Docs/Schemas/RewritableConfigJsonJSC.ts b/Docs/Schemas/RewritableConfigJsonJSC.ts index 49c3479ebe..dd99db574b 100644 --- a/Docs/Schemas/RewritableConfigJsonJSC.ts +++ b/Docs/Schemas/RewritableConfigJsonJSC.ts @@ -1,209 +1,338 @@ export default { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } }, - "renderings": { - "$ref": "#/definitions/T" + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } } + }, + "required": [ + "into", + "sourceString" + ] }, - "required": [ - "renderings", - "rewrite" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } + "renderings": { + "$ref": "#/definitions/T" + } + }, + "required": [ + "renderings", + "rewrite" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } } + }, + "required": [ + "or" + ] }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, - "required": [ - "canonicalDenomination" - ] + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { "type": "object", "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { "type": "object", "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } }, "required": [ - "key" + "class", + "path" ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - } - } - }, - "T": { - "type": "object" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } } + } }, - "$schema": "http://json-schema.org/draft-07/schema#" + "Record": { + "type": "object" + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + }, + "T": { + "type": "object" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/TagConfigJson.schema.json b/Docs/Schemas/TagConfigJson.schema.json new file mode 100644 index 0000000000..326d7601d9 --- /dev/null +++ b/Docs/Schemas/TagConfigJson.schema.json @@ -0,0 +1,50 @@ +{ + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ], + "additionalProperties": false + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false +} \ No newline at end of file diff --git a/Docs/Schemas/TagConfigJsonJSC.ts b/Docs/Schemas/TagConfigJsonJSC.ts new file mode 100644 index 0000000000..5c3745a218 --- /dev/null +++ b/Docs/Schemas/TagConfigJsonJSC.ts @@ -0,0 +1,48 @@ +export default { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" +} \ No newline at end of file diff --git a/Docs/Schemas/TagRenderingConfigJson.schema.json b/Docs/Schemas/TagRenderingConfigJson.schema.json index 3ad494ccb4..e4ea00cb14 100644 --- a/Docs/Schemas/TagRenderingConfigJson.schema.json +++ b/Docs/Schemas/TagRenderingConfigJson.schema.json @@ -21,10 +21,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -51,15 +56,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" @@ -98,36 +96,62 @@ } }, "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false } }, diff --git a/Docs/Schemas/TagRenderingConfigJsonJSC.ts b/Docs/Schemas/TagRenderingConfigJsonJSC.ts index b4a8e29906..c7acab367f 100644 --- a/Docs/Schemas/TagRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/TagRenderingConfigJsonJSC.ts @@ -1,134 +1,157 @@ export default { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", - "type": "object", - "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + { + "type": "string" + } + ] + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { + { "type": "object", "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } }, "required": [ - "if", - "then" + "class", + "path" ] + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + } + }, + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } } + }, + "required": [ + "or" + ] + }, + { + "type": "string" } + ] }, - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } } + }, + "required": [ + "and" + ] }, - "$schema": "http://json-schema.org/draft-07/schema#" + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/TilesourceConfigJson.schema.json b/Docs/Schemas/TilesourceConfigJson.schema.json index fccfb49a82..001f9a78ee 100644 --- a/Docs/Schemas/TilesourceConfigJson.schema.json +++ b/Docs/Schemas/TilesourceConfigJson.schema.json @@ -36,36 +36,62 @@ "source" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { @@ -129,10 +155,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -159,15 +190,8 @@ "type": "object", "properties": { "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" }, "then": { "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" @@ -207,6 +231,114 @@ }, "additionalProperties": false }, + "Record": { + "type": "object", + "additionalProperties": false + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ], + "additionalProperties": false + }, "T": { "type": "object", "additionalProperties": false @@ -240,14 +372,8 @@ "type": "object", "properties": { "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" }, "then": { "description": "Badge to show\nType: icon", @@ -290,7 +416,7 @@ ] }, "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -398,7 +524,7 @@ "additionalProperties": false }, "default": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -506,83 +632,7 @@ "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", "type": "array", "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] + "$ref": "#/definitions/MappingConfigJson" } }, "id": { @@ -604,10 +654,15 @@ "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -617,8 +672,101 @@ }, "additionalProperties": false }, - "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "Partial": { + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "additionalProperties": false + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", "type": "object", "properties": { "rewrite": { @@ -656,7 +804,9 @@ "builtin": { "type": "string" }, - "override": {} + "override": { + "$ref": "#/definitions/Partial" + } }, "required": [ "builtin", @@ -691,9 +841,15 @@ "properties": { "question": {}, "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" @@ -764,9 +920,12 @@ "type": "object", "properties": { "if": { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" }, - "then": {} + "then": { + "description": "The human explanation for the options" + } }, "required": [ "if", @@ -778,7 +937,12 @@ "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", "anyOf": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" }, { "type": "string" diff --git a/Docs/Schemas/TilesourceConfigJsonJSC.ts b/Docs/Schemas/TilesourceConfigJsonJSC.ts index 4cdaad0b5b..ba161c2183 100644 --- a/Docs/Schemas/TilesourceConfigJsonJSC.ts +++ b/Docs/Schemas/TilesourceConfigJsonJSC.ts @@ -1,826 +1,986 @@ export default { - "description": "Configuration for a tilesource config", - "type": "object", - "properties": { + "description": "Configuration for a tilesource config", + "type": "object", + "properties": { + "id": { + "description": "Id of this overlay, used in the URL-parameters to set the state", + "type": "string" + }, + "source": { + "description": "The path, where {x}, {y} and {z} will be substituted", + "type": "string" + }, + "isOverlay": { + "description": "Wether or not this is an overlay. Default: true", + "type": "boolean" + }, + "name": { + "description": "How this will be shown in the selection menu.\nMake undefined if this may not be toggled" + }, + "minZoom": { + "description": "Only visible at this or a higher zoom level", + "type": "number" + }, + "maxZoom": { + "description": "Only visible at this or a lower zoom level", + "type": "number" + }, + "defaultState": { + "description": "The default state, set to false to hide by default", + "type": "boolean" + } + }, + "required": [ + "defaultState", + "id", + "source" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + }, + "TagRenderingConfigJson": { + "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", + "type": "object", + "properties": { "id": { - "description": "Id of this overlay, used in the URL-parameters to set the state", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { "type": "string" + } }, - "source": { - "description": "The path, where {x}, {y} and {z} will be substituted", - "type": "string" + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, - "isOverlay": { - "description": "Wether or not this is an overlay. Default: true", - "type": "boolean" + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] }, - "name": { - "description": "How this will be shown in the selection menu.\nMake undefined if this may not be toggled" + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", + "type": "string" + } + }, + "required": [ + "key" + ] }, - "minZoom": { - "description": "Only visible at this or a higher zoom level", - "type": "number" - }, - "maxZoom": { - "description": "Only visible at this or a lower zoom level", - "type": "number" - }, - "defaultState": { - "description": "The default state, set to false to hide by default", - "type": "boolean" + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}" + }, + "then": { + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } } + } }, - "required": [ - "defaultState", + "Record": { + "type": "object" + }, + "MappingConfigJson": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Shown if the 'if is fulfilled\nType: rendered" + }, + "icon": { + "description": "An extra icon supporting the choice\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "Size of the image", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + "hideInAnswer": { + "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + "ifnot": { + "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "addExtraTags": { + "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", + "type": "array", + "items": { + "type": "string" + } + }, + "searchTerms": { + "description": "If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction\n\nSearchterms (per language) allow to easily find an option if there are many options", + "$ref": "#/definitions/Record" + }, + "priorityIf": { + "description": "If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden\nUse this sparingly", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + }, + "T": { + "type": "object" + }, + "default_4": { + "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", + "type": "object", + "properties": { + "location": { + "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", + "type": "array", + "items": { + "type": "string" + } + }, + "icon": { + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "iconBadges": { + "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + "then": { + "description": "Badge to show\nType: icon", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "if", + "then" + ] + } + }, + "iconSize": { + "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "rotation": { + "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "label": { + "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "required": [ + "location" + ] + }, + "default_5": { + "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", + "type": "object", + "properties": { + "color": { + "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "width": { + "description": "The stroke-width for way-elements", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": [ + "string", + "number" + ] + } + ] + }, + "dashArray": { + "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "lineCap": { + "description": "The form at the end of a line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "fill": { + "description": "Whether or not to fill polygons", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "enum": [ + "no", + "yes" + ], + "type": "string" + } + ] + }, + "fillColor": { + "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + "offset": { + "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "number" + } + ] + } + } + }, + "default": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } + }, + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] + }, + "renderings": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/default_5" + } + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/default_4" + } + } + ] + } + }, + "required": [ + "renderings", + "rewrite" + ] + }, + "QuestionableTagRenderingConfigJson": { + "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + } + }, + "Partial": { + "type": "object", + "properties": { + "question": { + "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" + }, + "freeform": { + "description": "Allow freeform text input from the user", + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "type": { + "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", + "type": "string" + }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, + "helperArgs": { + "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", + "type": "array", + "items": {} + }, + "addExtraTags": { + "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", + "type": "array", + "items": { + "type": "string" + } + }, + "inline": { + "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", + "type": "boolean" + }, + "default": { + "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", + "type": "string" + } + }, + "required": [ + "key" + ] + }, + "multiAnswer": { + "description": "If true, use checkboxes instead of radio buttons when asking the question", + "type": "boolean" + }, + "mappings": { + "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", + "type": "array", + "items": { + "$ref": "#/definitions/MappingConfigJson" + } + }, + "id": { + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", + "type": "string" + }, + "group": { + "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", + "type": "string" + }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, + "render": { + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" + }, + "condition": { + "description": "Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`.\n\nThis is useful to ask a follow-up question.\nFor example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one.\nThis can be done by adding `\"condition\": \"changing_table=yes\"`\n\nA full example would be:\n```json\n {\n \"question\": \"Where is the changing table located?\",\n \"render\": \"The changing table is located at {changing_table:location}\",\n \"condition\": \"changing_table=yes\",\n \"freeform\": {\n \"key\": \"changing_table:location\",\n \"inline\": true\n },\n \"mappings\": [\n {\n \"then\": \"The changing table is in the toilet for women.\",\n \"if\": \"changing_table:location=female_toilet\"\n },\n {\n \"then\": \"The changing table is in the toilet for men.\",\n \"if\": \"changing_table:location=male_toilet\"\n },\n {\n \"if\": \"changing_table:location=wheelchair_toilet\",\n \"then\": \"The changing table is in the toilet for wheelchair users.\",\n },\n {\n \"if\": \"changing_table:location=dedicated_room\",\n \"then\": \"The changing table is in a dedicated room. \",\n }\n ],\n \"id\": \"toilet-changing_table:location\"\n },\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + } + } + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:Partial;})[]>": { + "description": "Rewrites and multiplies the given renderings of type T.\n\nThis can be used for introducing many similar questions automatically,\nwhich also makes translations easier.\n\n(Note that the key does _not_ need to be wrapped in {}. \nHowever, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts)\n\nFor example:\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: [{\n \"key\":\"a|b|c\"\n }]\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n # The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", + "type": "object", + "properties": { + "rewrite": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { + "type": "string" + } + }, + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] + }, + "renderings": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/QuestionableTagRenderingConfigJson" + }, + { + "type": "object", + "properties": { + "builtin": { + "type": "string" + }, + "override": { + "$ref": "#/definitions/Partial" + } + }, + "required": [ + "builtin", + "override" + ] + }, + { + "type": "string" + } + ] + } + } + }, + "required": [ + "renderings", + "rewrite" + ] + }, + "default_1": { + "type": "object", + "properties": { + "id": { + "description": "An id/name for this filter, used to set the URL parameters", + "type": "string" + }, + "options": { + "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", + "type": "array", + "items": { + "type": "object", + "properties": { + "question": {}, + "osmTags": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } + } + }, + "required": [ + "question" + ] + } + } + }, + "required": [ "id", - "source" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } - }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } - }, - "required": [ - "canonicalDenomination" - ] - }, - "TagRenderingConfigJson": { - "description": "A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nFor an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one", - "type": "object", - "properties": { - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "description": "If this key is present, then 'render' is used to display the value.\nIf this is undefined, the rendering is _always_ shown", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "description": "If this condition is met, then the text under `then` will be shown.\nIf no value matches, and the user selects this mapping as an option, then these tags will be uploaded to OSM.\n\nFor example: {'if': 'diet:vegetarion=yes', 'then':'A vegetarian option is offered here'}\n\nThis can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" - }, - "icon": { - "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - } - } - }, - "T": { - "type": "object" - }, - "default_4": { - "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", - "type": "object", - "properties": { - "location": { - "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint.\n'projected_centerpoint' will show an item on the line itself, near the middle of the line. (LineStrings only)", - "type": "array", - "items": { - "type": "string" - } - }, - "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "iconBadges": { - "description": "A list of extra badges to show next to the icon as small badge\nThey will be added as a 25% height icon at the bottom right of the icon, with all the badges in a flex layout.\n\nNote: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Badge to show\nType: icon", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "if", - "then" - ] - } - }, - "iconSize": { - "description": "A string containing \"width,height\" or \"width,height,anchorpoint\" where anchorpoint is any of 'center', 'top', 'bottom', 'left', 'right', 'bottomleft','topright', ...\nDefault is '40,40,center'", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "rotation": { - "description": "The rotation of an icon, useful for e.g. directions.\nUsage: as if it were a css property for 'rotate', thus has to end with 'deg', e.g. `90deg`, `{direction}deg`, `calc(90deg - {camera:direction}deg)``", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "label": { - "description": "A HTML-fragment that is shown below the icon, for example:\n
{name}
\n\nIf the icon is undefined, then the label is shown in the center of the feature.\nNote that, if the wayhandling hides the icon then no label is shown as well.", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "required": [ - "location" - ] - }, - "default_5": { - "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", - "type": "object", - "properties": { - "color": { - "description": "The color for way-elements and SVG-elements.\nIf the value starts with \"--\", the style of the body element will be queried for the corresponding variable instead", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "width": { - "description": "The stroke-width for way-elements", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": [ - "string", - "number" - ] - } - ] - }, - "dashArray": { - "description": "A dasharray, e.g. \"5 6\"\nThe dasharray defines 'pixels of line, pixels of gap, pixels of line, pixels of gap',\nDefault value: \"\" (empty string == full line)", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "lineCap": { - "description": "The form at the end of a line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "fill": { - "description": "Whether or not to fill polygons", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "enum": [ - "no", - "yes" - ], - "type": "string" - } - ] - }, - "fillColor": { - "description": "The color to fill a polygon with.\nIf undefined, this will be slightly more opaque version of the stroke line", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" - } - ] - }, - "offset": { - "description": "The number of pixels this line should be moved.\nUse a positive numbe to move to the right, a negative to move to the left (left/right as defined by the drawing direction of the line).\n\nIMPORTANT: MapComplete will already normalize 'key:both:property' and 'key:both' into the corresponding 'key:left' and 'key:right' tagging (same for 'sidewalk=left/right/both' which is rewritten to 'sidewalk:left' and 'sidewalk:right')\nThis simplifies programming. Refer to the CalculatedTags.md-documentation for more details", - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "number" - } - ] - } - } - }, - "default": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] - }, - "renderings": { - "anyOf": [ - { - "$ref": "#/definitions/default_4" - }, - { - "$ref": "#/definitions/default_5" - }, - { - "type": "array", - "items": { - "$ref": "#/definitions/default_5" - } - }, - { - "type": "array", - "items": { - "$ref": "#/definitions/default_4" - } - } - ] - } - }, - "required": [ - "renderings", - "rewrite" - ] - }, - "QuestionableTagRenderingConfigJson": { - "description": "A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.\nIf the desired tags are missing and a question is defined, a question will be shown instead.", - "type": "object", - "properties": { - "question": { - "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" - }, - "freeform": { - "description": "Allow freeform text input from the user", - "type": "object", - "properties": { - "key": { - "type": "string" - }, - "type": { - "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", - "type": "string" - }, - "placeholder": { - "description": "A (translated) text that is shown (as gray text) within the textfield" - }, - "helperArgs": { - "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", - "type": "array", - "items": {} - }, - "addExtraTags": { - "description": "If a value is added with the textfield, these extra tag is addded.\nUseful to add a 'fixme=freeform textfield used - to be checked'", - "type": "array", - "items": { - "type": "string" - } - }, - "inline": { - "description": "When set, influences the way a question is asked.\nInstead of showing a full-widht text field, the text field will be shown within the rendering of the question.\n\nThis combines badly with special input elements, as it'll distort the layout.", - "type": "boolean" - }, - "default": { - "description": "default value to enter if no previous tagging is present.\nNormally undefined (aka do not enter anything)", - "type": "string" - } - }, - "required": [ - "key" - ] - }, - "multiAnswer": { - "description": "If true, use checkboxes instead of radio buttons when asking the question", - "type": "boolean" - }, - "mappings": { - "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "then": { - "description": "Shown if the 'if is fulfilled\nType: rendered" - }, - "icon": { - "description": "An extra icon supporting the choice\nType: icon", - "anyOf": [ - { - "type": "object", - "properties": { - "path": { - "description": "The path to the icon\nType: icon", - "type": "string" - }, - "class": { - "description": "Size of the image", - "type": "string" - } - }, - "required": [ - "class", - "path" - ] - }, - { - "type": "string" - } - ] - }, - "hideInAnswer": { - "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": [ - "string", - "boolean" - ] - } - ] - }, - "ifnot": { - "description": "Only applicable if 'multiAnswer' is set.\nThis is for situations such as:\n`accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected.\nThis can be done with `ifnot`\nNote that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`.\nIf this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer`", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "addExtraTags": { - "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer", - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": [ - "if", - "then" - ] - } - }, - "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", - "type": "string" - }, - "group": { - "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", - "type": "string" - }, - "labels": { - "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", - "type": "array", - "items": { - "type": "string" - } - }, - "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" - }, - "condition": { - "description": "Only show this tagrendering (or question) if the object also matches the following tags.\n\nThis is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables...", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - }, - "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { - "description": "Rewrites and multiplies the given renderings of type T.\n\nFor example:\n\n\n```\n{\n rewrite: {\n sourceString: [\"key\", \"a|b|c\"],\n into: [\n [\"X\", 0]\n [\"Y\", 1],\n [\"Z\", 2]\n ],\n renderings: {\n \"key\":\"a|b|c\"\n }\n }\n}\n```\nwill result in _three_ copies (as the values to rewrite into have three values, namely:\n\n[\n {\n // The first pair: key --> X, a|b|c --> 0\n \"X\": 0\n },\n {\n \"Y\": 1\n },\n {\n \"Z\": 2\n }\n\n]", - "type": "object", - "properties": { - "rewrite": { - "type": "object", - "properties": { - "sourceString": { - "type": "array", - "items": { - "type": "string" - } - }, - "into": { - "type": "array", - "items": { - "type": "array", - "items": {} - } - } - }, - "required": [ - "into", - "sourceString" - ] - }, - "renderings": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/QuestionableTagRenderingConfigJson" - }, - { - "type": "object", - "properties": { - "builtin": { - "type": "string" - }, - "override": {} - }, - "required": [ - "builtin", - "override" - ] - }, - { - "type": "string" - } - ] - } - } - }, - "required": [ - "renderings", - "rewrite" - ] - }, - "default_1": { - "type": "object", - "properties": { - "id": { - "description": "An id/name for this filter, used to set the URL parameters", - "type": "string" - }, - "options": { - "description": "The options for a filter\nIf there are multiple options these will be a list of radio buttons\nIf there is only one option this will be a checkbox\nFiltering is done based on the given osmTags that are compared to the objects in that layer.", - "type": "array", - "items": { - "type": "object", - "properties": { - "question": {}, - "osmTags": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "default": { - "type": "boolean" - }, - "fields": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "description": "If name is `search`, use \"_first_comment~.*{search}.*\" as osmTags", - "type": "string" - }, - "type": { - "type": "string" - } - }, - "required": [ - "name" - ] - } - } - }, - "required": [ - "question" - ] - } - } - }, - "required": [ - "id", - "options" - ] - }, - "DeleteConfigJson": { - "type": "object", - "properties": { - "extraDeleteReasons": { - "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", - "type": "array", - "items": { - "type": "object", - "properties": { - "explanation": { - "description": "The text that will be shown to the user - translatable" - }, - "changesetMessage": { - "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", - "type": "string" - } - }, - "required": [ - "changesetMessage", - "explanation" - ] - } - }, - "nonDeleteMappings": { - "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", - "type": "array", - "items": { - "type": "object", - "properties": { - "if": { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - "then": {} - }, - "required": [ - "if", - "then" - ] - } - }, - "softDeletionTags": { - "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - }, - "neededChangesets": { - "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", - "type": "number" - } - } - }, - "default_3": { - "type": "object", - "properties": { - "enableImproveAccuracy": { - "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", - "type": "boolean" - }, - "enableRelocation": { - "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", - "type": "boolean" - } - } - }, - "default_2": { - "type": "object", - "properties": { - "appliesToKey": { - "description": "Every key from this list will be normalized", - "type": "array", - "items": { - "type": "string" - } - }, - "eraseInvalidValues": { - "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", - "type": "boolean" - }, - "applicableUnits": { - "description": "The possible denominations", - "type": "array", - "items": { - "$ref": "#/definitions/ApplicableUnitJson" - } - } - }, - "required": [ - "applicableUnits", - "appliesToKey" - ] - } + "options" + ] }, - "$schema": "http://json-schema.org/draft-07/schema#" + "DeleteConfigJson": { + "type": "object", + "properties": { + "extraDeleteReasons": { + "description": "*\nBy default, three reasons to delete a point are shown:\n\n- The point does not exist anymore\n- The point was a testing point\n- THe point could not be found\n\nHowever, for some layers, there might be different or more specific reasons for deletion which can be user friendly to set, e.g.:\n\n- the shop has closed\n- the climbing route has been closed of for nature conservation reasons\n- ...\n\nThese reasons can be stated here and will be shown in the list of options the user can choose from", + "type": "array", + "items": { + "type": "object", + "properties": { + "explanation": { + "description": "The text that will be shown to the user - translatable" + }, + "changesetMessage": { + "description": "The text that will be uploaded into the changeset or will be used in the fixme in case of a soft deletion\nShould be a few words, in english", + "type": "string" + } + }, + "required": [ + "changesetMessage", + "explanation" + ] + } + }, + "nonDeleteMappings": { + "description": "In some cases, a (starting) contributor might wish to delete a feature even though deletion is not appropriate.\n(The most relevant case are small paths running over private property. These should be marked as 'private' instead of deleted, as the community might trace the path again from aerial imagery, gettting us back to the original situation).\n\nBy adding a 'nonDeleteMapping', an option can be added into the list which will retag the feature.\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!", + "type": "array", + "items": { + "type": "object", + "properties": { + "if": { + "$ref": "#/definitions/TagConfigJson", + "description": "The tags that will be given to the object.\nThis must remove tags so that the 'source/osmTags' won't match anymore" + }, + "then": { + "description": "The human explanation for the options" + } + }, + "required": [ + "if", + "then" + ] + } + }, + "softDeletionTags": { + "description": "In some cases, the contributor is not allowed to delete the current feature (e.g. because it isn't a point, the point is referenced by a relation or the user isn't experienced enough).\nTo still offer the user a 'delete'-option, the feature is retagged with these tags. This is a soft deletion, as the point isn't actually removed from OSM but rather marked as 'disused'\nIt is important that the feature will be retagged in such a way that it won't be picked up by the layer anymore!\n\nExample (note that \"amenity=\" erases the 'amenity'-key alltogether):\n```\n{\n \"and\": [\"disussed:amenity=public_bookcase\", \"amenity=\"]\n}\n```\n\nor (notice the use of the ':='-tag to copy the old value of 'shop=*' into 'disused:shop='):\n```\n{\n \"and\": [\"disused:shop:={shop}\", \"shop=\"]\n}\n```", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson", + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "$ref": "#/definitions/OrTagConfigJson", + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation" + }, + { + "type": "string" + } + ] + }, + "neededChangesets": { + "description": "*\nBy default, the contributor needs 20 previous changesets to delete points edited by others.\nFor some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here.", + "type": "number" + } + } + }, + "default_3": { + "type": "object", + "properties": { + "enableImproveAccuracy": { + "description": "One default reason to move a point is to improve accuracy.\nSet to false to disable this reason", + "type": "boolean" + }, + "enableRelocation": { + "description": "One default reason to move a point is because it has relocated\nSet to false to disable this reason", + "type": "boolean" + } + } + }, + "default_2": { + "type": "object", + "properties": { + "appliesToKey": { + "description": "Every key from this list will be normalized", + "type": "array", + "items": { + "type": "string" + } + }, + "eraseInvalidValues": { + "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", + "type": "boolean" + }, + "applicableUnits": { + "description": "The possible denominations", + "type": "array", + "items": { + "$ref": "#/definitions/ApplicableUnitJson" + } + } + }, + "required": [ + "applicableUnits", + "appliesToKey" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Schemas/UnitConfigJson.schema.json b/Docs/Schemas/UnitConfigJson.schema.json index 0941241c7d..715b15a776 100644 --- a/Docs/Schemas/UnitConfigJson.schema.json +++ b/Docs/Schemas/UnitConfigJson.schema.json @@ -25,36 +25,62 @@ "appliesToKey" ], "definitions": { - "AndOrTagConfigJson": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", "type": "object", "properties": { "and": { "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] + "$ref": "#/definitions/TagConfigJson" } } }, + "required": [ + "and" + ], + "additionalProperties": false + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ], "additionalProperties": false }, "ApplicableUnitJson": { diff --git a/Docs/Schemas/UnitConfigJsonJSC.ts b/Docs/Schemas/UnitConfigJsonJSC.ts index 27a62b6b27..43573dfd94 100644 --- a/Docs/Schemas/UnitConfigJsonJSC.ts +++ b/Docs/Schemas/UnitConfigJsonJSC.ts @@ -1,98 +1,123 @@ export default { - "type": "object", - "properties": { - "appliesToKey": { - "description": "Every key from this list will be normalized", - "type": "array", - "items": { - "type": "string" - } - }, - "eraseInvalidValues": { - "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", - "type": "boolean" - }, - "applicableUnits": { - "description": "The possible denominations", - "type": "array", - "items": { - "$ref": "#/definitions/ApplicableUnitJson" - } - } + "type": "object", + "properties": { + "appliesToKey": { + "description": "Every key from this list will be normalized", + "type": "array", + "items": { + "type": "string" + } }, - "required": [ - "applicableUnits", - "appliesToKey" - ], - "definitions": { - "AndOrTagConfigJson": { - "type": "object", - "properties": { - "and": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - }, - "or": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/AndOrTagConfigJson" - }, - { - "type": "string" - } - ] - } - } - } - }, - "ApplicableUnitJson": { - "type": "object", - "properties": { - "canonicalDenomination": { - "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", - "type": "string" - }, - "canonicalDenominationSingular": { - "description": "The canonical denomination in the case that the unit is precisely '1'", - "type": "string" - }, - "alternativeDenomination": { - "description": "A list of alternative values which can occur in the OSM database - used for parsing.", - "type": "array", - "items": { - "type": "string" - } - }, - "human": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" - }, - "humanSingular": { - "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" - }, - "prefix": { - "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", - "type": "boolean" - }, - "default": { - "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", - "type": "boolean" - } - }, - "required": [ - "canonicalDenomination" - ] - } + "eraseInvalidValues": { + "description": "If set, invalid values will be erased in the MC application (but not in OSM of course!)\nBe careful with setting this", + "type": "boolean" }, - "$schema": "http://json-schema.org/draft-07/schema#" + "applicableUnits": { + "description": "The possible denominations", + "type": "array", + "items": { + "$ref": "#/definitions/ApplicableUnitJson" + } + } + }, + "required": [ + "applicableUnits", + "appliesToKey" + ], + "definitions": { + "TagConfigJson": { + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation", + "anyOf": [ + { + "$ref": "#/definitions/AndTagConfigJson" + }, + { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + { + "type": "string" + } + ] + }, + "AndTagConfigJson": { + "description": "Chain many tags, to match, a single of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "and" + ] + }, + "OrTagConfigJson": { + "description": "Chain many tags, to match, all of these should be true\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation", + "type": "object", + "properties": { + "or": { + "type": "array", + "items": { + "$ref": "#/definitions/TagConfigJson" + } + } + }, + "required": [ + "or" + ] + }, + "ApplicableUnitJson": { + "type": "object", + "properties": { + "canonicalDenomination": { + "description": "The canonical value which will be added to the value in OSM.\ne.g. \"m\" for meters\nIf the user inputs '42', the canonical value will be added and it'll become '42m'.\n\nImportant: often, _no_ canonical values are expected, e.g. in the case of 'maxspeed' where 'km/h' is the default.\nIn this case, an empty string should be used", + "type": "string" + }, + "canonicalDenominationSingular": { + "description": "The canonical denomination in the case that the unit is precisely '1'", + "type": "string" + }, + "alternativeDenomination": { + "description": "A list of alternative values which can occur in the OSM database - used for parsing.", + "type": "array", + "items": { + "type": "string" + } + }, + "human": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"meter\",\n \"fr\": \"metre\"\n}" + }, + "humanSingular": { + "description": "The value for humans in the dropdown. This should not use abbreviations and should be translated, e.g.\n{\n \"en\": \"minute\",\n \"nl\": \"minuut\"x²\n}" + }, + "prefix": { + "description": "If set, then the canonical value will be prefixed instead, e.g. for '€'\nNote that if all values use 'prefix', the dropdown might move to before the text field", + "type": "boolean" + }, + "default": { + "description": "The default interpretation - only one can be set.\nIf none is set, the first unit will be considered the default interpretation of a value without a unit", + "type": "boolean" + } + }, + "required": [ + "canonicalDenomination" + ] + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/Docs/Screenshots/Indoors.png b/Docs/Screenshots/Indoors.png new file mode 100644 index 0000000000..861935fafb Binary files /dev/null and b/Docs/Screenshots/Indoors.png differ diff --git a/Docs/SpecialInputElements.md b/Docs/SpecialInputElements.md index d6cde05f95..2fe4305b0b 100644 --- a/Docs/SpecialInputElements.md +++ b/Docs/SpecialInputElements.md @@ -13,7 +13,7 @@ + [date](#date) + [nat](#nat) + [int](#int) - + [decimal](#decimal) + + [distance](#distance) + [direction](#direction) + [wikidata](#wikidata) + [pnat](#pnat) @@ -71,11 +71,11 @@ A number -### decimal +### distance -A geographical length in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `["21", "map,photo"] +A geographical distance in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `["21", "map,photo"] @@ -104,8 +104,10 @@ options | A JSON-object of type `{ removePrefixes: string[], removePostfixes: st subarg | doc -------- | ----- -removePrefixes | remove these snippets of text from the start of the passed string to search -removePostfixes | remove these snippets of text from the end of the passed string to search +removePrefixes | remove these snippets of text from the start of the passed string to search. This is either a list OR a hash of languages to a list +removePostfixes | remove these snippets of text from the end of the passed string to search. This is either a list OR a hash of languages to a list +instanceOf | A list of Q-identifier which indicates that the search results _must_ be an entity of this type, e.g. [`Q5`](https://www.wikidata.org/wiki/Q5) for humans +notInstanceof | A list of Q-identifiers which indicates that the search results _must not_ be an entity of this type, e.g. [`Q79007`](https://www.wikidata.org/wiki/Q79007) to filter away all streets from the search results @@ -113,25 +115,46 @@ removePostfixes | remove these snippets of text from the end of the passed strin The following is the 'freeform'-part of a layer config which will trigger a search for the wikidata item corresponding with the name of the selected feature. It will also remove '-street', '-square', ... if found at the end of the name -``` +```json "freeform": { "key": "name:etymology:wikidata", "type": "wikidata", "helperArgs": [ "name", { - "removePostfixes": [ + "removePostfixes": {"en": [ "street", "boulevard", "path", "square", "plaza", - ] + ], + "nl": ["straat","plein","pad","weg",laan"] + }, + + "#": "Remove streets and parks from the search results:" + "notInstanceOf": ["Q79007","Q22698"] } + ] } ``` +Another example is to search for species and trees: + +```json + "freeform": { + "key": "species:wikidata", + "type": "wikidata", + "helperArgs": [ + "species", + { + "instanceOf": [10884, 16521] + }] + } +``` + + ### pnat diff --git a/Docs/SpecialRenderings.md b/Docs/SpecialRenderings.md index ee6e992831..8570e769a6 100644 --- a/Docs/SpecialRenderings.md +++ b/Docs/SpecialRenderings.md @@ -15,9 +15,28 @@ General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_nam -Instead of using `{"render": {"en": "{some_special_visualisation(some_arg, some other really long message, more args)} , "nl": "{some_special_visualisation(some_arg, een boodschap in een andere taal, more args)}}, one can also write +Instead of using `{"render": {"en": "{some_special_visualisation(some_arg, some other really long message, more args)} , "nl": "{some_special_visualisation(some_arg, een boodschap in een andere taal, more args)}}`, one can also write -`{"render":{"special":{"type":"some_special_visualisation","argname":"some_arg","message":{"en":"some other really long message","nl":"een boodschap in een andere taal"},"other_arg_name":"more args"}}}` +`{ + "render": { + "special": { + "type": "some_special_visualisation", + "before": { + "en": "Some text to prefix before the special element (e.g. a title)", + "nl": "Een tekst om voor het element te zetten (bv. een titel)" + }, + "after": { + "en": "Some text to put after the element, e.g. a footer" + }, + "argname": "some_arg", + "message": { + "en": "some other really long message", + "nl": "een boodschap in een andere taal" + }, + "other_arg_name": "more args" + } + } +}` ## Table of contents @@ -31,6 +50,8 @@ Instead of using `{"render": {"en": "{some_special_visualisation(some_arg, some * [Example usage of image_upload](#example-usage-of-image_upload) + [wikipedia](#wikipedia) * [Example usage of wikipedia](#example-usage-of-wikipedia) + + [wikidata_label](#wikidata_label) + * [Example usage of wikidata_label](#example-usage-of-wikidata_label) + [minimap](#minimap) * [Example usage of minimap](#example-usage-of-minimap) + [sided_minimap](#sided_minimap) @@ -63,6 +84,8 @@ Instead of using `{"render": {"en": "{some_special_visualisation(some_arg, some * [Example usage of export_as_geojson](#example-usage-of-export_as_geojson) + [open_in_iD](#open_in_id) * [Example usage of open_in_iD](#example-usage-of-open_in_id) + + [open_in_josm](#open_in_josm) + * [Example usage of open_in_josm](#example-usage-of-open_in_josm) + [clear_location_history](#clear_location_history) * [Example usage of clear_location_history](#example-usage-of-clear_location_history) + [close_note](#close_note) @@ -75,6 +98,20 @@ Instead of using `{"render": {"en": "{some_special_visualisation(some_arg, some * [Example usage of add_image_to_note](#example-usage-of-add_image_to_note) + [title](#title) * [Example usage of title](#example-usage-of-title) + + [nearby_images](#nearby_images) + * [Example usage of nearby_images](#example-usage-of-nearby_images) + + [mapillary_link](#mapillary_link) + * [Example usage of mapillary_link](#example-usage-of-mapillary_link) + + [maproulette_task](#maproulette_task) + * [Example usage of maproulette_task](#example-usage-of-maproulette_task) + + [statistics](#statistics) + * [Example usage of statistics](#example-usage-of-statistics) + + [send_email](#send_email) + * [Example usage of send_email](#example-usage-of-send_email) + + [multi](#multi) + * [Example usage of multi](#example-usage-of-multi) + + [steal](#steal) + * [Example usage of steal](#example-usage-of-steal) + [auto_apply](#auto_apply) * [Example usage of auto_apply](#example-usage-of-auto_apply) @@ -129,7 +166,7 @@ label | Add image | The text to show on the button name | default | description ------ | --------- | ------------- -keyToShowWikipediaFor | wikidata | Use the wikidata entry from this key to show the wikipedia article for +keyToShowWikipediaFor | wikidata;wikipedia | Use the wikidata entry from this key to show the wikipedia article for. Multiple keys can be given (separated by ';'), in which case the first matching value is used #### Example usage of wikipedia @@ -138,6 +175,21 @@ keyToShowWikipediaFor | wikidata | Use the wikidata entry from this key to show +### wikidata_label + + Shows the label of the corresponding wikidata-item + +name | default | description +------ | --------- | ------------- +keyToShowWikidataFor | wikidata | Use the wikidata entry from this key to show the label + + +#### Example usage of wikidata_label + + `{wikidata_label()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the label itself + + + ### minimap A small map showing the selected feature. @@ -254,7 +306,7 @@ url | _undefined_ | The url to share (default: current URL) ### canonical - Converts a short, canonical value into the long, translated text + Converts a short, canonical value into the long, translated text including the unit. This only works if a `unit` is defined for the corresponding value. The unit specification will be included in the text. name | default | description ------ | --------- | ------------- @@ -263,7 +315,7 @@ key | _undefined_ | The key of the tag to give the canonical text for #### Example usage of canonical - {canonical(length)} will give 42 metre (in french) + If the object has `length=42`, then `{canonical(length)}` will be shown as **42 meter** (in english), **42 metre** (in french), ... @@ -324,11 +376,12 @@ snap_onto_layers | _undefined_ | If a way of the given layer(s) is closeby, will max_snap_distance | 5 | The maximum distance that the imported point will be moved to snap onto a way in an already existing layer (in meters). This is previewed to the contributor, similar to the 'add new point'-action of MapComplete note_id | _undefined_ | If given, this key will be read. The corresponding note on OSM will be closed, stating 'imported' location_picker | photo | Chooses the background for the precise location picker, options are 'map', 'photo' or 'osmbasedmap' or 'none' if the precise input picker should be disabled +maproulette_id | _undefined_ | If given, the maproulette challenge will be marked as fixed #### Example usage of import_button - `{import_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5,,photo)}` + `{import_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5,,photo,)}` @@ -541,6 +594,16 @@ id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tag +### open_in_josm + + Opens the current view in the JOSM-editor + +#### Example usage of open_in_josm + + `{open_in_josm()}` + + + ### clear_location_history A button to remove the travelled track information from the device @@ -627,15 +690,132 @@ Id-key | id | The property name where the ID of the note to close can be found +### nearby_images + + A component showing nearby images loaded from various online services such as Mapillary. In edit mode and when used on a feature, the user can select an image to add to the feature + +name | default | description +------ | --------- | ------------- +mode | expandable | Indicates how this component is initialized. Options are: + +- `open`: always show and load the pictures +- `collapsable`: show the pictures, but a user can collapse them +- `expandable`: shown by default; but a user can collapse them. +mapillary | true | If 'true', includes a link to mapillary on this location. + + +#### Example usage of nearby_images + + `{nearby_images(expandable,true)}` + + + +### mapillary_link + + Adds a button to open mapillary on the specified location + +name | default | description +------ | --------- | ------------- +zoom | 18 | The startzoom of mapillary + + +#### Example usage of mapillary_link + + `{mapillary_link(18)}` + + + +### maproulette_task + + Show details of a MapRoulette task + +#### Example usage of maproulette_task + + `{maproulette_task()}` + + + +### statistics + + Show general statistics about the elements currently in view. Intended to use on the `current_view`-layer + +#### Example usage of statistics + + `{statistics()}` + + + +### send_email + + Creates a `mailto`-link where some fields are already set and correctly escaped. The user will be promted to send the email + +name | default | description +------ | --------- | ------------- +to | _undefined_ | Who to send the email to? +subject | _undefined_ | The subject of the email +body | _undefined_ | The text in the email +button_text | _undefined_ | The text shown on the button in the UI + + +#### Example usage of send_email + + `{send_email(,,,)}` + + + +### multi + + Given an embedded tagRendering (read only) and a key, will read the keyname as a JSON-list. Every element of this list will be considered as tags and rendered with the tagRendering + +name | default | description +------ | --------- | ------------- +key | _undefined_ | The property to read and to interpret as a list of properties +tagrendering | _undefined_ | An entire tagRenderingConfig + + +#### Example usage of multi + + ```json +{ + "render": { + "special": { + "type": "multi", + "key": "_doors_from_building_properties", + "tagRendering": { + "render": "The building containing this feature has a door of width {entrance:width}" + } + } + } +}``` + + + +### steal + + Shows a tagRendering from a different object as if this was the object itself + +name | default | description +------ | --------- | ------------- +featureId | _undefined_ | The key of the attribute which contains the id of the feature from which to use the tags +tagRenderingId | _undefined_ | The layer-id and tagRenderingId to render. Can be multiple value if ';'-separated (in which case every value must also contain the layerId, e.g. `layerId.tagRendering0; layerId.tagRendering1`). Note: this can cause layer injection + + +#### Example usage of steal + + `{steal(,)}` + + + ### auto_apply - A button to run many actions for many features at once. + A button to run many actions for many features at once. To effectively use this button, you'll need some ingredients: -To effectively use this button, you'll need some ingredients: -- A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: import_way_button, tag_apply -- A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the [current_view](./BuiltinLayers.md#current_view) -- Then, use a calculated tag on the host feature to determine the overlapping object ids -- At last, add this component + - A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: import_way_button, tag_apply + - A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the layer + - [current_view](./BuiltinLayers.md#current_view) + - Then, use a calculated tag on the host feature to determine the overlapping object ids + - At last, add this component + name | default | description ------ | --------- | ------------- diff --git a/Docs/TagInfo/mapcomplete_aed.json b/Docs/TagInfo/mapcomplete_aed.json index 2708ce44d2..f17e929c78 100644 --- a/Docs/TagInfo/mapcomplete_aed.json +++ b/Docs/TagInfo/mapcomplete_aed.json @@ -62,7 +62,7 @@ }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open AED Map')", + "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open AED Map')", "value": "private" }, { diff --git a/Docs/TagInfo/mapcomplete_artwork.json b/Docs/TagInfo/mapcomplete_artwork.json index 307e32e7b7..cff0df4824 100644 --- a/Docs/TagInfo/mapcomplete_artwork.json +++ b/Docs/TagInfo/mapcomplete_artwork.json @@ -2,7 +2,7 @@ "data_format": 1, "project": { "name": "MapComplete Open Artwork Map", - "description": "Welcome to Open Artwork Map, a map of statues, busts, grafittis and other artwork all over the world", + "description": "An open map of statues, busts, graffitis and other artwork all over the world", "project_url": "https://mapcomplete.osm.be/artwork", "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", "icon_url": "https://mapcomplete.osm.be/assets/themes/artwork/artwork.svg", diff --git a/Docs/TagInfo/mapcomplete_benches.json b/Docs/TagInfo/mapcomplete_benches.json index ae5f6f57c6..642b3aa6e5 100644 --- a/Docs/TagInfo/mapcomplete_benches.json +++ b/Docs/TagInfo/mapcomplete_benches.json @@ -202,6 +202,35 @@ "key": "wikipedia", "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Benches')" + }, + { + "key": "location", + "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Benches')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Benches') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "-1" + }, { "key": "material", "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Benches')" @@ -215,6 +244,11 @@ "key": "material", "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", "value": "concrete" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "plastic" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bicycle_rental.json b/Docs/TagInfo/mapcomplete_bicycle_rental.json index 83fec1d06e..e03db7b4c9 100644 --- a/Docs/TagInfo/mapcomplete_bicycle_rental.json +++ b/Docs/TagInfo/mapcomplete_bicycle_rental.json @@ -54,29 +54,34 @@ "description": "Layer 'Bicycle rental' shows shop=rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "shop" }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "rental" + }, { "key": "service:bicycle:rental", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "yes" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "bicycle" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "docking_station" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "key_dispensing_machine" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "dropoff_point" }, { @@ -163,7 +168,7 @@ }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for childs can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "kid_bike" }, { @@ -176,6 +181,11 @@ "description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", "value": "racebike" }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "bike_helmet" + }, { "key": "capacity:city_bike", "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Bicycle rental')" diff --git a/Docs/TagInfo/mapcomplete_bookcases.json b/Docs/TagInfo/mapcomplete_bookcases.json index 7cf1a5cc1c..34062d3398 100644 --- a/Docs/TagInfo/mapcomplete_bookcases.json +++ b/Docs/TagInfo/mapcomplete_bookcases.json @@ -49,6 +49,10 @@ "key": "capacity", "description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Open Bookcase Map')" }, + { + "key": "books", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the MapComplete.osm.be theme 'Open Bookcase Map')" + }, { "key": "books", "description": "Layer 'Bookcases' shows books=children with a fixed text, namely 'Mostly children books' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", @@ -59,11 +63,6 @@ "description": "Layer 'Bookcases' shows books=adults with a fixed text, namely 'Mostly books for adults' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", "value": "adults" }, - { - "key": "books", - "description": "Layer 'Bookcases' shows books=children;adults with a fixed text, namely 'Both books for kids and adults' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", - "value": "children;adults" - }, { "key": "indoor", "description": "Layer 'Bookcases' shows indoor=yes with a fixed text, namely 'This bookcase is located indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", diff --git a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json index 26d78bf69e..dfba13bcb6 100644 --- a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json +++ b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json @@ -30,6 +30,11 @@ "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", "value": "biergarten" }, + { + "key": "amenity", + "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", + "value": "nightclub" + }, { "key": "image", "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -46,6 +51,35 @@ "key": "wikipedia", "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Cafés and pubs')" + }, + { + "key": "location", + "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cafés and pubs') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "-1" + }, { "key": "name", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Cafés and pubs')" @@ -75,6 +109,11 @@ "description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'An open space where beer is served, typically seen in Germany' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", "value": "biergarten" }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=nightclub with a fixed text, namely 'This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "nightclub" + }, { "key": "opening_hours", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cafés and pubs')" @@ -133,6 +172,21 @@ "description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", "value": "no" }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "yes" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "no" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", + "value": "outside" + }, { "key": "service:electricity", "description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", diff --git a/Docs/TagInfo/mapcomplete_campersite.json b/Docs/TagInfo/mapcomplete_campersite.json index 724c9cd2c2..b589bf99f1 100644 --- a/Docs/TagInfo/mapcomplete_campersite.json +++ b/Docs/TagInfo/mapcomplete_campersite.json @@ -114,12 +114,12 @@ }, { "key": "permanent_camping", - "description": "Layer 'Camper sites' shows permanent_camping=yes with a fixed text, namely 'Yes, there are some spots for long term rental, but you can also stay on a daily basis' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", + "description": "Layer 'Camper sites' shows permanent_camping=yes with a fixed text, namely 'There are some spots for long term rental, but you can also stay on a daily basis' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", "value": "yes" }, { "key": "permanent_camping", - "description": "Layer 'Camper sites' shows permanent_camping=no with a fixed text, namely 'No, there are no permanent guests here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", + "description": "Layer 'Camper sites' shows permanent_camping=no with a fixed text, namely 'There are no permanent guests here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", "value": "no" }, { diff --git a/Docs/TagInfo/mapcomplete_charging_stations.json b/Docs/TagInfo/mapcomplete_charging_stations.json index 4b1d0432e1..af5234c21b 100644 --- a/Docs/TagInfo/mapcomplete_charging_stations.json +++ b/Docs/TagInfo/mapcomplete_charging_stations.json @@ -102,7 +102,7 @@ }, { "key": "access", - "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "private" }, { @@ -116,7 +116,7 @@ }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko~^..*$&socket:schuko!~^1$ with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:schuko~^..*$&socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:typee", @@ -125,7 +125,7 @@ }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee~^..*$&socket:typee!~^1$ with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:typee~^..*$&socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:chademo", @@ -134,7 +134,7 @@ }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo~^..*$&socket:chademo!~^1$ with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:chademo~^..*$&socket:chademo!=1 with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:type1_cable", @@ -143,7 +143,7 @@ }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable~^..*$&socket:type1_cable!~^1$ with a fixed text, namely 'Type 1 with cable (J1772)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:type1_cable~^..*$&socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:type1", @@ -152,7 +152,7 @@ }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1~^..*$&socket:type1!~^1$ with a fixed text, namely 'Type 1 without cable (J1772)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:type1~^..*$&socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:type1_combo", @@ -161,7 +161,7 @@ }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo~^..*$&socket:type1_combo!~^1$ with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:type1_combo~^..*$&socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:tesla_supercharger", @@ -170,7 +170,7 @@ }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^1$ with a fixed text, namely 'Tesla Supercharger' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:type2", @@ -179,7 +179,7 @@ }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2~^..*$&socket:type2!~^1$ with a fixed text, namely 'Type 2 (mennekes)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:type2~^..*$&socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:type2_combo", @@ -188,7 +188,7 @@ }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo~^..*$&socket:type2_combo!~^1$ with a fixed text, namely 'Type 2 CCS (mennekes)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:type2_combo~^..*$&socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:type2_cable", @@ -197,7 +197,7 @@ }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable~^..*$&socket:type2_cable!~^1$ with a fixed text, namely 'Type 2 with cable (mennekes)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:type2_cable~^..*$&socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:tesla_supercharger_ccs", @@ -206,7 +206,7 @@ }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^1$ with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:tesla_destination", @@ -215,7 +215,7 @@ }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:tesla_destination", @@ -224,7 +224,7 @@ }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country!~^us$ with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:USB-A", @@ -233,7 +233,7 @@ }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A~^..*$&socket:USB-A!~^1$ with a fixed text, namely 'USB to charge phones and small electronics' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:USB-A~^..*$&socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:bosch_3pin", @@ -242,7 +242,7 @@ }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin~^..*$&socket:bosch_3pin!~^1$ with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:bosch_3pin~^..*$&socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:bosch_5pin", @@ -251,7 +251,7 @@ }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin~^..*$&socket:bosch_5pin!~^1$ with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:bosch_5pin~^..*$&socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:schuko", @@ -341,8 +341,8 @@ }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kw with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "3.6 kw" + "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3.6 kW" }, { "key": "socket:typee:voltage", @@ -368,13 +368,13 @@ }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=3 kw with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "3 kw" + "description": "Layer 'Charging stations' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3 kW" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=22 kw with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kW" }, { "key": "socket:chademo:voltage", @@ -400,8 +400,8 @@ }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows socket:chademo:output=50 kw with a fixed text, namely 'Chademo outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kW" }, { "key": "socket:type1_cable:voltage", @@ -432,13 +432,13 @@ }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kw with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "3.7 kw" + "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3.7 kW" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kw with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "7 kw" + "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "7 kW" }, { "key": "socket:type1:voltage", @@ -469,23 +469,23 @@ }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "3.7 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3.7 kW" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "6.6 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "6.6 kW" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "7 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "7 kW" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "7.2 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "7.2 kW" }, { "key": "socket:type1_combo:voltage", @@ -521,23 +521,23 @@ }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kW" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "62.5 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "62.5 kW" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "150 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "150 kW" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "350 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "350 kW" }, { "key": "socket:tesla_supercharger:voltage", @@ -568,18 +568,18 @@ }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kw with a fixed text, namely 'Tesla Supercharger outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "120 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "120 kW" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kw with a fixed text, namely 'Tesla Supercharger outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "150 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "150 kW" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kw with a fixed text, namely 'Tesla Supercharger outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "250 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "250 kW" }, { "key": "socket:type2:voltage", @@ -615,13 +615,13 @@ }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=11 kw with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "11 kw" + "description": "Layer 'Charging stations' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "11 kW" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=22 kw with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kW" }, { "key": "socket:type2_combo:voltage", @@ -657,8 +657,8 @@ }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kw with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kW" }, { "key": "socket:type2_cable:voltage", @@ -694,13 +694,13 @@ }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kw with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "11 kw" + "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "11 kW" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kw with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kW" }, { "key": "socket:tesla_supercharger_ccs:voltage", @@ -708,12 +708,12 @@ }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "500 V" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "920 V" }, { @@ -736,8 +736,8 @@ }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kw with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kW" }, { "key": "socket:tesla_destination:voltage", @@ -745,7 +745,7 @@ }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 V with a fixed text, namely 'Tesla Supercharger (destination) outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 V with a fixed text, namely 'Tesla Supercharger (Destination) outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "480 V" }, { @@ -754,12 +754,12 @@ }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 A with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 A with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "125 A" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 A with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 A with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "350 A" }, { @@ -768,18 +768,18 @@ }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kw with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "120 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "120 kW" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kw with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "150 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "150 kW" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kw with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "250 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "250 kW" }, { "key": "socket:tesla_destination:voltage", @@ -787,12 +787,12 @@ }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 V with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 V with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "230 V" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 V with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 V with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "400 V" }, { @@ -801,12 +801,12 @@ }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 A with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 A with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "16 A" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 A with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 A with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "32 A" }, { @@ -815,13 +815,13 @@ }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kw with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "11 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "11 kW" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kw with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kW" }, { "key": "socket:USB-A:voltage", @@ -852,13 +852,13 @@ }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=5w with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "5w" + "description": "Layer 'Charging stations' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "5W" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=10w with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "10w" + "description": "Layer 'Charging stations' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "10W" }, { "key": "socket:bosch_3pin:voltage", @@ -940,12 +940,12 @@ }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "no @ customers" }, { diff --git a/Docs/TagInfo/mapcomplete_climbing.json b/Docs/TagInfo/mapcomplete_climbing.json index 1317f71710..9fe73f3d43 100644 --- a/Docs/TagInfo/mapcomplete_climbing.json +++ b/Docs/TagInfo/mapcomplete_climbing.json @@ -60,10 +60,6 @@ "key": "opening_hours", "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "url", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "access", "description": "Layer 'Climbing club' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", @@ -93,93 +89,6 @@ "key": "access:description", "description": "Layer 'Climbing club' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "climbing:length", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing club' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing club' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing club' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing club' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing club' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing club' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing club' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing club' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing club' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing club' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing club' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing club' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "sport", "description": "The MapComplete theme Open Climbing Map has a layer Climbing gyms showing features with this tag", @@ -235,41 +144,27 @@ "description": "Layer 'Climbing gyms' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, { - "key": "opening_hours", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')" + "key": "charge", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, { - "key": "url", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "permit" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "key": "fee", + "description": "Layer 'Climbing gyms' shows fee=no with a fixed text, namely 'Climbing here is free of charge' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "no" }, { - "key": "access:description", - "description": "Layer 'Climbing gyms' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" + "key": "fee", + "description": "Layer 'Climbing gyms' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "yes" + }, + { + "key": "charge", + "description": "Layer 'Climbing gyms' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "opening_hours", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, { "key": "climbing:length", @@ -302,20 +197,6 @@ "key": "climbing:boulder", "description": "Layer 'Climbing gyms' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "climbing:sport", "description": "Layer 'Climbing gyms' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", @@ -331,18 +212,8 @@ "description": "Layer 'Climbing gyms' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, { - "key": "climbing:traditional", - "description": "Layer 'Climbing gyms' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing gyms' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing gyms' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" + "key": "climbing:bolts:max", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:bolts:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, { "key": "climbing:speed", @@ -358,6 +229,35 @@ "key": "climbing:speed", "description": "Layer 'Climbing gyms' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "access", + "description": "Layer 'Climbing gyms' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Climbing gyms' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "permit" + }, + { + "key": "access", + "description": "Layer 'Climbing gyms' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Climbing gyms' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "members" + }, + { + "key": "access", + "description": "Layer 'Climbing gyms' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "no" + }, + { + "key": "access:description", + "description": "Layer 'Climbing gyms' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "climbing", "description": "The MapComplete theme Open Climbing Map has a layer Climbing routes showing features with this tag", @@ -407,22 +307,13 @@ }, { "key": "climbing:bolted", - "description": "Layer 'Climbing routes' shows climbing:bolted=no with a fixed text, namely 'This route is not bolted' (in the MapComplete.osm.be theme 'Open Climbing Map')", + "description": "Layer 'Climbing routes' shows climbing:bolted=no with a fixed text, namely 'This route is not bolted' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "no" }, - { - "key": "climbing:bolted", - "description": "Layer 'Climbing routes' shows climbing:bolted=no&climbing:bolts= with a fixed text, namely 'This route is not bolted' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no&climbing:bolts=" - }, { "key": "description", "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "url", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "access", "description": "Layer 'Climbing routes' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", @@ -452,93 +343,6 @@ "key": "access:description", "description": "Layer 'Climbing routes' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "climbing:length", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing routes' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing routes' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing routes' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing routes' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing routes' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing routes' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing routes' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing routes' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing routes' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing routes' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing routes' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing routes' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "sport", "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities showing features with this tag", @@ -602,6 +406,44 @@ "key": "url", "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "charge", + "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, + { + "key": "fee", + "description": "Layer 'Climbing opportunities' shows fee=no with a fixed text, namely 'Climbing here is free of charge' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Climbing opportunities' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "yes" + }, + { + "key": "charge", + "description": "Layer 'Climbing opportunities' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "yes" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "no" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "value": "limited" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "access", "description": "Layer 'Climbing opportunities' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", @@ -631,93 +473,6 @@ "key": "access:description", "description": "Layer 'Climbing opportunities' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "climbing:length", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "leisure", "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag", @@ -763,10 +518,6 @@ "description": "Layer 'Climbing opportunities?' shows climbing=no with a fixed text, namely 'Climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "no" }, - { - "key": "url", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "access", "description": "Layer 'Climbing opportunities?' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", @@ -795,93 +546,6 @@ { "key": "access:description", "description": "Layer 'Climbing opportunities?' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:length", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities?' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities?' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities?' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities?' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities?' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities?' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities?' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities?' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities?' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities?' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities?' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities?' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cycle_infra.json b/Docs/TagInfo/mapcomplete_cycle_infra.json index 89bccd1df5..b68fd2ec27 100644 --- a/Docs/TagInfo/mapcomplete_cycle_infra.json +++ b/Docs/TagInfo/mapcomplete_cycle_infra.json @@ -60,6 +60,41 @@ "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", "value": "secondary" }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "tertiary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "primary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "secondary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "service" + }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "pedestrian" + }, + { + "key": "highway", + "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", + "value": "living_street" + }, { "key": "highway", "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json index a64bd6ada8..dd52d0f395 100644 --- a/Docs/TagInfo/mapcomplete_cyclofix.json +++ b/Docs/TagInfo/mapcomplete_cyclofix.json @@ -116,6 +116,210 @@ "key": "opening_hours", "description": "Layer 'Bike cafe' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "amenity", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag", + "value": "bicycle_rental" + }, + { + "key": "bicycle_rental", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag" + }, + { + "key": "service:bicycle:rental", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag", + "value": "yes" + }, + { + "key": "rental", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "rental" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows shop=rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "shop" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "rental" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "bicycle" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "docking_station" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "key_dispensing_machine" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "dropoff_point" + }, + { + "key": "website", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "contact:website", + "description": "Layer 'Bicycle rental' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "email", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "contact:email", + "description": "Layer 'Bicycle rental' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "contact:phone", + "description": "Layer 'Bicycle rental' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "payment:cash", + "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:cash", + "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:app", + "description": "Layer 'Bicycle rental' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:membership_card", + "description": "Layer 'Bicycle rental' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "city_bike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "ebike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "bmx" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "mtb" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "kid_bike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "tandem" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "racebike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "bike_helmet" + }, + { + "key": "capacity:city_bike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "capacity:ebike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "capacity:kid_bike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "capacity:bmx", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "capacity:mtb", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "capacity:bicycle_pannier", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "capacity:tandem_bicycle", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "shop", "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike repair/shop showing features with this tag", @@ -169,7 +373,7 @@ }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'Deze business focuses on rental' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'This business focuses on rental' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "rental" }, { @@ -180,14 +384,26 @@ "key": "website", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:website", + "description": "Layer 'Bike repair/shop' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "phone", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:phone", + "description": "Layer 'Bike repair/shop' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "email", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:email", + "description": "Layer 'Bike repair/shop' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "opening_hours", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" @@ -262,7 +478,7 @@ }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=kid_bike with a fixed text, namely 'Bikes for childs can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bike repair/shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "kid_bike" }, { @@ -275,6 +491,11 @@ "description": "Layer 'Bike repair/shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "racebike" }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "bike_helmet" + }, { "key": "capacity:city_bike", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" @@ -515,12 +736,12 @@ }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "no" }, { @@ -615,7 +836,7 @@ }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand (also known as Presta)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand/Presta (narrow-width bike tires)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "sclaverand" }, { @@ -625,7 +846,7 @@ }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars and mountainbikes)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "schrader" }, { @@ -803,6 +1024,11 @@ "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Drinking water showing features with this tag", "value": "drinking_water" }, + { + "key": "drinking_water", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Drinking water showing features with this tag", + "value": "yes" + }, { "key": "image", "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -850,96 +1076,96 @@ }, { "key": "theme", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "theme", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "sport", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "association", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "association", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "ngo", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "ngo", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "club", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "club", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "image", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "description", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "website", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "contact:website", - "description": "Layer 'Bike related object' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "email", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "contact:email", - "description": "Layer 'Bike related object' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "phone", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "contact:phone", - "description": "Layer 'Bike related object' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "opening_hours", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "service:bicycle:cleaning", @@ -1151,6 +1377,1269 @@ { "key": "capacity:cargo_bike", "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "disused:amenity", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "construction:amenity", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "bicycle", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag", + "value": "yes" + }, + { + "key": "image", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "bicycle", + "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bicycles can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "motorcar", + "description": "Layer 'Charging stations' shows motorcar=yes with a fixed text, namely 'Cars can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "scooter", + "description": "Layer 'Charging stations' shows scooter=yes with a fixed text, namely 'Scooters can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "hgv", + "description": "Layer 'Charging stations' shows hgv=yes with a fixed text, namely 'Heavy good vehicles (such as trucks) can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "bus", + "description": "Layer 'Charging stations' shows bus=yes with a fixed text, namely 'Buses can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=yes with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "permissive" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=customers with a fixed text, namely 'Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=key with a fixed text, namely 'A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "key" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "private" + }, + { + "key": "capacity", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:schuko", + "description": "Layer 'Charging stations' shows socket:schuko=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:schuko", + "description": "Layer 'Charging stations' shows socket:schuko~^..*$&socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:typee", + "description": "Layer 'Charging stations' shows socket:typee=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:typee", + "description": "Layer 'Charging stations' shows socket:typee~^..*$&socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:chademo", + "description": "Layer 'Charging stations' shows socket:chademo=1 with a fixed text, namely 'Chademo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:chademo", + "description": "Layer 'Charging stations' shows socket:chademo~^..*$&socket:chademo!=1 with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_cable", + "description": "Layer 'Charging stations' shows socket:type1_cable=1 with a fixed text, namely 'Type 1 with cable (J1772)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:type1_cable", + "description": "Layer 'Charging stations' shows socket:type1_cable~^..*$&socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1", + "description": "Layer 'Charging stations' shows socket:type1=1 with a fixed text, namely 'Type 1 without cable (J1772)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:type1", + "description": "Layer 'Charging stations' shows socket:type1~^..*$&socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_combo", + "description": "Layer 'Charging stations' shows socket:type1_combo=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:type1_combo", + "description": "Layer 'Charging stations' shows socket:type1_combo~^..*$&socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger=1 with a fixed text, namely 'Tesla Supercharger' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:tesla_supercharger", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2", + "description": "Layer 'Charging stations' shows socket:type2=1 with a fixed text, namely 'Type 2 (mennekes)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:type2", + "description": "Layer 'Charging stations' shows socket:type2~^..*$&socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_combo", + "description": "Layer 'Charging stations' shows socket:type2_combo=1 with a fixed text, namely 'Type 2 CCS (mennekes)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:type2_combo", + "description": "Layer 'Charging stations' shows socket:type2_combo~^..*$&socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_cable", + "description": "Layer 'Charging stations' shows socket:type2_cable=1 with a fixed text, namely 'Type 2 with cable (mennekes)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:type2_cable", + "description": "Layer 'Charging stations' shows socket:type2_cable~^..*$&socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger_ccs", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:tesla_supercharger_ccs", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla Supercharger (destination)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:USB-A", + "description": "Layer 'Charging stations' shows socket:USB-A=1 with a fixed text, namely 'USB to charge phones and small electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:USB-A", + "description": "Layer 'Charging stations' shows socket:USB-A~^..*$&socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_3pin", + "description": "Layer 'Charging stations' shows socket:bosch_3pin=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:bosch_3pin", + "description": "Layer 'Charging stations' shows socket:bosch_3pin~^..*$&socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_5pin", + "description": "Layer 'Charging stations' shows socket:bosch_5pin=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "socket:bosch_5pin", + "description": "Layer 'Charging stations' shows socket:bosch_5pin~^..*$&socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:schuko", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:typee", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:chademo", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_cable", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_combo", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_combo", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_cable", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger_ccs", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:USB-A", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_3pin", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_5pin", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:schuko:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:schuko:voltage", + "description": "Layer 'Charging stations' shows socket:schuko:voltage=230 V with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "230 V" + }, + { + "key": "socket:schuko:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:schuko:current", + "description": "Layer 'Charging stations' shows socket:schuko:current=16 A with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "16 A" + }, + { + "key": "socket:schuko:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:schuko:output", + "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "3.6 kW" + }, + { + "key": "socket:typee:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:typee:voltage", + "description": "Layer 'Charging stations' shows socket:typee:voltage=230 V with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "230 V" + }, + { + "key": "socket:typee:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:typee:current", + "description": "Layer 'Charging stations' shows socket:typee:current=16 A with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "16 A" + }, + { + "key": "socket:typee:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:typee:output", + "description": "Layer 'Charging stations' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "3 kW" + }, + { + "key": "socket:typee:output", + "description": "Layer 'Charging stations' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "22 kW" + }, + { + "key": "socket:chademo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:chademo:voltage", + "description": "Layer 'Charging stations' shows socket:chademo:voltage=500 V with a fixed text, namely 'Chademo outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "500 V" + }, + { + "key": "socket:chademo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:chademo:current", + "description": "Layer 'Charging stations' shows socket:chademo:current=120 A with a fixed text, namely 'Chademo outputs at most 120 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "120 A" + }, + { + "key": "socket:chademo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:chademo:output", + "description": "Layer 'Charging stations' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "50 kW" + }, + { + "key": "socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=200 V with a fixed text, namely 'Type 1 with cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "200 V" + }, + { + "key": "socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=240 V with a fixed text, namely 'Type 1 with cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "240 V" + }, + { + "key": "socket:type1_cable:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_cable:current", + "description": "Layer 'Charging stations' shows socket:type1_cable:current=32 A with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "32 A" + }, + { + "key": "socket:type1_cable:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_cable:output", + "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "3.7 kW" + }, + { + "key": "socket:type1_cable:output", + "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "7 kW" + }, + { + "key": "socket:type1:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1:voltage", + "description": "Layer 'Charging stations' shows socket:type1:voltage=200 V with a fixed text, namely 'Type 1 without cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "200 V" + }, + { + "key": "socket:type1:voltage", + "description": "Layer 'Charging stations' shows socket:type1:voltage=240 V with a fixed text, namely 'Type 1 without cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "240 V" + }, + { + "key": "socket:type1:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1:current", + "description": "Layer 'Charging stations' shows socket:type1:current=32 A with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "32 A" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "3.7 kW" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "6.6 kW" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "7 kW" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "7.2 kW" + }, + { + "key": "socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=400 V with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "400 V" + }, + { + "key": "socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=1000 V with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 1000 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1000 V" + }, + { + "key": "socket:type1_combo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_combo:current", + "description": "Layer 'Charging stations' shows socket:type1_combo:current=50 A with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "50 A" + }, + { + "key": "socket:type1_combo:current", + "description": "Layer 'Charging stations' shows socket:type1_combo:current=125 A with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "125 A" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "50 kW" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "62.5 kW" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "150 kW" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "350 kW" + }, + { + "key": "socket:tesla_supercharger:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger:voltage", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:voltage=480 V with a fixed text, namely 'Tesla Supercharger outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "480 V" + }, + { + "key": "socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=125 A with a fixed text, namely 'Tesla Supercharger outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "125 A" + }, + { + "key": "socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=350 A with a fixed text, namely 'Tesla Supercharger outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "350 A" + }, + { + "key": "socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "120 kW" + }, + { + "key": "socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "150 kW" + }, + { + "key": "socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "250 kW" + }, + { + "key": "socket:type2:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2:voltage", + "description": "Layer 'Charging stations' shows socket:type2:voltage=230 V with a fixed text, namely 'Type 2 (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "230 V" + }, + { + "key": "socket:type2:voltage", + "description": "Layer 'Charging stations' shows socket:type2:voltage=400 V with a fixed text, namely 'Type 2 (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "400 V" + }, + { + "key": "socket:type2:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2:current", + "description": "Layer 'Charging stations' shows socket:type2:current=16 A with a fixed text, namely 'Type 2 (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "16 A" + }, + { + "key": "socket:type2:current", + "description": "Layer 'Charging stations' shows socket:type2:current=32 A with a fixed text, namely 'Type 2 (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "32 A" + }, + { + "key": "socket:type2:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2:output", + "description": "Layer 'Charging stations' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "11 kW" + }, + { + "key": "socket:type2:output", + "description": "Layer 'Charging stations' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "22 kW" + }, + { + "key": "socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=500 V with a fixed text, namely 'Type 2 CCS (mennekes) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "500 V" + }, + { + "key": "socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=920 V with a fixed text, namely 'Type 2 CCS (mennekes) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "920 V" + }, + { + "key": "socket:type2_combo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_combo:current", + "description": "Layer 'Charging stations' shows socket:type2_combo:current=125 A with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "125 A" + }, + { + "key": "socket:type2_combo:current", + "description": "Layer 'Charging stations' shows socket:type2_combo:current=350 A with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "350 A" + }, + { + "key": "socket:type2_combo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_combo:output", + "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "50 kW" + }, + { + "key": "socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=230 V with a fixed text, namely 'Type 2 with cable (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "230 V" + }, + { + "key": "socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=400 V with a fixed text, namely 'Type 2 with cable (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "400 V" + }, + { + "key": "socket:type2_cable:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_cable:current", + "description": "Layer 'Charging stations' shows socket:type2_cable:current=16 A with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "16 A" + }, + { + "key": "socket:type2_cable:current", + "description": "Layer 'Charging stations' shows socket:type2_cable:current=32 A with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "32 A" + }, + { + "key": "socket:type2_cable:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:type2_cable:output", + "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "11 kW" + }, + { + "key": "socket:type2_cable:output", + "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "22 kW" + }, + { + "key": "socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "500 V" + }, + { + "key": "socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "920 V" + }, + { + "key": "socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=125 A with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "125 A" + }, + { + "key": "socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=350 A with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "350 A" + }, + { + "key": "socket:tesla_supercharger_ccs:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_supercharger_ccs:output", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "50 kW" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 V with a fixed text, namely 'Tesla Supercharger (Destination) outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "480 V" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 A with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "125 A" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 A with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "350 A" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "120 kW" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "150 kW" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "250 kW" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 V with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "230 V" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 V with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "400 V" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 A with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "16 A" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 A with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "32 A" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "11 kW" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "22 kW" + }, + { + "key": "socket:USB-A:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:USB-A:voltage", + "description": "Layer 'Charging stations' shows socket:USB-A:voltage=5 V with a fixed text, namely 'USB to charge phones and small electronics outputs 5 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "5 V" + }, + { + "key": "socket:USB-A:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:USB-A:current", + "description": "Layer 'Charging stations' shows socket:USB-A:current=1 A with a fixed text, namely 'USB to charge phones and small electronics outputs at most 1 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1 A" + }, + { + "key": "socket:USB-A:current", + "description": "Layer 'Charging stations' shows socket:USB-A:current=2 A with a fixed text, namely 'USB to charge phones and small electronics outputs at most 2 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "2 A" + }, + { + "key": "socket:USB-A:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:USB-A:output", + "description": "Layer 'Charging stations' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "5W" + }, + { + "key": "socket:USB-A:output", + "description": "Layer 'Charging stations' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "10W" + }, + { + "key": "socket:bosch_3pin:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_3pin:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_3pin:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_5pin:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_5pin:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "socket:bosch_5pin:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "opening_hours", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "opening_hours", + "description": "Layer 'Charging stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "24/7" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key fee:conditional.", + "value": "" + }, + { + "key": "charge", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "authentication:none", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key fee:conditional.", + "value": "" + }, + { + "key": "charge", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "authentication:none", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no @ customers" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key fee:conditional.", + "value": "" + }, + { + "key": "charge", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "payment:cash", + "description": "Layer 'Charging stations' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:app", + "description": "Layer 'Charging stations' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "payment:membership_card", + "description": "Layer 'Charging stations' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:membership_card", + "description": "Layer 'Charging stations' shows authentication:membership_card=yes with a fixed text, namely 'Authentication by a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:app", + "description": "Layer 'Charging stations' shows authentication:app=yes with a fixed text, namely 'Authentication by an app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:phone_call", + "description": "Layer 'Charging stations' shows authentication:phone_call=yes with a fixed text, namely 'Authentication via phone call is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:short_message", + "description": "Layer 'Charging stations' shows authentication:short_message=yes with a fixed text, namely 'Authentication via SMS is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:nfc", + "description": "Layer 'Charging stations' shows authentication:nfc=yes with a fixed text, namely 'Authentication via NFC is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:money_card", + "description": "Layer 'Charging stations' shows authentication:money_card=yes with a fixed text, namely 'Authentication via Money Card is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:debit_card", + "description": "Layer 'Charging stations' shows authentication:debit_card=yes with a fixed text, namely 'Authentication via debit card is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:none", + "description": "Layer 'Charging stations' shows authentication:none=yes with a fixed text, namely 'Charging here is (also) possible without authentication' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "authentication:phone_call:number", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'authentication:phone_call:number' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "maxstay", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'maxstay' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "maxstay", + "description": "Layer 'Charging stations' shows maxstay=unlimited with a fixed text, namely 'No timelimit on leaving your vehicle here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "unlimited" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'network' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "no:network", + "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network, e.g. because the charging station is maintained by a local business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=none with a fixed text, namely 'Not part of a bigger network' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "none" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=AeroVironment with a fixed text, namely 'AeroVironment' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "AeroVironment" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Blink with a fixed text, namely 'Blink' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "Blink" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=EVgo with a fixed text, namely 'EVgo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "EVgo" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Allego with a fixed text, namely 'Allego' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "Allego" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Blue Corner with a fixed text, namely 'Blue Corner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "Blue Corner" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Tesla with a fixed text, namely 'Tesla' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "Tesla" + }, + { + "key": "operator", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network= with a fixed text, namely 'Actually, {operator} is the network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key network.", + "value": "" + }, + { + "key": "phone", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "email", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "website", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "location", + "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "-1" + }, + { + "key": "ref", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "broken" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "charging_station" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "charging_station" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "charging_station" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "parking:fee", + "description": "Layer 'Charging stations' shows parking:fee=no with a fixed text, namely 'No additional parking cost while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "parking:fee", + "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_drinking_water.json b/Docs/TagInfo/mapcomplete_drinking_water.json index df7485549b..f88a09f7d3 100644 --- a/Docs/TagInfo/mapcomplete_drinking_water.json +++ b/Docs/TagInfo/mapcomplete_drinking_water.json @@ -15,6 +15,11 @@ "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag", "value": "drinking_water" }, + { + "key": "drinking_water", + "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag", + "value": "yes" + }, { "key": "image", "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" diff --git a/Docs/TagInfo/mapcomplete_education.json b/Docs/TagInfo/mapcomplete_education.json new file mode 100644 index 0000000000..b36803452e --- /dev/null +++ b/Docs/TagInfo/mapcomplete_education.json @@ -0,0 +1,2737 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Education", + "description": "On this map, you'll find information about all types of schools and eduction and can easily add more information", + "project_url": "https://mapcomplete.osm.be/education", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/school/college.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "amenity", + "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag", + "value": "college" + }, + { + "key": "amenity", + "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag", + "value": "university" + }, + { + "key": "amenity", + "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag", + "value": "school" + }, + { + "key": "isced:2011:level", + "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag" + }, + { + "key": "isced:2011:level", + "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag" + }, + { + "key": "amenity", + "description": "Layer 'Colleges and universities' shows amenity=college with a fixed text, namely 'This is an institution of post-secondary, non-tertiary education. One has to have completed secondary education to enroll here, but no bachelor (or higher) degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "college" + }, + { + "key": "amenity", + "description": "Layer 'Colleges and universities' shows amenity=university with a fixed text, namely 'This is a university, an institution of tertiary education where bachelor degrees or higher are awarded.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "university" + }, + { + "key": "isced:2011:level", + "description": "Layer 'Colleges and universities' shows isced:2011:level=bachelor with a fixed text, namely 'Bachelor degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bachelor" + }, + { + "key": "isced:2011:level", + "description": "Layer 'Colleges and universities' shows isced:2011:level=master with a fixed text, namely 'Master degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "master" + }, + { + "key": "isced:2011:level", + "description": "Layer 'Colleges and universities' shows isced:2011:level=doctorate with a fixed text, namely 'Doctorate degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "doctorate" + }, + { + "key": "capacity", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mixed" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "separated" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "male" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "female" + }, + { + "key": "website", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:website", + "description": "Layer 'Colleges and universities' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "email", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:email", + "description": "Layer 'Colleges and universities' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "phone", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:phone", + "description": "Layer 'Colleges and universities' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Education has a layer Primary and secondary schools showing features with this tag", + "value": "school" + }, + { + "key": "name", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "capacity", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=kindergarten with a fixed text, namely 'This is a school with a kindergarten section where young kids receive some education which prepares reading and writing.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kindergarten" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=primary with a fixed text, namely 'This is a school where one learns primary skills such as basic literacy and numerical skills.
Pupils typically enroll from 6 years old till 12 years old
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "primary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=secondary with a fixed text, namely 'This is a secondary school which offers all grades' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=lower_secondary with a fixed text, namely 'This is a secondary school which does not have all grades, but offers first and second grade' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lower_secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=middle_secondary with a fixed text, namely 'This is a secondary school which does not have all grades, but offers third and fourth grade' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "middle_secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=upper_secondary with a fixed text, namely 'This is a secondary school which does not have all grades, but offers fifth and sixth grade' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "upper_secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=post_secondary with a fixed text, namely 'This school offers post-secondary education (e.g. a seventh or eight specialisation year)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "post_secondary" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mixed" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "separated" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "male" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "female" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'school:for' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows with a fixed text, namely 'This is a school where students study skills at their age-adequate level.
There are little or no special facilities to cater for students with special needs or facilities are ad-hoc
' (in the MapComplete.osm.be theme 'Education') Picking this answer will delete the key school:for.", + "value": "" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=mainstream with a fixed text, namely 'This is a school for students without special needs
This includes students who can follow the courses with small, ad hoc measurements
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mainstream" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=adults with a fixed text, namely 'This is a school where adults are taught skills on the level as specified.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "adults" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=autism with a fixed text, namely 'This is a school for students with autism' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "autism" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=learning_disabilities with a fixed text, namely 'This is a school for students with learning disabilities' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "learning_disabilities" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=blind with a fixed text, namely 'This is a school for blind students or students with sight impairments' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "blind" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=deaf with a fixed text, namely 'This is a school for deaf students or students with hearing impairments' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "deaf" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=disabilities with a fixed text, namely 'This is a school for students with disabilities' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "disabilities" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=special_needs with a fixed text, namely 'This is a school for students with special needs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "special_needs" + }, + { + "key": "website", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:website", + "description": "Layer 'Primary and secondary schools' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "phone", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:phone", + "description": "Layer 'Primary and secondary schools' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "email", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:email", + "description": "Layer 'Primary and secondary schools' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows with a fixed text, namely 'The main language of this school is unknown' (in the MapComplete.osm.be theme 'Education') Picking this answer will delete the key school:language.", + "value": "" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ay with a fixed text, namely 'Aymara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ay" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ab with a fixed text, namely 'Abkhaz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ab" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=an with a fixed text, namely 'Aragonese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "an" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=de with a fixed text, namely 'German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "de" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ca with a fixed text, namely 'Catalan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ca" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=az with a fixed text, namely 'Azerbaijani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "az" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hr with a fixed text, namely 'Croatian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=eo with a fixed text, namely 'Esperanto' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "eo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ba with a fixed text, namely 'Bashkir' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ba" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ar with a fixed text, namely 'Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ar" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=he with a fixed text, namely 'Hebrew' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "he" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gl with a fixed text, namely 'Galician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=el with a fixed text, namely 'Modern Greek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "el" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cs with a fixed text, namely 'Czech' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=da with a fixed text, namely 'Danish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "da" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=af with a fixed text, namely 'Afrikaans' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "af" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ga with a fixed text, namely 'Irish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ga" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hi with a fixed text, namely 'Hindi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bg with a fixed text, namely 'Bulgarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=be with a fixed text, namely 'Belarusian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "be" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gu with a fixed text, namely 'Gujarati' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cy with a fixed text, namely 'Welsh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fr with a fixed text, namely 'French' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hsb with a fixed text, namely 'Upper Sorbian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hsb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fy with a fixed text, namely 'West Frisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ak with a fixed text, namely 'Akan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ak" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=am with a fixed text, namely 'Amharic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "am" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=es with a fixed text, namely 'Spanish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "es" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bs with a fixed text, namely 'Bosnian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=diq with a fixed text, namely 'Zazaki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "diq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dz with a fixed text, namely 'Dzongkha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=co with a fixed text, namely 'Corsican' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "co" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cr with a fixed text, namely 'Cree' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=csb with a fixed text, namely 'Kashubian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "csb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gv with a fixed text, namely 'Manx' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cv with a fixed text, namely 'Chuvash' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bn with a fixed text, namely 'Bengali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gd with a fixed text, namely 'Scottish Gaelic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=av with a fixed text, namely 'Avaric' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "av" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=awa with a fixed text, namely 'Awadhi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "awa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=br with a fixed text, namely 'Breton' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "br" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ee with a fixed text, namely 'Ewe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ee" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dag with a fixed text, namely 'Dagbani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dv with a fixed text, namely 'Maldivian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fi with a fixed text, namely 'Finnish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=en with a fixed text, namely 'English' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "en" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ady with a fixed text, namely 'Adyghe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ady" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=as with a fixed text, namely 'Assamese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "as" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gn with a fixed text, namely 'Guarani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hif with a fixed text, namely 'Fiji Hindi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hif" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ast with a fixed text, namely 'Asturian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ast" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dsb with a fixed text, namely 'Lower Sorbian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dsb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=haw with a fixed text, namely 'Hawaiian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "haw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=glk with a fixed text, namely 'Gilaki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "glk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gag with a fixed text, namely 'Gagauz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gan with a fixed text, namely 'Gan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gan" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ase with a fixed text, namely 'American Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ase" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cal with a fixed text, namely 'Carolinian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cal" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gil with a fixed text, namely 'Gilbertese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gil" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=arz with a fixed text, namely 'Egyptian Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "arz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ban with a fixed text, namely 'Balinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ban" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hak with a fixed text, namely 'Hakka' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hak" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=din with a fixed text, namely 'Dinka' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "din" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=egl with a fixed text, namely 'Emilian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "egl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dty with a fixed text, namely 'Doteli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dty" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fa with a fixed text, namely 'Persian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cnr with a fixed text, namely 'Montenegrin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cnr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bxr with a fixed text, namely 'Russia Buriat' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bxr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ckb with a fixed text, namely 'Sorani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ckb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=eu with a fixed text, namely 'Basque' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "eu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=et with a fixed text, namely 'Estonian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "et" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bar with a fixed text, namely 'Bavarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bar" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fo with a fixed text, namely 'Faroese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=frr with a fixed text, namely 'North Frisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "frr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ch with a fixed text, namely 'Chamorro' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ch" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=chy with a fixed text, namely 'Cheyenne' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "chy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ce with a fixed text, namely 'Chechen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ce" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=no with a fixed text, namely 'Norwegian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "no" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bjn with a fixed text, namely 'Banjar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bjn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ceb with a fixed text, namely 'Cebuano' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ceb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ha with a fixed text, namely 'Hausa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ha" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=frp with a fixed text, namely 'Franco-Provençal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "frp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=chr with a fixed text, namely 'Cherokee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "chr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gcr with a fixed text, namely 'Guianan Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gcr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gor with a fixed text, namely 'Gorontalo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gor" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ext with a fixed text, namely 'Extremaduran' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ext" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fj with a fixed text, namely 'Fijian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fur with a fixed text, namely 'Friulian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fur" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bss with a fixed text, namely 'Kose' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bss" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=prg with a fixed text, namely 'Old Prussian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "prg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ses with a fixed text, namely 'Koyraboro Senni' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ses" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pko with a fixed text, namely 'Pökoot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pko" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ccp with a fixed text, namely 'Chakma' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ccp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dua with a fixed text, namely 'Duala' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dua" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tr with a fixed text, namely 'Turkish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ur with a fixed text, namely 'Urdu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ur" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bm with a fixed text, namely 'Bambara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ff with a fixed text, namely 'Fula' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ff" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ru with a fixed text, namely 'Russian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ru" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sid with a fixed text, namely 'Sidamo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sid" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=niu with a fixed text, namely 'Niuean' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "niu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=oj with a fixed text, namely 'Ojibwe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "oj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vot with a fixed text, namely 'Votic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "vot" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bfi with a fixed text, namely 'British Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bfi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bla with a fixed text, namely 'Blackfoot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bla" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bbc with a fixed text, namely 'Toba Batak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bbc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ctg with a fixed text, namely 'Chittagonian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ctg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=brh with a fixed text, namely 'Brahui' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "brh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bug with a fixed text, namely 'Bugis' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bug" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pa with a fixed text, namely 'Punjabi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pnb with a fixed text, namely 'Punjabi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pnb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=brx with a fixed text, namely 'Bodo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "brx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sjd with a fixed text, namely 'Kildin Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sjd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bo with a fixed text, namely 'Tibetan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bi with a fixed text, namely 'Bislama' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cdo with a fixed text, namely 'Min Dong' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cdo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sw with a fixed text, namely 'Swahili' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gom with a fixed text, namely 'Goan Konkani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gom" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mfe with a fixed text, namely 'Mauritian Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mfe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sdc with a fixed text, namely 'Sassarese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sdc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pdt with a fixed text, namely 'Plautdietsch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pdt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sty with a fixed text, namely 'Siberian Tatar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sty" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rmc with a fixed text, namely 'Carpathian Romani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rmc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nys with a fixed text, namely 'Noongar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nys" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gsw-fr with a fixed text, namely 'Alsatian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gsw-fr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zun with a fixed text, namely 'Zuni' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zun" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sms with a fixed text, namely 'Skolt Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sms" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pis with a fixed text, namely 'Pijin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pis" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nr with a fixed text, namely 'Southern Ndebele' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=umu with a fixed text, namely 'Munsee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "umu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gaa with a fixed text, namely 'Ga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gaa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fon with a fixed text, namely 'Fon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fon" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=loz with a fixed text, namely 'Lozi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "loz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=crs with a fixed text, namely 'Seychellois Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "crs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tru with a fixed text, namely 'Turoyo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tru" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=agq with a fixed text, namely 'Aghem' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "agq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ary with a fixed text, namely 'Moroccan Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ary" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=atj with a fixed text, namely 'Atikamekw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "atj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=alt with a fixed text, namely 'Altai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "alt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ta with a fixed text, namely 'Tamil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ta" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ps with a fixed text, namely 'Pashto' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ps" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nqo with a fixed text, namely 'N'Ko' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nqo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ro with a fixed text, namely 'Romanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ro" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cbk-zam with a fixed text, namely 'Chavacano' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cbk-zam" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ovd with a fixed text, namely 'Elfdalian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ovd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vmf with a fixed text, namely 'Main-Franconian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "vmf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bto with a fixed text, namely 'Rinconada Bikol' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bto" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bcc with a fixed text, namely 'Southern Balochi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bcc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=crl with a fixed text, namely 'Northern East Cree' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "crl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lrc with a fixed text, namely 'Northern Luri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lrc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=akl with a fixed text, namely 'Aklan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "akl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bpy with a fixed text, namely 'Bishnupriya Manipuri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bpy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mic with a fixed text, namely 'Mi'kmaq' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mic" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sk with a fixed text, namely 'Slovak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sl with a fixed text, namely 'Slovene' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ryu with a fixed text, namely 'Okinawan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ryu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yai with a fixed text, namely 'Yaghnobi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yai" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=efi with a fixed text, namely 'Efik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "efi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=te with a fixed text, namely 'Telugu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "te" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yi with a fixed text, namely 'Yiddish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tg with a fixed text, namely 'Tajik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bat-smg with a fixed text, namely 'Samogitian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bat-smg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nod with a fixed text, namely 'Northern Thai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nod" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lag with a fixed text, namely 'Rangi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krj with a fixed text, namely 'Kinaray-a' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "krj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yap with a fixed text, namely 'Yapese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yap" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ydg with a fixed text, namely 'Yidgha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ydg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vi with a fixed text, namely 'Vietnamese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "vi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=it with a fixed text, namely 'Italian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "it" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bzg with a fixed text, namely 'Babuza' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bzg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pyu with a fixed text, namely 'Puyuma' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pyu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=guc with a fixed text, namely 'Wayuu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "guc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ood with a fixed text, namely 'O'odham' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ood" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bdr with a fixed text, namely 'West Coast Bajau' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bdr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=btm with a fixed text, namely 'Mandailing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "btm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gcf with a fixed text, namely 'Guadeloupean Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gcf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=srq with a fixed text, namely 'Sirionó' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "srq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ins with a fixed text, namely 'Indian Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ins" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rki with a fixed text, namely 'Arakanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rki" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wls with a fixed text, namely 'Wallisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wls" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sje with a fixed text, namely 'Pite Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sje" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=smj with a fixed text, namely 'Lule Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "smj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kum with a fixed text, namely 'Kumyk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kum" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nui with a fixed text, namely 'Kombe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nui" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh-min-nan with a fixed text, namely 'Southern Min' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zh-min-nan" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pl with a fixed text, namely 'Polish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cpx with a fixed text, namely 'Pu-Xian Min' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cpx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=khg with a fixed text, namely 'Khams Tibetan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "khg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fkv with a fixed text, namely 'Kven' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fkv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fuf with a fixed text, namely 'Pular' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fuf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=jax with a fixed text, namely 'Jambi Malay' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "jax" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dtp with a fixed text, namely 'Kadazandusun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dtp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zgh with a fixed text, namely 'Standard Moroccan Berber' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zgh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bgn with a fixed text, namely 'Western Balochi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bgn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yav with a fixed text, namely 'Yangben' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yav" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sv with a fixed text, namely 'Swedish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=azb with a fixed text, namely 'South Azerbaijani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "azb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xnb with a fixed text, namely 'Kanakanavu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "xnb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fa-af with a fixed text, namely 'Dari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fa-af" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=qu with a fixed text, namely 'Quechua' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "qu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sei with a fixed text, namely 'Seri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sei" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sq with a fixed text, namely 'Albanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uk with a fixed text, namely 'Ukrainian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "uk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uz with a fixed text, namely 'Uzbek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "uz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ka with a fixed text, namely 'Georgian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ka" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pt with a fixed text, namely 'Portuguese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hy with a fixed text, namely 'Armenian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nl with a fixed text, namely 'Dutch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rm with a fixed text, namely 'Romansh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aln with a fixed text, namely 'Gheg Albanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "aln" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mr with a fixed text, namely 'Marathi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mg with a fixed text, namely 'Malagasy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sh with a fixed text, namely 'Serbo-Croatian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zu with a fixed text, namely 'Zulu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=is with a fixed text, namely 'Icelandic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "is" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lb with a fixed text, namely 'Luxembourgish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tk with a fixed text, namely 'Turkmen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=th with a fixed text, namely 'Thai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "th" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ja with a fixed text, namely 'Japanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ja" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lv with a fixed text, namely 'Latvian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rmy with a fixed text, namely 'Romani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rmy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=km with a fixed text, namely 'Khmer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "km" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lo with a fixed text, namely 'Lao' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=so with a fixed text, namely 'Somali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "so" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sma with a fixed text, namely 'Southern Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sma" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=moe with a fixed text, namely 'Innu-aimun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "moe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sr with a fixed text, namely 'Serbian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lt with a fixed text, namely 'Lithuanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hu with a fixed text, namely 'Hungarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=my with a fixed text, namely 'Burmese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "my" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ms with a fixed text, namely 'Malay' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ms" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xh with a fixed text, namely 'Xhosa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "xh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=udm with a fixed text, namely 'Udmurt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "udm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rue with a fixed text, namely 'Rusyn' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rue" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=stq with a fixed text, namely 'Saterland Frisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "stq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ky with a fixed text, namely 'Kyrgyz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ky" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mt with a fixed text, namely 'Maltese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mk with a fixed text, namely 'Macedonian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=za with a fixed text, namely 'Zhuang' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "za" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ug with a fixed text, namely 'Uyghur' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ug" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ko with a fixed text, namely 'Korean' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ko" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=si with a fixed text, namely 'Sinhala' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "si" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kk with a fixed text, namely 'Kazakh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=na with a fixed text, namely 'Nauruan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "na" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nv with a fixed text, namely 'Navajo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fit with a fixed text, namely 'Meänkieli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fit" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xmf with a fixed text, namely 'Mingrelian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "xmf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aa with a fixed text, namely 'Afar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "aa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=anp with a fixed text, namely 'Angika' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "anp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rup with a fixed text, namely 'Aromanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rup" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vec with a fixed text, namely 'Venetian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "vec" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vep with a fixed text, namely 'Veps' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "vep" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bh with a fixed text, namely 'Bhojpuri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=shy with a fixed text, namely 'Shawiya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "shy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hz with a fixed text, namely 'Herero' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mnw with a fixed text, namely 'Mon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mnw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mzn with a fixed text, namely 'Mazanderani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mzn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=oc with a fixed text, namely 'Occitan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "oc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=id with a fixed text, namely 'Indonesian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "id" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ve with a fixed text, namely 'Venda' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ve" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=min with a fixed text, namely 'Minangkabau' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "min" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mwl with a fixed text, namely 'Mirandese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mwl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pdc with a fixed text, namely 'Pennsylvania German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pdc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pfl with a fixed text, namely 'Palatinate German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pfl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nn with a fixed text, namely 'Nynorsk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nb with a fixed text, namely 'Bokmål' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kw with a fixed text, namely 'Cornish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sco with a fixed text, namely 'Scots' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sco" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mdf with a fixed text, namely 'Moksha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mdf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sd with a fixed text, namely 'Sindhi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tt with a fixed text, namely 'Tatar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=szl with a fixed text, namely 'Silesian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "szl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kaa with a fixed text, namely 'Karakalpak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kaa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=jv with a fixed text, namely 'Javanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "jv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tl with a fixed text, namely 'Tagalog' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=to with a fixed text, namely 'Tongan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "to" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=myv with a fixed text, namely 'Erzya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "myv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lez with a fixed text, namely 'Lezgian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lez" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cho with a fixed text, namely 'Choctaw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cho" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kl with a fixed text, namely 'Greenlandic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pms with a fixed text, namely 'Piedmontese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pms" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=crh with a fixed text, namely 'Crimean Tatar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "crh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=smn with a fixed text, namely 'Inari Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "smn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ksh with a fixed text, namely 'Ripuarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ksh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ny with a fixed text, namely 'Chewa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ny" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mn with a fixed text, namely 'Mongolian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ks with a fixed text, namely 'Kashmiri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ks" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ig with a fixed text, namely 'Igbo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ig" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rw with a fixed text, namely 'Kinyarwanda' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nds with a fixed text, namely 'Low German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nds" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ng with a fixed text, namely 'Ndonga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ng" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=skr with a fixed text, namely 'Saraiki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "skr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=se with a fixed text, namely 'Northern Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "se" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ik with a fixed text, namely 'Inupiaq' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ik" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kjh with a fixed text, namely 'Khakas' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kjh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ne with a fixed text, namely 'Nepali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ne" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nap with a fixed text, namely 'Neapolitan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nap" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lg with a fixed text, namely 'Luganda' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ht with a fixed text, namely 'Haitian Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ht" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=os with a fixed text, namely 'Ossetian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "os" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=new with a fixed text, namely 'Newar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "new" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=su with a fixed text, namely 'Sundanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "su" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=iu with a fixed text, namely 'Inuktitut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "iu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ki with a fixed text, namely 'Gikuyu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ki" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kn with a fixed text, namely 'Kannada' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=inh with a fixed text, namely 'Ingush' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "inh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pcd with a fixed text, namely 'Picard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pcd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sc with a fixed text, namely 'Sardinian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=srn with a fixed text, namely 'Sranan Tongo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "srn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rn with a fixed text, namely 'Kirundi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ho with a fixed text, namely 'Hiri Motu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ho" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sg with a fixed text, namely 'Sango' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pap with a fixed text, namely 'Papiamento' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pap" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kbd with a fixed text, namely 'Kabardian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kbd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=or with a fixed text, namely 'Odia' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "or" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=arn with a fixed text, namely 'Mapudungun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "arn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=om with a fixed text, namely 'Oromo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "om" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sat with a fixed text, namely 'Santali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sat" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ii with a fixed text, namely 'Nuosu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ii" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kbp with a fixed text, namely 'Kabiye' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kbp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kab with a fixed text, namely 'Kabyle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kab" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kg with a fixed text, namely 'Kongo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krc with a fixed text, namely 'Karachay-Balkar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "krc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tum with a fixed text, namely 'Tumbuka' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tum" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tsg with a fixed text, namely 'Tausug' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tsg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=shi with a fixed text, namely 'Shilha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "shi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sn with a fixed text, namely 'Shona' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tpi with a fixed text, namely 'Tok Pisin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tpi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rif with a fixed text, namely 'Tarifit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rif" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tyv with a fixed text, namely 'Tuvan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tyv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ti with a fixed text, namely 'Tigrinya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ti" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tet with a fixed text, namely 'Tetum' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tet" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=scn with a fixed text, namely 'Sicilian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "scn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lmo with a fixed text, namely 'Lombard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lmo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ilo with a fixed text, namely 'Ilocano' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ilo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sm with a fixed text, namely 'Samoan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ss with a fixed text, namely 'Swazi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ss" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mni with a fixed text, namely 'Meitei' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mni" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kv with a fixed text, namely 'Komi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ku with a fixed text, namely 'Kurdish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ku" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lad with a fixed text, namely 'Judaeo-Spanish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lad" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ts with a fixed text, namely 'Tsonga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ts" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=st with a fixed text, namely 'Sesotho' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "st" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lij with a fixed text, namely 'Ligurian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lij" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mai with a fixed text, namely 'Maithili' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mai" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tvl with a fixed text, namely 'Tuvaluan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tvl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tn with a fixed text, namely 'Tswana' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wa with a fixed text, namely 'Walloon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nan with a fixed text, namely 'Southern Min' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nan" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pih with a fixed text, namely 'Pitkern' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pih" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lld with a fixed text, namely 'Ladin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lld" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ty with a fixed text, namely 'Tahitian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ty" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wo with a fixed text, namely 'Wolof' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=war with a fixed text, namely 'Waray' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "war" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lbe with a fixed text, namely 'Lak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lbe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ltg with a fixed text, namely 'Latgalian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ltg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mad with a fixed text, namely 'Madurese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mad" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mh with a fixed text, namely 'Marshallese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mo with a fixed text, namely 'Moldovan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yrk with a fixed text, namely 'Nenets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yrk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=chn with a fixed text, namely 'Chinook Jargon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "chn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kr with a fixed text, namely 'Kanuri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tw with a fixed text, namely 'Twi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=shn with a fixed text, namely 'Shan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "shn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vls with a fixed text, namely 'West Flemish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "vls" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pag with a fixed text, namely 'Pangasinan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nso with a fixed text, namely 'Northern Sotho' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nso" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ln with a fixed text, namely 'Lingala' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ln" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zea with a fixed text, namely 'Zeelandic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zea" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tay with a fixed text, namely 'Atayal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tay" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wuu with a fixed text, namely 'Wu Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wuu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sah with a fixed text, namely 'Sakha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sah" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=jam with a fixed text, namely 'Jamaican Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "jam" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lkt with a fixed text, namely 'Lakota' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lkt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krl with a fixed text, namely 'Karelian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "krl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tcy with a fixed text, namely 'Tulu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tcy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sju with a fixed text, namely 'Ume Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sju" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sou with a fixed text, namely 'Southern Thai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sou" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=adx with a fixed text, namely 'Amdo Tibetan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "adx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sli with a fixed text, namely 'Silesian German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sli" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=als with a fixed text, namely 'Swiss German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "als" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kha with a fixed text, namely 'Khasi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kha" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mnc with a fixed text, namely 'Manchu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mnc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yo with a fixed text, namely 'Yoruba' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ml with a fixed text, namely 'Malayalam' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ml" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hai with a fixed text, namely 'Haida' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hai" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kut with a fixed text, namely 'Kutenai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kut" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hoc with a fixed text, namely 'Ho' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hoc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gsg with a fixed text, namely 'German Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gsg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=li with a fixed text, namely 'Limburgish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "li" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hyw with a fixed text, namely 'Western Armenian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hyw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=esu with a fixed text, namely 'Central Alaskan Yup'ik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "esu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=abq with a fixed text, namely 'Abaza' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "abq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tli with a fixed text, namely 'Tlingit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tli" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=trv with a fixed text, namely 'Seediq' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "trv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=szy with a fixed text, namely 'Sakizaya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "szy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lus with a fixed text, namely 'Mizo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lus" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=olo with a fixed text, namely 'Livvi-Karelian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "olo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pnt with a fixed text, namely 'Pontic Greek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pnt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=koi with a fixed text, namely 'Permyak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "koi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nog with a fixed text, namely 'Nogai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nog" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wbl with a fixed text, namely 'Wakhi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wbl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tly with a fixed text, namely 'Talysh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tly" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mhr with a fixed text, namely 'Meadow Mari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mhr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ruq with a fixed text, namely 'Megleno-Romanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ruq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mwv with a fixed text, namely 'Mentawai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mwv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=koy with a fixed text, namely 'Koyukon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "koy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=clc with a fixed text, namely 'Chilcotin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "clc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fiu-vro with a fixed text, namely 'Võro' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fiu-vro" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=frc with a fixed text, namely 'Louisiana French' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "frc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=guw with a fixed text, namely 'Gun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "guw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cnh with a fixed text, namely 'Hakha-Chin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cnh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sjm with a fixed text, namely 'Mapun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sjm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bzs with a fixed text, namely 'Brazilian Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bzs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kcg with a fixed text, namely 'Tyap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kcg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mi with a fixed text, namely 'Māori' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aeb with a fixed text, namely 'Tunisian Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "aeb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nrf-gg with a fixed text, namely 'Guernésiais' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nrf-gg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lki with a fixed text, namely 'Laki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lki" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bej with a fixed text, namely 'Beja' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bej" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ckt with a fixed text, namely 'Chukchi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ckt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mus with a fixed text, namely 'Muscogee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mus" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pwn with a fixed text, namely 'Paiwan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pwn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kj with a fixed text, namely 'Kwanyama' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rgn with a fixed text, namely 'Romagnol' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rgn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=abs with a fixed text, namely 'Ambonese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "abs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sxr with a fixed text, namely 'Saaroa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sxr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ckv with a fixed text, namely 'Kavalan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ckv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tsu with a fixed text, namely 'Tsou' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tsu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xsy with a fixed text, namely 'Saisiyat' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "xsy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lvk with a fixed text, namely 'Lavukaleve' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lvk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh-yue with a fixed text, namely 'Yue Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zh-yue" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tvn with a fixed text, namely 'Tavoyan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tvn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pmy with a fixed text, namely 'Papuan Malay' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pmy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kbg with a fixed text, namely 'Khamba' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kbg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rwr with a fixed text, namely 'Marwari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rwr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ttm with a fixed text, namely 'Northern Tutchone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ttm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mrj with a fixed text, namely 'Hill Mari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mrj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nia with a fixed text, namely 'Nias' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nia" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yrl with a fixed text, namely 'Nheengatu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "yrl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cak with a fixed text, namely 'Kaqchikel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cak" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ami with a fixed text, namely 'Amis' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ami" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krx with a fixed text, namely 'Karon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "krx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hil with a fixed text, namely 'Hiligaynon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hil" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uun with a fixed text, namely 'Pazeh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "uun" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sjt with a fixed text, namely 'Ter Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sjt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wal with a fixed text, namely 'Wolaytta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wal" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wym with a fixed text, namely 'Vilamovian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "wym" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=arq with a fixed text, namely 'Algerian Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "arq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bsk with a fixed text, namely 'Burushaski' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bsk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bqi with a fixed text, namely 'Bakhtiari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bqi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hrx with a fixed text, namely 'Hunsrik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "hrx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ssf with a fixed text, namely 'Thao' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ssf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mrh with a fixed text, namely 'Mara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "mrh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aoc with a fixed text, namely 'Pemon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "aoc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tsk with a fixed text, namely 'Tseku' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tsk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=luz with a fixed text, namely 'Southern Luri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "luz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tce with a fixed text, namely 'Southern Tutchone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tce" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=quc with a fixed text, namely 'K’iche’' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "quc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bnn with a fixed text, namely 'Bunun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bnn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lzz with a fixed text, namely 'Laz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "lzz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sdh with a fixed text, namely 'Southern Kurdish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "sdh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nsk with a fixed text, namely 'Naskapi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "nsk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=akz with a fixed text, namely 'Alabama' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "akz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kri with a fixed text, namely 'Krio' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kri" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kea with a fixed text, namely 'Cape Verdean Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kea" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dru with a fixed text, namely 'Rukai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "dru" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tzm with a fixed text, namely 'Central Atlas Tamazight' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "tzm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bfq with a fixed text, namely 'Badaga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "bfq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=khw with a fixed text, namely 'Khowar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "khw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uzs with a fixed text, namely 'Southern Uzbek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "uzs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rmf with a fixed text, namely 'Finnish Kalo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rmf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=osa with a fixed text, namely 'Osage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "osa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cps with a fixed text, namely 'Capiznon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "cps" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pjt with a fixed text, namely 'Pitjantjatjara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pjt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kjp with a fixed text, namely 'Eastern Pwo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kjp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gpe with a fixed text, namely 'Ghanaian Pidgin English' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "gpe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kiu with a fixed text, namely 'Kirmanjki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kiu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rar with a fixed text, namely 'Cook Islands Maori' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "rar" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ksw with a fixed text, namely 'S'gaw Karen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "ksw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh_Hant with a fixed text, namely 'Simplified Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "zh_Hant" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pt_BR with a fixed text, namely 'Brazilian Portuguese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "pt_BR" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fil with a fixed text, namely 'Filipino' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "fil" + }, + { + "key": "amenity", + "description": "The MapComplete theme Education has a layer Kindergartens and childcare showing features with this tag", + "value": "childcare" + }, + { + "key": "amenity", + "description": "The MapComplete theme Education has a layer Kindergartens and childcare showing features with this tag", + "value": "kindergarten" + }, + { + "key": "isced:level:2011", + "description": "The MapComplete theme Education has a layer Kindergartens and childcare showing features with this tag", + "value": "early_childhood" + }, + { + "key": "amenity", + "description": "Layer 'Kindergartens and childcare' shows amenity=kindergarten with a fixed text, namely 'This is a kindergarten (also known as preschool) where small kids receive early education.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "kindergarten" + }, + { + "key": "amenity", + "description": "Layer 'Kindergartens and childcare' shows amenity=childcare with a fixed text, namely 'This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')", + "value": "childcare" + }, + { + "key": "name", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "website", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:website", + "description": "Layer 'Kindergartens and childcare' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "email", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:email", + "description": "Layer 'Kindergartens and childcare' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "phone", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "contact:phone", + "description": "Layer 'Kindergartens and childcare' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "opening_hours", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Education')" + }, + { + "key": "capacity", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Education')" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_entrances.json b/Docs/TagInfo/mapcomplete_entrances.json index c133427845..87bfd16abd 100644 --- a/Docs/TagInfo/mapcomplete_entrances.json +++ b/Docs/TagInfo/mapcomplete_entrances.json @@ -39,6 +39,10 @@ "description": "The MapComplete theme Entrances has a layer Entrance showing features with this tag", "value": "door" }, + { + "key": "door", + "description": "The MapComplete theme Entrances has a layer Entrance showing features with this tag" + }, { "key": "image", "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -55,6 +59,35 @@ "key": "wikipedia", "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Entrances')" + }, + { + "key": "location", + "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Entrances')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "-1" + }, { "key": "entrance", "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Entrances')", @@ -92,12 +125,12 @@ }, { "key": "indoor", - "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", "value": "service" }, { @@ -218,6 +251,15 @@ { "key": "width", "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the MapComplete.osm.be theme 'Entrances')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'Entrances')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows kerb:height=0 with a fixed text, namely 'This door does not have a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "0" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_food.json b/Docs/TagInfo/mapcomplete_food.json index 57bbd49485..70e4c3c981 100644 --- a/Docs/TagInfo/mapcomplete_food.json +++ b/Docs/TagInfo/mapcomplete_food.json @@ -36,18 +36,47 @@ "key": "wikipedia", "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Restaurants and fast food')" + }, + { + "key": "location", + "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Restaurants and fast food') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "value": "-1" + }, { "key": "name", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Restaurants and fast food')" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", "value": "fast_food" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focussed on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", "value": "restaurant" }, { @@ -202,6 +231,16 @@ "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", "value": "no" }, + { + "key": "delivery", + "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "value": "yes" + }, + { + "key": "delivery", + "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "value": "no" + }, { "key": "diet:vegetarian", "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", @@ -294,12 +333,12 @@ }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'Vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", "value": "vegetable" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'Animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", + "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", "value": "animal" }, { diff --git a/Docs/TagInfo/mapcomplete_fritures.json b/Docs/TagInfo/mapcomplete_fritures.json index 78e9e45dc1..20b71812eb 100644 --- a/Docs/TagInfo/mapcomplete_fritures.json +++ b/Docs/TagInfo/mapcomplete_fritures.json @@ -12,8 +12,7 @@ "tags": [ { "key": "cuisine", - "description": "The MapComplete theme Fries shops has a layer Fries shop showing features with this tag", - "value": "friture" + "description": "The MapComplete theme Fries shops has a layer Fries shop showing features with this tag" }, { "key": "amenity", @@ -41,18 +40,47 @@ "key": "wikipedia", "description": "The layer 'Fries shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Fries shop' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Fries shops')" + }, + { + "key": "location", + "description": "Layer 'Fries shop' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Fries shops')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Fries shop' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Fries shop' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Fries shops') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Fries shop' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Fries shop' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "value": "-1" + }, { "key": "name", "description": "Layer 'Fries shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Fries shops')" }, { "key": "amenity", - "description": "Layer 'Fries shop' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "description": "Layer 'Fries shop' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", "value": "fast_food" }, { "key": "amenity", - "description": "Layer 'Fries shop' shows amenity=restaurant with a fixed text, namely 'A restaurant, focussed on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "description": "Layer 'Fries shop' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", "value": "restaurant" }, { @@ -207,6 +235,16 @@ "description": "Layer 'Fries shop' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", "value": "no" }, + { + "key": "delivery", + "description": "Layer 'Fries shop' shows delivery=yes with a fixed text, namely 'This business does home delivery (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "value": "yes" + }, + { + "key": "delivery", + "description": "Layer 'Fries shop' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "value": "no" + }, { "key": "diet:vegetarian", "description": "Layer 'Fries shop' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", @@ -299,12 +337,12 @@ }, { "key": "friture:oil", - "description": "Layer 'Fries shop' shows friture:oil=vegetable with a fixed text, namely 'Vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "description": "Layer 'Fries shop' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", "value": "vegetable" }, { "key": "friture:oil", - "description": "Layer 'Fries shop' shows friture:oil=animal with a fixed text, namely 'Animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", + "description": "Layer 'Fries shop' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", "value": "animal" }, { @@ -361,353 +399,6 @@ "key": "dog", "description": "Layer 'Fries shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", "value": "unleashed" - }, - { - "key": "amenity", - "description": "The MapComplete theme Fries shops has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" - }, - { - "key": "amenity", - "description": "The MapComplete theme Fries shops has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "fast_food" - }, - { - "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focussed on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "restaurant" - }, - { - "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "contact:website", - "description": "Layer 'Restaurants and fast food' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "email", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "contact:email", - "description": "Layer 'Restaurants and fast food' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "contact:phone", - "description": "Layer 'Restaurants and fast food' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "payment:cash", - "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'Fries shops')" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "pizza" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "friture" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "pasta" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'This is kebab shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "kebab" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'This is a sandwichbar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "sandwich" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgers are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "burger" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "sushi" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffee is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "coffee" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'This is an italian restaurant (which serves more then pasta and pizza)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "italian" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "french" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "chinese" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "greek" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "indian" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "turkish" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "thai" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "only" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "only" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "only" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "only" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'Vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "vegetable" - }, - { - "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'Animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "animal" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "only" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "limited" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "ask" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Fries shops')", - "value": "unleashed" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_governments.json b/Docs/TagInfo/mapcomplete_governments.json new file mode 100644 index 0000000000..a120d9068d --- /dev/null +++ b/Docs/TagInfo/mapcomplete_governments.json @@ -0,0 +1,63 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Governmental Offices", + "description": "On this map, Governmental offices are shown and can be easily added", + "project_url": "https://mapcomplete.osm.be/governments", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/themes/onwheels/crest.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "office", + "description": "The MapComplete theme Governmental Offices has a layer governments showing features with this tag", + "value": "government" + }, + { + "key": "image", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "phone", + "description": "Layer 'governments' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Governmental Offices')" + }, + { + "key": "contact:phone", + "description": "Layer 'governments' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Governmental Offices')" + }, + { + "key": "email", + "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Governmental Offices')" + }, + { + "key": "contact:email", + "description": "Layer 'governments' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Governmental Offices')" + }, + { + "key": "website", + "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Governmental Offices')" + }, + { + "key": "contact:website", + "description": "Layer 'governments' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Governmental Offices')" + }, + { + "key": "name", + "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Governmental Offices')" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_hackerspaces.json b/Docs/TagInfo/mapcomplete_hackerspaces.json index f10096e894..bb931e1f44 100644 --- a/Docs/TagInfo/mapcomplete_hackerspaces.json +++ b/Docs/TagInfo/mapcomplete_hackerspaces.json @@ -62,6 +62,36 @@ "description": "Layer 'Hackerspace' shows opening_hours=24/7 with a fixed text, namely 'Opened 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", "value": "24/7" }, + { + "key": "service:3dprinter", + "description": "Layer 'Hackerspace' shows service:3dprinter=yes with a fixed text, namely 'There is a 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", + "value": "yes" + }, + { + "key": "service:3dprinter", + "description": "Layer 'Hackerspace' shows service:3dprinter=no with a fixed text, namely 'There is no 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", + "value": "no" + }, + { + "key": "service:lasercutter", + "description": "Layer 'Hackerspace' shows service:lasercutter=yes with a fixed text, namely 'There is a laser cutter available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", + "value": "yes" + }, + { + "key": "service:lasercutter", + "description": "Layer 'Hackerspace' shows service:lasercutter=no with a fixed text, namely 'There is no laser cutter available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", + "value": "no" + }, + { + "key": "service:cnc_drilling_machine", + "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=yes with a fixed text, namely 'There is a CNC drill available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", + "value": "yes" + }, + { + "key": "service:cnc_drilling_machine", + "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=no with a fixed text, namely 'There is no CNC drill available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", + "value": "no" + }, { "key": "wheelchair", "description": "Layer 'Hackerspace' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces')", diff --git a/Docs/TagInfo/mapcomplete_hailhydrant.json b/Docs/TagInfo/mapcomplete_hailhydrant.json index 8aedd27ba4..fcb3709058 100644 --- a/Docs/TagInfo/mapcomplete_hailhydrant.json +++ b/Docs/TagInfo/mapcomplete_hailhydrant.json @@ -106,38 +106,38 @@ }, { "key": "emergency", - "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of fire extinguishers. showing features with this tag", + "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of fire extinguishers showing features with this tag", "value": "fire_extinguisher" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers.' shows and asks freeform values for key 'location' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers.' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", + "description": "Layer 'Map of fire extinguishers' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", "value": "indoor" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers.' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", + "description": "Layer 'Map of fire extinguishers' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", "value": "outdoor" }, { "key": "image", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "amenity", diff --git a/Docs/TagInfo/mapcomplete_healthcare.json b/Docs/TagInfo/mapcomplete_healthcare.json new file mode 100644 index 0000000000..649fb2966e --- /dev/null +++ b/Docs/TagInfo/mapcomplete_healthcare.json @@ -0,0 +1,202 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Healthcare", + "description": "On this map, various healthcare related items are shown", + "project_url": "https://mapcomplete.osm.be/healthcare", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/doctors/doctors.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "amenity", + "description": "The MapComplete theme Healthcare has a layer Doctors showing features with this tag", + "value": "doctors" + }, + { + "key": "amenity", + "description": "The MapComplete theme Healthcare has a layer Doctors showing features with this tag", + "value": "dentist" + }, + { + "key": "healthcare", + "description": "The MapComplete theme Healthcare has a layer Doctors showing features with this tag", + "value": "physiotherapist" + }, + { + "key": "image", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "opening_hours", + "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "phone", + "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:phone", + "description": "Layer 'Doctors' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "email", + "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:email", + "description": "Layer 'Doctors' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "website", + "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:website", + "description": "Layer 'Doctors' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "name", + "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=general with a fixed text, namely 'This is a general practitioner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "general" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=gynaecology with a fixed text, namely 'This is a gynaecologist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "gynaecology" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=psychiatry with a fixed text, namely 'This is a psychiatrist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "psychiatry" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=paediatrics with a fixed text, namely 'This is a paediatrician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "paediatrics" + }, + { + "key": "amenity", + "description": "The MapComplete theme Healthcare has a layer Hospitals showing features with this tag", + "value": "hospital" + }, + { + "key": "name", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "phone", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:phone", + "description": "Layer 'Hospitals' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "email", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:email", + "description": "Layer 'Hospitals' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "website", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:website", + "description": "Layer 'Hospitals' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Healthcare has a layer pharmacy showing features with this tag", + "value": "pharmacy" + }, + { + "key": "image", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "opening_hours", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "phone", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:phone", + "description": "Layer 'pharmacy' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "email", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:email", + "description": "Layer 'pharmacy' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "website", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "contact:website", + "description": "Layer 'pharmacy' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Healthcare')" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "no" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Healthcare')", + "value": "limited" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_indoors.json b/Docs/TagInfo/mapcomplete_indoors.json new file mode 100644 index 0000000000..56bf124cc0 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_indoors.json @@ -0,0 +1,310 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Indoors", + "description": "On this map, publicly accessible indoor places are shown", + "project_url": "https://mapcomplete.osm.be/indoors", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/entrance/entrance.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "indoor", + "description": "The MapComplete theme Indoors has a layer indoors showing features with this tag", + "value": "room" + }, + { + "key": "indoor", + "description": "The MapComplete theme Indoors has a layer indoors showing features with this tag", + "value": "area" + }, + { + "key": "indoor", + "description": "The MapComplete theme Indoors has a layer indoors showing features with this tag", + "value": "wall" + }, + { + "key": "indoor", + "description": "The MapComplete theme Indoors has a layer indoors showing features with this tag", + "value": "door" + }, + { + "key": "indoor", + "description": "The MapComplete theme Indoors has a layer indoors showing features with this tag", + "value": "level" + }, + { + "key": "image", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'indoors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Indoors')" + }, + { + "key": "highway", + "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", + "value": "path" + }, + { + "key": "highway", + "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", + "value": "corridor" + }, + { + "key": "highway", + "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", + "value": "steps" + }, + { + "key": "entrance", + "description": "The MapComplete theme Indoors has a layer Entrance showing features with this tag" + }, + { + "key": "indoor", + "description": "The MapComplete theme Indoors has a layer Entrance showing features with this tag", + "value": "door" + }, + { + "key": "door", + "description": "The MapComplete theme Indoors has a layer Entrance showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Indoors')" + }, + { + "key": "location", + "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Indoors')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "-1" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Indoors')", + "value": "yes" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key entrance.", + "value": "" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "door" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "main" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "secondary" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "service" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "exit" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "entrance" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "emergency" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "home" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the MapComplete.osm.be theme 'Indoors')", + "value": "yes" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "hinged" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "revolving" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "sliding" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "overhead" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the MapComplete.osm.be theme 'Indoors')", + "value": "yes" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "motion" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "floor" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "slowdown_button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "continuous" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a button' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "serviced_on_button_press" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_request with a fixed text, namely 'This door will be opened by staff when requested' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "serviced_on_request" + }, + { + "key": "width", + "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the MapComplete.osm.be theme 'Indoors')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'Indoors')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows kerb:height=0 with a fixed text, namely 'This door does not have a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Indoors')", + "value": "0" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json b/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json new file mode 100644 index 0000000000..cdc0aabad8 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json @@ -0,0 +1,726 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Kerbs and crossings", + "description": "A map showing kerbs and crossings", + "project_url": "https://mapcomplete.osm.be/kerbs_and_crossings", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/kerbs/KerbIcon.svg", + "contact_name": "Pieter Vander Vennet, Robin van der Linde", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "cycleway" + }, + { + "key": "cycleway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "lane" + }, + { + "key": "cycleway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "shared_lane" + }, + { + "key": "cycleway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "track" + }, + { + "key": "cyclestreet", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "yes" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "residential" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "tertiary" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "unclassified" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "primary" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "secondary" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "tertiary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "primary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "secondary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "service" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "pedestrian" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "living_street" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "path" + }, + { + "key": "bicycle", + "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", + "value": "designated" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=shared_lane with a fixed text, namely 'There is a shared lane' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "shared_lane" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=lane with a fixed text, namely 'There is a lane next to the road (separated with paint)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "lane" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=track with a fixed text, namely 'There is a track, but no cycleway drawn separately from this road on the map.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "track" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=separate with a fixed text, namely 'There is a separately drawn cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "separate" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=no with a fixed text, namely 'This road is not lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=sunset-sunrise with a fixed text, namely 'This road is lit at night' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "sunset-sunrise" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=24/7 with a fixed text, namely 'This road is lit 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "24/7" + }, + { + "key": "cyclestreet", + "description": "Layer 'Cycleways and roads' shows cyclestreet=yes with a fixed text, namely 'This is a cyclestreet, and a 30km/h zone.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "cyclestreet", + "description": "Layer 'Cycleways and roads' shows cyclestreet=yes with a fixed text, namely 'This is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "cyclestreet", + "description": "Layer 'Cycleways and roads' shows with a fixed text, namely 'This is not a cyclestreet.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings') Picking this answer will delete the key cyclestreet.", + "value": "" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=20 with a fixed text, namely 'The maximum speed is 20 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "20" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=30 with a fixed text, namely 'The maximum speed is 30 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "30" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=50 with a fixed text, namely 'The maximum speed is 50 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "50" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=70 with a fixed text, namely 'The maximum speed is 70 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "70" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=90 with a fixed text, namely 'The maximum speed is 90 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "90" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=unpaved with a fixed text, namely 'This cycleway is unpaved' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "unpaved" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=paved with a fixed text, namely 'This cycleway is paved' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "paved" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "asphalt" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "paving_stones" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "concrete" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "cobblestone" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "unhewn_cobblestone" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "sett" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "wood" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "gravel" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "fine_gravel" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "pebblestone" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "ground" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "excellent" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "good" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "intermediate" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "bad" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "very_bad" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "horrible" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "very_horrible" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "impassable" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "unpaved" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "paved" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "asphalt" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "paving_stones" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "concrete" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "cobblestone" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "unhewn_cobblestone" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "sett" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "wood" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "gravel" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "fine_gravel" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "pebblestone" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "ground" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "excellent" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "good" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "intermediate" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "bad" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "very_bad" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "horrible" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "very_horrible" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "impassable" + }, + { + "key": "width:carriageway", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'width:carriageway' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign~^BE:D7;.*$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D9" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D10" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "none" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign~^BE:D7;.*$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D9" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D10" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G11 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "NL:G11" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G12a with a fixed text, namely 'Compulsory (moped)cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "NL:G12a" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G13 with a fixed text, namely 'Non-compulsory cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "NL:G13" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "none" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M6 with a fixed text, namely 'Mopeds must use the cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7;BE:M6" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M13 with a fixed text, namely 'Speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7;BE:M13" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M14 with a fixed text, namely 'Mopeds and speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7;BE:M14" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M7 with a fixed text, namely 'Mopeds are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7;BE:M7" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M15 with a fixed text, namely 'Speedpedelecs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7;BE:M15" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M16 with a fixed text, namely 'Mopeds and speedpedelecs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "BE:D7;BE:M16" + }, + { + "key": "cycleway:traffic_sign:supplementary", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign:supplementary=none with a fixed text, namely 'No supplementary traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "none" + }, + { + "key": "cycleway:buffer", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:buffer' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "dashed_line" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "solid_line" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "parking_lane" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "kerb" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "dashed_line" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "solid_line" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "parking_lane" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "kerb" + }, + { + "key": "highway", + "description": "The MapComplete theme Kerbs and crossings has a layer Crossings showing features with this tag", + "value": "crossing" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=uncontrolled with a fixed text, namely 'Crossing, without traffic lights' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "uncontrolled" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "traffic_signals" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "zebra" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "unmarked" + }, + { + "key": "crossing_ref", + "description": "Layer 'Crossings' shows crossing_ref=zebra with a fixed text, namely 'This is a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "zebra" + }, + { + "key": "crossing_ref", + "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings') Picking this answer will delete the key crossing_ref.", + "value": "" + }, + { + "key": "bicycle", + "description": "Layer 'Crossings' shows bicycle=yes with a fixed text, namely 'A cyclist can use this crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "bicycle", + "description": "Layer 'Crossings' shows bicycle=no with a fixed text, namely 'A cyclist can not use this crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "crossing:island", + "description": "Layer 'Crossings' shows crossing:island=yes with a fixed text, namely 'This crossing has an island in the middle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "crossing:island", + "description": "Layer 'Crossings' shows crossing:island=no with a fixed text, namely 'This crossing does not have an island in the middle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Crossings' shows tactile_paving=yes with a fixed text, namely 'This crossing has tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Crossings' shows tactile_paving=no with a fixed text, namely 'This crossing does not have tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Crossings' shows tactile_paving=incorrect with a fixed text, namely 'This crossing has tactile paving, but is not correct' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "incorrect" + }, + { + "key": "button_operated", + "description": "Layer 'Crossings' shows button_operated=yes with a fixed text, namely 'This traffic light has a button to request green light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "button_operated", + "description": "Layer 'Crossings' shows button_operated=no with a fixed text, namely 'This traffic light does not have a button to request green light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "red_turn:right:bicycle", + "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "red_turn:right:bicycle", + "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "red_turn:right:bicycle", + "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "red_turn:straight:bicycle", + "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "red_turn:straight:bicycle", + "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "red_turn:straight:bicycle", + "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "barrier", + "description": "The MapComplete theme Kerbs and crossings has a layer Kerbs showing features with this tag", + "value": "kerb" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=raised with a fixed text, namely 'This kerb is raised (>3 cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "raised" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=lowered with a fixed text, namely 'This kerb is lowered (~3 cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "lowered" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=flush with a fixed text, namely 'This kerb is flush (~0cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "flush" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=yes with a fixed text, namely 'There is a kerb of unknown height' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=yes with a fixed text, namely 'This kerb has tactile paving.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=no with a fixed text, namely 'This kerb does not have tactile paving.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=incorrect with a fixed text, namely 'This kerb has tactile paving, but it is incorrect' (in the MapComplete.osm.be theme 'Kerbs and crossings')", + "value": "incorrect" + }, + { + "key": "kerb:height", + "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'Kerbs and crossings')" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_maxspeed.json b/Docs/TagInfo/mapcomplete_maxspeed.json new file mode 100644 index 0000000000..c0f4b16028 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_maxspeed.json @@ -0,0 +1,98 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Maxspeed", + "description": "This map shows the legally allowed maximum speed on every road.", + "project_url": "https://mapcomplete.osm.be/maxspeed", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/themes/maxspeed/maxspeed_logo.svg", + "contact_name": "Pieter Vander Vennet, ", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "residential" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "living_street" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "motorway" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "tertiary" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "unclassified" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "secondary" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "primary" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "trunk" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "motorway" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "tertiary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "secondary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "primary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "trunk_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", + "value": "motorway_link" + }, + { + "key": "maxspeed", + "description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Maxspeed')" + }, + { + "key": "highway", + "description": "Layer 'Maxspeed' shows highway=living_street&_country!=be with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' (in the MapComplete.osm.be theme 'Maxspeed')", + "value": "living_street" + }, + { + "key": "highway", + "description": "Layer 'Maxspeed' shows highway=living_street with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Maxspeed')", + "value": "living_street" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_nature.json b/Docs/TagInfo/mapcomplete_nature.json index c837081702..1c14a5fd45 100644 --- a/Docs/TagInfo/mapcomplete_nature.json +++ b/Docs/TagInfo/mapcomplete_nature.json @@ -15,6 +15,11 @@ "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag", "value": "drinking_water" }, + { + "key": "drinking_water", + "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag", + "value": "yes" + }, { "key": "image", "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -339,6 +344,10 @@ "key": "wikidata", "description": "Layer 'Nature reserve' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Into nature')" }, + { + "key": "wikipedia", + "description": "Layer 'Nature reserve' shows wikipedia~^..*$ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Into nature')" + }, { "key": "wikidata", "description": "Layer 'Nature reserve' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key wikidata.", @@ -577,6 +586,35 @@ "key": "wikipedia", "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "location", + "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Into nature')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "-1" + }, { "key": "material", "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Into nature')" @@ -591,6 +629,11 @@ "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "concrete" }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "plastic" + }, { "key": "amenity", "description": "The MapComplete theme Into nature has a layer Toilets showing features with this tag", @@ -612,6 +655,35 @@ "key": "wikipedia", "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Into nature')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "-1" + }, { "key": "access", "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Into nature')" @@ -684,6 +756,15 @@ "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "no" }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "designated" + }, + { + "key": "door:width", + "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'Into nature')" + }, { "key": "toilets:position", "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", @@ -758,35 +839,6 @@ "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "no" }, - { - "key": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Into nature')" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Into nature')", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key level.", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", - "value": "-1" - }, { "key": "description", "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Into nature')" diff --git a/Docs/TagInfo/mapcomplete_observation_towers.json b/Docs/TagInfo/mapcomplete_observation_towers.json index e41ab821dc..27881a1dcc 100644 --- a/Docs/TagInfo/mapcomplete_observation_towers.json +++ b/Docs/TagInfo/mapcomplete_observation_towers.json @@ -128,6 +128,10 @@ "key": "wikidata", "description": "Layer 'Observation towers' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Observation towers')" }, + { + "key": "wikipedia", + "description": "Layer 'Observation towers' shows wikipedia~^..*$ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Observation towers')" + }, { "key": "wikidata", "description": "Layer 'Observation towers' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Observation towers') Picking this answer will delete the key wikidata.", diff --git a/Docs/TagInfo/mapcomplete_onwheels.json b/Docs/TagInfo/mapcomplete_onwheels.json new file mode 100644 index 0000000000..41a504ace5 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_onwheels.json @@ -0,0 +1,2606 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete OnWheels", + "description": "On this map, publicly weelchair accessible places are shown and can be easily added", + "project_url": "https://mapcomplete.osm.be/onwheels", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/themes/onwheels/crest.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", + "value": "bar" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", + "value": "pub" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", + "value": "cafe" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", + "value": "biergarten" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", + "value": "nightclub" + }, + { + "key": "image", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "name", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=pub with a fixed text, namely 'A pub, mostly for drinking beers in a warm, relaxed interior' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pub" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=bar with a fixed text, namely 'A more modern and commercial bar, possibly with a music and light installation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bar" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=cafe with a fixed text, namely 'A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "cafe" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=restaurant with a fixed text, namely 'A restuarant where one can get a proper meal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "restaurant" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'An open space where beer is served, typically seen in Germany' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "biergarten" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=nightclub with a fixed text, namely 'This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "nightclub" + }, + { + "key": "opening_hours", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'Cafés and pubs' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'Cafés and pubs' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'Cafés and pubs' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "payment:cash", + "description": "Layer 'Cafés and pubs' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Cafés and pubs' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "outside" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "ask" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "leashed" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "unleashed" + }, + { + "key": "entrance", + "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag" + }, + { + "key": "indoor", + "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag", + "value": "door" + }, + { + "key": "door", + "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key entrance.", + "value": "" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "door" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "main" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "secondary" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "service" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "exit" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "entrance" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "emergency" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "home" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hinged" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "revolving" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "sliding" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "overhead" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "motion" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "floor" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "slowdown_button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "continuous" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a button' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "serviced_on_button_press" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_request with a fixed text, namely 'This door will be opened by staff when requested' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "serviced_on_request" + }, + { + "key": "width", + "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows kerb:height=0 with a fixed text, namely 'This door does not have a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag", + "value": "fast_food" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag", + "value": "restaurant" + }, + { + "key": "image", + "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "name", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "amenity", + "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "fast_food" + }, + { + "key": "amenity", + "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "restaurant" + }, + { + "key": "opening_hours", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'Restaurants and fast food' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'Restaurants and fast food' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'Restaurants and fast food' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "payment:cash", + "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pizza" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "friture" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pasta" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'This is kebab shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "kebab" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'This is a sandwichbar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "sandwich" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgers are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "burger" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "sushi" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffee is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "coffee" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'This is an italian restaurant (which serves more then pasta and pizza)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "italian" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "french" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "chinese" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "greek" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "indian" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "turkish" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "thai" + }, + { + "key": "takeaway", + "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only" + }, + { + "key": "takeaway", + "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "takeaway", + "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "delivery", + "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "delivery", + "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "friture:oil", + "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "vegetable" + }, + { + "key": "friture:oil", + "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "animal" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "ask" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "leashed" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "unleashed" + }, + { + "key": "barrier", + "description": "The MapComplete theme OnWheels has a layer Kerbs showing features with this tag", + "value": "kerb" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=raised with a fixed text, namely 'This kerb is raised (>3 cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "raised" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=lowered with a fixed text, namely 'This kerb is lowered (~3 cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "lowered" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=flush with a fixed text, namely 'This kerb is flush (~0cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "flush" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=yes with a fixed text, namely 'There is a kerb of unknown height' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=yes with a fixed text, namely 'This kerb has tactile paving.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=no with a fixed text, namely 'This kerb does not have tactile paving.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=incorrect with a fixed text, namely 'This kerb has tactile paving, but it is incorrect' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "incorrect" + }, + { + "key": "kerb:height", + "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Parking showing features with this tag", + "value": "parking" + }, + { + "key": "image", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "surface" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "street_side" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "multi-storey" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "rooftop" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "lane" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "carports" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "garage_boxes" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "layby" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "sheds" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "capacity", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "shop", + "description": "The MapComplete theme OnWheels has a layer Shop showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "agrarian" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "alcohol" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "anime" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antiques Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "antiques" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "appliance" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "art" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "baby_goods" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bag" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bakery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bathroom_furnishing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "beauty" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bed" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "beverages" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bicycle" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "boat" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "bookmaker" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Book Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "books" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "brewing_supplies" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "butcher" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "camera" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "candles" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "cannabis" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "car" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "car_parts" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "car_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "caravan" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "carpet" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "catalogue" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "charity" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "cheese" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "chemist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "chocolate" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "clothes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "coffee" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "collector" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "computer" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "confectionery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "convenience" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "copyshop" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "cosmetics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Country Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "country_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "craft" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "curtain" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "dairy" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Deli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "deli" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "department_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "doityourself" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "doors" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "dry_cleaning" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "e-cigarette" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "electrical" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "electronics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "erotic" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "fabric" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "farm" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "fashion_accessories" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "fireplace" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "fishing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "flooring" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "florist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "frame" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "frozen_food" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "fuel" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "funeral_directors" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "furniture" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "games" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "garden_centre" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "gas" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "general" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "gift" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "greengrocer" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hairdresser" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hairdresser_supply" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hardware" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "health_food" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hearing_aids" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "herbalist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hifi" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hobby with a fixed text, namely 'Hobby Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hobby" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "household_linen" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "houseware" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "hunting" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "interior_decoration" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "jewelry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "kiosk" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "kitchen" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "laundry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "leather" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "lighting" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "locksmith" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "lottery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "mall" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "massage" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "medical_supply" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "military_surplus" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "mobile_phone" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "model" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "money_lender" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "motorcycle" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "motorcycle_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "music" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "musical_instrument" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newspaper/Magazine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "newsagent" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "nutrition_supplements" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "optician" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "outdoor" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "outpost" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "paint" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "party" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pastry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawn Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pawnbroker" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "perfumery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pet" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Grooming Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pet_grooming" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "photo" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pottery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "printer_ink" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "psychic" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "pyrotechnics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "radiotechnics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "religion" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "rental" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "scuba_diving" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "seafood" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Consignment/Thrift Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "second_hand" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "sewing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "shoe_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "shoes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "spices" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "sports" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "stationery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "storage_rental" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "supermarket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "swimming_pool" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tailor" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tattoo" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tea" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "telecommunication" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "ticket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tiles" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tobacco" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tool_hire" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "toys" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "trade" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "travel_agency" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "trophy" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "tyres" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "vacuum_cleaner" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Variety Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "variety_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "video" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "video_games" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "watches" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "water" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "water_sports" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "weapons" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "wholesale" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "wigs" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "window_blind" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "wine" + }, + { + "key": "opening_hours", + "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'Shop' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'Shop' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'Shop' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "payment:cash", + "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "level", + "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Shop' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Shop' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Shop' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Shop' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "service:print:A4", + "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:print:A3", + "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:print:A2", + "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:print:A1", + "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:print:A0", + "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Toilets showing features with this tag", + "value": "toilets" + }, + { + "key": "image", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "key" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "public" + }, + { + "key": "fee", + "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "fee", + "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "charge", + "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "payment:cash", + "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "opening_hours", + "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "opening_hours", + "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely 'Opened 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "24/7" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "designated" + }, + { + "key": "door:width", + "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "seated" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "urinal" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "squat" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "seated;urinal" + }, + { + "key": "changing_table", + "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "changing_table", + "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'The changing table is in the toilet for women. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "female_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'The changing table is in the toilet for men. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "male_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'The changing table is in the toilet for wheelchair users. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "wheelchair_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=dedicated_room with a fixed text, namely 'The changing table is in a dedicated room. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "dedicated_room" + }, + { + "key": "toilets:handwashing", + "description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'This toilets have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "toilets:handwashing", + "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'This toilets don't have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "toilets:paper_supplied", + "description": "Layer 'Toilets' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "toilets:paper_supplied", + "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "description", + "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer pharmacy showing features with this tag", + "value": "pharmacy" + }, + { + "key": "image", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "opening_hours", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'pharmacy' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'pharmacy' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'pharmacy' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Doctors showing features with this tag", + "value": "doctors" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Doctors showing features with this tag", + "value": "dentist" + }, + { + "key": "healthcare", + "description": "The MapComplete theme OnWheels has a layer Doctors showing features with this tag", + "value": "physiotherapist" + }, + { + "key": "image", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "opening_hours", + "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'Doctors' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'Doctors' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'Doctors' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "name", + "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=general with a fixed text, namely 'This is a general practitioner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "general" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=gynaecology with a fixed text, namely 'This is a gynaecologist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "gynaecology" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=psychiatry with a fixed text, namely 'This is a psychiatrist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "psychiatry" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=paediatrics with a fixed text, namely 'This is a paediatrician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "paediatrics" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Hospitals showing features with this tag", + "value": "hospital" + }, + { + "key": "name", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'Hospitals' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'Hospitals' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'Hospitals' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Reception desks showing features with this tag", + "value": "reception_desk" + }, + { + "key": "image", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Reception desks' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "desk:height", + "description": "Layer 'Reception desks' shows and asks freeform values for key 'desk:height' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "hearing_loop", + "description": "Layer 'Reception desks' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "hearing_loop", + "description": "Layer 'Reception desks' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer elevator showing features with this tag", + "value": "elevator" + }, + { + "key": "image", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'elevator' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'elevator' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'elevator' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'elevator' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'elevator' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'elevator' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "-1" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows operational_status=broken with a fixed text, namely 'This elevator is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "broken" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows operational_status=closed with a fixed text, namely 'This elevator is closed e.g. because renovation works are going on' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "closed" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows operational_status=ok with a fixed text, namely 'This elevator works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "ok" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows with a fixed text, namely 'This elevator works' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "door:width", + "description": "Layer 'elevator' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "elevator:width", + "description": "Layer 'elevator' shows and asks freeform values for key 'elevator:width' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "elevator:depth", + "description": "Layer 'elevator' shows and asks freeform values for key 'elevator:depth' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "hearing_loop", + "description": "Layer 'elevator' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "hearing_loop", + "description": "Layer 'elevator' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "tourism", + "description": "The MapComplete theme OnWheels has a layer Hotels showing features with this tag", + "value": "hotel" + }, + { + "key": "image", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Hotels' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Hotels' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'Hotels' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Hotels' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'Hotels' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Hotels' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'Hotels' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "office", + "description": "The MapComplete theme OnWheels has a layer governments showing features with this tag", + "value": "government" + }, + { + "key": "image", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "phone", + "description": "Layer 'governments' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:phone", + "description": "Layer 'governments' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:email", + "description": "Layer 'governments' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "contact:website", + "description": "Layer 'governments' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "name", + "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_parkings.json b/Docs/TagInfo/mapcomplete_parkings.json index d9058dff61..aac1019d25 100644 --- a/Docs/TagInfo/mapcomplete_parkings.json +++ b/Docs/TagInfo/mapcomplete_parkings.json @@ -30,6 +30,103 @@ { "key": "wikipedia", "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Parking')" + }, + { + "key": "location", + "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Parking')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Parking') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "-1" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "surface" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "street_side" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "underground" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "multi-storey" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "rooftop" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "lane" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "carports" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "garage_boxes" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "layby" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')", + "value": "sheds" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be theme 'Parking')" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the MapComplete.osm.be theme 'Parking')", + "value": "yes" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the MapComplete.osm.be theme 'Parking')", + "value": "no" + }, + { + "key": "capacity", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Parking')" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_personal.json b/Docs/TagInfo/mapcomplete_personal.json index 8850e33e1f..3c0bfce2e6 100644 --- a/Docs/TagInfo/mapcomplete_personal.json +++ b/Docs/TagInfo/mapcomplete_personal.json @@ -10,51 +10,6 @@ "contact_email": "pietervdvn@posteo.net" }, "tags": [ - { - "key": "addr:housenumber", - "description": "The MapComplete theme Personal theme has a layer Known addresses in OSM showing features with this tag" - }, - { - "key": "addr:street", - "description": "The MapComplete theme Personal theme has a layer Known addresses in OSM showing features with this tag" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Known addresses in OSM' shows and asks freeform values for key 'addr:housenumber' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Known addresses in OSM' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Known addresses in OSM' shows and asks freeform values for key 'addr:street' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "addr:street", - "description": "Layer 'Known addresses in OSM' shows addr:street= with a fixed text, namely 'Located in {_closest_street:0:name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key addr:street.", - "value": "" - }, - { - "key": "addr:street", - "description": "Layer 'Known addresses in OSM' shows addr:street= with a fixed text, namely 'Located in {_closest_street:1:name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key addr:street.", - "value": "" - }, - { - "key": "addr:street", - "description": "Layer 'Known addresses in OSM' shows addr:street= with a fixed text, namely 'Located in {_closest_street:2:name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key addr:street.", - "value": "" - }, - { - "key": "fixme", - "description": "Layer 'Known addresses in OSM' shows and asks freeform values for key 'fixme' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "fixme", - "description": "Layer 'Known addresses in OSM' shows with a fixed text, namely 'No fixme - write something here to explain complicated cases' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fixme.", - "value": "" - }, { "key": "emergency", "description": "The MapComplete theme Personal theme has a layer Map of ambulance stations showing features with this tag", @@ -615,29 +570,34 @@ "description": "Layer 'Bicycle rental' shows shop=rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "shop" }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rental" + }, { "key": "service:bicycle:rental", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "bicycle" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "docking_station" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "key_dispensing_machine" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "dropoff_point" }, { @@ -724,7 +684,7 @@ }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for childs can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "kid_bike" }, { @@ -737,6 +697,11 @@ "description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "racebike" }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bike_helmet" + }, { "key": "capacity:city_bike", "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Personal theme')" @@ -1231,12 +1196,12 @@ }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, { @@ -1331,7 +1296,7 @@ }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand (also known as Presta)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand/Presta (narrow-width bike tires)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "sclaverand" }, { @@ -1341,7 +1306,7 @@ }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars and mountainbikes)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "schrader" }, { @@ -1451,7 +1416,7 @@ }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'Deze business focuses on rental' (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'This business focuses on rental' (in the MapComplete.osm.be theme 'Personal theme')", "value": "rental" }, { @@ -1462,14 +1427,26 @@ "key": "website", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "contact:website", + "description": "Layer 'Bike repair/shop' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "phone", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "contact:phone", + "description": "Layer 'Bike repair/shop' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "email", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "contact:email", + "description": "Layer 'Bike repair/shop' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "opening_hours", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" @@ -1544,7 +1521,7 @@ }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=kid_bike with a fixed text, namely 'Bikes for childs can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Bike repair/shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "kid_bike" }, { @@ -1557,6 +1534,11 @@ "description": "Layer 'Bike repair/shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "racebike" }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bike_helmet" + }, { "key": "capacity:city_bike", "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Personal theme')" @@ -1670,96 +1652,96 @@ }, { "key": "theme", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "theme", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "sport", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "association", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "association", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "ngo", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "ngo", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "club", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "bicycle" }, { "key": "club", - "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag", "value": "cycling" }, { "key": "image", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "description", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "website", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "contact:website", - "description": "Layer 'Bike related object' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "email", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "contact:email", - "description": "Layer 'Bike related object' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "phone", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "contact:phone", - "description": "Layer 'Bike related object' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "opening_hours", - "description": "Layer 'Bike related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bike-related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "amenity", @@ -1930,6 +1912,11 @@ "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag", "value": "biergarten" }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag", + "value": "nightclub" + }, { "key": "image", "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -1946,6 +1933,35 @@ "key": "wikipedia", "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Cafés and pubs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, { "key": "name", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" @@ -1975,6 +1991,11 @@ "description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'An open space where beer is served, typically seen in Germany' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "biergarten" }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=nightclub with a fixed text, namely 'This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nightclub" + }, { "key": "opening_hours", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" @@ -2033,6 +2054,21 @@ "description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "smoking", + "description": "Layer 'Cafés and pubs' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "outside" + }, { "key": "service:electricity", "description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", @@ -2165,7 +2201,7 @@ }, { "key": "access", - "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "private" }, { @@ -2179,7 +2215,7 @@ }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko~^..*$&socket:schuko!~^1$ with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:schuko~^..*$&socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:typee", @@ -2188,7 +2224,7 @@ }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee~^..*$&socket:typee!~^1$ with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:typee~^..*$&socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:chademo", @@ -2197,7 +2233,7 @@ }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo~^..*$&socket:chademo!~^1$ with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:chademo~^..*$&socket:chademo!=1 with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:type1_cable", @@ -2206,7 +2242,7 @@ }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable~^..*$&socket:type1_cable!~^1$ with a fixed text, namely 'Type 1 with cable (J1772)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:type1_cable~^..*$&socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:type1", @@ -2215,7 +2251,7 @@ }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1~^..*$&socket:type1!~^1$ with a fixed text, namely 'Type 1 without cable (J1772)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:type1~^..*$&socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:type1_combo", @@ -2224,7 +2260,7 @@ }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo~^..*$&socket:type1_combo!~^1$ with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:type1_combo~^..*$&socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:tesla_supercharger", @@ -2233,7 +2269,7 @@ }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^1$ with a fixed text, namely 'Tesla Supercharger' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger~^..*$&socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:type2", @@ -2242,7 +2278,7 @@ }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2~^..*$&socket:type2!~^1$ with a fixed text, namely 'Type 2 (mennekes)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:type2~^..*$&socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:type2_combo", @@ -2251,7 +2287,7 @@ }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo~^..*$&socket:type2_combo!~^1$ with a fixed text, namely 'Type 2 CCS (mennekes)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:type2_combo~^..*$&socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:type2_cable", @@ -2260,7 +2296,7 @@ }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable~^..*$&socket:type2_cable!~^1$ with a fixed text, namely 'Type 2 with cable (mennekes)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:type2_cable~^..*$&socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:tesla_supercharger_ccs", @@ -2269,7 +2305,7 @@ }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^1$ with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:tesla_destination", @@ -2278,7 +2314,7 @@ }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:tesla_destination", @@ -2287,7 +2323,7 @@ }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country!~^us$ with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!=1&_country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:USB-A", @@ -2296,7 +2332,7 @@ }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A~^..*$&socket:USB-A!~^1$ with a fixed text, namely 'USB to charge phones and small electronics' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:USB-A~^..*$&socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:bosch_3pin", @@ -2305,7 +2341,7 @@ }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin~^..*$&socket:bosch_3pin!~^1$ with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:bosch_3pin~^..*$&socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:bosch_5pin", @@ -2314,7 +2350,7 @@ }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin~^..*$&socket:bosch_5pin!~^1$ with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Charging stations' shows socket:bosch_5pin~^..*$&socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "socket:schuko", @@ -2404,8 +2440,8 @@ }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kw with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "3.6 kw" + "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3.6 kW" }, { "key": "socket:typee:voltage", @@ -2431,13 +2467,13 @@ }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=3 kw with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "3 kw" + "description": "Layer 'Charging stations' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3 kW" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=22 kw with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kW" }, { "key": "socket:chademo:voltage", @@ -2463,8 +2499,8 @@ }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows socket:chademo:output=50 kw with a fixed text, namely 'Chademo outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kW" }, { "key": "socket:type1_cable:voltage", @@ -2495,13 +2531,13 @@ }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kw with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "3.7 kw" + "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3.7 kW" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kw with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "7 kw" + "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "7 kW" }, { "key": "socket:type1:voltage", @@ -2532,23 +2568,23 @@ }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "3.7 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3.7 kW" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "6.6 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "6.6 kW" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "7 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "7 kW" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kw with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "7.2 kw" + "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "7.2 kW" }, { "key": "socket:type1_combo:voltage", @@ -2584,23 +2620,23 @@ }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kW" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "62.5 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "62.5 kW" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "150 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "150 kW" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kw with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "350 kw" + "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "350 kW" }, { "key": "socket:tesla_supercharger:voltage", @@ -2631,18 +2667,18 @@ }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kw with a fixed text, namely 'Tesla Supercharger outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "120 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "120 kW" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kw with a fixed text, namely 'Tesla Supercharger outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "150 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "150 kW" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kw with a fixed text, namely 'Tesla Supercharger outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "250 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "250 kW" }, { "key": "socket:type2:voltage", @@ -2678,13 +2714,13 @@ }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=11 kw with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "11 kw" + "description": "Layer 'Charging stations' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "11 kW" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=22 kw with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kW" }, { "key": "socket:type2_combo:voltage", @@ -2720,8 +2756,8 @@ }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kw with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kW" }, { "key": "socket:type2_cable:voltage", @@ -2757,13 +2793,13 @@ }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kw with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "11 kw" + "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "11 kW" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kw with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kW" }, { "key": "socket:tesla_supercharger_ccs:voltage", @@ -2771,12 +2807,12 @@ }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "500 V" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "920 V" }, { @@ -2799,8 +2835,8 @@ }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kw with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "50 kw" + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kW" }, { "key": "socket:tesla_destination:voltage", @@ -2808,7 +2844,7 @@ }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 V with a fixed text, namely 'Tesla Supercharger (destination) outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 V with a fixed text, namely 'Tesla Supercharger (Destination) outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "480 V" }, { @@ -2817,12 +2853,12 @@ }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 A with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 A with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "125 A" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 A with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 A with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "350 A" }, { @@ -2831,18 +2867,18 @@ }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kw with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "120 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 120 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "120 kW" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kw with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "150 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 150 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "150 kW" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kw with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "250 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (Destination) outputs at most 250 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "250 kW" }, { "key": "socket:tesla_destination:voltage", @@ -2850,12 +2886,12 @@ }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 V with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 V with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "230 V" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 V with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 V with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "400 V" }, { @@ -2864,12 +2900,12 @@ }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 A with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 A with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "16 A" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 A with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 A with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "32 A" }, { @@ -2878,13 +2914,13 @@ }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kw with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "11 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 11 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "11 kW" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kw with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "22 kw" + "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 22 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kW" }, { "key": "socket:USB-A:voltage", @@ -2915,13 +2951,13 @@ }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=5w with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "5w" + "description": "Layer 'Charging stations' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "5W" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=10w with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "10w" + "description": "Layer 'Charging stations' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10w A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "10W" }, { "key": "socket:bosch_3pin:voltage", @@ -3003,12 +3039,12 @@ }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no @ customers" }, { @@ -3331,6 +3367,398 @@ "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities showing features with this tag", + "value": "climbing" + }, + { + "key": "image", + "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "noname", + "description": "Layer 'Climbing opportunities' shows noname=yes with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "name", + "description": "Layer 'Climbing opportunities' shows noname=yes with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "climbing", + "description": "Layer 'Climbing opportunities' shows climbing=boulder with a fixed text, namely 'A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "boulder" + }, + { + "key": "climbing", + "description": "Layer 'Climbing opportunities' shows climbing=crag with a fixed text, namely 'A climbing crag - a single rock or cliff with at least a few climbing routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "crag" + }, + { + "key": "climbing", + "description": "Layer 'Climbing opportunities' shows climbing=area with a fixed text, namely 'A climbing area with one or more climbing crags and/or boulders' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "area" + }, + { + "key": "rock", + "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'rock' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "rock", + "description": "Layer 'Climbing opportunities' shows rock=limestone with a fixed text, namely 'Limestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limestone" + }, + { + "key": "url", + "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "charge", + "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "fee", + "description": "Layer 'Climbing opportunities' shows fee=no with a fixed text, namely 'Climbing here is free of charge' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Climbing opportunities' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "charge", + "description": "Layer 'Climbing opportunities' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing opportunities' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "club", + "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag", + "value": "climbing" + }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag", + "value": "climbing" + }, + { + "key": "office", + "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag" + }, + { + "key": "club", + "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag" + }, + { + "key": "name", + "description": "Layer 'Climbing club' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Climbing club' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Climbing club' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Climbing club' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Climbing club' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Climbing club' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Climbing club' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Climbing gyms showing features with this tag", + "value": "climbing" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Climbing gyms showing features with this tag", + "value": "sports_centre" + }, + { + "key": "image", + "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Climbing gyms' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Climbing gyms' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Climbing gyms' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "charge", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "fee", + "description": "Layer 'Climbing gyms' shows fee=no with a fixed text, namely 'Climbing here is free of charge' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Climbing gyms' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "charge", + "description": "Layer 'Climbing gyms' shows fee=yes with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "opening_hours", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:length", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:grade:french:min", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:grade:french:max", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing gyms' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing gyms' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing gyms' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "climbing:boulder", + "description": "Layer 'Climbing gyms' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:sport", + "description": "Layer 'Climbing gyms' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "climbing:sport", + "description": "Layer 'Climbing gyms' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "climbing:sport", + "description": "Layer 'Climbing gyms' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:bolts:max", + "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:bolts:max' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:speed", + "description": "Layer 'Climbing gyms' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "climbing:speed", + "description": "Layer 'Climbing gyms' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "climbing:speed", + "description": "Layer 'Climbing gyms' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "sports_centre" + }, + { + "key": "barrier", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "wall" + }, + { + "key": "barrier", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "retaining_wall" + }, + { + "key": "natural", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "cliff" + }, + { + "key": "natural", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "rock" + }, + { + "key": "natural", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "stone" + }, + { + "key": "climbing", + "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag", + "value": "" + }, + { + "key": "sport", + "description": "Layer 'Climbing opportunities?' shows sport=climbing with a fixed text, namely 'Climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "climbing" + }, + { + "key": "climbing", + "description": "Layer 'Climbing opportunities?' shows climbing=no with a fixed text, namely 'Climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "climbing", + "description": "The MapComplete theme Personal theme has a layer Climbing routes showing features with this tag", + "value": "route" + }, + { + "key": "image", + "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Climbing routes' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "noname", + "description": "Layer 'Climbing routes' shows noname=yes with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "name", + "description": "Layer 'Climbing routes' shows noname=yes with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "climbing:length", + "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:grade:french", + "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:bolts", + "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:bolts' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "climbing:bolted", + "description": "Layer 'Climbing routes' shows climbing:bolted=no with a fixed text, namely 'This route is not bolted' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "description", + "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "highway", "description": "The MapComplete theme Personal theme has a layer Crossings showing features with this tag", @@ -3496,6 +3924,41 @@ "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", "value": "secondary" }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "tertiary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "primary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "secondary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "service" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "pedestrian" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "living_street" + }, { "key": "highway", "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", @@ -4016,7 +4479,7 @@ }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "private" }, { @@ -4128,18 +4591,157 @@ "description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "camera:direction", - "description": "The MapComplete theme Personal theme has a layer Direction visualization showing features with this tag" + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Doctors showing features with this tag", + "value": "doctors" }, { - "key": "direction", - "description": "The MapComplete theme Personal theme has a layer Direction visualization showing features with this tag" + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Doctors showing features with this tag", + "value": "dentist" + }, + { + "key": "healthcare", + "description": "The MapComplete theme Personal theme has a layer Doctors showing features with this tag", + "value": "physiotherapist" + }, + { + "key": "image", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "opening_hours", + "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Doctors' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Doctors' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Doctors' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "name", + "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=general with a fixed text, namely 'This is a general practitioner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "general" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=gynaecology with a fixed text, namely 'This is a gynaecologist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gynaecology" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=psychiatry with a fixed text, namely 'This is a psychiatrist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "psychiatry" + }, + { + "key": "healthcare:speciality", + "description": "Layer 'Doctors' shows healthcare:speciality=paediatrics with a fixed text, namely 'This is a paediatrician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paediatrics" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer dog parks showing features with this tag", + "value": "dog_park" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer dog parks showing features with this tag", + "value": "park" + }, + { + "key": "dog", + "description": "The MapComplete theme Personal theme has a layer dog parks showing features with this tag", + "value": "unleashed" + }, + { + "key": "barrier", + "description": "Layer 'dog parks' shows barrier=fence with a fixed text, namely 'This dogpark is fenced all around' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fence" + }, + { + "key": "barrier", + "description": "Layer 'dog parks' shows barrier=no with a fixed text, namely 'This dogpark is not fenced all around' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "small_dog", + "description": "Layer 'dog parks' shows small_dog=separate with a fixed text, namely 'Have separate area for puppies and small dogs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separate" + }, + { + "key": "small_dog", + "description": "Layer 'dog parks' shows small_dog=shared with a fixed text, namely 'Does not have a separate area for puppies and small dogs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shared" + }, + { + "key": "name", + "description": "Layer 'dog parks' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "image", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "amenity", "description": "The MapComplete theme Personal theme has a layer Drinking water showing features with this tag", "value": "drinking_water" }, + { + "key": "drinking_water", + "description": "The MapComplete theme Personal theme has a layer Drinking water showing features with this tag", + "value": "yes" + }, { "key": "image", "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -4185,6 +4787,98 @@ "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer elevator showing features with this tag", + "value": "elevator" + }, + { + "key": "image", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'elevator' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'elevator' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'elevator' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'elevator' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'elevator' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'elevator' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows operational_status=broken with a fixed text, namely 'This elevator is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broken" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows operational_status=closed with a fixed text, namely 'This elevator is closed e.g. because renovation works are going on' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "closed" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows operational_status=ok with a fixed text, namely 'This elevator works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ok" + }, + { + "key": "operational_status", + "description": "Layer 'elevator' shows with a fixed text, namely 'This elevator works' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "door:width", + "description": "Layer 'elevator' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "elevator:width", + "description": "Layer 'elevator' shows and asks freeform values for key 'elevator:width' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "elevator:depth", + "description": "Layer 'elevator' shows and asks freeform values for key 'elevator:depth' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "hearing_loop", + "description": "Layer 'elevator' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "hearing_loop", + "description": "Layer 'elevator' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, { "key": "entrance", "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag" @@ -4194,6 +4888,10 @@ "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag", "value": "door" }, + { + "key": "door", + "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag" + }, { "key": "image", "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -4210,6 +4908,35 @@ "key": "wikipedia", "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Entrance' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, { "key": "entrance", "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Personal theme')", @@ -4247,12 +4974,12 @@ }, { "key": "indoor", - "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "service" }, { @@ -4374,6 +5101,15 @@ "key": "width", "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "kerb:height", + "description": "Layer 'Entrance' shows kerb:height=0 with a fixed text, namely 'This door does not have a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, { "key": "name:etymology:wikidata", "description": "The MapComplete theme Personal theme has a layer Has etymolgy showing features with this tag" @@ -4429,38 +5165,38 @@ }, { "key": "emergency", - "description": "The MapComplete theme Personal theme has a layer Map of fire extinguishers. showing features with this tag", + "description": "The MapComplete theme Personal theme has a layer Map of fire extinguishers showing features with this tag", "value": "fire_extinguisher" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers.' shows and asks freeform values for key 'location' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers.' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Map of fire extinguishers' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "indoor" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers.' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Map of fire extinguishers' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "outdoor" }, { "key": "image", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "amenity", @@ -4559,18 +5295,47 @@ "key": "wikipedia", "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Restaurants and fast food' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, { "key": "name", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "fast_food" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focussed on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "restaurant" }, { @@ -4725,6 +5490,16 @@ "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, + { + "key": "delivery", + "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "delivery", + "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, { "key": "diet:vegetarian", "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", @@ -4817,12 +5592,12 @@ }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'Vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "vegetable" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'Animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "animal" }, { @@ -4923,40 +5698,271 @@ "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "name", - "description": "The MapComplete theme Personal theme has a layer Toegankelijke grasvelden in parken showing features with this tag", - "value": "Park Oude God" - }, - { - "key": "landuse", - "description": "The MapComplete theme Personal theme has a layer Toegankelijke grasvelden in parken showing features with this tag", - "value": "grass" - }, - { - "key": "access", - "description": "The MapComplete theme Personal theme has a layer Toegankelijke grasvelden in parken showing features with this tag", - "value": "public" - }, - { - "key": "access", - "description": "The MapComplete theme Personal theme has a layer Toegankelijke grasvelden in parken showing features with this tag", - "value": "yes" + "key": "office", + "description": "The MapComplete theme Personal theme has a layer governments showing features with this tag", + "value": "government" }, { "key": "image", - "description": "The layer 'Toegankelijke grasvelden in parken allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Toegankelijke grasvelden in parken allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Toegankelijke grasvelden in parken allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Toegankelijke grasvelden in parken allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "phone", + "description": "Layer 'governments' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'governments' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'governments' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'governments' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "name", + "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Hackerspace showing features with this tag", + "value": "hackerspace" + }, + { + "key": "hackerspace", + "description": "Layer 'Hackerspace' shows hackerspace=makerspace with a fixed text, namely 'This is a makerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "makerspace" + }, + { + "key": "hackerspace", + "description": "Layer 'Hackerspace' shows with a fixed text, namely 'This is a traditional (software oriented) hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key hackerspace.", + "value": "" + }, + { + "key": "name", + "description": "Layer 'Hackerspace' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Hackerspace' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Hackerspace' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Hackerspace' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Hackerspace' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Hackerspace' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Hackerspace' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Hackerspace' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Hackerspace' shows opening_hours=24/7 with a fixed text, namely 'Opened 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "service:3dprinter", + "description": "Layer 'Hackerspace' shows service:3dprinter=yes with a fixed text, namely 'There is a 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:3dprinter", + "description": "Layer 'Hackerspace' shows service:3dprinter=no with a fixed text, namely 'There is no 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:lasercutter", + "description": "Layer 'Hackerspace' shows service:lasercutter=yes with a fixed text, namely 'There is a laser cutter available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:lasercutter", + "description": "Layer 'Hackerspace' shows service:lasercutter=no with a fixed text, namely 'There is no laser cutter available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:cnc_drilling_machine", + "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=yes with a fixed text, namely 'There is a CNC drill available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:cnc_drilling_machine", + "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=no with a fixed text, namely 'There is no CNC drill available at this hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "wheelchair", + "description": "Layer 'Hackerspace' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Hackerspace' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Hackerspace' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Hackerspace' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "drink:club-mate", + "description": "Layer 'Hackerspace' shows drink:club-mate=yes with a fixed text, namely 'This hackerspace serves club mate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "drink:club-mate", + "description": "Layer 'Hackerspace' shows drink:club-mate=no with a fixed text, namely 'This hackerspace does not serve club mate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "start_date", + "description": "Layer 'Hackerspace' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Hospitals showing features with this tag", + "value": "hospital" + }, + { + "key": "name", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Hospitals' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Hospitals' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Hospitals' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "tourism", + "description": "The MapComplete theme Personal theme has a layer Hotels showing features with this tag", + "value": "hotel" + }, + { + "key": "image", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Hotels' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Hotels' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Hotels' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Hotels' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Hotels' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Hotels' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Hotels' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Hotels' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" }, { "key": "emergency", @@ -5052,6 +6058,51 @@ "key": "wikipedia", "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "indoor", + "description": "The MapComplete theme Personal theme has a layer indoors showing features with this tag", + "value": "room" + }, + { + "key": "indoor", + "description": "The MapComplete theme Personal theme has a layer indoors showing features with this tag", + "value": "area" + }, + { + "key": "indoor", + "description": "The MapComplete theme Personal theme has a layer indoors showing features with this tag", + "value": "wall" + }, + { + "key": "indoor", + "description": "The MapComplete theme Personal theme has a layer indoors showing features with this tag", + "value": "door" + }, + { + "key": "indoor", + "description": "The MapComplete theme Personal theme has a layer indoors showing features with this tag", + "value": "level" + }, + { + "key": "image", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'indoors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "information", "description": "The MapComplete theme Personal theme has a layer Information boards showing features with this tag", @@ -5073,6 +6124,116 @@ "key": "wikipedia", "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "barrier", + "description": "The MapComplete theme Personal theme has a layer Kerbs showing features with this tag", + "value": "kerb" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=raised with a fixed text, namely 'This kerb is raised (>3 cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "raised" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=lowered with a fixed text, namely 'This kerb is lowered (~3 cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lowered" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=flush with a fixed text, namely 'This kerb is flush (~0cm)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "flush" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "kerb", + "description": "Layer 'Kerbs' shows kerb=yes with a fixed text, namely 'There is a kerb of unknown height' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=yes with a fixed text, namely 'This kerb has tactile paving.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=no with a fixed text, namely 'This kerb does not have tactile paving.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Kerbs' shows tactile_paving=incorrect with a fixed text, namely 'This kerb has tactile paving, but it is incorrect' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "incorrect" + }, + { + "key": "kerb:height", + "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Kindergartens and childcare showing features with this tag", + "value": "childcare" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Kindergartens and childcare showing features with this tag", + "value": "kindergarten" + }, + { + "key": "isced:level:2011", + "description": "The MapComplete theme Personal theme has a layer Kindergartens and childcare showing features with this tag", + "value": "early_childhood" + }, + { + "key": "amenity", + "description": "Layer 'Kindergartens and childcare' shows amenity=kindergarten with a fixed text, namely 'This is a kindergarten (also known as preschool) where small kids receive early education.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kindergarten" + }, + { + "key": "amenity", + "description": "Layer 'Kindergartens and childcare' shows amenity=childcare with a fixed text, namely 'This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "childcare" + }, + { + "key": "name", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Kindergartens and childcare' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Kindergartens and childcare' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Kindergartens and childcare' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity", + "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "tourism", "description": "The MapComplete theme Personal theme has a layer Maps showing features with this tag", @@ -5138,6 +6299,90 @@ "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "residential" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "living_street" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "motorway" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "tertiary" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "unclassified" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "secondary" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "primary" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "trunk" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "motorway" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "tertiary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "secondary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "primary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "trunk_link" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag", + "value": "motorway_link" + }, + { + "key": "maxspeed", + "description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "highway", + "description": "Layer 'Maxspeed' shows highway=living_street&_country!=be with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "living_street" + }, + { + "key": "highway", + "description": "Layer 'Maxspeed' shows highway=living_street with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "living_street" + }, { "key": "leisure", "description": "The MapComplete theme Personal theme has a layer Nature reserve showing features with this tag", @@ -5307,6 +6552,10 @@ "key": "wikidata", "description": "Layer 'Nature reserve' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "wikipedia", + "description": "Layer 'Nature reserve' shows wikipedia~^..*$ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "wikidata", "description": "Layer 'Nature reserve' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key wikidata.", @@ -5430,6 +6679,10 @@ "key": "wikidata", "description": "Layer 'Observation towers' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "wikipedia", + "description": "Layer 'Observation towers' shows wikipedia~^..*$ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "wikidata", "description": "Layer 'Observation towers' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key wikidata.", @@ -5456,6 +6709,103 @@ "key": "wikipedia", "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "surface" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "street_side" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "multi-storey" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rooftop" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lane" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "carports" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "garage_boxes" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "layby" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sheds" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "capacity", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "highway", "description": "The MapComplete theme Personal theme has a layer Pedestrian paths showing features with this tag", @@ -5476,6 +6826,74 @@ "description": "The MapComplete theme Personal theme has a layer Pedestrian paths showing features with this tag", "value": "steps" }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer pharmacy showing features with this tag", + "value": "pharmacy" + }, + { + "key": "image", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'pharmacy' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'pharmacy' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'pharmacy' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, { "key": "leisure", "description": "The MapComplete theme Personal theme has a layer Picnic tables showing features with this tag", @@ -5497,6 +6915,35 @@ "key": "wikipedia", "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, { "key": "material", "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Personal theme')" @@ -5512,56 +6959,9 @@ "value": "concrete" }, { - "key": "playground", - "description": "The MapComplete theme Personal theme has a layer Speelbossen showing features with this tag", - "value": "forest" - }, - { - "key": "image", - "description": "The layer 'Speelbossen allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Speelbossen allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Speelbossen allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Speelbossen allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "operator", - "description": "Layer 'Speelbossen' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "operator", - "description": "Layer 'Speelbossen' shows operator~^[aA][nN][bB]$ with a fixed text, namely 'Dit gebied wordt beheerd door het Agentschap Natuur en Bos' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "operator", - "description": "Layer 'Speelbossen' shows operator=Agenstchap Natuur en Bos with a fixed text, namely 'Dit gebied wordt beheerd door het Agentschap Natuur en Bos' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "Agenstchap Natuur en Bos" - }, - { - "key": "opening_hours", - "description": "Layer 'Speelbossen' shows opening_hours=08:00-22:00 with a fixed text, namely 'Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "08:00-22:00" - }, - { - "key": "opening_hours", - "description": "Layer 'Speelbossen' shows opening_hours=Jul-Aug 08:00-22:00 with a fixed text, namely 'Enkel in de zomervakantie en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "Jul-Aug 08:00-22:00" - }, - { - "key": "email", - "description": "Layer 'Speelbossen' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "phone", - "description": "Layer 'Speelbossen' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + "key": "material", + "description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "plastic" }, { "key": "leisure", @@ -5675,6 +7075,11 @@ "description": "Layer 'Playgrounds' shows access=private with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "private" }, + { + "key": "leisure", + "description": "Layer 'Playgrounds' shows leisure=schoolyard with a fixed text, namely 'This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "schoolyard" + }, { "key": "website", "description": "Layer 'Playgrounds' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" @@ -5759,6 +7164,10 @@ "key": "capacity", "description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "books", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "books", "description": "Layer 'Bookcases' shows books=children with a fixed text, namely 'Mostly children books' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", @@ -5769,11 +7178,6 @@ "description": "Layer 'Bookcases' shows books=adults with a fixed text, namely 'Mostly books for adults' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "adults" }, - { - "key": "books", - "description": "Layer 'Bookcases' shows books=children;adults with a fixed text, namely 'Both books for kids and adults' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "children;adults" - }, { "key": "indoor", "description": "Layer 'Bookcases' shows indoor=yes with a fixed text, namely 'This bookcase is located indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", @@ -5854,6 +7258,101 @@ "key": "website", "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Crossings with rainbow paintings showing features with this tag", + "value": "crossing" + }, + { + "key": "image", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "crossing:marking", + "description": "Layer 'Crossings with rainbow paintings' shows crossing:marking=rainbow with a fixed text, namely 'This crossing has rainbow paintings' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rainbow" + }, + { + "key": "not:crossing:marking", + "description": "Layer 'Crossings with rainbow paintings' shows not:crossing:marking=rainbow with a fixed text, namely 'No rainbow paintings here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rainbow" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Reception desks showing features with this tag", + "value": "reception_desk" + }, + { + "key": "image", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Reception desks' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Reception desks' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, + { + "key": "desk:height", + "description": "Layer 'Reception desks' shows and asks freeform values for key 'desk:height' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "hearing_loop", + "description": "Layer 'Reception desks' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "hearing_loop", + "description": "Layer 'Reception desks' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, { "key": "amenity", "description": "The MapComplete theme Personal theme has a layer Recycling showing features with this tag", @@ -6056,6 +7555,2616 @@ "description": "Layer 'Recycling' shows opening_hours=24/7 with a fixed text, namely '24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "24/7" }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Primary and secondary schools showing features with this tag", + "value": "school" + }, + { + "key": "name", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=kindergarten with a fixed text, namely 'This is a school with a kindergarten section where young kids receive some education which prepares reading and writing.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kindergarten" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=primary with a fixed text, namely 'This is a school where one learns primary skills such as basic literacy and numerical skills.
Pupils typically enroll from 6 years old till 12 years old
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "primary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=secondary with a fixed text, namely 'This is a secondary school which offers all grades' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=lower_secondary with a fixed text, namely 'This is a secondary school which does not have all grades, but offers first and second grade' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lower_secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=middle_secondary with a fixed text, namely 'This is a secondary school which does not have all grades, but offers third and fourth grade' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "middle_secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=upper_secondary with a fixed text, namely 'This is a secondary school which does not have all grades, but offers fifth and sixth grade' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "upper_secondary" + }, + { + "key": "school", + "description": "Layer 'Primary and secondary schools' shows school=post_secondary with a fixed text, namely 'This school offers post-secondary education (e.g. a seventh or eight specialisation year)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "post_secondary" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mixed" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separated" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "male" + }, + { + "key": "school:gender", + "description": "Layer 'Primary and secondary schools' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "female" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'school:for' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows with a fixed text, namely 'This is a school where students study skills at their age-adequate level.
There are little or no special facilities to cater for students with special needs or facilities are ad-hoc
' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key school:for.", + "value": "" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=mainstream with a fixed text, namely 'This is a school for students without special needs
This includes students who can follow the courses with small, ad hoc measurements
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mainstream" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=adults with a fixed text, namely 'This is a school where adults are taught skills on the level as specified.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "adults" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=autism with a fixed text, namely 'This is a school for students with autism' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "autism" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=learning_disabilities with a fixed text, namely 'This is a school for students with learning disabilities' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "learning_disabilities" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=blind with a fixed text, namely 'This is a school for blind students or students with sight impairments' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "blind" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=deaf with a fixed text, namely 'This is a school for deaf students or students with hearing impairments' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "deaf" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=disabilities with a fixed text, namely 'This is a school for students with disabilities' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "disabilities" + }, + { + "key": "school:for", + "description": "Layer 'Primary and secondary schools' shows school:for=special_needs with a fixed text, namely 'This is a school for students with special needs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "special_needs" + }, + { + "key": "website", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Primary and secondary schools' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Primary and secondary schools' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Primary and secondary schools' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows with a fixed text, namely 'The main language of this school is unknown' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key school:language.", + "value": "" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ay with a fixed text, namely 'Aymara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ay" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ab with a fixed text, namely 'Abkhaz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ab" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=an with a fixed text, namely 'Aragonese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "an" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=de with a fixed text, namely 'German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "de" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ca with a fixed text, namely 'Catalan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ca" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=az with a fixed text, namely 'Azerbaijani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "az" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hr with a fixed text, namely 'Croatian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=eo with a fixed text, namely 'Esperanto' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "eo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ba with a fixed text, namely 'Bashkir' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ba" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ar with a fixed text, namely 'Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ar" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=he with a fixed text, namely 'Hebrew' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "he" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gl with a fixed text, namely 'Galician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=el with a fixed text, namely 'Modern Greek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "el" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cs with a fixed text, namely 'Czech' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=da with a fixed text, namely 'Danish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "da" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=af with a fixed text, namely 'Afrikaans' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "af" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ga with a fixed text, namely 'Irish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ga" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hi with a fixed text, namely 'Hindi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bg with a fixed text, namely 'Bulgarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=be with a fixed text, namely 'Belarusian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "be" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gu with a fixed text, namely 'Gujarati' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cy with a fixed text, namely 'Welsh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fr with a fixed text, namely 'French' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hsb with a fixed text, namely 'Upper Sorbian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hsb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fy with a fixed text, namely 'West Frisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ak with a fixed text, namely 'Akan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ak" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=am with a fixed text, namely 'Amharic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "am" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=es with a fixed text, namely 'Spanish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "es" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bs with a fixed text, namely 'Bosnian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=diq with a fixed text, namely 'Zazaki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "diq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dz with a fixed text, namely 'Dzongkha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=co with a fixed text, namely 'Corsican' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "co" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cr with a fixed text, namely 'Cree' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=csb with a fixed text, namely 'Kashubian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "csb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gv with a fixed text, namely 'Manx' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cv with a fixed text, namely 'Chuvash' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bn with a fixed text, namely 'Bengali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gd with a fixed text, namely 'Scottish Gaelic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=av with a fixed text, namely 'Avaric' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "av" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=awa with a fixed text, namely 'Awadhi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "awa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=br with a fixed text, namely 'Breton' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "br" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ee with a fixed text, namely 'Ewe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ee" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dag with a fixed text, namely 'Dagbani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dv with a fixed text, namely 'Maldivian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fi with a fixed text, namely 'Finnish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=en with a fixed text, namely 'English' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "en" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ady with a fixed text, namely 'Adyghe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ady" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=as with a fixed text, namely 'Assamese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "as" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gn with a fixed text, namely 'Guarani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hif with a fixed text, namely 'Fiji Hindi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hif" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ast with a fixed text, namely 'Asturian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ast" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dsb with a fixed text, namely 'Lower Sorbian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dsb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=haw with a fixed text, namely 'Hawaiian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "haw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=glk with a fixed text, namely 'Gilaki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "glk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gag with a fixed text, namely 'Gagauz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gan with a fixed text, namely 'Gan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gan" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ase with a fixed text, namely 'American Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ase" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cal with a fixed text, namely 'Carolinian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cal" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gil with a fixed text, namely 'Gilbertese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gil" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=arz with a fixed text, namely 'Egyptian Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "arz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ban with a fixed text, namely 'Balinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ban" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hak with a fixed text, namely 'Hakka' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hak" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=din with a fixed text, namely 'Dinka' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "din" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=egl with a fixed text, namely 'Emilian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "egl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dty with a fixed text, namely 'Doteli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dty" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fa with a fixed text, namely 'Persian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cnr with a fixed text, namely 'Montenegrin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cnr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bxr with a fixed text, namely 'Russia Buriat' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bxr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ckb with a fixed text, namely 'Sorani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ckb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=eu with a fixed text, namely 'Basque' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "eu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=et with a fixed text, namely 'Estonian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "et" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bar with a fixed text, namely 'Bavarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bar" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fo with a fixed text, namely 'Faroese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=frr with a fixed text, namely 'North Frisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "frr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ch with a fixed text, namely 'Chamorro' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ch" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=chy with a fixed text, namely 'Cheyenne' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "chy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ce with a fixed text, namely 'Chechen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ce" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=no with a fixed text, namely 'Norwegian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bjn with a fixed text, namely 'Banjar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bjn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ceb with a fixed text, namely 'Cebuano' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ceb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ha with a fixed text, namely 'Hausa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ha" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=frp with a fixed text, namely 'Franco-Provençal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "frp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=chr with a fixed text, namely 'Cherokee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "chr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gcr with a fixed text, namely 'Guianan Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gcr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gor with a fixed text, namely 'Gorontalo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gor" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ext with a fixed text, namely 'Extremaduran' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ext" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fj with a fixed text, namely 'Fijian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fur with a fixed text, namely 'Friulian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fur" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bss with a fixed text, namely 'Kose' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bss" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=prg with a fixed text, namely 'Old Prussian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "prg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ses with a fixed text, namely 'Koyraboro Senni' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ses" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pko with a fixed text, namely 'Pökoot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pko" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ccp with a fixed text, namely 'Chakma' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ccp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dua with a fixed text, namely 'Duala' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dua" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tr with a fixed text, namely 'Turkish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ur with a fixed text, namely 'Urdu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ur" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bm with a fixed text, namely 'Bambara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ff with a fixed text, namely 'Fula' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ff" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ru with a fixed text, namely 'Russian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ru" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sid with a fixed text, namely 'Sidamo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sid" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=niu with a fixed text, namely 'Niuean' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "niu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=oj with a fixed text, namely 'Ojibwe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "oj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vot with a fixed text, namely 'Votic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vot" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bfi with a fixed text, namely 'British Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bfi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bla with a fixed text, namely 'Blackfoot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bla" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bbc with a fixed text, namely 'Toba Batak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bbc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ctg with a fixed text, namely 'Chittagonian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ctg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=brh with a fixed text, namely 'Brahui' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "brh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bug with a fixed text, namely 'Bugis' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bug" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pa with a fixed text, namely 'Punjabi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pnb with a fixed text, namely 'Punjabi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pnb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=brx with a fixed text, namely 'Bodo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "brx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sjd with a fixed text, namely 'Kildin Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sjd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bo with a fixed text, namely 'Tibetan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bi with a fixed text, namely 'Bislama' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cdo with a fixed text, namely 'Min Dong' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cdo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sw with a fixed text, namely 'Swahili' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gom with a fixed text, namely 'Goan Konkani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gom" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mfe with a fixed text, namely 'Mauritian Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mfe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sdc with a fixed text, namely 'Sassarese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sdc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pdt with a fixed text, namely 'Plautdietsch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pdt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sty with a fixed text, namely 'Siberian Tatar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sty" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rmc with a fixed text, namely 'Carpathian Romani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rmc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nys with a fixed text, namely 'Noongar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nys" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gsw-fr with a fixed text, namely 'Alsatian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gsw-fr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zun with a fixed text, namely 'Zuni' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zun" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sms with a fixed text, namely 'Skolt Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sms" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pis with a fixed text, namely 'Pijin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pis" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nr with a fixed text, namely 'Southern Ndebele' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=umu with a fixed text, namely 'Munsee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "umu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gaa with a fixed text, namely 'Ga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gaa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fon with a fixed text, namely 'Fon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fon" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=loz with a fixed text, namely 'Lozi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "loz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=crs with a fixed text, namely 'Seychellois Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "crs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tru with a fixed text, namely 'Turoyo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tru" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=agq with a fixed text, namely 'Aghem' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "agq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ary with a fixed text, namely 'Moroccan Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ary" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=atj with a fixed text, namely 'Atikamekw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "atj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=alt with a fixed text, namely 'Altai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "alt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ta with a fixed text, namely 'Tamil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ta" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ps with a fixed text, namely 'Pashto' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ps" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nqo with a fixed text, namely 'N'Ko' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nqo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ro with a fixed text, namely 'Romanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ro" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cbk-zam with a fixed text, namely 'Chavacano' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cbk-zam" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ovd with a fixed text, namely 'Elfdalian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ovd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vmf with a fixed text, namely 'Main-Franconian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vmf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bto with a fixed text, namely 'Rinconada Bikol' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bto" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bcc with a fixed text, namely 'Southern Balochi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bcc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=crl with a fixed text, namely 'Northern East Cree' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "crl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lrc with a fixed text, namely 'Northern Luri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lrc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=akl with a fixed text, namely 'Aklan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "akl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bpy with a fixed text, namely 'Bishnupriya Manipuri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bpy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mic with a fixed text, namely 'Mi'kmaq' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mic" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sk with a fixed text, namely 'Slovak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sl with a fixed text, namely 'Slovene' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ryu with a fixed text, namely 'Okinawan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ryu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yai with a fixed text, namely 'Yaghnobi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yai" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=efi with a fixed text, namely 'Efik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "efi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=te with a fixed text, namely 'Telugu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "te" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yi with a fixed text, namely 'Yiddish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tg with a fixed text, namely 'Tajik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bat-smg with a fixed text, namely 'Samogitian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bat-smg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nod with a fixed text, namely 'Northern Thai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nod" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lag with a fixed text, namely 'Rangi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krj with a fixed text, namely 'Kinaray-a' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "krj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yap with a fixed text, namely 'Yapese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yap" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ydg with a fixed text, namely 'Yidgha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ydg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vi with a fixed text, namely 'Vietnamese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=it with a fixed text, namely 'Italian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "it" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bzg with a fixed text, namely 'Babuza' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bzg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pyu with a fixed text, namely 'Puyuma' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pyu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=guc with a fixed text, namely 'Wayuu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "guc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ood with a fixed text, namely 'O'odham' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ood" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bdr with a fixed text, namely 'West Coast Bajau' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bdr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=btm with a fixed text, namely 'Mandailing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "btm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gcf with a fixed text, namely 'Guadeloupean Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gcf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=srq with a fixed text, namely 'Sirionó' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "srq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ins with a fixed text, namely 'Indian Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ins" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rki with a fixed text, namely 'Arakanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rki" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wls with a fixed text, namely 'Wallisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wls" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sje with a fixed text, namely 'Pite Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sje" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=smj with a fixed text, namely 'Lule Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "smj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kum with a fixed text, namely 'Kumyk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kum" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nui with a fixed text, namely 'Kombe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nui" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh-min-nan with a fixed text, namely 'Southern Min' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zh-min-nan" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pl with a fixed text, namely 'Polish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cpx with a fixed text, namely 'Pu-Xian Min' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cpx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=khg with a fixed text, namely 'Khams Tibetan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "khg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fkv with a fixed text, namely 'Kven' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fkv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fuf with a fixed text, namely 'Pular' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fuf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=jax with a fixed text, namely 'Jambi Malay' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "jax" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dtp with a fixed text, namely 'Kadazandusun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dtp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zgh with a fixed text, namely 'Standard Moroccan Berber' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zgh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bgn with a fixed text, namely 'Western Balochi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bgn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yav with a fixed text, namely 'Yangben' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yav" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sv with a fixed text, namely 'Swedish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=azb with a fixed text, namely 'South Azerbaijani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "azb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xnb with a fixed text, namely 'Kanakanavu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "xnb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fa-af with a fixed text, namely 'Dari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fa-af" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=qu with a fixed text, namely 'Quechua' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "qu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sei with a fixed text, namely 'Seri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sei" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sq with a fixed text, namely 'Albanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uk with a fixed text, namely 'Ukrainian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "uk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uz with a fixed text, namely 'Uzbek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "uz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ka with a fixed text, namely 'Georgian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ka" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pt with a fixed text, namely 'Portuguese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hy with a fixed text, namely 'Armenian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nl with a fixed text, namely 'Dutch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rm with a fixed text, namely 'Romansh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aln with a fixed text, namely 'Gheg Albanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "aln" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mr with a fixed text, namely 'Marathi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mg with a fixed text, namely 'Malagasy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sh with a fixed text, namely 'Serbo-Croatian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zu with a fixed text, namely 'Zulu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=is with a fixed text, namely 'Icelandic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "is" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lb with a fixed text, namely 'Luxembourgish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tk with a fixed text, namely 'Turkmen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=th with a fixed text, namely 'Thai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "th" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ja with a fixed text, namely 'Japanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ja" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lv with a fixed text, namely 'Latvian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rmy with a fixed text, namely 'Romani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rmy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=km with a fixed text, namely 'Khmer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "km" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lo with a fixed text, namely 'Lao' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=so with a fixed text, namely 'Somali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "so" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sma with a fixed text, namely 'Southern Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sma" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=moe with a fixed text, namely 'Innu-aimun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "moe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sr with a fixed text, namely 'Serbian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lt with a fixed text, namely 'Lithuanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hu with a fixed text, namely 'Hungarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=my with a fixed text, namely 'Burmese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "my" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ms with a fixed text, namely 'Malay' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ms" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xh with a fixed text, namely 'Xhosa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "xh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=udm with a fixed text, namely 'Udmurt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "udm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rue with a fixed text, namely 'Rusyn' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rue" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=stq with a fixed text, namely 'Saterland Frisian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "stq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ky with a fixed text, namely 'Kyrgyz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ky" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mt with a fixed text, namely 'Maltese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mk with a fixed text, namely 'Macedonian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=za with a fixed text, namely 'Zhuang' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "za" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ug with a fixed text, namely 'Uyghur' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ug" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ko with a fixed text, namely 'Korean' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ko" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=si with a fixed text, namely 'Sinhala' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "si" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kk with a fixed text, namely 'Kazakh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=na with a fixed text, namely 'Nauruan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "na" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nv with a fixed text, namely 'Navajo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fit with a fixed text, namely 'Meänkieli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fit" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xmf with a fixed text, namely 'Mingrelian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "xmf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aa with a fixed text, namely 'Afar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "aa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=anp with a fixed text, namely 'Angika' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "anp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rup with a fixed text, namely 'Aromanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rup" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vec with a fixed text, namely 'Venetian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vec" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vep with a fixed text, namely 'Veps' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vep" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bh with a fixed text, namely 'Bhojpuri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=shy with a fixed text, namely 'Shawiya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hz with a fixed text, namely 'Herero' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mnw with a fixed text, namely 'Mon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mnw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mzn with a fixed text, namely 'Mazanderani' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mzn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=oc with a fixed text, namely 'Occitan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "oc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=id with a fixed text, namely 'Indonesian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "id" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ve with a fixed text, namely 'Venda' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ve" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=min with a fixed text, namely 'Minangkabau' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "min" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mwl with a fixed text, namely 'Mirandese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mwl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pdc with a fixed text, namely 'Pennsylvania German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pdc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pfl with a fixed text, namely 'Palatinate German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pfl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nn with a fixed text, namely 'Nynorsk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nb with a fixed text, namely 'Bokmål' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kw with a fixed text, namely 'Cornish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sco with a fixed text, namely 'Scots' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sco" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mdf with a fixed text, namely 'Moksha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mdf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sd with a fixed text, namely 'Sindhi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tt with a fixed text, namely 'Tatar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=szl with a fixed text, namely 'Silesian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "szl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kaa with a fixed text, namely 'Karakalpak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kaa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=jv with a fixed text, namely 'Javanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "jv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tl with a fixed text, namely 'Tagalog' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=to with a fixed text, namely 'Tongan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "to" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=myv with a fixed text, namely 'Erzya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "myv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lez with a fixed text, namely 'Lezgian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lez" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cho with a fixed text, namely 'Choctaw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cho" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kl with a fixed text, namely 'Greenlandic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pms with a fixed text, namely 'Piedmontese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pms" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=crh with a fixed text, namely 'Crimean Tatar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "crh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=smn with a fixed text, namely 'Inari Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "smn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ksh with a fixed text, namely 'Ripuarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ksh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ny with a fixed text, namely 'Chewa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ny" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mn with a fixed text, namely 'Mongolian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ks with a fixed text, namely 'Kashmiri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ks" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ig with a fixed text, namely 'Igbo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ig" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rw with a fixed text, namely 'Kinyarwanda' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nds with a fixed text, namely 'Low German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nds" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ng with a fixed text, namely 'Ndonga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ng" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=skr with a fixed text, namely 'Saraiki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "skr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=se with a fixed text, namely 'Northern Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "se" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ik with a fixed text, namely 'Inupiaq' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ik" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kjh with a fixed text, namely 'Khakas' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kjh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ne with a fixed text, namely 'Nepali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ne" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nap with a fixed text, namely 'Neapolitan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nap" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lg with a fixed text, namely 'Luganda' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ht with a fixed text, namely 'Haitian Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ht" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=os with a fixed text, namely 'Ossetian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "os" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=new with a fixed text, namely 'Newar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "new" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=su with a fixed text, namely 'Sundanese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "su" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=iu with a fixed text, namely 'Inuktitut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "iu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ki with a fixed text, namely 'Gikuyu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ki" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kn with a fixed text, namely 'Kannada' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=inh with a fixed text, namely 'Ingush' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "inh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pcd with a fixed text, namely 'Picard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pcd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sc with a fixed text, namely 'Sardinian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=srn with a fixed text, namely 'Sranan Tongo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "srn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rn with a fixed text, namely 'Kirundi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ho with a fixed text, namely 'Hiri Motu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ho" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sg with a fixed text, namely 'Sango' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pap with a fixed text, namely 'Papiamento' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pap" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kbd with a fixed text, namely 'Kabardian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kbd" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=or with a fixed text, namely 'Odia' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "or" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=arn with a fixed text, namely 'Mapudungun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "arn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=om with a fixed text, namely 'Oromo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "om" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sat with a fixed text, namely 'Santali' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sat" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ii with a fixed text, namely 'Nuosu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ii" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kbp with a fixed text, namely 'Kabiye' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kbp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kab with a fixed text, namely 'Kabyle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kab" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kg with a fixed text, namely 'Kongo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krc with a fixed text, namely 'Karachay-Balkar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "krc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tum with a fixed text, namely 'Tumbuka' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tum" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tsg with a fixed text, namely 'Tausug' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tsg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=shi with a fixed text, namely 'Shilha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sn with a fixed text, namely 'Shona' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tpi with a fixed text, namely 'Tok Pisin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tpi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rif with a fixed text, namely 'Tarifit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rif" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tyv with a fixed text, namely 'Tuvan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tyv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ti with a fixed text, namely 'Tigrinya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ti" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tet with a fixed text, namely 'Tetum' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tet" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=scn with a fixed text, namely 'Sicilian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "scn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lmo with a fixed text, namely 'Lombard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lmo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ilo with a fixed text, namely 'Ilocano' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ilo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sm with a fixed text, namely 'Samoan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ss with a fixed text, namely 'Swazi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ss" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mni with a fixed text, namely 'Meitei' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mni" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kv with a fixed text, namely 'Komi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ku with a fixed text, namely 'Kurdish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ku" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lad with a fixed text, namely 'Judaeo-Spanish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lad" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ts with a fixed text, namely 'Tsonga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ts" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=st with a fixed text, namely 'Sesotho' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "st" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lij with a fixed text, namely 'Ligurian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lij" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mai with a fixed text, namely 'Maithili' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mai" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tvl with a fixed text, namely 'Tuvaluan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tvl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tn with a fixed text, namely 'Tswana' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wa with a fixed text, namely 'Walloon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nan with a fixed text, namely 'Southern Min' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nan" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pih with a fixed text, namely 'Pitkern' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pih" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lld with a fixed text, namely 'Ladin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lld" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ty with a fixed text, namely 'Tahitian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ty" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wo with a fixed text, namely 'Wolof' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=war with a fixed text, namely 'Waray' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "war" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lbe with a fixed text, namely 'Lak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lbe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ltg with a fixed text, namely 'Latgalian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ltg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mad with a fixed text, namely 'Madurese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mad" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mh with a fixed text, namely 'Marshallese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mo with a fixed text, namely 'Moldovan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yrk with a fixed text, namely 'Nenets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yrk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=chn with a fixed text, namely 'Chinook Jargon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "chn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kr with a fixed text, namely 'Kanuri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tw with a fixed text, namely 'Twi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=shn with a fixed text, namely 'Shan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=vls with a fixed text, namely 'West Flemish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vls" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pag with a fixed text, namely 'Pangasinan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pag" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nso with a fixed text, namely 'Northern Sotho' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nso" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ln with a fixed text, namely 'Lingala' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ln" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zea with a fixed text, namely 'Zeelandic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zea" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tay with a fixed text, namely 'Atayal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tay" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wuu with a fixed text, namely 'Wu Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wuu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sah with a fixed text, namely 'Sakha' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sah" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=jam with a fixed text, namely 'Jamaican Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "jam" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lkt with a fixed text, namely 'Lakota' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lkt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krl with a fixed text, namely 'Karelian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "krl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tcy with a fixed text, namely 'Tulu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tcy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sju with a fixed text, namely 'Ume Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sju" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sou with a fixed text, namely 'Southern Thai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sou" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=adx with a fixed text, namely 'Amdo Tibetan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "adx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sli with a fixed text, namely 'Silesian German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sli" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=als with a fixed text, namely 'Swiss German' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "als" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kha with a fixed text, namely 'Khasi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kha" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mnc with a fixed text, namely 'Manchu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mnc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yo with a fixed text, namely 'Yoruba' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ml with a fixed text, namely 'Malayalam' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ml" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hai with a fixed text, namely 'Haida' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hai" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kut with a fixed text, namely 'Kutenai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kut" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hoc with a fixed text, namely 'Ho' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hoc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gsg with a fixed text, namely 'German Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gsg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=li with a fixed text, namely 'Limburgish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "li" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hyw with a fixed text, namely 'Western Armenian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hyw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=esu with a fixed text, namely 'Central Alaskan Yup'ik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "esu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=abq with a fixed text, namely 'Abaza' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "abq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tli with a fixed text, namely 'Tlingit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tli" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=trv with a fixed text, namely 'Seediq' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "trv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=szy with a fixed text, namely 'Sakizaya' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "szy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lus with a fixed text, namely 'Mizo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lus" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=olo with a fixed text, namely 'Livvi-Karelian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "olo" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pnt with a fixed text, namely 'Pontic Greek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pnt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=koi with a fixed text, namely 'Permyak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "koi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nog with a fixed text, namely 'Nogai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nog" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wbl with a fixed text, namely 'Wakhi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wbl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tly with a fixed text, namely 'Talysh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tly" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mhr with a fixed text, namely 'Meadow Mari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mhr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ruq with a fixed text, namely 'Megleno-Romanian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ruq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mwv with a fixed text, namely 'Mentawai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mwv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=koy with a fixed text, namely 'Koyukon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "koy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=clc with a fixed text, namely 'Chilcotin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "clc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fiu-vro with a fixed text, namely 'Võro' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fiu-vro" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=frc with a fixed text, namely 'Louisiana French' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "frc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=guw with a fixed text, namely 'Gun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "guw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cnh with a fixed text, namely 'Hakha-Chin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cnh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sjm with a fixed text, namely 'Mapun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sjm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bzs with a fixed text, namely 'Brazilian Sign Language' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bzs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kcg with a fixed text, namely 'Tyap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kcg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mi with a fixed text, namely 'Māori' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aeb with a fixed text, namely 'Tunisian Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "aeb" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nrf-gg with a fixed text, namely 'Guernésiais' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nrf-gg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lki with a fixed text, namely 'Laki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lki" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bej with a fixed text, namely 'Beja' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bej" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ckt with a fixed text, namely 'Chukchi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ckt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mus with a fixed text, namely 'Muscogee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mus" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pwn with a fixed text, namely 'Paiwan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pwn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kj with a fixed text, namely 'Kwanyama' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rgn with a fixed text, namely 'Romagnol' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rgn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=abs with a fixed text, namely 'Ambonese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "abs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sxr with a fixed text, namely 'Saaroa' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sxr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ckv with a fixed text, namely 'Kavalan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ckv" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tsu with a fixed text, namely 'Tsou' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tsu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=xsy with a fixed text, namely 'Saisiyat' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "xsy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lvk with a fixed text, namely 'Lavukaleve' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lvk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh-yue with a fixed text, namely 'Yue Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zh-yue" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tvn with a fixed text, namely 'Tavoyan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tvn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pmy with a fixed text, namely 'Papuan Malay' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pmy" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kbg with a fixed text, namely 'Khamba' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kbg" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rwr with a fixed text, namely 'Marwari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rwr" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ttm with a fixed text, namely 'Northern Tutchone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ttm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mrj with a fixed text, namely 'Hill Mari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mrj" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nia with a fixed text, namely 'Nias' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nia" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=yrl with a fixed text, namely 'Nheengatu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yrl" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cak with a fixed text, namely 'Kaqchikel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cak" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ami with a fixed text, namely 'Amis' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ami" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=krx with a fixed text, namely 'Karon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "krx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hil with a fixed text, namely 'Hiligaynon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hil" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uun with a fixed text, namely 'Pazeh' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "uun" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sjt with a fixed text, namely 'Ter Sami' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sjt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wal with a fixed text, namely 'Wolaytta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wal" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=wym with a fixed text, namely 'Vilamovian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wym" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=arq with a fixed text, namely 'Algerian Arabic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "arq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bsk with a fixed text, namely 'Burushaski' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bsk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bqi with a fixed text, namely 'Bakhtiari' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bqi" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=hrx with a fixed text, namely 'Hunsrik' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hrx" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ssf with a fixed text, namely 'Thao' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ssf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=mrh with a fixed text, namely 'Mara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mrh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=aoc with a fixed text, namely 'Pemon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "aoc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tsk with a fixed text, namely 'Tseku' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tsk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=luz with a fixed text, namely 'Southern Luri' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "luz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tce with a fixed text, namely 'Southern Tutchone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tce" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=quc with a fixed text, namely 'K’iche’' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "quc" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bnn with a fixed text, namely 'Bunun' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bnn" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=lzz with a fixed text, namely 'Laz' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lzz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=sdh with a fixed text, namely 'Southern Kurdish' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sdh" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=nsk with a fixed text, namely 'Naskapi' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nsk" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=akz with a fixed text, namely 'Alabama' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "akz" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kri with a fixed text, namely 'Krio' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kri" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kea with a fixed text, namely 'Cape Verdean Creole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kea" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dru with a fixed text, namely 'Rukai' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dru" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=tzm with a fixed text, namely 'Central Atlas Tamazight' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tzm" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=bfq with a fixed text, namely 'Badaga' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bfq" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=khw with a fixed text, namely 'Khowar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "khw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=uzs with a fixed text, namely 'Southern Uzbek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "uzs" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rmf with a fixed text, namely 'Finnish Kalo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rmf" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=osa with a fixed text, namely 'Osage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "osa" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=cps with a fixed text, namely 'Capiznon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cps" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pjt with a fixed text, namely 'Pitjantjatjara' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pjt" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kjp with a fixed text, namely 'Eastern Pwo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kjp" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=gpe with a fixed text, namely 'Ghanaian Pidgin English' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gpe" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=kiu with a fixed text, namely 'Kirmanjki' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kiu" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=rar with a fixed text, namely 'Cook Islands Maori' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rar" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=ksw with a fixed text, namely 'S'gaw Karen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ksw" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=zh_Hant with a fixed text, namely 'Simplified Chinese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "zh_Hant" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=pt_BR with a fixed text, namely 'Brazilian Portuguese' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pt_BR" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=fil with a fixed text, namely 'Filipino' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fil" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Shelter showing features with this tag", + "value": "shelter" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows and asks freeform values for key 'shelter_type' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=public_transport with a fixed text, namely 'This is a shelter at a public transport stop.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public_transport" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=picnic_shelter with a fixed text, namely 'This is a shelter protecting from rain at a picnic site.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "picnic_shelter" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=gazebo with a fixed text, namely 'This is a gazebo.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gazebo" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=weather_shelter with a fixed text, namely 'This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "weather_shelter" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=lean_to with a fixed text, namely 'This is a shed with 3 walls, primarily intended for camping.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lean_to" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=pavilion with a fixed text, namely 'This is a pavilion' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pavilion" + }, + { + "key": "shelter_type", + "description": "Layer 'Shelter' shows shelter_type=basic_hut with a fixed text, namely 'This is a basic hut, providing basic shelter and sleeping facilities.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "basic_hut" + }, { "key": "shop", "description": "The MapComplete theme Personal theme has a layer Shop showing features with this tag" @@ -6086,23 +10195,43 @@ }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "convenience" + "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "agrarian" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "supermarket" + "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "alcohol" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "clothes" + "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "anime" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "hairdresser" + "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antiques Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "antiques" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "appliance" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "art" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "baby_goods" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bag" }, { "key": "shop", @@ -6111,29 +10240,786 @@ }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car repair (garage)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bathroom_furnishing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "beauty" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bed" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "beverages" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bicycle" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "boat" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bookmaker" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Book Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "books" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "brewing_supplies" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "butcher" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "camera" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "candles" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cannabis" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "car" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "car_parts" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "car_repair" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car dealer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "car" + "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "caravan" }, { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + "key": "shop", + "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "carpet" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "catalogue" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "charity" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cheese" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "chemist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "chocolate" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "clothes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "coffee" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "collector" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "computer" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "confectionery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "convenience" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "copyshop" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cosmetics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Country Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "country_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "craft" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "curtain" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dairy" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Deli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "deli" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "department_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "doityourself" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "doors" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dry_cleaning" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "e-cigarette" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "electrical" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "electronics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "erotic" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fabric" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "farm" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fashion_accessories" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fireplace" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fishing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "flooring" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "florist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "frame" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "frozen_food" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fuel" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "funeral_directors" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "furniture" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "games" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "garden_centre" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gas" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "general" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gift" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "greengrocer" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hairdresser" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hairdresser_supply" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hardware" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "health_food" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hearing_aids" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "herbalist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hifi" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hobby with a fixed text, namely 'Hobby Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hobby" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "household_linen" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "houseware" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hunting" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "interior_decoration" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "jewelry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kiosk" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kitchen" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "laundry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "leather" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lighting" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "locksmith" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lottery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mall" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "massage" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "medical_supply" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "military_surplus" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mobile_phone" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "model" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "money_lender" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "motorcycle" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "motorcycle_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "music" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "musical_instrument" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newspaper/Magazine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "newsagent" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "nutrition_supplements" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "optician" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "outdoor" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "outpost" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paint" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "party" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pastry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawn Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pawnbroker" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "perfumery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pet" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Grooming Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pet_grooming" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "photo" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pottery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "printer_ink" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "psychic" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pyrotechnics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "radiotechnics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "religion" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rental" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "scuba_diving" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "seafood" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Consignment/Thrift Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "second_hand" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sewing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shoe_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shoes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "spices" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sports" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "stationery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "storage_rental" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "supermarket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "swimming_pool" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tailor" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tattoo" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tea" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "telecommunication" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ticket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tiles" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tobacco" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tool_hire" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "toys" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "trade" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "travel_agency" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "trophy" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tyres" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vacuum_cleaner" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Variety Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "variety_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "video" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "video_games" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "watches" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "water" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "water_sports" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "weapons" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wholesale" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wigs" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "window_blind" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wine" + }, + { + "key": "opening_hours", + "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "website", "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" }, + { + "key": "contact:website", + "description": "Layer 'Shop' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "email", "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + "key": "contact:email", + "description": "Layer 'Shop' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Shop' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "payment:cash", @@ -6146,134 +11032,58 @@ "value": "yes" }, { - "key": "highway", - "description": "The MapComplete theme Personal theme has a layer Paadjes, trage wegen en autoluwe straten showing features with this tag", - "value": "pedestrian" + "key": "level", + "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "highway", - "description": "The MapComplete theme Personal theme has a layer Paadjes, trage wegen en autoluwe straten showing features with this tag", - "value": "footway" + "key": "location", + "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" }, { - "key": "highway", - "description": "The MapComplete theme Personal theme has a layer Paadjes, trage wegen en autoluwe straten showing features with this tag", - "value": "path" + "key": "level", + "description": "Layer 'Shop' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" }, { - "key": "highway", - "description": "The MapComplete theme Personal theme has a layer Paadjes, trage wegen en autoluwe straten showing features with this tag", - "value": "bridleway" + "key": "level", + "description": "Layer 'Shop' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" }, { - "key": "highway", - "description": "The MapComplete theme Personal theme has a layer Paadjes, trage wegen en autoluwe straten showing features with this tag", - "value": "living_street" + "key": "level", + "description": "Layer 'Shop' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" }, { - "key": "highway", - "description": "The MapComplete theme Personal theme has a layer Paadjes, trage wegen en autoluwe straten showing features with this tag", - "value": "track" + "key": "level", + "description": "Layer 'Shop' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" }, { - "key": "image", - "description": "The layer 'Paadjes, trage wegen en autoluwe straten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Paadjes, trage wegen en autoluwe straten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Paadjes, trage wegen en autoluwe straten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Paadjes, trage wegen en autoluwe straten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "highway", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows highway=living_street with a fixed text, namely '
Dit is een woonerf:
  • Voetgangers mogen hier de volledige breedte van de straat gebruiken
  • Gemotoriseerd verkeer mag maximaal 20km/h rijden
' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "living_street" - }, - { - "key": "highway", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows highway=pedestrian with a fixed text, namely 'Dit is een brede, autovrije straat' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "pedestrian" - }, - { - "key": "highway", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows highway=footway with a fixed text, namely 'Dit is een voetpaadje' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "footway" - }, - { - "key": "highway", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows highway=path with a fixed text, namely 'Dit is een wegeltje of bospad' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "path" - }, - { - "key": "highway", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows highway=bridleway with a fixed text, namely 'Dit is een ruiterswegel' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "bridleway" - }, - { - "key": "highway", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows highway=track with a fixed text, namely 'Dit is een tractorspoor of weg om landbouwgrond te bereikken' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "track" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=grass with a fixed text, namely 'The surface is grass' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "grass" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=ground with a fixed text, namely 'The surface is ground' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "ground" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=unpaved with a fixed text, namely 'The surface is unpaved' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "unpaved" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=sand with a fixed text, namely 'The surface is sand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "sand" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=paving_stones with a fixed text, namely 'The surface is paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "paving_stones" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=asphalt with a fixed text, namely 'The surface is asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "asphalt" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=concrete with a fixed text, namely 'The surface is concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "concrete" - }, - { - "key": "surface", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows surface=paved with a fixed text, namely 'The surface is paved' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "paved" - }, - { - "key": "lit", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows lit=yes with a fixed text, namely ''s nachts verlicht' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "key": "service:print:A4", + "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, { - "key": "lit", - "description": "Layer 'Paadjes, trage wegen en autoluwe straten' shows lit=no with a fixed text, namely 'Niet verlicht' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "no" + "key": "service:print:A3", + "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:print:A2", + "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:print:A1", + "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:print:A0", + "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" }, { "key": "leisure", @@ -6366,7 +11176,7 @@ }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "limited" }, { @@ -6413,7 +11223,7 @@ }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows with a fixed text, namely '24/7 toegankelijk' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key opening_hours.", + "description": "Layer 'Sport pitches' shows with a fixed text, namely 'Always accessible' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key opening_hours.", "value": "" }, { @@ -6426,6 +11236,22 @@ "description": "The MapComplete theme Personal theme has a layer Street Lamps showing features with this tag", "value": "street_lamp" }, + { + "key": "image", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "ref", "description": "Layer 'Street Lamps' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme')" @@ -6662,17 +11488,17 @@ }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "public" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "outdoor" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "indoor" }, { @@ -6739,7 +11565,7 @@ }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed one a pole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed on a pole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "pole" }, { @@ -6747,6 +11573,112 @@ "description": "Layer 'Surveillance camera's' shows camera:mount=ceiling with a fixed text, namely 'This camera is placed on the ceiling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "ceiling" }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=street_lamp with a fixed text, namely 'This camera is placed on a street light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "street_lamp" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=tree with a fixed text, namely 'This camera is placed on a tree' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tree" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Colleges and universities showing features with this tag", + "value": "college" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Colleges and universities showing features with this tag", + "value": "university" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Colleges and universities showing features with this tag", + "value": "school" + }, + { + "key": "isced:2011:level", + "description": "The MapComplete theme Personal theme has a layer Colleges and universities showing features with this tag" + }, + { + "key": "isced:2011:level", + "description": "The MapComplete theme Personal theme has a layer Colleges and universities showing features with this tag" + }, + { + "key": "amenity", + "description": "Layer 'Colleges and universities' shows amenity=college with a fixed text, namely 'This is an institution of post-secondary, non-tertiary education. One has to have completed secondary education to enroll here, but no bachelor (or higher) degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "college" + }, + { + "key": "amenity", + "description": "Layer 'Colleges and universities' shows amenity=university with a fixed text, namely 'This is a university, an institution of tertiary education where bachelor degrees or higher are awarded.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "university" + }, + { + "key": "isced:2011:level", + "description": "Layer 'Colleges and universities' shows isced:2011:level=bachelor with a fixed text, namely 'Bachelor degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bachelor" + }, + { + "key": "isced:2011:level", + "description": "Layer 'Colleges and universities' shows isced:2011:level=master with a fixed text, namely 'Master degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "master" + }, + { + "key": "isced:2011:level", + "description": "Layer 'Colleges and universities' shows isced:2011:level=doctorate with a fixed text, namely 'Doctorate degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "doctorate" + }, + { + "key": "capacity", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mixed" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separated" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "male" + }, + { + "key": "school:gender", + "description": "Layer 'Colleges and universities' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "female" + }, + { + "key": "website", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Colleges and universities' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Colleges and universities' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Colleges and universities' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "amenity", "description": "The MapComplete theme Personal theme has a layer Toilets showing features with this tag", @@ -6768,6 +11700,35 @@ "key": "wikipedia", "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, { "key": "access", "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Personal theme')" @@ -6840,6 +11801,15 @@ "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "door:width", + "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "toilets:position", "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", @@ -6914,130 +11884,196 @@ "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, - { - "key": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "-1" - }, { "key": "description", "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "route", - "description": "The MapComplete theme Personal theme has a layer Trails showing features with this tag" + "key": "type", + "description": "The MapComplete theme Personal theme has a layer Bus lines showing features with this tag", + "value": "route" }, { "key": "route", - "description": "The MapComplete theme Personal theme has a layer Trails showing features with this tag" - }, - { - "key": "route", - "description": "The MapComplete theme Personal theme has a layer Trails showing features with this tag" - }, - { - "key": "route", - "description": "The MapComplete theme Personal theme has a layer Trails showing features with this tag" - }, - { - "key": "image", - "description": "The layer 'Trails allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Trails allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Trails allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Trails allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The MapComplete theme Personal theme has a layer Bus lines showing features with this tag", + "value": "bus" }, { "key": "name", - "description": "Layer 'Trails' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bus lines' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "from", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'from' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "via", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'via' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "to", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'to' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "colour", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "network", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'network' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "operator", - "description": "Layer 'Trails' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Bus lines' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "operator", - "description": "Layer 'Trails' shows operator=Natuurpunt with a fixed text, namely 'Dit gebied wordt beheerd door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "Natuurpunt" + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Transit Stops showing features with this tag", + "value": "bus_stop" }, { - "key": "operator", - "description": "Layer 'Trails' shows operator~^(n|N)atuurpunt.*$ with a fixed text, namely 'Dit gebied wordt beheerd door {operator}' (in the MapComplete.osm.be theme 'Personal theme')" + "key": "name", + "description": "Layer 'Transit Stops' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "colour", - "description": "Layer 'Trails' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "colour", - "description": "Layer 'Trails' shows colour=blue with a fixed text, namely 'Blue trail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "blue" - }, - { - "key": "colour", - "description": "Layer 'Trails' shows colour=red with a fixed text, namely 'Red trail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "red" - }, - { - "key": "colour", - "description": "Layer 'Trails' shows colour=green with a fixed text, namely 'Green trail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "green" - }, - { - "key": "colour", - "description": "Layer 'Trails' shows colour=yellow with a fixed text, namely 'Yellow trail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "yellow" - }, - { - "key": "wheelchair", - "description": "Layer 'Trails' shows wheelchair=yes with a fixed text, namely 'deze wandeltocht is toegankelijk met de rolstoel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "key": "noname", + "description": "Layer 'Transit Stops' shows noname=yes with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, { - "key": "wheelchair", - "description": "Layer 'Trails' shows wheelchair=no with a fixed text, namely 'deze wandeltocht is niet toegankelijk met de rolstoel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "key": "name", + "description": "Layer 'Transit Stops' shows noname=yes with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "image", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "shelter", + "description": "Layer 'Transit Stops' shows shelter=yes with a fixed text, namely 'This stop has a shelter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "shelter", + "description": "Layer 'Transit Stops' shows shelter=no with a fixed text, namely 'This stop does not have a shelter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, { - "key": "pushchair", - "description": "Layer 'Trails' shows pushchair=yes with a fixed text, namely 'deze wandeltocht is toegankelijk met de buggy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "key": "shelter", + "description": "Layer 'Transit Stops' shows shelter=separate with a fixed text, namely 'This stop has a shelter, that's separately mapped' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separate" + }, + { + "key": "bench", + "description": "Layer 'Transit Stops' shows bench=yes with a fixed text, namely 'This stop has a bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "yes" }, { - "key": "pushchair", - "description": "Layer 'Trails' shows pushchair=no with a fixed text, namely 'deze wandeltocht is niet toegankelijk met de buggy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "key": "bench", + "description": "Layer 'Transit Stops' shows bench=no with a fixed text, namely 'This stop does not have a bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "bench", + "description": "Layer 'Transit Stops' shows bench=separate with a fixed text, namely 'This stop has a bench, that's separately mapped' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separate" + }, + { + "key": "bin", + "description": "Layer 'Transit Stops' shows bin=yes with a fixed text, namely 'This stop has a bin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "bin", + "description": "Layer 'Transit Stops' shows bin=no with a fixed text, namely 'This stop does not have a bin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "bin", + "description": "Layer 'Transit Stops' shows bin=separate with a fixed text, namely 'This stop has a bin, that's separately mapped' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separate" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Transit Stops' shows tactile_paving=yes with a fixed text, namely 'This stop has tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Transit Stops' shows tactile_paving=no with a fixed text, namely 'This stop does not have tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "lit", + "description": "Layer 'Transit Stops' shows lit=yes with a fixed text, namely 'This stop is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "lit", + "description": "Layer 'Transit Stops' shows lit=no with a fixed text, namely 'This stop is not lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=yes with a fixed text, namely 'This stop has a departures board of unknown type' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=realtime with a fixed text, namely 'This stop has a board showing realtime departure information' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "realtime" + }, + { + "key": "passenger_information_display", + "description": "Layer 'Transit Stops' shows passenger_information_display=yes with a fixed text, namely 'This stop has a board showing realtime departure information' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=timetable with a fixed text, namely 'This stop has a timetable showing regular departures' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "timetable" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=interval with a fixed text, namely 'This stop has a timetable containing just the interval between departures' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "interval" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=no with a fixed text, namely 'This stop does not have a departures board' (in the MapComplete.osm.be theme 'Personal theme')", "value": "no" }, { @@ -7063,7 +12099,7 @@ }, { "key": "height", - "description": "Layer 'Tree' shows height~^[0-9.]+$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "Layer 'Tree' shows height~^^[0-9.]+$$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "leaf_type", @@ -7102,7 +12138,7 @@ }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is a residential garden.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is in a residential garden.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "garden" }, { @@ -7112,7 +12148,7 @@ }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is an urban area.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is in an urban area.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "urban" }, { @@ -7130,6 +12166,10 @@ "description": "Layer 'Tree' shows leaf_cycle=evergreen with a fixed text, namely 'Evergreen.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", "value": "evergreen" }, + { + "key": "species:wikidata", + "description": "Layer 'Tree' shows and asks freeform values for key 'species:wikidata' (in the MapComplete.osm.be theme 'Personal theme')" + }, { "key": "name", "description": "Layer 'Tree' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" @@ -7197,66 +12237,55 @@ "description": "Layer 'Tree' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "tourism", - "description": "The MapComplete theme Personal theme has a layer Viewpoint showing features with this tag", - "value": "viewpoint" + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer veterinary showing features with this tag", + "value": "veterinary" }, { - "key": "image", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "website", + "description": "Layer 'veterinary' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "mapillary", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "contact:website", + "description": "Layer 'veterinary' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "wikidata", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "phone", + "description": "Layer 'veterinary' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "wikipedia", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "contact:phone", + "description": "Layer 'veterinary' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "description", - "description": "Layer 'Viewpoint' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + "key": "opening_hours", + "description": "Layer 'veterinary' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" }, { - "key": "landuse", - "description": "The MapComplete theme Personal theme has a layer Speelweide showing features with this tag", - "value": "village_green" - }, - { - "key": "image", - "description": "The layer 'Speelweide allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Speelweide allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Speelweide allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Speelweide allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "information", - "description": "The MapComplete theme Personal theme has a layer Visitor Information Centre showing features with this tag", - "value": "visitor_centre" - }, - { - "key": "information", - "description": "The MapComplete theme Personal theme has a layer Visitor Information Centre showing features with this tag", - "value": "office" + "key": "name", + "description": "Layer 'veterinary' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "amenity", "description": "The MapComplete theme Personal theme has a layer Waste Basket showing features with this tag", "value": "waste_basket" }, + { + "key": "image", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "waste", "description": "Layer 'Waste Basket' shows with a fixed text, namely 'A waste basket for general waste' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key waste.", @@ -7357,102 +12386,45 @@ "value": "" }, { - "key": "man_made", - "description": "The MapComplete theme Personal theme has a layer Watermill showing features with this tag", - "value": "watermill" + "key": "generator:source", + "description": "The MapComplete theme Personal theme has a layer wind turbine showing features with this tag", + "value": "wind" + }, + { + "key": "generator:output:electricity", + "description": "Layer 'wind turbine' shows and asks freeform values for key 'generator:output:electricity' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'wind turbine' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "height", + "description": "Layer 'wind turbine' shows and asks freeform values for key 'height' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "rotor:diameter", + "description": "Layer 'wind turbine' shows and asks freeform values for key 'rotor:diameter' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "start_date", + "description": "Layer 'wind turbine' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Personal theme')" }, { "key": "image", - "description": "The layer 'Watermill allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Watermill allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Watermill allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Watermill allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "access:description", - "description": "Layer 'Watermill' shows and asks freeform values for key 'access:description' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "access", - "description": "Layer 'Watermill' shows access=yes with a fixed text, namely 'Vrij toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Watermill' shows access=yes with a fixed text, namely 'Vrij toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.", - "value": "" - }, - { - "key": "access", - "description": "Layer 'Watermill' shows access=no with a fixed text, namely 'Niet toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "no" - }, - { - "key": "fee", - "description": "Layer 'Watermill' shows access=no with a fixed text, namely 'Niet toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.", - "value": "" - }, - { - "key": "access", - "description": "Layer 'Watermill' shows access=private with a fixed text, namely 'Niet toegankelijk, want privégebied' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "private" - }, - { - "key": "fee", - "description": "Layer 'Watermill' shows access=private with a fixed text, namely 'Niet toegankelijk, want privégebied' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.", - "value": "" - }, - { - "key": "access", - "description": "Layer 'Watermill' shows access=permissive with a fixed text, namely 'Toegankelijk, ondanks dat het privegebied is' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "permissive" - }, - { - "key": "fee", - "description": "Layer 'Watermill' shows access=permissive with a fixed text, namely 'Toegankelijk, ondanks dat het privegebied is' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.", - "value": "" - }, - { - "key": "access", - "description": "Layer 'Watermill' shows access=guided with a fixed text, namely 'Enkel toegankelijk met een gids of tijdens een activiteit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "guided" - }, - { - "key": "fee", - "description": "Layer 'Watermill' shows access=guided with a fixed text, namely 'Enkel toegankelijk met een gids of tijdens een activiteit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.", - "value": "" - }, - { - "key": "access", - "description": "Layer 'Watermill' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Watermill' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "yes" - }, - { - "key": "operator", - "description": "Layer 'Watermill' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" - }, - { - "key": "operator", - "description": "Layer 'Watermill' shows operator=Natuurpunt with a fixed text, namely 'Dit gebied wordt beheerd door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", - "value": "Natuurpunt" - }, - { - "key": "operator", - "description": "Layer 'Watermill' shows operator~^(n|N)atuurpunt.*$ with a fixed text, namely 'Dit gebied wordt beheerd door {operator}' (in the MapComplete.osm.be theme 'Personal theme')" + "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_pets.json b/Docs/TagInfo/mapcomplete_pets.json new file mode 100644 index 0000000000..e9af464206 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_pets.json @@ -0,0 +1,1434 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Veterinarians, dog parks and other pet-amenities", + "description": "On this map, you'll find various interesting places for you pets: veterinarians, dog parks, pet shops, dog-friendly restaurants, ", + "project_url": "https://mapcomplete.osm.be/pets", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/dogpark/dog-park.svg", + "contact_name": "Pieter Vander Vennet, Niels Elgaard Larsen", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "leisure", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer dog parks showing features with this tag", + "value": "dog_park" + }, + { + "key": "leisure", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer dog parks showing features with this tag", + "value": "park" + }, + { + "key": "dog", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer dog parks showing features with this tag", + "value": "unleashed" + }, + { + "key": "barrier", + "description": "Layer 'dog parks' shows barrier=fence with a fixed text, namely 'This dogpark is fenced all around' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fence" + }, + { + "key": "barrier", + "description": "Layer 'dog parks' shows barrier=no with a fixed text, namely 'This dogpark is not fenced all around' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "small_dog", + "description": "Layer 'dog parks' shows small_dog=separate with a fixed text, namely 'Have separate area for puppies and small dogs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "separate" + }, + { + "key": "small_dog", + "description": "Layer 'dog parks' shows small_dog=shared with a fixed text, namely 'Does not have a separate area for puppies and small dogs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "shared" + }, + { + "key": "name", + "description": "Layer 'dog parks' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "image", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "amenity", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", + "value": "restaurant" + }, + { + "key": "amenity", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", + "value": "cafe" + }, + { + "key": "dog", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", + "value": "unleashed" + }, + { + "key": "dog", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", + "value": "leashed" + }, + { + "key": "dog", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", + "value": "yes" + }, + { + "key": "image", + "description": "The layer 'Dog friendly eateries allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Dog friendly eateries allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Dog friendly eateries allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Dog friendly eateries allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "location", + "description": "Layer 'Dog friendly eateries' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Dog friendly eateries' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Dog friendly eateries' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Dog friendly eateries' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Dog friendly eateries' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "-1" + }, + { + "key": "name", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "amenity", + "description": "Layer 'Dog friendly eateries' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fast_food" + }, + { + "key": "amenity", + "description": "Layer 'Dog friendly eateries' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "restaurant" + }, + { + "key": "opening_hours", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "website", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:website", + "description": "Layer 'Dog friendly eateries' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "email", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:email", + "description": "Layer 'Dog friendly eateries' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "phone", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:phone", + "description": "Layer 'Dog friendly eateries' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "payment:cash", + "description": "Layer 'Dog friendly eateries' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Dog friendly eateries' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Dog friendly eateries' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Dog friendly eateries' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Dog friendly eateries' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Dog friendly eateries' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pizza" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "friture" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pasta" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=kebab with a fixed text, namely 'This is kebab shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "kebab" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=sandwich with a fixed text, namely 'This is a sandwichbar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "sandwich" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=burger with a fixed text, namely 'Burgers are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "burger" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=sushi with a fixed text, namely 'Sushi is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "sushi" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=coffee with a fixed text, namely 'Coffee is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "coffee" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=italian with a fixed text, namely 'This is an italian restaurant (which serves more then pasta and pizza)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "italian" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=french with a fixed text, namely 'French dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "french" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=chinese with a fixed text, namely 'Chinese dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "chinese" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=greek with a fixed text, namely 'Greek dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "greek" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=indian with a fixed text, namely 'Indian dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "indian" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=turkish with a fixed text, namely 'Turkish dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "turkish" + }, + { + "key": "cuisine", + "description": "Layer 'Dog friendly eateries' shows cuisine=thai with a fixed text, namely 'Thai dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "thai" + }, + { + "key": "takeaway", + "description": "Layer 'Dog friendly eateries' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "only" + }, + { + "key": "takeaway", + "description": "Layer 'Dog friendly eateries' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "takeaway", + "description": "Layer 'Dog friendly eateries' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "delivery", + "description": "Layer 'Dog friendly eateries' shows delivery=yes with a fixed text, namely 'This business does home delivery (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "delivery", + "description": "Layer 'Dog friendly eateries' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "only" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "only" + }, + { + "key": "diet:halal", + "description": "Layer 'Dog friendly eateries' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "diet:halal", + "description": "Layer 'Dog friendly eateries' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "diet:halal", + "description": "Layer 'Dog friendly eateries' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "diet:halal", + "description": "Layer 'Dog friendly eateries' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "only" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "diet:vegan", + "description": "Layer 'Dog friendly eateries' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "friture:oil", + "description": "Layer 'Dog friendly eateries' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "vegetable" + }, + { + "key": "friture:oil", + "description": "Layer 'Dog friendly eateries' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "animal" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Dog friendly eateries' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Dog friendly eateries' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Dog friendly eateries' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "only" + }, + { + "key": "service:electricity", + "description": "Layer 'Dog friendly eateries' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "service:electricity", + "description": "Layer 'Dog friendly eateries' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "limited" + }, + { + "key": "service:electricity", + "description": "Layer 'Dog friendly eateries' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "ask" + }, + { + "key": "service:electricity", + "description": "Layer 'Dog friendly eateries' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Dog friendly eateries' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "dog", + "description": "Layer 'Dog friendly eateries' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Dog friendly eateries' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "leashed" + }, + { + "key": "dog", + "description": "Layer 'Dog friendly eateries' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "unleashed" + }, + { + "key": "shop", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag" + }, + { + "key": "dog", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", + "value": "leashed" + }, + { + "key": "dog", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", + "value": "yes" + }, + { + "key": "shop", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", + "value": "pet" + }, + { + "key": "image", + "description": "The layer 'Dog-friendly shops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Dog-friendly shops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Dog-friendly shops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Dog-friendly shops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'shop' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "agrarian" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "alcohol" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "anime" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=antiques with a fixed text, namely 'Antiques Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "antiques" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "appliance" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "art" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "baby_goods" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "bag" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "bakery" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "bathroom_furnishing" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "beauty" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "bed" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "beverages" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "bicycle" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "boat" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "bookmaker" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=books with a fixed text, namely 'Book Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "books" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "brewing_supplies" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "butcher" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "camera" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "candles" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "cannabis" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "car" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "car_parts" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "car_repair" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "caravan" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "carpet" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "catalogue" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "charity" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "cheese" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "chemist" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "chocolate" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "clothes" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "coffee" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "collector" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "computer" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "confectionery" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "convenience" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "copyshop" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "cosmetics" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=country_store with a fixed text, namely 'Country Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "country_store" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "craft" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "curtain" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "dairy" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=deli with a fixed text, namely 'Deli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "deli" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "department_store" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "doityourself" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "doors" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "dry_cleaning" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "e-cigarette" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "electrical" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "electronics" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "erotic" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fabric" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "farm" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fashion_accessories" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fireplace" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fishing" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "flooring" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "florist" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "frame" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "frozen_food" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "fuel" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "funeral_directors" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "furniture" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "games" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "garden_centre" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "gas" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "general" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "gift" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "greengrocer" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hairdresser" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hairdresser_supply" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hardware" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=health_food with a fixed text, namely 'Health Food Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "health_food" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hearing_aids" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "herbalist" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hifi" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hobby with a fixed text, namely 'Hobby Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hobby" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "household_linen" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "houseware" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "hunting" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "interior_decoration" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "jewelry" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "kiosk" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "kitchen" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "laundry" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "leather" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "lighting" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "locksmith" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "lottery" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "mall" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "massage" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "medical_supply" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "military_surplus" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "mobile_phone" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "model" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "money_lender" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "motorcycle" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "motorcycle_repair" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "music" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "musical_instrument" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=newsagent with a fixed text, namely 'Newspaper/Magazine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "newsagent" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "nutrition_supplements" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "optician" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "outdoor" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "outpost" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "paint" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "party" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pastry" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=pawnbroker with a fixed text, namely 'Pawn Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pawnbroker" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "perfumery" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pet" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=pet_grooming with a fixed text, namely 'Pet Grooming Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pet_grooming" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "photo" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pottery" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "printer_ink" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "psychic" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "pyrotechnics" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "radiotechnics" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "religion" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "rental" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "repair" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "scuba_diving" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "seafood" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=second_hand with a fixed text, namely 'Consignment/Thrift Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "second_hand" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "sewing" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "shoe_repair" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "shoes" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "spices" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "sports" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "stationery" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "storage_rental" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "supermarket" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "swimming_pool" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tailor" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tattoo" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tea" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "telecommunication" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "ticket" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tiles" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tobacco" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tool_hire" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "toys" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "trade" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "travel_agency" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "trophy" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "tyres" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "vacuum_cleaner" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=variety_store with a fixed text, namely 'Variety Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "variety_store" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "video" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "video_games" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "watches" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "water" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "water_sports" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "weapons" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "wholesale" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "wigs" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "window_blind" + }, + { + "key": "shop", + "description": "Layer 'Dog-friendly shops' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "wine" + }, + { + "key": "opening_hours", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "website", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:website", + "description": "Layer 'Dog-friendly shops' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "email", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:email", + "description": "Layer 'Dog-friendly shops' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "phone", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:phone", + "description": "Layer 'Dog-friendly shops' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "payment:cash", + "description": "Layer 'Dog-friendly shops' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Dog-friendly shops' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "level", + "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "location", + "description": "Layer 'Dog-friendly shops' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Dog-friendly shops' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Dog-friendly shops' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Dog-friendly shops' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Dog-friendly shops' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "-1" + }, + { + "key": "service:print:A4", + "description": "Layer 'Dog-friendly shops' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "service:print:A3", + "description": "Layer 'Dog-friendly shops' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "service:print:A2", + "description": "Layer 'Dog-friendly shops' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "service:print:A1", + "description": "Layer 'Dog-friendly shops' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "service:print:A0", + "description": "Layer 'Dog-friendly shops' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')", + "value": "yes" + }, + { + "key": "amenity", + "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer veterinary showing features with this tag", + "value": "veterinary" + }, + { + "key": "website", + "description": "Layer 'veterinary' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:website", + "description": "Layer 'veterinary' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "phone", + "description": "Layer 'veterinary' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "contact:phone", + "description": "Layer 'veterinary' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "opening_hours", + "description": "Layer 'veterinary' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + }, + { + "key": "name", + "description": "Layer 'veterinary' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Veterinarians, dog parks and other pet-amenities')" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_playgrounds.json b/Docs/TagInfo/mapcomplete_playgrounds.json index a36e73f08c..b13bba9598 100644 --- a/Docs/TagInfo/mapcomplete_playgrounds.json +++ b/Docs/TagInfo/mapcomplete_playgrounds.json @@ -122,6 +122,11 @@ "description": "Layer 'Playgrounds' shows access=private with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Playgrounds')", "value": "private" }, + { + "key": "leisure", + "description": "Layer 'Playgrounds' shows leisure=schoolyard with a fixed text, namely 'This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Playgrounds')", + "value": "schoolyard" + }, { "key": "website", "description": "Layer 'Playgrounds' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Playgrounds')" diff --git a/Docs/TagInfo/mapcomplete_rainbow_crossings.json b/Docs/TagInfo/mapcomplete_rainbow_crossings.json new file mode 100644 index 0000000000..0c48ec6a35 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_rainbow_crossings.json @@ -0,0 +1,45 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Rainbow pedestrian crossings", + "description": "On this map, rainbow-painted pedestrian crossings are shown and can be easily added", + "project_url": "https://mapcomplete.osm.be/rainbow_crossings", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/themes/rainbow_crossings/logo.svg", + "contact_name": "Pieter Vander Vennet, ", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "highway", + "description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag", + "value": "crossing" + }, + { + "key": "image", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "crossing:marking", + "description": "Layer 'Crossings with rainbow paintings' shows crossing:marking=rainbow with a fixed text, namely 'This crossing has rainbow paintings' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Rainbow pedestrian crossings')", + "value": "rainbow" + }, + { + "key": "not:crossing:marking", + "description": "Layer 'Crossings with rainbow paintings' shows not:crossing:marking=rainbow with a fixed text, namely 'No rainbow paintings here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Rainbow pedestrian crossings')", + "value": "rainbow" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_shops.json b/Docs/TagInfo/mapcomplete_shops.json index aa0fd7a712..ba687edb6e 100644 --- a/Docs/TagInfo/mapcomplete_shops.json +++ b/Docs/TagInfo/mapcomplete_shops.json @@ -40,23 +40,43 @@ }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", - "value": "convenience" + "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "agrarian" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", - "value": "supermarket" + "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "alcohol" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", - "value": "clothes" + "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "anime" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", - "value": "hairdresser" + "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antiques Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "antiques" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "appliance" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "art" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "baby_goods" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "bag" }, { "key": "shop", @@ -65,29 +85,786 @@ }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car repair (garage)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "bathroom_furnishing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "beauty" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "bed" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "beverages" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "bicycle" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "boat" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "bookmaker" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Book Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "books" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "brewing_supplies" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "butcher" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "camera" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "candles" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "cannabis" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "car" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "car_parts" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", "value": "car_repair" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car dealer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", - "value": "car" + "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "caravan" }, { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Shop Map')" + "key": "shop", + "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "carpet" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "catalogue" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "charity" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "cheese" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "chemist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "chocolate" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "clothes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "coffee" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "collector" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "computer" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "confectionery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "convenience" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "copyshop" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "cosmetics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Country Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "country_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "craft" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "curtain" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "dairy" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Deli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "deli" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "department_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "doityourself" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "doors" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "dry_cleaning" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "e-cigarette" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "electrical" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "electronics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "erotic" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "fabric" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "farm" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "fashion_accessories" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "fireplace" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "fishing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "flooring" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "florist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "frame" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "frozen_food" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "fuel" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "funeral_directors" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "furniture" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "games" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "garden_centre" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "gas" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "general" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "gift" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "greengrocer" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hairdresser" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hairdresser_supply" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hardware" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "health_food" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hearing_aids" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "herbalist" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hifi" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hobby with a fixed text, namely 'Hobby Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hobby" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "household_linen" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "houseware" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "hunting" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "interior_decoration" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "jewelry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "kiosk" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "kitchen" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "laundry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "leather" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "lighting" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "locksmith" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "lottery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "mall" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "massage" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "medical_supply" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "military_surplus" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "mobile_phone" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "model" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "money_lender" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "motorcycle" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "motorcycle_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "music" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "musical_instrument" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newspaper/Magazine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "newsagent" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "nutrition_supplements" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "optician" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "outdoor" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "outpost" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "paint" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "party" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "pastry" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawn Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "pawnbroker" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "perfumery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "pet" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Grooming Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "pet_grooming" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "photo" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "pottery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "printer_ink" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "psychic" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "pyrotechnics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "radiotechnics" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "religion" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "rental" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "scuba_diving" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "seafood" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Consignment/Thrift Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "second_hand" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "sewing" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "shoe_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "shoes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "spices" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "sports" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "stationery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "storage_rental" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "supermarket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "swimming_pool" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tailor" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tattoo" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tea" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "telecommunication" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "ticket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tiles" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tobacco" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tool_hire" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "toys" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "trade" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "travel_agency" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "trophy" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "tyres" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "vacuum_cleaner" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Variety Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "variety_store" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "video" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "video_games" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "watches" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "water" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "water_sports" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "weapons" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "wholesale" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "wigs" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "window_blind" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "wine" + }, + { + "key": "opening_hours", + "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Shop Map')" }, { "key": "website", "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Shop Map')" }, + { + "key": "contact:website", + "description": "Layer 'Shop' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, { "key": "email", "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Open Shop Map')" }, { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Shop Map')" + "key": "contact:email", + "description": "Layer 'Shop' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "phone", + "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "contact:phone", + "description": "Layer 'Shop' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Open Shop Map')" }, { "key": "payment:cash", @@ -98,6 +875,128 @@ "key": "payment:cards", "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", "value": "yes" + }, + { + "key": "level", + "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "location", + "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Shop' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Shop' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Open Shop Map') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Shop' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Shop' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "-1" + }, + { + "key": "service:print:A4", + "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "service:print:A3", + "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "service:print:A2", + "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "service:print:A1", + "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "service:print:A0", + "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "amenity", + "description": "The MapComplete theme Open Shop Map has a layer pharmacy showing features with this tag", + "value": "pharmacy" + }, + { + "key": "image", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'pharmacy allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "opening_hours", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "phone", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "contact:phone", + "description": "Layer 'pharmacy' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "email", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "contact:email", + "description": "Layer 'pharmacy' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "website", + "description": "Layer 'pharmacy' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "contact:website", + "description": "Layer 'pharmacy' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "no" + }, + { + "key": "wheelchair", + "description": "Layer 'pharmacy' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "limited" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_sport_pitches.json b/Docs/TagInfo/mapcomplete_sport_pitches.json index 27bf8e5954..47a38ba4d2 100644 --- a/Docs/TagInfo/mapcomplete_sport_pitches.json +++ b/Docs/TagInfo/mapcomplete_sport_pitches.json @@ -101,7 +101,7 @@ }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Sport pitches')", + "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Sport pitches')", "value": "limited" }, { @@ -148,7 +148,7 @@ }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows with a fixed text, namely '24/7 toegankelijk' (in the MapComplete.osm.be theme 'Sport pitches') Picking this answer will delete the key opening_hours.", + "description": "Layer 'Sport pitches' shows with a fixed text, namely 'Always accessible' (in the MapComplete.osm.be theme 'Sport pitches') Picking this answer will delete the key opening_hours.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_street_lighting.json b/Docs/TagInfo/mapcomplete_street_lighting.json index 31cc06211d..5151c236c4 100644 --- a/Docs/TagInfo/mapcomplete_street_lighting.json +++ b/Docs/TagInfo/mapcomplete_street_lighting.json @@ -15,6 +15,22 @@ "description": "The MapComplete theme Street Lighting has a layer Street Lamps showing features with this tag", "value": "street_lamp" }, + { + "key": "image", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Street Lamps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "ref", "description": "Layer 'Street Lamps' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Street Lighting')" @@ -189,6 +205,22 @@ "key": "lit", "description": "The MapComplete theme Street Lighting has a layer Lit streets showing features with this tag" }, + { + "key": "image", + "description": "The layer 'Lit streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Lit streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Lit streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Lit streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "lit", "description": "Layer 'Lit streets' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Street Lighting')", @@ -213,6 +245,22 @@ "key": "highway", "description": "The MapComplete theme Street Lighting has a layer All streets showing features with this tag" }, + { + "key": "image", + "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "lit", "description": "Layer 'All streets' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Street Lighting')", diff --git a/Docs/TagInfo/mapcomplete_surveillance.json b/Docs/TagInfo/mapcomplete_surveillance.json index 5b4195dc58..690abbddf0 100644 --- a/Docs/TagInfo/mapcomplete_surveillance.json +++ b/Docs/TagInfo/mapcomplete_surveillance.json @@ -10,14 +10,6 @@ "contact_email": "pietervdvn@posteo.net" }, "tags": [ - { - "key": "camera:direction", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Direction visualization showing features with this tag" - }, - { - "key": "direction", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Direction visualization showing features with this tag" - }, { "key": "man_made", "description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag", @@ -88,17 +80,17 @@ }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", + "description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", "value": "public" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", + "description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", "value": "outdoor" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", + "description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", "value": "indoor" }, { @@ -165,13 +157,23 @@ }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed one a pole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", + "description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed on a pole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", "value": "pole" }, { "key": "camera:mount", "description": "Layer 'Surveillance camera's' shows camera:mount=ceiling with a fixed text, namely 'This camera is placed on the ceiling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", "value": "ceiling" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=street_lamp with a fixed text, namely 'This camera is placed on a street light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", + "value": "street_lamp" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=tree with a fixed text, namely 'This camera is placed on a tree' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", + "value": "tree" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_toilets.json b/Docs/TagInfo/mapcomplete_toilets.json index 22ba1c9797..50bf15acb8 100644 --- a/Docs/TagInfo/mapcomplete_toilets.json +++ b/Docs/TagInfo/mapcomplete_toilets.json @@ -31,6 +31,35 @@ "key": "wikipedia", "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Open Toilet Map')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Open Toilet Map') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "-1" + }, { "key": "access", "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Open Toilet Map')" @@ -103,6 +132,15 @@ "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", "value": "no" }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "designated" + }, + { + "key": "door:width", + "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'Open Toilet Map')" + }, { "key": "toilets:position", "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", @@ -177,35 +215,6 @@ "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", "value": "no" }, - { - "key": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Open Toilet Map')" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Open Toilet Map')", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Open Toilet Map') Picking this answer will delete the key level.", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", - "value": "-1" - }, { "key": "description", "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Open Toilet Map')" diff --git a/Docs/TagInfo/mapcomplete_transit.json b/Docs/TagInfo/mapcomplete_transit.json new file mode 100644 index 0000000000..b4ac84281e --- /dev/null +++ b/Docs/TagInfo/mapcomplete_transit.json @@ -0,0 +1,467 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Bus routes", + "description": "Plan your trip with the help of the public transport system", + "project_url": "https://mapcomplete.osm.be/transit", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/transit_stops/bus_stop.svg", + "contact_name": "Pieter Vander Vennet, Robin van der Linde", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "highway", + "description": "The MapComplete theme Bus routes has a layer Transit Stops showing features with this tag", + "value": "bus_stop" + }, + { + "key": "name", + "description": "Layer 'Transit Stops' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "noname", + "description": "Layer 'Transit Stops' shows noname=yes with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "name", + "description": "Layer 'Transit Stops' shows noname=yes with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "image", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "shelter", + "description": "Layer 'Transit Stops' shows shelter=yes with a fixed text, namely 'This stop has a shelter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "shelter", + "description": "Layer 'Transit Stops' shows shelter=no with a fixed text, namely 'This stop does not have a shelter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "shelter", + "description": "Layer 'Transit Stops' shows shelter=separate with a fixed text, namely 'This stop has a shelter, that's separately mapped' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "separate" + }, + { + "key": "bench", + "description": "Layer 'Transit Stops' shows bench=yes with a fixed text, namely 'This stop has a bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "bench", + "description": "Layer 'Transit Stops' shows bench=no with a fixed text, namely 'This stop does not have a bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "bench", + "description": "Layer 'Transit Stops' shows bench=separate with a fixed text, namely 'This stop has a bench, that's separately mapped' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "separate" + }, + { + "key": "bin", + "description": "Layer 'Transit Stops' shows bin=yes with a fixed text, namely 'This stop has a bin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "bin", + "description": "Layer 'Transit Stops' shows bin=no with a fixed text, namely 'This stop does not have a bin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "bin", + "description": "Layer 'Transit Stops' shows bin=separate with a fixed text, namely 'This stop has a bin, that's separately mapped' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "separate" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Transit Stops' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Transit Stops' shows tactile_paving=yes with a fixed text, namely 'This stop has tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Transit Stops' shows tactile_paving=no with a fixed text, namely 'This stop does not have tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "lit", + "description": "Layer 'Transit Stops' shows lit=yes with a fixed text, namely 'This stop is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "lit", + "description": "Layer 'Transit Stops' shows lit=no with a fixed text, namely 'This stop is not lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=yes with a fixed text, namely 'This stop has a departures board of unknown type' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=realtime with a fixed text, namely 'This stop has a board showing realtime departure information' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "realtime" + }, + { + "key": "passenger_information_display", + "description": "Layer 'Transit Stops' shows passenger_information_display=yes with a fixed text, namely 'This stop has a board showing realtime departure information' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=timetable with a fixed text, namely 'This stop has a timetable showing regular departures' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "timetable" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=interval with a fixed text, namely 'This stop has a timetable containing just the interval between departures' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "interval" + }, + { + "key": "departures_board", + "description": "Layer 'Transit Stops' shows departures_board=no with a fixed text, namely 'This stop does not have a departures board' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "type", + "description": "The MapComplete theme Bus routes has a layer Bus lines showing features with this tag", + "value": "route" + }, + { + "key": "route", + "description": "The MapComplete theme Bus routes has a layer Bus lines showing features with this tag", + "value": "bus" + }, + { + "key": "name", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "from", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'from' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "via", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'via' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "to", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'to' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "colour", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "network", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'network' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "operator", + "description": "Layer 'Bus lines' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Bus routes has a layer Bike parking showing features with this tag", + "value": "bicycle_parking" + }, + { + "key": "image", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Staple racks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "stands" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheel rack/loops' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "wall_loops" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=handlebar_holder with a fixed text, namely 'Handlebar holder' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "handlebar_holder" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=rack with a fixed text, namely 'Rack' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "rack" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=two_tier with a fixed text, namely 'Two-tiered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "two_tier" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "shed" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=bollard with a fixed text, namely 'Bollard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "bollard" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=floor with a fixed text, namely 'An area on the floor which is marked for bicycle parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "floor" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=underground with a fixed text, namely 'Underground parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "underground" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=surface with a fixed text, namely 'Surface level parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "surface" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "rooftop" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows with a fixed text, namely 'Surface level parking' (in the MapComplete.osm.be theme 'Bus routes') Picking this answer will delete the key location.", + "value": "" + }, + { + "key": "covered", + "description": "Layer 'Bike parking' shows covered=yes with a fixed text, namely 'This parking is covered (it has a roof)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "covered", + "description": "Layer 'Bike parking' shows covered=no with a fixed text, namely 'This parking is not covered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "capacity", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows access=customers with a fixed text, namely 'Access is primarily for visitors to a business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows access=private with a fixed text, namely 'Access is limited to members of a school, company or organisation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "private" + }, + { + "key": "cargo_bike", + "description": "Layer 'Bike parking' shows cargo_bike=yes with a fixed text, namely 'This parking has room for cargo bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "cargo_bike", + "description": "Layer 'Bike parking' shows cargo_bike=designated with a fixed text, namely 'This parking has designated (official) spots for cargo bikes.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "designated" + }, + { + "key": "cargo_bike", + "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'You're not allowed to park cargo bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "capacity:cargo_bike", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Bus routes has a layer Parking showing features with this tag", + "value": "parking" + }, + { + "key": "image", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "level", + "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "location", + "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Bus routes') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Parking' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "-1" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "surface" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "street_side" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "underground" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "multi-storey" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "rooftop" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "lane" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "carports" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "garage_boxes" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "layby" + }, + { + "key": "parking", + "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bus routes')", + "value": "sheds" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "yes" + }, + { + "key": "capacity:disabled", + "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the MapComplete.osm.be theme 'Bus routes')", + "value": "no" + }, + { + "key": "capacity", + "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Bus routes')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Bus routes has a layer Shelter showing features with this tag", + "value": "shelter" + }, + { + "key": "shelter_type", + "description": "The MapComplete theme Bus routes has a layer Shelter showing features with this tag", + "value": "public_transport" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_trees.json b/Docs/TagInfo/mapcomplete_trees.json index 6f87425996..63aad020ec 100644 --- a/Docs/TagInfo/mapcomplete_trees.json +++ b/Docs/TagInfo/mapcomplete_trees.json @@ -33,7 +33,7 @@ }, { "key": "height", - "description": "Layer 'Tree' shows height~^[0-9.]+$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Trees')" + "description": "Layer 'Tree' shows height~^^[0-9.]+$$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Trees')" }, { "key": "leaf_type", @@ -72,7 +72,7 @@ }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is a residential garden.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", + "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is in a residential garden.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", "value": "garden" }, { @@ -82,7 +82,7 @@ }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is an urban area.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", + "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is in an urban area.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", "value": "urban" }, { @@ -100,6 +100,10 @@ "description": "Layer 'Tree' shows leaf_cycle=evergreen with a fixed text, namely 'Evergreen.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", "value": "evergreen" }, + { + "key": "species:wikidata", + "description": "Layer 'Tree' shows and asks freeform values for key 'species:wikidata' (in the MapComplete.osm.be theme 'Trees')" + }, { "key": "name", "description": "Layer 'Tree' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Trees')" diff --git a/Docs/TagInfo/mapcomplete_walls_and_buildings.json b/Docs/TagInfo/mapcomplete_walls_and_buildings.json new file mode 100644 index 0000000000..efffff8ae2 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_walls_and_buildings.json @@ -0,0 +1,223 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Walls and buildings", + "description": "Special builtin layer providing all walls and buildings", + "project_url": "https://mapcomplete.osm.be/walls_and_buildings", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/walls_and_buildings/walls_and_buildings.png", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "highway", + "description": "The MapComplete theme Walls and buildings has a layer Pedestrian paths showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Walls and buildings has a layer Pedestrian paths showing features with this tag", + "value": "path" + }, + { + "key": "highway", + "description": "The MapComplete theme Walls and buildings has a layer Pedestrian paths showing features with this tag", + "value": "corridor" + }, + { + "key": "highway", + "description": "The MapComplete theme Walls and buildings has a layer Pedestrian paths showing features with this tag", + "value": "steps" + }, + { + "key": "entrance", + "description": "The MapComplete theme Walls and buildings has a layer Entrance showing features with this tag" + }, + { + "key": "indoor", + "description": "The MapComplete theme Walls and buildings has a layer Entrance showing features with this tag", + "value": "door" + }, + { + "key": "image", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "yes" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key entrance.", + "value": "" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "door" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "main" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "secondary" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "service" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "exit" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "entrance" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "emergency" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "home" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "yes" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "hinged" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "revolving" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "sliding" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "overhead" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "yes" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "motion" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "floor" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "slowdown_button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "continuous" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a button' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "serviced_on_button_press" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_request with a fixed text, namely 'This door will be opened by staff when requested' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Walls and buildings')", + "value": "serviced_on_request" + }, + { + "key": "width", + "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the MapComplete.osm.be theme 'Walls and buildings')" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_waste.json b/Docs/TagInfo/mapcomplete_waste.json index a22c07678b..15dbda80fa 100644 --- a/Docs/TagInfo/mapcomplete_waste.json +++ b/Docs/TagInfo/mapcomplete_waste.json @@ -15,6 +15,22 @@ "description": "The MapComplete theme Waste has a layer Waste Basket showing features with this tag", "value": "waste_basket" }, + { + "key": "image", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "waste", "description": "Layer 'Waste Basket' shows with a fixed text, namely 'A waste basket for general waste' (in the MapComplete.osm.be theme 'Waste') Picking this answer will delete the key waste.", diff --git a/Docs/TagInfo/mapcomplete_waste_basket.json b/Docs/TagInfo/mapcomplete_waste_basket.json index c5d97b2d7d..3b5b36905b 100644 --- a/Docs/TagInfo/mapcomplete_waste_basket.json +++ b/Docs/TagInfo/mapcomplete_waste_basket.json @@ -15,6 +15,22 @@ "description": "The MapComplete theme Waste Basket has a layer Waste Basket showing features with this tag", "value": "waste_basket" }, + { + "key": "image", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Waste Basket allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "waste", "description": "Layer 'Waste Basket' shows with a fixed text, namely 'A waste basket for general waste' (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key waste.", diff --git a/Docs/Tags_format.md b/Docs/Tags_format.md index 83ff0c392c..681b243a3e 100644 --- a/Docs/Tags_format.md +++ b/Docs/Tags_format.md @@ -4,6 +4,37 @@ Tags format When creating the `json` file describing your layer or theme, you'll have to add a few tags to describe what you want. This document gives an overview of what every expression means and how it behaves in edge cases. +If the schema-files note a type [`TagConfigJson`](https://github.com/pietervdvn/MapComplete/blob/develop/Models/ThemeConfig/Json/TagConfigJson.ts), you can use one of these values. + +In some cases, not every type of tags-filter can be used. For example, _rendering_ an option with a regex is +fine (`"if": "brand~[Bb]randname", "then":" The brand is Brandname"`); but this regex can not be used to write a value +into the database. The theme loader will however refuse to work with such inconsistencies and notify you of this while +you are building your theme. + +Example +------- + +This example shows the most common options on how to specify tags: + +```json +{ + "and": [ + "key=value", + { + "or": [ + "other_key=value", + "other_key=some_other_value" + ] + }, + "key_which_should_be_missing=", + "key_which_should_have_a_value~*", + "key~.*some_regex_a*_b+_[a-z]?", + "height<1" + ] +} +``` + + Strict equality --------------- @@ -38,8 +69,8 @@ If `key` is not present or empty, this will match too. This implies that, to check if a key is present, `key!=` can be used. This will only match if the key is present and not empty. -Number comparison ------------------ +Number and date comparison +-------------------------- If the value of a tag is a number (e.g. `key=42`), one can use a filter `key<=42`, `key>=35`, `key>40` or `key<50` to match this, e.g. in conditions for renderings. These tags cannot be used to generate an answer nor can they be used to @@ -51,12 +82,18 @@ special circumstances (e.g. `surface_area=42 m2` or `length=100 feet`), this wil values (`surface=422` or if a length in meters is compared to). However, this can be partially alleviated by using ' Units' to rewrite to a default format. +Dates can be compared with the same expression: `somekey<2022-06-22` will match if `somekey` is a date and is smaller +then 22nd june '22. + Regex equals ------------ A tag can also be tested against a regex with `key~regex`. Note that this regex __must match__ the entire value. If the value is allowed to appear anywhere as substring, use `key~.*regex.*` +Regexes will match the newline character with `.` too - the `s`-flag is enabled by default. To enable case invariant +matching, use `key~i~regex` + Equivalently, `key!~regex` can be used if you _don't_ want to match the regex in order to appear. @@ -81,14 +118,32 @@ which we do not want. To mitigate this, use: ```json -"mappings": [ { - "if":"key:={some_other_key}" - "then": "...", - "hideInAnswer": "some_other_key=" + "mappings": [ + { + "if":"key:={some_other_key}", + "then": "...", + "hideInAnswer": "some_other_key=" + } + ] } -] ``` One can use `key!:=prefix-{other_key}-postfix` as well, to match if `key` is _not_ the same as `prefix-{other_key}-postfix` (with `other_key` substituted by the value) + +## Logical operators + +One can combine multiple tags by using `and` or `or`, e.g.: + +```json +{ + "osmTags": { + "or": [ + "amenity=school", + "amenity=kindergarten" + ] + } +} +``` + diff --git a/Docs/Tools/GenerateSeries.ts b/Docs/Tools/GenerateSeries.ts index ca68ff1ded..1b8a075023 100644 --- a/Docs/Tools/GenerateSeries.ts +++ b/Docs/Tools/GenerateSeries.ts @@ -21,8 +21,9 @@ class StatsDownloader { public async DownloadStats() { - const currentYear = new Date().getFullYear() - const currentMonth = new Date().getMonth() + 1 + const today = new Date(); + const currentYear = today.getFullYear() + const currentMonth = today.getMonth() + 1 for (let year = this.startYear; year <= currentYear; year++) { for (let month = 1; month <= 12; month++) { @@ -31,33 +32,48 @@ class StatsDownloader { } if (year === currentYear && month > currentMonth) { - continue + break } - const path = `${this._targetDirectory}/stats.${year}-${month}.json` - if (existsSync(path)) { - if ((month == currentMonth && year == currentYear)) { - console.log(`Force downloading ${year}-${month}`) - } else { - console.log(`Skipping ${year}-${month}: already exists`) - continue; + const pathM = `${this._targetDirectory}/stats.${year}-${month}.json` + if (existsSync(pathM)) { + continue; + } + + for (let day = 1; day <= 31; day++) { + if (year === currentYear && month === currentMonth && day === today.getDate() ) { + break; + } + const path = `${this._targetDirectory}/stats.${year}-${month}-${(day < 10 ? "0" : "") + day}.json` + if(existsSync(path)){ + console.log("Skipping ", path,": already exists") + continue + } + try{ + + await this.DownloadStatsForDay(year, month, day, path) + }catch(e){ + console.error(e) + console.error("Could not download "+year+"-"+month+"-"+day+"... Trying again") + try{ + await this.DownloadStatsForDay(year, month, day, path) + }catch(e){ + console.error("Could not download "+year+"-"+month+"-"+day+", skipping for now") + } } } - await this.DownloadStatsForMonth(year, month, path) } } } - public async DownloadStatsForMonth(year: number, month: number, path: string) { + public async DownloadStatsForDay(year: number, month: number, day: number, path: string) { let page = 1; let allFeatures = [] - let endDate = `${year}-${Utils.TwoDigits(month + 1)}-01` - if (month == 12) { - endDate = `${year + 1}-01-01` - } - let url = this.urlTemplate.replace("{start_date}", year + "-" + Utils.TwoDigits(month) + "-01") + let endDay = new Date(year,month - 1 /* Zero-indexed: 0 = january*/,day + 1); + let endDate = `${endDay.getFullYear()}-${Utils.TwoDigits(endDay.getMonth()+1)}-${Utils.TwoDigits(endDay.getDate())}` + let url = this.urlTemplate.replace("{start_date}", year + "-" + Utils.TwoDigits(month) + "-" + Utils.TwoDigits(day)) .replace("{end_date}", endDate) .replace("{page}", "" + page) @@ -77,7 +93,7 @@ class StatsDownloader { while (url) { - ScriptUtils.erasableLog(`Downloading stats for ${year}-${month}, page ${page} ${url}`) + ScriptUtils.erasableLog(`Downloading stats for ${year}-${month}-${day}, page ${page} ${url}`) const result = await Utils.downloadJson(url, headers) page++; allFeatures.push(...result.features) @@ -182,8 +198,8 @@ class ChangesetDataTools { } catch (e) { } - if(cs.properties.metadata["answer"] > 100){ - console.log("Lots of answers for https://osm.org/changeset/"+cs.id) + if (cs.properties.metadata["answer"] > 100) { + console.log("Lots of answers for https://osm.org/changeset/" + cs.id) } return cs } @@ -212,7 +228,7 @@ function createGraph( title: string, ...options: PlotSpec[]): Promise { console.log("Creating graph", title, "...") - const process = exec("python3 GenPlot.py \"graphs/" + title + "\"", ((error, stdout, stderr) => { + const process = exec("python3 Docs/Tools/GenPlot.py \"graphs/" + title + "\"", ((error, stdout, stderr) => { console.log("Python: ", stdout) if (error !== null) { console.error(error) @@ -804,13 +820,14 @@ async function main(): Promise { mkdirSync("graphs") } + const targetDir = "Docs/Tools/stats" if (process.argv.indexOf("--no-download") < 0) { - await new StatsDownloader("stats").DownloadStats() + await new StatsDownloader(targetDir).DownloadStats() } - const allPaths = readdirSync("stats") + const allPaths = readdirSync(targetDir) .filter(p => p.startsWith("stats.") && p.endsWith(".json")); let allFeatures: ChangeSetData[] = [].concat(...allPaths - .map(path => JSON.parse(readFileSync("stats/" + path, "utf-8")).features + .map(path => JSON.parse(readFileSync("Docs/Tools/stats/" + path, "utf-8")).features .map(cs => ChangesetDataTools.cleanChangesetData(cs)))); allFeatures = allFeatures.filter(f => f.properties.editor === null || f.properties.editor.toLowerCase().startsWith("mapcomplete")) @@ -823,17 +840,21 @@ async function main(): Promise { if (process.argv.indexOf("--no-graphs") >= 0) { return } - await createMiscGraphs(allFeatures, emptyCS) - - const grbOnly = allFeatures.filter(f => f.properties.metadata.theme === "grb") - allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "grb") - await createGraphs(allFeatures, "") - await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") - await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") - await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2022")), " in 2022") - await createGraphs(allFeatures.filter(f => f.properties.metadata.theme === "toerisme_vlaanderen"), " met pin je punt", 0) - await createGraphs(grbOnly, " with the GRB import tool", 0) + const allFiles = readdirSync("Docs/Tools/stats").filter(p => p.endsWith(".json")) + writeFileSync("Docs/Tools/stats/file-overview.json", JSON.stringify(allFiles)) + + /* + await createMiscGraphs(allFeatures, emptyCS) + const grbOnly = allFeatures.filter(f => f.properties.metadata.theme === "grb") + allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "grb") + await createGraphs(allFeatures, "") + await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") + await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") + await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2022")), " in 2022") + await createGraphs(allFeatures.filter(f => f.properties.metadata.theme === "toerisme_vlaanderen"), " met pin je punt", 0) + await createGraphs(grbOnly, " with the GRB import tool", 0) +*/ } main().then(_ => console.log("All done!")) diff --git a/Docs/Tools/cache_centerpoints.sh b/Docs/Tools/cache_centerpoints.sh index 0fdf56c09e..35a1652a91 100755 --- a/Docs/Tools/cache_centerpoints.sh +++ b/Docs/Tools/cache_centerpoints.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#! /usr/bin/env bash ts-node GenerateSeries.ts # Move to the root of the repo diff --git a/Docs/Tools/centerpoints.geojson b/Docs/Tools/centerpoints.geojson index d5b082262e..5453782b6e 100644 --- a/Docs/Tools/centerpoints.geojson +++ b/Docs/Tools/centerpoints.geojson @@ -340699,6 +340699,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T22:10:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 269, "modify": 268, "delete": 7, @@ -340742,6 +340743,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T21:05:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -340782,6 +340784,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T20:42:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 165, "modify": 0, "delete": 0, @@ -340821,6 +340824,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T20:23:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -340861,6 +340865,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T19:00:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 47, "delete": 0, @@ -340901,6 +340906,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T18:45:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -340947,6 +340953,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T15:29:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 254, "delete": 0, @@ -340986,6 +340993,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T15:26:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -341026,6 +341034,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T14:47:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 0, "delete": 0, @@ -341070,6 +341079,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T14:34:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 7, "delete": 0, @@ -341109,6 +341119,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T14:25:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -341153,6 +341164,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T13:40:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 588, "delete": 0, @@ -341197,6 +341209,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T13:29:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 1075, "modify": 0, "delete": 0, @@ -341241,6 +341254,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T13:29:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 9, "modify": 55, "delete": 0, @@ -341306,6 +341320,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T11:54:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -341345,6 +341360,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T11:14:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -341389,6 +341405,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T09:42:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -341436,6 +341453,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T07:52:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 10, "delete": 1, @@ -341485,6 +341503,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T07:02:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 679, "delete": 0, @@ -341524,6 +341543,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T22:40:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -341566,6 +341586,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T21:33:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -341610,6 +341631,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T15:47:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -341656,6 +341678,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T15:47:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 961, "delete": 0, @@ -341695,6 +341718,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T14:21:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -341740,6 +341764,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T13:54:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 1868, "modify": 0, "delete": 0, @@ -341779,6 +341804,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T13:49:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 69, "delete": 0, @@ -341823,6 +341849,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T12:39:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 10, "delete": 0, @@ -341867,6 +341894,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T12:06:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 1044, "modify": 0, "delete": 0, @@ -341906,6 +341934,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T11:34:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 86, "delete": 0, @@ -341950,6 +341979,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T10:58:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 18, "modify": 15, "delete": 0, @@ -341996,6 +342026,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T10:39:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -342036,6 +342067,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T10:05:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -342078,6 +342110,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:46:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -342118,6 +342151,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:33:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 36, "modify": 0, "delete": 0, @@ -342157,6 +342191,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:19:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -342199,6 +342234,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:09:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -342238,6 +342274,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:06:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -342283,6 +342320,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T08:08:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 5, "delete": 0, @@ -342323,6 +342361,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T08:00:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -342363,6 +342402,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T07:50:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 46, "delete": 0, @@ -342402,6 +342442,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T07:02:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 37, "delete": 0, @@ -342449,6 +342490,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T06:34:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -342491,6 +342533,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T02:51:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -342530,6 +342573,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T02:33:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -342570,6 +342614,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T21:35:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 960, "modify": 0, "delete": 0, @@ -342609,6 +342654,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T21:20:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -342648,6 +342694,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T20:58:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -342689,6 +342736,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T19:10:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 4, "delete": 0, @@ -342733,6 +342781,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T17:31:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1245, "delete": 0, @@ -342772,6 +342821,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T16:32:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -342816,6 +342866,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T15:29:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -342855,6 +342906,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T14:35:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -342900,6 +342952,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T14:22:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 4, "delete": 0, @@ -342944,6 +342997,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T12:42:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 971, "delete": 0, @@ -342988,6 +343042,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T12:08:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 21, "modify": 20, "delete": 2, @@ -343034,6 +343089,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T11:24:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 3, "delete": 0, @@ -343073,6 +343129,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T11:22:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -343114,6 +343171,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T10:17:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -343153,6 +343211,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T10:00:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -343198,6 +343257,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T09:55:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 946, "delete": 0, @@ -343237,6 +343297,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T09:27:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -343276,6 +343337,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T09:20:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -343315,6 +343377,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:57:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -343355,6 +343418,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:54:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -343394,6 +343458,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:50:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -343433,6 +343498,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:43:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -343474,6 +343540,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:43:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -343514,6 +343581,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:41:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -343555,6 +343623,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:31:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 2, @@ -343598,6 +343667,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:11:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 266, "modify": 0, "delete": 0, @@ -343643,6 +343713,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -343685,6 +343756,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T07:54:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 224, "modify": 0, "delete": 0, @@ -343716,10 +343788,39 @@ { "id": 4, "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" } ], "tags": [], - "features": [], + "features": [ + { + "url": "way-904787526", + "name": "Avinguda Meridiana", + "osm_id": 904787526, + "reasons": [ + 91 + ], + "version": 2, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-52586323", + "name": "Passeig de Torras i Bages", + "osm_id": 52586323, + "reasons": [ + 91 + ], + "version": 18, + "primary_tags": { + "highway": "trunk_link" + } + } + ], "user": "ccamara", "uid": "423535", "editor": "MapComplete 0.17.0", @@ -343729,6 +343830,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T07:43:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 813, "delete": 0, @@ -343773,6 +343875,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T03:59:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -343831,6 +343934,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T21:11:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 19, "delete": 0, @@ -343870,6 +343974,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T20:53:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 322, "modify": 0, "delete": 0, @@ -343914,6 +344019,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T20:39:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2384, "modify": 5, "delete": 0, @@ -343959,6 +344065,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T19:33:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 492, "delete": 0, @@ -343998,6 +344105,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:59:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 12, "delete": 0, @@ -344034,6 +344142,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:56:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344079,6 +344188,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:56:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1367, "modify": 0, "delete": 0, @@ -344118,6 +344228,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:54:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344157,6 +344268,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:53:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344197,6 +344309,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:08:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344241,6 +344354,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:07:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -344288,6 +344402,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T16:08:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 5, "delete": 0, @@ -344327,6 +344442,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T14:54:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 103, "modify": 0, "delete": 0, @@ -344366,6 +344482,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T14:47:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 363, "modify": 0, "delete": 0, @@ -344410,6 +344527,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T11:32:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 10, "delete": 0, @@ -344458,6 +344576,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T10:50:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1302, "delete": 0, @@ -344502,6 +344621,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T10:26:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 18, "delete": 0, @@ -344547,6 +344667,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T09:37:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 17, "modify": 0, "delete": 0, @@ -344586,6 +344707,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T09:30:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -344625,6 +344747,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:46:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -344664,6 +344787,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:13:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -344710,6 +344834,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:08:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 2, "delete": 0, @@ -344754,6 +344879,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:03:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1092, "delete": 0, @@ -344793,6 +344919,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T07:32:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344832,6 +344959,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T01:03:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344871,6 +344999,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T00:25:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344911,6 +345040,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T22:37:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 14, "delete": 0, @@ -344951,6 +345081,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T21:41:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -344990,6 +345121,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T21:18:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -345034,6 +345166,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T20:38:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 43, "delete": 0, @@ -345073,6 +345206,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T20:09:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 56, "modify": 0, "delete": 0, @@ -345112,6 +345246,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T20:00:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 10, "delete": 0, @@ -345152,6 +345287,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T17:57:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -345193,6 +345329,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T14:35:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -345233,6 +345370,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:52:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -345275,6 +345413,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:41:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -345317,6 +345456,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:40:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -345357,6 +345497,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:35:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -345403,6 +345544,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:27:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -345443,6 +345585,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:46:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -345485,6 +345628,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:39:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -345527,6 +345671,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:10:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -345567,6 +345712,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:06:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -345608,6 +345754,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T11:40:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 102, "modify": 0, "delete": 0, @@ -345652,6 +345799,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T10:59:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 28, "delete": 2, @@ -345697,6 +345845,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T10:54:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -345736,6 +345885,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T10:24:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -345777,6 +345927,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:45:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -345823,6 +345974,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:41:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 10, "delete": 0, @@ -345863,6 +346015,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:36:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -345902,6 +346055,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:22:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -345948,6 +346102,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:07:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 22, "modify": 109, "delete": 1, @@ -345995,6 +346150,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T07:16:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 1, "delete": 0, @@ -346034,6 +346190,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T06:55:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -346075,6 +346232,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T21:00:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 10, "delete": 0, @@ -346115,6 +346273,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T20:45:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 14, "delete": 0, @@ -346155,6 +346314,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T20:34:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -346198,6 +346358,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T20:18:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 32, "delete": 0, @@ -346238,6 +346399,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T19:23:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -346277,6 +346439,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T19:07:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 0, "delete": 0, @@ -346316,6 +346479,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T17:22:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 6, "delete": 0, @@ -346355,6 +346519,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T16:47:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -346400,6 +346565,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T16:24:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -346442,6 +346608,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:37:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -346484,6 +346651,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:32:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 436, "modify": 314, "delete": 0, @@ -346525,6 +346693,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:29:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -346566,6 +346735,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:19:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -346607,6 +346777,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T14:54:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 320, "modify": 96, "delete": 2, @@ -346648,6 +346819,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T14:44:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 7, "delete": 0, @@ -346691,6 +346863,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T13:39:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 1516, "modify": 1267, "delete": 41, @@ -346732,6 +346905,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T13:04:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -346772,6 +346946,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T13:00:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -346812,6 +346987,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:56:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -346859,6 +347035,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:52:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -346904,6 +347081,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:24:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 5, "delete": 0, @@ -346949,6 +347127,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:05:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -346988,6 +347167,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T09:32:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 34, "delete": 0, @@ -347027,6 +347207,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T09:17:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -347073,6 +347254,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T07:17:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -347112,6 +347294,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T07:07:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -347153,6 +347336,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T06:57:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 1, "delete": 0, @@ -347195,6 +347379,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T06:54:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -347234,6 +347419,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T06:46:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 58, "delete": 0, @@ -347275,6 +347461,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:30:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 15, "delete": 0, @@ -347314,6 +347501,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:28:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -347354,6 +347542,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:27:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -347394,6 +347583,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:24:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 7, "delete": 0, @@ -347434,6 +347624,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T20:30:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -347480,6 +347671,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T18:51:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 41, "modify": 40, "delete": 0, @@ -347519,6 +347711,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T17:27:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -347564,6 +347757,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T16:09:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 17, "modify": 49, "delete": 1, @@ -347605,6 +347799,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T15:40:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -347650,6 +347845,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T15:36:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -347689,6 +347885,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T14:58:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -347730,6 +347927,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T14:56:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -347772,6 +347970,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T13:45:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -347812,6 +348011,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T11:46:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -347856,6 +348056,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T11:07:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -347895,6 +348096,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T06:02:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -347940,6 +348142,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T02:26:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -347978,6 +348181,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T21:34:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 7, "delete": 0, @@ -348017,6 +348221,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T21:08:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 536, "modify": 535, "delete": 2, @@ -348060,6 +348265,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T20:54:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -348099,6 +348305,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T20:32:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -348138,6 +348345,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T18:37:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -348177,6 +348385,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T18:02:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -348220,6 +348429,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T17:10:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -348260,6 +348470,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T17:09:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 6, "delete": 0, @@ -348301,6 +348512,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T15:43:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -348346,6 +348558,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T14:31:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -348386,6 +348599,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T12:21:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -348431,6 +348645,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T12:16:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -348470,6 +348685,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T10:21:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -348516,6 +348732,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T09:26:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 0, "delete": 0, @@ -348560,6 +348777,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T07:38:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 5, "delete": 1, @@ -348601,6 +348819,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T01:07:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -348639,6 +348858,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T00:33:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -348683,6 +348903,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:46:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -348744,6 +348965,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:36:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -348783,6 +349005,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:33:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -348827,6 +349050,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:25:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -348866,6 +349090,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:24:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 50, "modify": 17, "delete": 0, @@ -348907,6 +349132,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:18:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -348946,6 +349172,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:18:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -348993,6 +349220,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:14:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -349054,6 +349282,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T19:45:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -349115,6 +349344,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T19:26:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -349159,6 +349389,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T19:04:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -349203,6 +349434,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T18:56:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -349247,6 +349479,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:59:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -349291,6 +349524,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:43:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 9, "delete": 1, @@ -349340,6 +349574,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:40:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -349380,6 +349615,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:27:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 14, "delete": 0, @@ -349428,6 +349664,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:22:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 3, "delete": 1, @@ -349469,6 +349706,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T15:37:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -349512,6 +349750,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T15:03:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -349555,6 +349794,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T14:33:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 7, "delete": 0, @@ -349599,6 +349839,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:59:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -349643,6 +349884,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:56:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -349682,6 +349924,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:17:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 1055, "modify": 812, "delete": 15, @@ -349723,6 +349966,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:04:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 7, "delete": 1, @@ -349767,6 +350011,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:04:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 148, "modify": 251, "delete": 19, @@ -349808,6 +350053,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T12:45:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -349847,6 +350093,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T12:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 11, "delete": 0, @@ -349888,6 +350135,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T11:18:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 65, "delete": 0, @@ -349931,6 +350179,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T10:21:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 114, "modify": 122, "delete": 7, @@ -349972,6 +350221,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T09:39:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -350017,6 +350267,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T09:21:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 1, "delete": 2, @@ -350067,6 +350318,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T09:14:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 3, "delete": 0, @@ -350119,6 +350371,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:56:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 38, "modify": 58, "delete": 4, @@ -350165,6 +350418,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:55:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 15, "modify": 3, "delete": 1, @@ -350209,6 +350463,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:45:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 146, "modify": 166, "delete": 4, @@ -350250,6 +350505,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:35:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 309, "modify": 438, "delete": 4, @@ -350291,6 +350547,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:17:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 271, "modify": 396, "delete": 0, @@ -350332,6 +350589,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:08:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 205, "modify": 221, "delete": 1, @@ -350373,6 +350631,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T07:32:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 8, "delete": 0, @@ -350416,6 +350675,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T21:22:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -350456,6 +350716,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T19:43:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 94, "modify": 139, "delete": 4, @@ -350502,6 +350763,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T17:17:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -350543,6 +350805,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T17:09:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 5, "delete": 0, @@ -350591,6 +350854,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T16:35:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 1, @@ -350633,6 +350897,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:46:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 90, "modify": 145, "delete": 0, @@ -350674,6 +350939,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:36:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 274, "modify": 257, "delete": 2, @@ -350715,6 +350981,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:25:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 2, "delete": 1, @@ -350758,6 +351025,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:04:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -350799,6 +351067,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T14:57:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -350841,6 +351110,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T13:59:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 36, "delete": 2, @@ -350886,6 +351156,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T13:49:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 0, "delete": 0, @@ -350929,6 +351200,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T13:01:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -350975,6 +351247,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:38:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 6, "delete": 0, @@ -351018,6 +351291,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:32:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -351062,6 +351336,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:06:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 25, "delete": 0, @@ -351111,6 +351386,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T11:45:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 17, "delete": 0, @@ -351160,6 +351436,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T11:27:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 0, "delete": 0, @@ -351198,6 +351475,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T10:01:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -351245,6 +351523,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T09:44:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 0, "delete": 0, @@ -351284,6 +351563,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T09:15:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -351329,6 +351609,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T07:26:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 3, "delete": 0, @@ -351369,6 +351650,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T19:35:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 101, "modify": 102, "delete": 1, @@ -351410,6 +351692,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T19:35:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 0, "delete": 0, @@ -351449,6 +351732,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:57:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -351493,6 +351777,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:31:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -351532,6 +351817,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:05:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -351578,6 +351864,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T15:44:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -351616,6 +351903,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T15:31:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 447, "modify": 539, "delete": 13, @@ -351662,6 +351950,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T15:16:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -351700,6 +351989,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T14:03:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -351739,6 +352029,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:53:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 3, @@ -351781,6 +352072,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:51:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -351821,6 +352113,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:43:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -351862,6 +352155,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:19:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 11, "delete": 0, @@ -351907,6 +352201,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T11:59:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 28, "delete": 0, @@ -351950,6 +352245,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T11:36:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -351995,6 +352291,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T09:25:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -352036,6 +352333,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T07:24:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 14, "delete": 0, @@ -352076,6 +352374,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T07:13:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -352116,6 +352415,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T06:24:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -352155,6 +352455,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T05:39:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -352196,6 +352497,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T01:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -352235,6 +352537,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T19:29:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -352278,6 +352581,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T18:47:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -352318,6 +352622,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T16:14:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -352363,6 +352668,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T15:43:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -352403,6 +352709,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T15:31:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -352448,6 +352755,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T14:35:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -352492,6 +352800,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T13:32:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -352537,6 +352846,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T13:19:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 10, "delete": 1, @@ -352586,6 +352896,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T11:55:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 69, "modify": 286, "delete": 9, @@ -352633,6 +352944,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T11:05:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 15, "modify": 1, "delete": 0, @@ -352683,6 +352995,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:42:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 20, "modify": 94, "delete": 0, @@ -352731,6 +353044,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:36:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -352769,6 +353083,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T08:53:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -352813,6 +353128,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T07:26:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 64, "delete": 0, @@ -352855,6 +353171,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T23:54:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -352895,6 +353212,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T23:52:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -352934,6 +353252,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T23:47:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -352974,6 +353293,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T22:55:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -353015,6 +353335,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T22:46:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -353061,6 +353382,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T20:50:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 49, "delete": 0, @@ -353101,6 +353423,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T19:17:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -353143,6 +353466,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T18:58:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -353183,6 +353507,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T16:35:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -353223,6 +353548,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T16:08:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -353262,6 +353588,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T15:33:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -353302,6 +353629,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T15:17:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -353342,6 +353670,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T14:06:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -353381,6 +353710,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T13:53:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -353421,6 +353751,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T13:17:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -353459,6 +353790,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T12:02:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -353498,6 +353830,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T11:55:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -353541,6 +353874,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T11:34:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -353581,6 +353915,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T11:21:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -353621,6 +353956,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T10:21:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -353662,6 +353998,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T10:00:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -353702,6 +354039,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T09:57:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 7, "delete": 0, @@ -353742,6 +354080,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T09:36:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -353781,6 +354120,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T08:38:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -353821,6 +354161,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T08:24:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -353860,6 +354201,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T07:49:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -353900,6 +354242,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T21:06:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 37, "modify": 16, "delete": 0, @@ -353941,6 +354284,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T19:25:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 908, "modify": 0, "delete": 0, @@ -353984,6 +354328,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T18:51:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354023,6 +354368,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T17:31:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 6, "delete": 0, @@ -354069,6 +354415,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T17:27:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -354113,6 +354460,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T14:18:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 765, "modify": 1928, "delete": 31, @@ -354156,6 +354504,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T13:44:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 1284, "modify": 1525, "delete": 13, @@ -354202,6 +354551,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T13:30:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 0, "delete": 0, @@ -354245,6 +354595,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T13:11:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354303,6 +354654,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T10:02:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 13, "delete": 1, @@ -354341,11 +354693,12 @@ "uid": "1947314", "editor": "MapComplete 0.16.8", "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, + "comments_count": 1, "source": "Not reported", "imagery_used": "Not reported", "date": "2022-03-18T09:59:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 696, "modify": 608, "delete": 23, @@ -354387,6 +354740,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T09:09:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 950, "modify": 843, "delete": 38, @@ -354428,6 +354782,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T09:07:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 41, "modify": 26, "delete": 0, @@ -354469,6 +354824,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T08:45:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354508,6 +354864,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T08:06:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1342, "modify": 1282, "delete": 6, @@ -354549,6 +354906,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T07:58:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354588,6 +354946,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T22:50:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354627,6 +354986,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T21:47:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354666,6 +355026,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T21:01:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -354710,6 +355071,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T19:32:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 16, "delete": 0, @@ -354751,6 +355113,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T19:08:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -354790,6 +355153,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T18:13:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -354829,6 +355193,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T15:52:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 112, "modify": 182, "delete": 0, @@ -354870,6 +355235,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T14:19:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1515, "modify": 1393, "delete": 9, @@ -354912,6 +355278,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T14:11:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -354952,6 +355319,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T12:21:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -354997,6 +355365,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:19:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -355036,6 +355405,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:10:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -355075,6 +355445,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:05:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -355117,6 +355488,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:05:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 704, "modify": 452, "delete": 3, @@ -355158,6 +355530,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:02:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 921, "modify": 539, "delete": 9, @@ -355199,6 +355572,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:01:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 44, "modify": 10, "delete": 0, @@ -355240,6 +355614,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T08:37:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -355283,6 +355658,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T06:41:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 14, "delete": 0, @@ -355322,6 +355698,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T21:00:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 28, "modify": 33, "delete": 0, @@ -355363,6 +355740,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:39:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 2, "delete": 0, @@ -355403,6 +355781,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:28:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 208, "modify": 106, "delete": 0, @@ -355445,6 +355824,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:23:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 121, "modify": 142, "delete": 0, @@ -355486,6 +355866,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:11:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 40, "delete": 0, @@ -355526,6 +355907,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:02:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 742, "modify": 52, "delete": 0, @@ -355568,6 +355950,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T17:40:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 16, "delete": 0, @@ -355615,6 +355998,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T17:33:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -355660,6 +356044,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T16:30:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -355701,6 +356086,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T16:00:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -355745,6 +356131,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T15:39:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -355791,6 +356178,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T15:33:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -355830,6 +356218,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T15:25:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -355877,6 +356266,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:58:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -355918,6 +356308,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:35:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1004, "modify": 1315, "delete": 13, @@ -355964,6 +356355,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:15:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 203, "modify": 506, "delete": 4, @@ -356005,6 +356397,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:14:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 18, "modify": 34, "delete": 0, @@ -356046,6 +356439,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T13:30:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -356091,6 +356485,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T13:22:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -356137,6 +356532,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T12:56:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1370, "modify": 5, "delete": 0, @@ -356184,6 +356580,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T12:28:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -356232,6 +356629,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T10:08:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 1, @@ -356277,6 +356675,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T10:05:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -356320,6 +356719,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T09:39:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 15, "delete": 0, @@ -356359,6 +356759,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T08:13:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 456, "modify": 551, "delete": 9, @@ -356405,6 +356806,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T07:18:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 1, @@ -356445,6 +356847,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T22:49:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -356484,6 +356887,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T21:17:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 229, "modify": 318, "delete": 10, @@ -356525,6 +356929,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T20:47:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -356564,6 +356969,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T19:55:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -356603,6 +357009,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T19:44:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 9, "delete": 0, @@ -356643,6 +357050,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T19:29:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 19, "modify": 33, "delete": 0, @@ -356685,6 +357093,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T17:53:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -356731,6 +357140,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:52:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 101, "modify": 247, "delete": 4, @@ -356772,6 +357182,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:49:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 69, "modify": 102, "delete": 4, @@ -356813,6 +357224,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:42:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 152, "modify": 165, "delete": 5, @@ -356854,6 +357266,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T14:28:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -356901,6 +357314,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T14:17:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -356941,6 +357355,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:59:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -356983,6 +357398,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:42:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 269, "modify": 208, "delete": 0, @@ -357024,6 +357440,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:41:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 52, "modify": 47, "delete": 0, @@ -357070,6 +357487,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:41:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 0, "delete": 0, @@ -357108,6 +357526,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:24:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 105, "modify": 211, "delete": 2, @@ -357155,6 +357574,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:09:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 342, "delete": 0, @@ -357194,6 +357614,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:57:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -357234,6 +357655,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:52:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -357274,6 +357696,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:36:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -357318,6 +357741,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:36:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 10, "delete": 0, @@ -357362,6 +357786,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:19:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -357406,6 +357831,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:34:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -357447,6 +357873,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:28:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -357488,6 +357915,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:56:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 492, "modify": 1155, "delete": 3, @@ -357529,6 +357957,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:45:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 14, "modify": 134, "delete": 5, @@ -357575,6 +358004,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:37:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 22, "modify": 223, "delete": 4, @@ -357621,6 +358051,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:30:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 49, "modify": 304, "delete": 20, @@ -357662,6 +358093,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:22:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -357706,6 +358138,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:18:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 21, "modify": 73, "delete": 0, @@ -357748,6 +358181,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:15:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 224, "modify": 315, "delete": 13, @@ -357789,6 +358223,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T09:09:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -357833,6 +358268,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T07:24:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -357877,6 +358313,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T07:02:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 24, "delete": 0, @@ -357917,6 +358354,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T05:18:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -357961,6 +358399,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:36:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -358002,6 +358441,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:30:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -358041,6 +358481,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:18:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -358081,6 +358522,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:08:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -358125,6 +358567,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:08:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 0, "delete": 0, @@ -358163,6 +358606,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T20:16:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 46, "delete": 2, @@ -358206,6 +358650,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T20:06:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -358252,6 +358697,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:46:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 61, "delete": 0, @@ -358295,6 +358741,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:41:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -358334,6 +358781,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:16:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -358373,6 +358821,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:12:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -358419,6 +358868,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:53:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 40, "delete": 1, @@ -358461,6 +358911,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:42:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 13, "delete": 0, @@ -358502,6 +358953,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -358541,6 +358993,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:03:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -358585,6 +359038,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T16:49:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -358623,6 +359077,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T16:07:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -358668,6 +359123,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T15:29:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -358707,6 +359163,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T15:28:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -358752,6 +359209,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T15:16:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 3116, "modify": 46, "delete": 0, @@ -358793,6 +359251,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T14:46:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -358837,6 +359296,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T14:09:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 25, "delete": 0, @@ -358877,6 +359337,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T13:53:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -358916,6 +359377,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T13:04:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 761, "modify": 1035, "delete": 22, @@ -358962,6 +359424,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T12:50:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 89, "modify": 327, "delete": 9, @@ -359008,6 +359471,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T12:41:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -359052,6 +359516,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T11:34:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 58, "modify": 970, "delete": 27, @@ -359093,6 +359558,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T09:04:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -359133,6 +359599,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T08:21:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -359174,6 +359641,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T08:18:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -359219,6 +359687,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T06:55:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 32, "delete": 0, @@ -359258,6 +359727,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:41:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -359298,6 +359768,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:39:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -359338,6 +359809,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:30:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 2, @@ -359383,6 +359855,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T20:45:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 70, "delete": 0, @@ -359422,6 +359895,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T20:43:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -359461,6 +359935,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T19:52:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -359507,6 +359982,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T16:37:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -359548,6 +360024,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T16:29:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 9, "delete": 0, @@ -359590,6 +360067,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T14:19:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -359630,6 +360108,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T14:09:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 22, "delete": 0, @@ -359675,6 +360154,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T14:02:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -359714,6 +360194,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T11:24:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -359759,6 +360240,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T09:24:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -359803,6 +360285,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T06:26:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 488, "modify": 1853, "delete": 29, @@ -359845,6 +360328,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T23:37:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 68, "modify": 0, "delete": 0, @@ -359884,6 +360368,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T23:13:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -359928,6 +360413,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T19:39:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 9, "modify": 4, "delete": 0, @@ -359967,6 +360453,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T16:11:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -360015,6 +360502,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T15:04:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 2228, "modify": 69, "delete": 4, @@ -360057,6 +360545,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T14:59:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -360095,6 +360584,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:56:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -360141,6 +360631,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:33:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -360179,6 +360670,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:27:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -360217,6 +360709,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T12:50:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -360258,6 +360751,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T10:46:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -360297,6 +360791,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T08:32:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -360336,6 +360831,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T07:29:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 11, "delete": 0, @@ -360375,6 +360871,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T07:18:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -360420,6 +360917,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T05:34:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 1854, "modify": 258, "delete": 0, @@ -360479,6 +360977,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T19:56:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -360519,6 +361018,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T19:42:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -360560,6 +361060,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T19:37:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -360604,6 +361105,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T18:24:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 5, "delete": 0, @@ -360645,6 +361147,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T18:06:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -360684,6 +361187,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T16:30:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 30, "delete": 0, @@ -360724,6 +361228,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T16:25:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 17, "delete": 0, @@ -360769,6 +361274,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:48:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 1688, "modify": 11, "delete": 0, @@ -360810,6 +361316,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:40:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 202, "modify": 133, "delete": 0, @@ -360852,6 +361359,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:27:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -360891,6 +361399,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T14:33:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 87, "modify": 111, "delete": 0, @@ -360933,6 +361442,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T13:54:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 488, "modify": 192, "delete": 2, @@ -360975,6 +361485,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:57:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -361017,6 +361528,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:51:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -361061,6 +361573,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:51:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 1448, "modify": 245, "delete": 6, @@ -361113,6 +361626,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T11:52:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 9, "modify": 19, "delete": 2, @@ -361162,6 +361676,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T11:18:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 6, "delete": 0, @@ -361202,6 +361717,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T10:23:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -361244,6 +361760,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T10:13:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -361284,6 +361801,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T10:05:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -361326,6 +361844,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T09:29:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -361366,6 +361885,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T05:37:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 1006, "modify": 546, "delete": 4, @@ -361408,6 +361928,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T01:20:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -361452,6 +361973,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T00:43:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -361491,6 +362013,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T00:20:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -361536,6 +362059,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T00:14:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -361575,6 +362099,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T23:29:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -361614,6 +362139,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T21:35:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -361653,6 +362179,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T21:25:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -361692,6 +362219,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T20:07:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -361731,6 +362259,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T19:01:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -361770,6 +362299,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T18:58:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -361809,6 +362339,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T18:24:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -361867,6 +362398,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T15:52:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 110, "delete": 0, @@ -361912,6 +362444,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:55:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 9, "delete": 0, @@ -361955,6 +362488,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:49:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 11, "delete": 0, @@ -361999,6 +362533,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:34:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 4906, "modify": 77, "delete": 0, @@ -362041,6 +362576,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:30:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -362085,6 +362621,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:17:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -362130,6 +362667,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:47:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 0, "delete": 0, @@ -362173,6 +362711,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:35:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 205, "modify": 1024, "delete": 19, @@ -362220,6 +362759,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:33:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 1, "delete": 0, @@ -362265,6 +362805,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:21:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 2479, "modify": 0, "delete": 0, @@ -362310,6 +362851,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:07:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1543, "modify": 0, "delete": 0, @@ -362355,6 +362897,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T11:08:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -362393,6 +362936,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T09:35:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -362435,6 +362979,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T08:43:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 382, "modify": 452, "delete": 0, @@ -362481,6 +363026,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T08:31:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 8, "delete": 0, @@ -362522,6 +363068,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T08:10:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -362561,6 +363108,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T07:44:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -362605,6 +363153,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T05:43:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 51, "modify": 420, "delete": 8, @@ -362662,6 +363211,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T05:00:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 72, "delete": 0, @@ -362703,6 +363253,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T02:08:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -362743,6 +363294,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T22:03:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -362782,6 +363334,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:56:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 75, "delete": 0, @@ -362822,6 +363375,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:32:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 149, "delete": 0, @@ -362866,6 +363420,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:05:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -362911,6 +363466,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T20:56:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 11, "delete": 0, @@ -362957,6 +363513,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T20:47:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -363001,6 +363558,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T20:11:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -363046,6 +363604,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T19:38:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -363090,6 +363649,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T18:28:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 10, "delete": 0, @@ -363136,6 +363696,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T17:26:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 1942, "modify": 0, "delete": 0, @@ -363179,6 +363740,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T16:32:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -363224,6 +363786,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:51:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -363269,6 +363832,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:44:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 97, "modify": 240, "delete": 4, @@ -363310,6 +363874,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:42:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 128, "modify": 94, "delete": 4, @@ -363360,6 +363925,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:20:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -363400,6 +363966,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:14:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 186, "modify": 332, "delete": 39, @@ -363441,6 +364008,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:12:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 13, "delete": 3, @@ -363482,6 +364050,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:12:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 34, "delete": 0, @@ -363539,6 +364108,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:10:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 92, "modify": 267, "delete": 9, @@ -363585,6 +364155,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:07:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 19, "modify": 0, "delete": 0, @@ -363624,6 +364195,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T13:47:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -363665,6 +364237,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T13:26:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 3, "delete": 0, @@ -363712,6 +364285,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T12:46:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 572, "modify": 1472, "delete": 24, @@ -363753,6 +364327,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T11:34:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -363794,6 +364369,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T11:19:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 132, "modify": 140, "delete": 1, @@ -363835,6 +364411,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T11:12:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 45, "modify": 183, "delete": 4, @@ -363881,6 +364458,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T10:31:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 5, "delete": 0, @@ -363922,6 +364500,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T10:16:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 126, "delete": 0, @@ -363966,6 +364545,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T09:44:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 4, "delete": 0, @@ -364005,6 +364585,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T09:03:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 657, "modify": 1526, "delete": 39, @@ -364046,6 +364627,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T07:35:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 14, "modify": 16, "delete": 0, @@ -364101,6 +364683,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T07:17:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 7, "delete": 0, @@ -364143,6 +364726,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T21:53:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -364187,6 +364771,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T21:50:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -364230,6 +364815,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T21:31:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 255, "delete": 0, @@ -364272,6 +364858,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T20:53:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 22, "modify": 191, "delete": 6, @@ -364313,6 +364900,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T20:03:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 50, "delete": 7, @@ -364354,6 +364942,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T19:44:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -364394,6 +364983,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T16:06:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 15, "delete": 0, @@ -364435,6 +365025,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T15:16:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 596, "modify": 928, "delete": 21, @@ -364476,6 +365067,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:50:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -364522,6 +365114,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:47:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 15, "delete": 0, @@ -364564,6 +365157,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:38:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 1, "delete": 0, @@ -364608,6 +365202,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:16:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 7, "delete": 1, @@ -364649,6 +365244,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:48:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 321, "modify": 345, "delete": 3, @@ -364690,6 +365286,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:42:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -364729,6 +365326,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:23:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -364767,6 +365365,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:07:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -364806,6 +365405,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:46:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 913, "modify": 916, "delete": 15, @@ -364852,6 +365452,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:42:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -364895,6 +365496,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:10:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 150, "modify": 486, "delete": 21, @@ -364942,6 +365544,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:00:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -364981,6 +365584,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:24:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 137, "modify": 45, "delete": 0, @@ -365022,6 +365626,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:22:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 20, "modify": 0, "delete": 0, @@ -365061,6 +365666,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T10:57:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -365107,6 +365713,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T10:43:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 480, "delete": 0, @@ -365155,6 +365762,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:53:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -365194,6 +365802,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:51:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -365249,6 +365858,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:18:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 7, "delete": 0, @@ -365296,6 +365906,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:08:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1715, "modify": 544, "delete": 2, @@ -365337,6 +365948,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T05:40:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 432, "modify": 341, "delete": 0, @@ -365379,6 +365991,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T21:57:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 8, "delete": 0, @@ -365423,6 +366036,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T21:26:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 0, "delete": 0, @@ -365462,6 +366076,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T19:52:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -365501,6 +366116,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T19:25:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -365545,6 +366161,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T19:24:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -365584,6 +366201,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T16:43:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 95, "delete": 0, @@ -365646,6 +366264,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T10:32:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -365685,6 +366304,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:40:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -365725,6 +366345,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:16:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -365764,6 +366385,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:13:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 6, "delete": 0, @@ -365804,6 +366426,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:12:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -365843,6 +366466,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:08:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 600, "modify": 427, "delete": 3, @@ -365885,6 +366509,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T08:23:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 115, "delete": 0, @@ -365929,6 +366554,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T00:54:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -365974,6 +366600,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T17:09:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -366013,6 +366640,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T15:36:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -366052,6 +366680,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T14:41:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -366092,6 +366721,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T10:32:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 106, "delete": 2, @@ -366133,6 +366763,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T07:56:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 342, "modify": 309, "delete": 0, @@ -366175,6 +366806,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T06:24:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 56, "delete": 0, @@ -366214,6 +366846,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T20:53:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -366258,6 +366891,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T20:33:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -366302,6 +366936,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T20:31:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -366341,6 +366976,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T19:09:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 128, "modify": 58, "delete": 2, @@ -366388,6 +367024,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T18:02:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 1, @@ -366434,6 +367071,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T18:00:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -366474,6 +367112,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:58:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -366516,6 +367155,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:42:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 15, "delete": 0, @@ -366555,6 +367195,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:20:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 3, "delete": 0, @@ -366595,6 +367236,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:14:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -366635,6 +367277,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:12:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -366693,6 +367336,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T12:54:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -366734,6 +367378,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T12:20:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -366776,6 +367421,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T12:16:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 3, "delete": 0, @@ -366820,6 +367466,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T10:46:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 481, "modify": 237, "delete": 0, @@ -366866,6 +367513,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T10:27:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1128, "modify": 12, "delete": 0, @@ -366908,6 +367556,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T10:10:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -366950,6 +367599,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T09:51:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -366991,6 +367641,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T08:21:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 75, "modify": 91, "delete": 0, @@ -367033,6 +367684,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T08:02:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 138, "modify": 51, "delete": 0, @@ -367074,6 +367726,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T07:37:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 113, "modify": 35, "delete": 0, @@ -367116,6 +367769,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T07:33:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 5, "delete": 0, @@ -367157,6 +367811,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T03:07:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -367201,6 +367856,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T00:49:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 123, "modify": 403, "delete": 7, @@ -367243,6 +367899,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T00:49:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 32, "delete": 2, @@ -367284,6 +367941,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T23:36:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -367323,6 +367981,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T21:27:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 43, "modify": 159, "delete": 0, @@ -367365,6 +368024,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T19:59:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 47, "delete": 0, @@ -367405,6 +368065,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T18:58:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -367445,6 +368106,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T17:14:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 10, "delete": 0, @@ -367505,6 +368167,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T17:10:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 29, "modify": 222, "delete": 7, @@ -367547,6 +368210,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T16:43:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 37, "modify": 129, "delete": 2, @@ -367593,6 +368257,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T15:51:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -367632,6 +368297,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T15:44:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -367671,6 +368337,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T13:55:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 32, "delete": 0, @@ -367716,6 +368383,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T13:13:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -367759,6 +368427,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T12:42:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -367798,6 +368467,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T11:53:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -367838,6 +368508,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T11:46:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -367879,6 +368550,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:25:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -367919,6 +368591,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:24:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -367958,6 +368631,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:11:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -367997,6 +368671,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:02:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -368038,6 +368713,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T05:32:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -368077,6 +368753,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T03:03:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 44, "delete": 0, @@ -368122,6 +368799,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T02:54:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 88, "modify": 300, "delete": 4, @@ -368169,6 +368847,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T02:42:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 32, "modify": 276, "delete": 7, @@ -368216,6 +368895,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T01:58:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 76, "modify": 427, "delete": 9, @@ -368258,6 +368938,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T20:46:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -368298,6 +368979,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T20:28:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -368340,6 +369022,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T19:59:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 598, "modify": 19, "delete": 0, @@ -368381,6 +369064,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T15:23:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 13, "delete": 0, @@ -368420,6 +369104,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T14:58:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 25, "modify": 126, "delete": 0, @@ -368467,6 +369152,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T14:10:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -368506,6 +369192,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T13:53:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 34, "delete": 2, @@ -368566,6 +369253,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T12:41:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 135, "delete": 0, @@ -368605,6 +369293,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T11:38:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -368650,6 +369339,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T11:01:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 6, "delete": 0, @@ -368689,6 +369379,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T09:58:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -368728,6 +369419,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T09:49:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -368774,6 +369466,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T08:05:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -368814,6 +369507,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T08:00:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 50, "delete": 0, @@ -368853,6 +369547,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T23:07:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -368893,6 +369588,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T20:04:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 38, "modify": 124, "delete": 13, @@ -368939,6 +369635,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T19:08:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -368979,6 +369676,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T17:54:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -369020,6 +369718,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:57:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -369062,6 +369761,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:44:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -369105,6 +369805,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:33:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 7, "delete": 0, @@ -369163,6 +369864,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:27:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 125, "modify": 193, "delete": 17, @@ -369205,6 +369907,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T15:35:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -369246,6 +369949,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T14:11:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -369288,6 +369992,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T12:51:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -369328,6 +370033,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T10:06:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 4, "delete": 0, @@ -369368,6 +370074,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T05:34:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 128, "delete": 0, @@ -369407,6 +370114,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T03:38:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -369448,6 +370156,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T03:10:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 11, "delete": 0, @@ -369488,6 +370197,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T00:39:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -369527,6 +370237,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:49:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -369567,6 +370278,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:46:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -369606,6 +370318,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:20:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -369646,6 +370359,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:10:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 9, "delete": 0, @@ -369686,6 +370400,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:08:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -369725,6 +370440,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T16:43:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -369770,6 +370486,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T13:54:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -369814,6 +370531,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T12:48:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -369868,6 +370586,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T11:06:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1202, "modify": 1340, "delete": 8, @@ -369910,6 +370629,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T10:41:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -369951,6 +370671,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T10:11:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 901, "modify": 1280, "delete": 20, @@ -369998,6 +370719,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T09:42:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 211, "modify": 815, "delete": 20, @@ -370040,6 +370762,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T08:20:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1802, "modify": 1066, "delete": 3, @@ -370087,6 +370810,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T06:54:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 54, "modify": 438, "delete": 6, @@ -370113,6 +370837,37513 @@ ] } }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T23:33:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000469433623999804, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120402521, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osm", + "add-image": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2381637, + -39.8445634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T20:43:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000106950171320059, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120399310, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "benches", + "answer": 13, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_5000m": 15, + "move:node/9677061284": "improve_accuracy", + "move:node/9705812213": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03284655, + 51.1201947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T20:36:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000120958065360046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120399138, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0416171, + 48.5034653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T20:31:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120398990, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2327853, + -39.8450743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T20:04:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120398268, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9705865439": "source: https://osm.org/note/3090132" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7464049, + 50.8339484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T19:43:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120397785, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2333302, + 50.7383987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:55:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 78, + "delete": 0, + "area": 0.000617888458599954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120396455, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 113, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7060688, + 50.86745515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:53:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 502, + "modify": 50, + "delete": 3, + "area": 0.0000403124638000148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120396401, + "host": "pietervdvn.github.io", + "move": 41, + "theme": "grb", + "import": 53, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74332465, + 51.1749937 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sneidoer", + "uid": "15782267", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:48:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120396255, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "de", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8565603, + 48.1074348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:31:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 273, + "modify": 91, + "delete": 0, + "area": 0.00000722222802000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120395804, + "host": "pietervdvn.github.io", + "move": 74, + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7407424, + 51.173550250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1056277234", + "osm_id": 1056277234, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1056277525", + "osm_id": 1056277525, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1056277302", + "osm_id": 1056277302, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1435, + "modify": 422, + "delete": 2, + "area": 0.0000390414418500015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120394790, + "host": "pietervdvn.github.io", + "move": 359, + "theme": "grb", + "import": 187, + "locale": "nl", + "imagery": "osm", + "conflation": 130 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74409485, + 51.17517305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T17:57:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000145279970999976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120394688, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 2, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7242916, + 51.05495135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T17:53:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0.1250349152892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120394541, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 15, + "locale": "nl", + "imagery": "AGIV", + "import:node/9705693346": "source: https://osm.org/note/3156316", + "import:node/9705693365": "source: https://osm.org/note/3156535", + "import:node/9705693366": "source: https://osm.org/note/3156538", + "import:node/9705693673": "source: https://osm.org/note/3156454", + "import:node/9705702007": "source: https://osm.org/note/3156330", + "import:node/9705703274": "source: https://osm.org/note/3156456", + "import:node/9705713129": "source: https://osm.org/note/3156588", + "import:node/9705722354": "source: https://osm.org/note/3156522", + "import:node/9705742551": "source: https://osm.org/note/3156553", + "import:node/9705742552": "source: https://osm.org/note/3156251", + "import:node/9705744996": "source: https://osm.org/note/3156322", + "import:node/9705744997": "source: https://osm.org/note/3156544", + "import:node/9705744998": "source: https://osm.org/note/3156391", + "import:node/9705762101": "source: https://osm.org/note/3099188", + "import:node/9705764047": "source: https://osm.org/note/3156517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31665735, + 50.8741619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T17:53:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120394538, + "host": "pietervdvn.github.io", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7264761, + 51.0576823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T16:56:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120392891, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7224951, + 51.0557129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T16:49:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120392621, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3895547, + 50.8556532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:44:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.68979883547531, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120392452, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.688302199999999, + 55.5474581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T16:42:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 11, + "delete": 0, + "area": 0.00000299491274000159, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120392398, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "es", + "imagery": "Mapbox", + "add-image": 7, + "change_over_5000m": 3, + "change_within_25m": 9, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24222750000001, + -39.84482405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:37:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00710041150500023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120392156, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7412305, + 55.40788245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:35:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 466, + "modify": 154, + "delete": 0, + "area": 0.0000142524803599687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120392071, + "host": "pietervdvn.github.io", + "move": 129, + "theme": "grb", + "import": 56, + "locale": "nl", + "imagery": "osm", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7450116, + 51.174585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T15:50:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120390495, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2367627, + -39.845014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T15:38:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120390114, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7274309, + 51.0475331 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T15:09:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1261, + "modify": 572, + "delete": 5, + "area": 0.176911978205163, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120388913, + "host": "pietervdvn.github.io", + "move": 488, + "theme": "grb", + "import": 137, + "locale": "nl", + "imagery": "osm", + "conflation": 168 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0950833, + 51.049796900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T12:52:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.100258236542799, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120384042, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "import:node/9705089111": "source: https://osm.org/note/3156493", + "import:node/9705160168": "source: https://osm.org/note/3156480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99546755, + 50.9237914 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:59:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.55555819994695e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120379913, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9911441, + 48.49841955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:44:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.12824399996426e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120379466, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9905252, + 48.498102200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T10:43:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120379440, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2174503, + 49.8073122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:32:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000205926771000061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120379056, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99119145, + 48.49787015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:30:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.80399999954332e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120379014, + "host": "pietervdvn.github.io", + "theme": "facadegardens", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7034567, + 51.0517615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:24:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.05999999946988e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120378778, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9913487, + 48.49875505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:18:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.6371503000001e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120378587, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99091085, + 48.498352749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:55:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 36, + "delete": 0, + "area": 0.0000054442680000085, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120377943, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 58, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 41, + "change_within_50m": 12, + "change_within_100m": 6, + "move:node/9704904037": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.991688199999999, + 48.498996399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:54:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000942406009600875, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120377903, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_within_50m": 3, + "change_within_100m": 5, + "change_within_500m": 4, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.716186, + 51.0508545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0891168936715596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120377432, + "host": "pietervdvn.github.io", + "theme": "pets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48505385, + 51.139547199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paul taildeman", + "uid": "15770618", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T09:26:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120377097, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5635829, + 51.0952383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:22:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000192820480179986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120376939, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26228345, + 50.720423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T07:59:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0111681559466093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120374917, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "import:node/9704729883": "source: https://osm.org/note/3156283", + "import:node/9704757597": "source: https://osm.org/note/3156545", + "import:node/9704768060": "source: https://osm.org/note/3156415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2373565500000003, + 50.92004285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T07:36:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 960, + "modify": 705, + "delete": 4, + "area": 0.0000681099225400187, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120374390, + "host": "mapcomplete.osm.be", + "move": 597, + "theme": "grb", + "answer": 3, + "import": 90, + "locale": "nl", + "imagery": "osm", + "conflation": 210 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19603985, + 50.8667678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T06:19:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0338315590350001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120372631, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 7, + "locale": "nl", + "imagery": "AGIV10cm", + "import:node/9704566926": "source: https://osm.org/note/3156388", + "import:node/9704570589": "source: https://osm.org/note/3156265", + "import:node/9704625186": "source: https://osm.org/note/3156297", + "import:node/9704635666": "source: https://osm.org/note/3156432", + "import:node/9704661419": "source: https://osm.org/note/3156580", + "import:node/9704667496": "source: https://osm.org/note/3156361", + "import:node/9704669954": "source: https://osm.org/note/3156403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.180599, + 51.293546899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T05:50:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 331, + "modify": 72, + "delete": 0, + "area": 0.00000715552864998283, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120372165, + "host": "mapcomplete.osm.be", + "move": 59, + "theme": "grb", + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18822865, + 50.915862849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T05:37:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2986, + "modify": 711, + "delete": 3, + "area": 0.00203942878898009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120371966, + "host": "mapcomplete.osm.be", + "move": 646, + "theme": "grb", + "answer": 4, + "import": 375, + "locale": "nl", + "imagery": "osm", + "conflation": 152, + "change_over_5000m": 139 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2150778, + 50.87962875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T05:21:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.0000012519129600117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120371769, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 13, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66600439999999, + -33.44060915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T01:13:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.77923599989277e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120369153, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23244585, + -39.841990100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T23:34:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120367932, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2328388, + -39.840476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T23:30:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120367870, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.238302, + 50.7358458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T22:10:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120366505, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2348095, + -39.8397957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T21:07:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.00000172594359999771, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120365046, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 32, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0001073, + 48.5004944 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T20:46:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.98540400001975e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120364465, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 5, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9074104, + 51.091554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T20:42:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120364359, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9096264, + 51.1073958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T20:27:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000442045065000016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120363858, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 14, + "change_within_25m": 3, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23354565, + -39.84121195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T19:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.00437483445464997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120362003, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 145, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.94250075, + 48.49752845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T18:09:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120359646, + "host": "mapcomplete.osm.be", + "theme": "dog", + "answer": 1, + "locale": "da", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.276713, + 55.5092658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T17:41:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.83118219997037e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120358624, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25051315, + -39.8275914 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T16:26:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 5.07319800000347e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120355930, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7287982, + 51.0490449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T16:07:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.0000611751243200059, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120355179, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 35, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6980769, + 50.8611581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T15:48:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00000829956120001396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120354482, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "fr", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 5, + "change_within_50m": 4, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517215, + 44.86699095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T15:08:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120352890, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130498, + 51.2047361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T14:23:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 167, + "delete": 6, + "area": 0.0000173861634599838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120351020, + "host": "pietervdvn.github.io", + "move": 147, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4503646, + 50.92480115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T14:04:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.02404999965515e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120350164, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72840085, + 51.04903085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T13:04:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 79, + "modify": 557, + "delete": 12, + "area": 0.0000110451803999816, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120348008, + "host": "pietervdvn.github.io", + "move": 494, + "theme": "grb", + "import": 19, + "locale": "nl", + "imagery": "osm", + "conflation": 142 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4467201, + 50.92487965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T12:22:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 145, + "modify": 957, + "delete": 14, + "area": 0.0000238611131200309, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120346477, + "host": "pietervdvn.github.io", + "move": 860, + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "osm", + "conflation": 250 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.447120999999999, + 50.9226302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T12:03:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.5456684999984e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120345807, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99607655, + 48.50131064999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T11:59:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120345669, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9979481, + 48.5014694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T10:19:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 30, + "modify": 32, + "delete": 0, + "area": 0.00000277969507999801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120341721, + "host": "mapcomplete.osm.be", + "move": 29, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.340275500000001, + 50.92723695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T09:33:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120340015, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7283606, + 51.048999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #berlin_emergency_water_pumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T09:10:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120339118, + "host": "mapcomplete.osm.be", + "theme": "berlin_emergency_water_pumps", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.442324, + 52.478745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T08:45:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 91, + "modify": 215, + "delete": 10, + "area": 0.00000526101766998255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120338160, + "host": "pietervdvn.github.io", + "move": 194, + "theme": "grb", + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44368465, + 50.92179135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T08:27:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.54940000054386e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120337448, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "move:node/9702388959": "improve_accuracy", + "import:node/9702388959": "source: https://osm.org/note/3044134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3344359, + 50.93258465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "martiensch", + "uid": "319572", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T07:23:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00072930121874993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120335108, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56033725, + 53.227544550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "martiensch", + "uid": "319572", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T07:17:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000733953628000212, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120334916, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.542047999999999, + 53.22195655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cleta14", + "uid": "13856772", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T06:06:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0305866988178109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120332456, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 4, + "locale": "ca", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25659394999999996, + 40.539931949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T05:45:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120331766, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2300796, + -39.8441085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T04:13:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000042251304529959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120329675, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "es", + "imagery": "Mapbox", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25124555, + -39.80802305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T01:32:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000989903097003756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120327530, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osmfr", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24997675, + -39.805741850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T23:53:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120326170, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2141254, + -39.8097407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T22:18:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 402, + "modify": 177, + "delete": 0, + "area": 0.0000185701198399805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120324556, + "host": "mapcomplete.osm.be", + "move": 150, + "theme": "grb", + "answer": 1, + "import": 36, + "locale": "nl", + "imagery": "osm", + "conflation": 52 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.738281300000001, + 50.90478385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T20:57:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120322768, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2397259, + -39.8331128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T20:53:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.238971907962241, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120322668, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "import:node/9701542104": "source: https://osm.org/note/3156562", + "import:node/9701561270": "source: https://osm.org/note/3156411", + "import:node/9701570812": "source: https://osm.org/note/3156570", + "import:node/9701571209": "source: https://osm.org/note/3156271", + "import:node/9701584703": "source: https://osm.org/note/3156255", + "import:node/9701587608": "source: https://osm.org/note/3156539", + "import:node/9701587609": "source: https://osm.org/note/3156307", + "import:node/9701598030": "source: https://osm.org/note/3156305", + "import:node/9701671177": "source: https://osm.org/note/3156382", + "import:node/9701687965": "source: https://osm.org/note/3156581", + "import:node/9701710280": "source: https://osm.org/note/3156559" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0810548, + 51.0220483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T20:37:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120322230, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3886565, + 50.9812992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T18:48:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120319093, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Positron", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0219993, + 52.2934042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T17:41:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.71549999868449e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120316691, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "move:node/7835232730": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7038172, + 50.88053945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T17:40:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0.0610141785466698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120316661, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "import:node/9701180924": "source: https://osm.org/note/3156253", + "import:node/9701180925": "source: https://osm.org/note/3156292", + "import:node/9701215172": "source: https://osm.org/note/3156327", + "import:node/9701228251": "source: https://osm.org/note/3156428", + "import:node/9701237371": "source: https://osm.org/note/3156506", + "import:node/9701296154": "source: https://osm.org/note/3156414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09111345, + 50.86973805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T16:58:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00000146646719999779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120315050, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6430916499999999, + 44.7772525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TS-R", + "uid": "8070841", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T16:56:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.20501910000662e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120314964, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.76115785, + 50.85844165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T16:36:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0.23685437709456, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120314173, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 11, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 1, + "import:node/9701058313": "source: https://osm.org/note/3156486", + "import:node/9701073381": "source: https://osm.org/note/3156491", + "import:node/9701076723": "source: https://osm.org/note/3156467", + "import:node/9701091891": "source: https://osm.org/note/3156290", + "import:node/9701097634": "source: https://osm.org/note/3156291", + "import:node/9701136016": "source: https://osm.org/note/3156326", + "import:node/9701148510": "source: https://osm.org/note/3156277", + "import:node/9701176442": "source: https://osm.org/note/3156280", + "import:node/9701180827": "source: https://osm.org/note/3156362", + "import:node/9701183780": "source: https://osm.org/note/3156380", + "import:node/9701186418": "source: https://osm.org/note/3156353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9673305, + 51.05308675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jeromeSAR", + "uid": "15749666", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T15:57:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.00608813271384, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120312891, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 22, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "move:node/9700999305": "improve_accuracy", + "move:node/9701006765": "improve_accuracy", + "move:node/9701092181": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68210395, + 50.804703 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T14:57:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120310177, + "host": "pietervdvn.github.io", + "theme": "waste", + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "import:node/9700863480": "source: https://osm.org/note/3130938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2720791, + 51.2072598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T13:47:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.9298099998757e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120307502, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 8, + "locale": "es", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7129096499999998, + 41.21838885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T13:37:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.00026519716497004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120306979, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.56376115, + 52.47327595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T13:18:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.21914199996343e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120306076, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2442439499999995, + 50.7358654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T12:25:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000128254780399903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120303736, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 20, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2182554, + 51.21673905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hasnep", + "uid": "7657368", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T12:01:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.4812520000891e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120302732, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68668485, + 50.7816362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T11:25:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.47974249998924e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120301131, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2121533500000004, + 51.21164135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T11:03:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000259184069200133, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120300189, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34266175, + 50.8096397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T08:03:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 9, + "delete": 0, + "area": 0.0150804713736805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120292066, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 9, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5981595, + 44.6916905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UnGeograf", + "uid": "601515", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T06:54:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120289145, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1794021, + 41.3912499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UnGeograf", + "uid": "601515", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T06:48:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120288908, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "ca", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1812797, + 41.3923747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T06:07:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.00000164121360000106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120287347, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 10, + "locale": "fr", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 1, + "change_within_25m": 19 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5311931000000001, + 44.8387315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T05:59:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.000034623856770001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120287059, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 74, + "locale": "de", + "imagery": "osm", + "change_within_25m": 20, + "change_within_50m": 21, + "change_within_100m": 9, + "change_within_500m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99890665, + 48.50058875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T21:45:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 16.4553880469454, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120278278, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.95779905, + -36.62543305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T20:13:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 11, + "delete": 0, + "area": 2.36543500005758e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120275844, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 16, + "move:node/9698398536": "improve_accuracy", + "move:node/9698479416": "improve_accuracy", + "move:node/9699008125": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.392723849999999, + 50.975821249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T20:01:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.31837699997047e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120275459, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38483845, + 50.86239095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T19:53:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120275236, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3849516, + 50.8622407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T19:33:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 24, + "delete": 0, + "area": 0.00000432782163001115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120274592, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 80, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 64, + "change_within_50m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.00223425, + 48.50192875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T19:14:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120273966, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 9, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4311352, + 44.4106035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T19:03:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.000181044564480078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120273645, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 60, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5669606, + 52.477917500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T18:14:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000534688393999985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120271984, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "change_within_50m": 1, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3923778, + 50.978903849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T17:49:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1153, + "delete": 0, + "area": 0.0330499562200001, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-28T07:04:33.617501Z", + "id": 120271082, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1584, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9540787, + 50.9837438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T17:05:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120269379, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3927563, + 50.9758061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:58:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000158799532499986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120264044, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55475885, + 44.84201475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T14:16:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 943, + "modify": 1243, + "delete": 6, + "area": 0.000106753994380023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120262231, + "host": "pietervdvn.github.io", + "move": 1087, + "theme": "grb", + "import": 133, + "locale": "nl", + "imagery": "osm", + "conflation": 316 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44408565, + 50.9274999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T14:10:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 308, + "modify": 75, + "delete": 4, + "area": 0.00000543731832000024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120262024, + "host": "pietervdvn.github.io", + "move": 65, + "theme": "grb", + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4437621, + 50.92964455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:03:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 8, + "delete": 0, + "area": 0.000128993003580049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120261724, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "import": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 8, + "change_within_25m": 13, + "import:node/9697869265": "source: https://osm.org/note/3022956", + "import:node/9697901804": "source: https://osm.org/note/3044123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34202245, + 50.933114700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:01:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000225475671600048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120261638, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4090875, + 50.9620731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T13:23:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120259986, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4, + "move:node/9697781830": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4096885, + 50.9640934 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:54:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 132, + "delete": 0, + "area": 0.0000373284034800468, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120253381, + "host": "pietervdvn.github.io", + "move": 115, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.448707199999999, + 50.926747649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:44:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 35, + "modify": 508, + "delete": 8, + "area": 0.0000196372284000183, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120252971, + "host": "pietervdvn.github.io", + "move": 451, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 122 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4542000999999996, + 50.92729625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:17:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 165, + "modify": 961, + "delete": 55, + "area": 0.0000218778216799659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120251819, + "host": "pietervdvn.github.io", + "move": 839, + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "osm", + "conflation": 252 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4529482, + 50.92801145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:07:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 25, + "modify": 297, + "delete": 9, + "area": 0.00000459117015999894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120251357, + "host": "pietervdvn.github.io", + "move": 259, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45168605, + 50.9273055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T10:06:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120251334, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2241441, + 51.2100561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T09:51:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120250606, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4185221, + 46.9274587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T09:01:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.34030920006436e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120248389, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3404016, + 50.9276905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T08:53:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000068068286270023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120248044, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 4, + "change_within_25m": 14, + "import:node/9697095024": "source: https://osm.org/note/3044547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34008595, + 50.93004275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T07:30:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 40, + "delete": 0, + "area": 0.000657257687220133, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120244590, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 59, + "locale": "nl", + "imagery": "osm", + "add-image": 13, + "change_over_5000m": 6, + "change_within_25m": 67, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.392637649999999, + 50.9589247 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T07:27:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120244482, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3955156, + 50.9653478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T06:37:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.79503560003945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120242221, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99556945, + 48.5011484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T05:17:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 37, + "delete": 0, + "area": 0.00000831087740001019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120239556, + "host": "mapcomplete.osm.be", + "move": 32, + "theme": "grb", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3750032999999995, + 50.9503919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T00:41:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000368203048500063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120234753, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56554885, + 51.258692550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T22:16:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 395, + "modify": 72, + "delete": 0, + "area": 0.00000772663904998685, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120232481, + "host": "mapcomplete.osm.be", + "move": 61, + "theme": "grb", + "answer": 1, + "import": 47, + "locale": "nl", + "imagery": "AGIV", + "conflation": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74273195, + 50.90490965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gptm", + "uid": "2873411", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T21:49:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120231894, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1321597, + 50.945512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T19:25:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120227439, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745276, + 44.8516137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mike140", + "uid": "2471547", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T18:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000139655131199935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120225439, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "ru", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.797018800000004, + 50.905050700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T17:54:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120223902, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3714535, + 50.8460928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T17:47:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.02437999999382e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120223551, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5705560000000001, + 44.8499755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T17:40:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120223210, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "UrbISOrtho2019", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3715139, + 50.8461728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T17:18:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1507, + "delete": 0, + "area": 0.0321034956001406, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:42:46.095881Z", + "id": 120222092, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2043, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9209701500000005, + 50.967387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T16:20:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 316, + "modify": 22, + "delete": 0, + "area": 0.0000122801832699862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120219950, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "answer": 11, + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16786265, + 50.46116915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T16:02:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.36136999992442e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120219343, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9962883, + 48.501657949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T15:56:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00000139630609999603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120219110, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 47, + "locale": "de", + "imagery": "osm", + "change_within_25m": 21, + "change_within_50m": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99692325, + 48.5026677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T14:52:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 23, + "modify": 143, + "delete": 0, + "area": 0.0000120744696600151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120216757, + "host": "pietervdvn.github.io", + "move": 127, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45037515, + 50.927431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T14:42:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 81, + "modify": 278, + "delete": 11, + "area": 0.0502929623689995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120216323, + "host": "pietervdvn.github.io", + "move": 244, + "theme": "grb", + "import": 12, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3178833999999995, + 50.8338301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "maubu", + "uid": "15716055", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T11:18:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 14, + "delete": 0, + "area": 0.000128584444100041, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120207342, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 25, + "locale": "nl", + "imagery": "osm", + "move:node/9695002953": "improve_accuracy", + "move:node/9695011074": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806342, + 51.163354850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "maubu", + "uid": "15716055", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T11:14:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000983506032001223, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120207177, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4796207500000005, + 51.169125300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T11:10:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.8548150001553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120206971, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 9, + "locale": "de", + "imagery": "Mapbox", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99966285, + 48.501525650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T10:55:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120206348, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "de", + "imagery": "HDM_HOT", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9986825, + 48.5010869 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T10:53:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000178972004999077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120206275, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 24, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 17, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99861225, + 48.501021449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T10:49:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 3.4834407690654, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120206062, + "host": "mapcomplete.osm.be", + "theme": "dog", + "answer": 8, + "locale": "da", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.95974025, + 54.090299200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "toerisme Mol", + "uid": "8297519", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T06:36:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 4.62579999873539e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120195444, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9694357881": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.181656, + 51.21868355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MDGISHaacht***", + "uid": "12746326", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T06:34:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 10, + "delete": 1, + "area": 0.00303697686407999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120195385, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 21, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9016776554": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63642255, + 50.962741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T00:16:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.0000494542739999883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120187584, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 27, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5833838, + 55.70558145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T23:36:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 2.52412923541806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120187025, + "host": "mapcomplete.osm.be", + "theme": "dog", + "answer": 15, + "locale": "da", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5319436, + 55.4048904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T22:40:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 268, + "delete": 0, + "area": 0.00526166922817957, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:42:28.793217Z", + "id": 120186161, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 349, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94223385, + 50.9319201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T22:06:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000300342695279844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120185489, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9853448, + 48.5008652 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T20:35:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.19779999117068e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120183066, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2497412, + -39.82786935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T20:34:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120183047, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2497741, + -39.8278462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T19:43:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120181343, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40371425000001, + 37.796486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Trygve03", + "uid": "13780862", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T17:35:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000241887669999966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120176790, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0323988, + 58.1724065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T15:08:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.000583105879849945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120170937, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 18, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15175915, + 51.16097685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:51:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 75, + "modify": 143, + "delete": 0, + "area": 0.000051025153259959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120170214, + "host": "pietervdvn.github.io", + "move": 130, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.184082350000001, + 50.7429734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:45:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 30, + "delete": 0, + "area": 0.00136421600768016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120169944, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 39, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0354656, + 51.1546691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1130, + "modify": 24, + "delete": 0, + "area": 0.0000533849734999921, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120169450, + "host": "pietervdvn.github.io", + "move": 22, + "theme": "grb", + "import": 144, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1811676, + 50.74354605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:31:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 15, + "modify": 0, + "delete": 0, + "area": 1.69684200003615e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120169448, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17531325, + 50.74443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore Baeck", + "uid": "15137714", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:15:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000416524751999556, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120168895, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2228247, + 51.128604100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:03:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120168366, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.249474, + -39.8098227 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T13:41:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 5, + "delete": 0, + "area": 0.000179863121400024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120167551, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17966485, + 51.1899453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore Baeck", + "uid": "15137714", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T13:39:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.00454396462710037, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120167480, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2179516, + 51.13577635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T13:10:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120166110, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5349641, + 44.8552743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeneralGman", + "uid": "7125513", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T12:57:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000346470241599874, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120165592, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 8, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "move:node/9692144604": "improve_accuracy", + "move:node/9692188037": "improve_accuracy", + "import:node/9692144604": "source: https://osm.org/note/3143447", + "import:node/9692188037": "source: https://osm.org/note/3143431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31797495, + 51.098700199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T12:55:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2774, + "modify": 911, + "delete": 56, + "area": 0.00899741191608016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120165474, + "host": "pietervdvn.github.io", + "move": 797, + "theme": "grb", + "import": 384, + "locale": "nl", + "imagery": "osm", + "conflation": 240 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27683885, + 50.740941500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Do Wim", + "uid": "708153", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T12:21:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000354975543000026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120164101, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 18, + "locale": "nl", + "imagery": "AGIV", + "move:node/9692130729": "improve_accuracy", + "move:node/9692133204": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9739877, + 51.005465349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Do Wim", + "uid": "708153", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T11:53:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.00000595027014000367, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120162833, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 16, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 20, + "move:node/9692058225": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9784194, + 50.962764050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bistro Lichtaartse Kwezel", + "uid": "15702264", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T11:34:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120162015, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9262899, + 51.2262933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T11:33:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0798878870941784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120161969, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 21, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5532255499999996, + 50.9454109 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T11:03:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 51, + "modify": 102, + "delete": 4, + "area": 0.00000806382485999047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120160725, + "host": "mapcomplete.osm.be", + "move": 89, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.970794, + 51.166675749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T11:02:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 4.43581999996783e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120160668, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9716429, + 51.1673651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:58:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 3.9523439999682e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120160529, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 6, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 2, + "change_within_1000m": 7, + "move:node/9678653779": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.927401, + 51.105802100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:55:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120160440, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_1000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9268854, + 51.1062234 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:53:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120160364, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212426, + 51.2154766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.77071200005346e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120159544, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.969774000000001, + 48.50151945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:29:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 94, + "modify": 305, + "delete": 13, + "area": 0.000107208074799951, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120159432, + "host": "mapcomplete.osm.be", + "move": 271, + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 72 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.978248499999999, + 51.169696099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:14:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000392121356000679, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120158880, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.96756915, + 43.235849200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Loekie 96", + "uid": "15699422", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T09:57:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120158150, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9691796726": "source: https://osm.org/note/3143493" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1598368, + 51.2137736 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T09:52:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120157938, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3379113, + 44.498018 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Justine Dam", + "uid": "12308921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T09:18:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 6.15782600000241e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120156539, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7690395500000005, + 49.4357498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T08:31:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120154534, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7352121, + 51.0451377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T08:31:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 197, + "modify": 742, + "delete": 30, + "area": 0.0000120222155000012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120154517, + "host": "mapcomplete.osm.be", + "move": 665, + "theme": "grb", + "answer": 5, + "import": 20, + "locale": "nl", + "imagery": "AGIV", + "conflation": 194 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.985620750000001, + 51.1703689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T08:05:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120153499, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.532808, + 44.8374679 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T07:46:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00000174236983998729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120152802, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1753559, + 51.19086025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T07:46:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.40157712375641, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120152789, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.38067365, + 9.68421485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T07:30:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 8, + "delete": 1, + "area": 0.00000400092119998998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120152075, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 24, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_over_5000m": 36, + "move:node/9691514458": "improve_accuracy", + "deletion:node/9691514458": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1754645, + 51.1916629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T06:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 3, + "delete": 0, + "area": 9.99113419997496e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120148743, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "trees", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 4, + "change_within_50m": 5, + "move:node/9691362038": "improve_accuracy", + "move:node/9691362039": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9950877, + 48.50015395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T06:09:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.294705961103109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120148584, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 36, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.66469835, + 12.92190385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T04:19:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000218928432500195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120145421, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5141677499999999, + 44.901700649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T21:32:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000272425153000095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120139641, + "host": "mapcomplete.osm.be", + "theme": "dog", + "answer": 2, + "locale": "da", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.57485775, + 55.7015807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T20:36:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0015999977428498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120138392, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1169223500000003, + 57.148844350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T18:33:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120135054, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1048011, + 51.1397728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bmitch", + "uid": "3529163", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T14:22:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120126389, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -123.68703545, + 48.7849366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bmitch", + "uid": "3529163", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T14:19:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.9854549999844e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120126293, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -123.68926540000001, + 48.78199615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bmitch", + "uid": "3529163", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T14:13:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000738237783199624, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120126057, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -123.66556510000001, + 48.7852479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stephan112", + "uid": "15691045", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T13:45:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000189348420150016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120125051, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.40491975, + 51.92559545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T11:06:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.000312236555040007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120119826, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0005126, + 48.5022475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T11:01:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.63831999975774e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120119676, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1803259, + 51.19725355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T10:49:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.1200000388152e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120119331, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "US_Forest_Service_roads", + "change_over_5000m": 1, + "change_within_25m": 3, + "move:node/9689489188": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.61575590000001, + 39.3247656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T08:46:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 8.12765430004125e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120115431, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51213365, + 44.90342685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T07:15:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00081933301707009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120112928, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10247465, + 51.16103895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T07:06:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120112740, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2496808, + -39.810087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T07:05:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120112710, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2496808, + -39.810087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T06:05:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000921933726000179, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120111678, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV10cm", + "move:node/5189225237": "improve_accuracy", + "move:node/9689116779": "improve_accuracy", + "import:node/9689116779": "source: https://osm.org/note/3044020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.393484300000001, + 50.85834855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "imnichol", + "uid": "522254", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T00:47:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120108327, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -91.638389, + 44.053642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T00:16:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 12, + "delete": 0, + "area": 0.187516790976001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120107996, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 17, + "locale": "en", + "imagery": "cyclosm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.86103489999999, + 14.7633147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T23:38:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120107578, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2355944, + -39.8385786 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T23:27:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000160570387999503, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120107458, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5702905000000005, + 50.449734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T23:25:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000400362610950081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120107429, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24252545, + -39.82411275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T22:44:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000336008508599883, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120106841, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4277082500000002, + 50.8888795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T22:10:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120106311, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9377638, + 48.4845403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T22:09:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 2.67739900011117e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120106277, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.61492005, + 39.32463545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T22:08:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.82759999913056e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120106269, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.61433665, + 39.3246549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:59:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.62870000013105e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120106118, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1165358, + 51.14956585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:18:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000188008918599857, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120105314, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1376531500000002, + 51.1506878 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:14:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120105230, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1909729, + 51.1557131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:11:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000244237891700056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120105174, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19144455, + 51.196283550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T20:48:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00123036003191995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120104656, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1156877, + 57.15939365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T20:20:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120104017, + "host": "pietervdvn.github.io", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1909176, + 51.1990723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T20:19:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 827, + "modify": 0, + "delete": 0, + "area": 0.0000119564060399947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120103998, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 115, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 113 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22379395, + 50.9841809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T18:11:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120100650, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6157033, + 39.3249404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T17:57:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.00299959519239968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120100215, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 71, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 71 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1081193999999996, + 51.1570675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T17:56:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.70138449998277e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120100200, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24942515000001, + -39.81000145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T17:51:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000599262934380334, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120100059, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24036425, + -39.8268523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T16:35:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120097575, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3034313, + 50.81816 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T15:49:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 889, + "modify": 0, + "delete": 0, + "area": 0.0000178357802500188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120095810, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 131, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 131 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11546785, + 51.21800115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T15:48:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120095762, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2075116, + 50.9024581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T15:14:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9402, + "modify": 0, + "delete": 0, + "area": 0.000270184003049973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120094637, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1339, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 990 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12529625, + 51.21850155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T14:58:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120093955, + "host": "pietervdvn.github.io", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2252303, + 51.2163693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T14:40:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0348578186666102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120093218, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77678635, + 51.199211250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T14:12:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.08299700002208e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120092228, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 5, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23109525, + 51.21946305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T14:09:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000169709050799699, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120092144, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2285121500000002, + 51.217692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T13:46:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000399942176000049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120091368, + "host": "pietervdvn.github.io", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2297426, + 51.2182313 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T13:39:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120091151, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2252303, + 51.2163693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T10:05:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120083940, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5378883, + 44.8593317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T09:33:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120082829, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2289386, + 50.7432108 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T07:13:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000182854847000053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120078949, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49359054999999996, + 44.869633449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T06:58:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120078637, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2374517, + 50.7374414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T05:24:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 436, + "modify": 1089, + "delete": 17, + "area": 0.000811692386399966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120076634, + "host": "mapcomplete.osm.be", + "move": 949, + "theme": "grb", + "answer": 14, + "import": 39, + "locale": "nl", + "imagery": "AGIV", + "conflation": 286, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.052028, + 51.1269458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T03:29:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120075111, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.954245, + 14.6710034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T01:38:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120073902, + "host": "127.0.0.1:1234", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T01:19:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00191459212176029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120073669, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.06660980000001, + 14.61107325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T23:16:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.1459368000196e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120072188, + "host": "mapcomplete.osm.be", + "theme": "dog", + "locale": "da", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8344846, + 55.9031466 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T20:18:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.87640280002726e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120068654, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4162886, + 50.830550349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T20:18:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.60640000011291e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120068640, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0678938, + 48.5317501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T20:06:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120068331, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40481, + 50.8191588 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T16:51:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120060793, + "host": "pietervdvn.github.io", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2135581, + 51.2100717 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Túllio", + "uid": "1206082", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T16:43:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120060471, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2670604, + -16.6045561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T16:32:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 15, + "delete": 0, + "area": 0.0000605443936199714, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120060039, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 31, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 27, + "change_within_50m": 3, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36213975, + 48.8873593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T15:55:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.14001800003689e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120058503, + "host": "pietervdvn.github.io", + "theme": "sport_pitches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71360015, + 51.0264224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T15:21:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120057067, + "host": "pietervdvn.github.io", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1456491, + 51.1118193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T15:01:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.53971519999398e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120056133, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4238823, + 50.8916591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T14:13:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 68, + "delete": 6, + "area": 0.00000622443755999322, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120053710, + "host": "pietervdvn.github.io", + "move": 59, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3768128, + 50.7613338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T13:36:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.44985600001931e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120051820, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5354346999999999, + 44.8560587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T13:35:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.59235000001826e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120051790, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.9575453, + 45.80005465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T13:08:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.88863149998027e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120050570, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68119295, + 51.04948685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T12:29:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120049007, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3463936, + 50.8499268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T12:08:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 4, + "delete": 2, + "area": 0.00562845316021938, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120047986, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "change_over_5000m": 1, + "change_within_5000m": 1, + "deletion:node/5866281648": "disused", + "deletion:node/9685560450": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11538235, + 51.1626115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T11:42:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120046660, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7197948, + 51.0466304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T10:58:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120044361, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5103487, + 44.8444802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T10:52:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120044087, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5324564, + 53.2406062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Miroff", + "uid": "217899", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T06:58:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 28, + "delete": 0, + "area": 91.1193606672173, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120032273, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 55, + "locale": "ru", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 60.2855999, + 55.8345097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T06:05:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.4349891999866e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120030212, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 10, + "locale": "en", + "imagery": "osm", + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9947146, + 48.49960765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T06:04:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120030193, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9956869, + 48.499415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivan Lievens", + "uid": "63737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T05:43:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.00000774648708001611, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120029463, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00026145, + 50.9240457 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T23:43:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.08176499999521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120023587, + "host": "127.0.0.1:1234", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21320285, + 51.2099252 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T22:26:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.07289999966281e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120022331, + "host": "pietervdvn.github.io", + "move": 1, + "theme": "waste", + "locale": "nl", + "imagery": "osm", + "move:node/9682930704": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1456611500000005, + 51.11181085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "strukturart", + "uid": "8622394", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T21:35:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.22402750000652e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120020765, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21564975, + 47.13249555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T20:43:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.4254239999625e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120019006, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/1497900820": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.705348300000001, + 50.8082037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T20:20:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 15, + "modify": 27, + "delete": 0, + "area": 3.18033900004577e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120018211, + "host": "mapcomplete.osm.be", + "move": 23, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14182845, + 51.1124553 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T20:18:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 6.28839999980041e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120018165, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 6, + "locale": "en", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.3951683, + -39.8740655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 494, + "name": "Mapbox: Fictional mapping" + } + ], + "tags": [], + "features": [ + { + "url": "way-375409532", + "osm_id": 375409532, + "reasons": [ + 494 + ], + "version": 2 + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T18:51:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 141, + "modify": 128, + "delete": 0, + "area": 0.00000244511499999822, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120015280, + "host": "mapcomplete.osm.be", + "move": 112, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 56, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14068855, + 51.1125302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T18:40:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120014920, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2635967, + 44.4812198 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T18:36:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1164, + "modify": 5, + "delete": 0, + "area": 0.00186779480448007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120014760, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "import": 146, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2, + "change_within_500m": 16, + "change_within_1000m": 128 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1321264, + 51.165859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T17:15:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120011065, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9683307129": "source: https://osm.org/note/3090200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.725076, + 50.8725726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T16:00:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.09392500011451e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120007895, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.994652349999999, + 48.50092155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:58:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120007792, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958027, + 48.5010436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:56:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.96441999992124e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120007728, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.996002650000001, + 48.5011615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:55:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120007669, + "host": "pietervdvn.github.io", + "theme": "toilets", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1408037, + 51.1628468 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:54:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120007656, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965305, + 48.5015504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:42:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120007129, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9961427, + 48.5011745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:27:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1371, + "modify": 0, + "delete": 0, + "area": 0.0000161022388000095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120006470, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2351512, + 50.7702955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:25:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120006416, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.242176, + 50.7390479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:06:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 17, + "delete": 0, + "area": 6.29378880002305e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120005564, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 31, + "locale": "fr", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 7, + "change_within_25m": 21, + "change_within_50m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5100383, + 44.8454552 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T14:51:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.000237038334819959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120004867, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.143325900000001, + 51.13704825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T14:06:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120003135, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9667627881": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4537115, + 51.1329705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T13:52:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1170, + "modify": 0, + "delete": 0, + "area": 0.000228185679580002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120002521, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13844205, + 51.176119799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T13:44:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1969, + "modify": 70, + "delete": 0, + "area": 0.0000278031326399729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120002215, + "host": "mapcomplete.osm.be", + "move": 64, + "theme": "grb", + "import": 263, + "locale": "nl", + "imagery": "osm", + "conflation": 32, + "change_over_5000m": 263 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1371778, + 51.113746500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:49:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119994676, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9956615, + 48.5015756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:45:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.29263199989995e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119994524, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.997189850000002, + 48.5016999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:42:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 332, + "modify": 13, + "delete": 1, + "area": 0.0000105033034599919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119994441, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 39, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.122417, + 51.11353445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:40:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 12, + "delete": 0, + "area": 0.00000187042840000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119994356, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 18, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 17, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9955237, + 48.5012935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T10:36:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119994215, + "host": "127.0.0.1:1234", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "en", + "imagery": "AGIV", + "import:node/9682398772": "source: https://osm.org/note/3143535" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4388668, + 51.2019393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T05:51:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000247570625000034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119982087, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 17, + "locale": "en", + "imagery": "osm", + "change_within_25m": 12, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99494635, + 48.49952245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T00:51:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119976803, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.1196636, + 14.6458542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T23:39:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000666986248159917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119975889, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 33, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.1072678, + 14.63483405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sukkoria", + "uid": "3083013", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T21:00:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0201288038403595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119972575, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2789979999999996, + 48.8439403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T20:37:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119971839, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2766682, + -32.9888989 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T20:23:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119971493, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3781585, + 50.8624288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T20:07:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119971055, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3753386, + 50.8708371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T19:01:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119968866, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2044063, + 50.9261431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T18:56:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119968671, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "locale": "en", + "imagery": "HDM_HOT", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4011492, + 51.0387728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T18:54:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.82479999950787e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119968588, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38680445, + 51.0652002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T18:11:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119966771, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9035417, + 51.1680875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Plumf", + "uid": "3304272", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:50:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119965684, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8280242, + 48.5778598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:49:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 41, + "modify": 58, + "delete": 0, + "area": 0.0000129777173400154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119965584, + "host": "pietervdvn.github.io", + "move": 51, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37343725, + 50.760452799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Plumf", + "uid": "3304272", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:47:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.90633750000299e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119965512, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "fr", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5874722500000003, + 48.51163495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:44:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3266, + "delete": 0, + "area": 0.0220974636023097, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:42:09.479067Z", + "id": 119965281, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4429, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94317825, + 50.95473355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:29:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000121838639999113, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119964559, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 10, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.142751, + 50.68738415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T16:57:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119963401, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 7, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1251972, + 51.2193539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefigthererich", + "uid": "15639798", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T16:57:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 7, + "delete": 0, + "area": 0.0000769182272999814, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119963383, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.363975400000001, + 52.143607349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T16:32:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119962401, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5218346, + 44.8597743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T16:13:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000152898132600064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119961739, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "en", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 3, + "change_within_25m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1254203, + 51.22556555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:56:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119961021, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1317248, + 51.2234084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9680423650", + "name": "Pittoors", + "osm_id": 9680423650, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "funeral_directions" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:30:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 9.53246050005391e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119960126, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 8, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12740065, + 51.21790905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:28:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 55, + "delete": 0, + "area": 0.000462918820279918, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119960025, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 79, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 79 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.2991691, + 48.1483181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:28:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000074860591800105, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119960012, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12734565, + 51.218482800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UnGeograf", + "uid": "601515", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:06:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119959191, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1009073, + 41.3709937 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T14:50:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2047, + "modify": 10, + "delete": 0, + "area": 0.0000429986597999848, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119958582, + "host": "pietervdvn.github.io", + "move": 9, + "theme": "grb", + "import": 244, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "conflation": 2, + "change_within_25m": 30, + "change_within_50m": 12, + "change_within_100m": 15, + "change_within_500m": 95, + "change_within_1000m": 90 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1250929, + 51.220850999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aschenknoedel", + "uid": "10527911", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T14:31:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119957830, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9844945, + 51.9534262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T13:28:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119954954, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4537115, + 51.1329705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-463220600", + "name": "Pastorie", + "osm_id": 463220600, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "building": "presbytery" + } + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T13:20:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 560, + "modify": 785, + "delete": 28, + "area": 0.000970541723699897, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119954605, + "host": "pietervdvn.github.io", + "move": 702, + "theme": "grb", + "import": 85, + "locale": "nl", + "imagery": "osm", + "conflation": 174 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35408775, + 50.7710298 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T13:15:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 7.65440000022137e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119954365, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0417191500000005, + 51.2063364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T12:44:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119952954, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4596751, + -34.6259612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T12:38:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 604, + "modify": 1331, + "delete": 52, + "area": 0.0014497251112398, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119952697, + "host": "pietervdvn.github.io", + "move": 1197, + "theme": "grb", + "import": 112, + "locale": "nl", + "imagery": "osm", + "conflation": 284 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31610795, + 50.7917338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "toerisme Mol", + "uid": "8297519", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T12:36:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119952631, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.162562, + 51.3103646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T12:28:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 145, + "modify": 274, + "delete": 12, + "area": 0.00290877238315993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119952272, + "host": "pietervdvn.github.io", + "move": 248, + "theme": "grb", + "import": 26, + "locale": "nl", + "imagery": "osm", + "conflation": 58 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29828975, + 50.825612899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T12:14:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119951539, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0584826, + 51.1900861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T10:39:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.57726200006053e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119947074, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14774585, + 51.1611999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Legitimater", + "uid": "15335201", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T09:31:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000545337627998575, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119943988, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0174631, + 14.74401275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T09:25:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119943699, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4619963, + 52.1137514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T08:27:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 6.98803599991299e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119940989, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "UrbISOrtho", + "add-image": 3, + "change_over_5000m": 2, + "change_within_1000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37954285, + 50.860608 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T06:10:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 15, + "delete": 0, + "area": 0.00000109067239999579, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119934894, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 27, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10, + "change_within_50m": 10, + "change_within_100m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9961613, + 48.498967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T05:00:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.0275048001142e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119932850, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.56802235, + 8.691159500000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T03:57:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.14283000012464e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119931544, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24410850000001, + -39.81462585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T23:26:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00064136887918984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119927986, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 28, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.10593145, + 14.634678350000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T20:29:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.35445950002131e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119924489, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99266355, + 48.50201815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T20:23:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 7.73004000001713e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119924338, + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9954637, + 51.158866700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T19:54:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 73, + "modify": 232, + "delete": 15, + "area": 0.0000169220981999872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119923468, + "host": "mapcomplete.osm.be", + "move": 219, + "theme": "grb", + "answer": 2, + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99520915, + 51.1599582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T18:47:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 34, + "modify": 44, + "delete": 0, + "area": 0.0000180155126000208, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119921051, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 71, + "import": 35, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 35, + "change_within_25m": 71 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2435184000000001, + 52.3735942 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T18:45:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 2, + "delete": 0, + "area": 8.73032899993522e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119920983, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 7, + "import": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2398422500000001, + 52.37212165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T18:42:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 577, + "delete": 0, + "area": 0.0258055423329608, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:41:52.588581Z", + "id": 119920891, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 761, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1225778, + 50.7878574 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T17:20:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.0547705999728e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119917448, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.213741049999999, + 50.7183439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T17:19:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119917410, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2255346, + 50.7245471 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T16:07:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119914664, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2481042, + 51.2178797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T15:57:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.0000187339921500195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119914306, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 19, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 6, + "change_within_25m": 25 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25100495, + 51.21612145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T15:56:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000024133398899967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119914267, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 5, + "import": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 8, + "import:node/9677659806": "source: https://osm.org/note/3130943", + "import:node/9677671677": "source: https://osm.org/note/3130940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24929965, + 51.2167624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T15:49:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 11, + "delete": 0, + "area": 0.000211225395840001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119913964, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 4, + "change_within_25m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.234272, + 51.2120826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T14:38:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 304, + "modify": 668, + "delete": 13, + "area": 0.0000214847635099861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119910945, + "host": "pietervdvn.github.io", + "move": 595, + "theme": "grb", + "import": 48, + "locale": "nl", + "imagery": "osm", + "conflation": 146 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31768675, + 50.87306495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T14:26:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 119, + "delete": 0, + "area": 0.00489174578606999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119910456, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 159, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5987209500000001, + 54.944855649999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T13:50:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000023567554680001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119908983, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9385908999999995, + 50.479612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/2b351d27694499eec029b9bc3f8fe8c0/raw/4ba854a8bfe9caebf5c622e55d8f28546dc47d4c/mc-MAPinkMurals-v1-1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:35:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119908187, + "host": "pietervdvn.github.io", + "theme": "https://gist.githubusercontent.com/govvin/2b351d27694499eec029b9bc3f8fe8c0/raw/4ba854a8bfe9caebf5c622e55d8f28546dc47d4c/mc-mapinkmurals-v1-1.json", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.1158947, + 14.6407708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:26:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 872, + "modify": 923, + "delete": 1, + "area": 0.0000915766785900058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119907793, + "host": "pietervdvn.github.io", + "move": 827, + "theme": "grb", + "import": 130, + "locale": "nl", + "imagery": "osm", + "conflation": 196 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.326407550000001, + 50.87079555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:25:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000020579653600052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119907752, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.11878300000001, + 14.63987225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:16:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119907369, + "host": "pietervdvn.github.io", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-mapinkmurals-v1.json", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.1212254, + 14.6369355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T13:15:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000610199954001078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119907349, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2034355000000003, + 51.213413450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T12:42:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119905791, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3972636, + 51.2165607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T11:16:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119901866, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.924883, + 46.3990632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T10:27:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00218825757510012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119899589, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "cyclestreets", + "answer": 4, + "locale": "en", + "imagery": "osm", + "relation-fix": 2, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22258195, + 51.119535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T09:42:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000283482504899937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119897476, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25458065, + 50.91911925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T09:30:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9816, + "modify": 0, + "delete": 0, + "area": 0.000323645502960069, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119896897, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1310, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 779 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9136384, + 51.225037400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T09:27:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119896793, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9167159, + 51.2337868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T09:21:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.00000319827247000351, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119896511, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 17, + "locale": "fr", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 9, + "change_within_100m": 5, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54464415, + 44.842165050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T08:45:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 2.88586999997906e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119894921, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 12, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54559555, + 44.84638595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T07:00:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119890378, + "host": "pietervdvn.github.io", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-mapinkmurals-v1.json", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0940972, + 14.6558069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T05:37:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 4.04872000016863e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119887261, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1093392, + 50.7855104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T03:55:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.63804159993135e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119884733, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2442116, + -39.8151817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T00:59:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000497481921298275, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119882635, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.09785685, + 14.63581735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T00:42:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000879020099995535, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119882409, + "host": "pietervdvn.github.io", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-mapinkmurals-v1.json", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.09672005, + 14.6261697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T00:14:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 74, + "modify": 48, + "delete": 0, + "area": 0.00000427266708000629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119882048, + "host": "mapcomplete.osm.be", + "move": 42, + "theme": "grb", + "import": 4, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2320678000000003, + 51.1813212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T23:25:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000028011675090024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119881317, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33528855, + 51.21260305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T22:28:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119880375, + "host": "127.0.0.1:1234", + "theme": "fritures", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1783155, + 51.1966943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexrk", + "uid": "18595", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T21:57:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000304188831450021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119879730, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 23, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 16, + "change_within_1000m": 5, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.28012435, + 52.488696649999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T21:24:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.76024200000255e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119878916, + "host": "127.0.0.1:1234", + "theme": "dog", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70338505, + 51.0549021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T20:31:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000167622839999587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119877292, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53405705, + 44.8548123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T19:56:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000716625952998951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119876244, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85977415, + 46.387599449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T19:41:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119875787, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1550034, + 48.885341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T18:39:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 12, + "delete": 0, + "area": 3.88440959998729e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119873702, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9762422, + 51.2039065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T18:36:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 97, + "delete": 2, + "area": 0.0000118660793999882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119873561, + "host": "mapcomplete.osm.be", + "move": 89, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9789893, + 51.20165745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T18:01:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 7.00120000073083e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119872058, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "move:node/9674101953": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3984302500000005, + 50.996331299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T17:31:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 57, + "delete": 1, + "area": 0.000987535159699997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119870723, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "benches", + "answer": 67, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 22, + "move:node/2719776037": "improve_accuracy", + "move:node/5032535886": "improve_accuracy", + "move:node/5045034310": "improve_accuracy", + "move:node/5045034311": "improve_accuracy", + "move:node/6034784736": "improve_accuracy", + "move:node/9675030792": "improve_accuracy", + "import:node/9674966792": "source: https://osm.org/note/3044566", + "import:node/9675005357": "source: https://osm.org/note/3044599", + "deletion:node/5032535884": "Geen picknicktafel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.428031600000001, + 51.00688275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T17:31:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.84048799999524e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119870707, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 4, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1685344999999998, + 44.6628154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T16:38:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.0000076582384200116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119868347, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1661313, + 44.66316065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "HomoGradiens", + "uid": "1946832", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T15:07:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.89000000015583e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119864083, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28813639999999996, + 40.245792300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T15:06:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119864028, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1550034, + 48.885341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T13:49:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119860436, + "host": "pietervdvn.github.io", + "theme": "nature", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2558732, + 51.1557279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T13:26:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000495706899999448, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119859410, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2570581499999998, + 51.1598633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T12:24:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1288, + "modify": 41, + "delete": 0, + "area": 0.0000600194830200358, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119856289, + "host": "mapcomplete.osm.be", + "move": 36, + "theme": "grb", + "import": 93, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7521963, + 50.90669485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T12:09:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119855468, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2739994, + 51.1868575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T11:52:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119854597, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0497738, + 38.603769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:28:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119853484, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3984683, + 50.9963267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:20:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119853076, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.342752, + 48.8562512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-222577615", + "name": "Kohlscheider Straße", + "osm_id": 222577615, + "reasons": [ + 91 + ], + "version": 6, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-438407249", + "name": "Kohlscheider Straße", + "osm_id": 438407249, + "reasons": [ + 91 + ], + "version": 3, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:17:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1348, + "delete": 0, + "area": 0.745087298980493, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:41:19.507743Z", + "id": 119852939, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1828, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8125401, + 50.58825925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:16:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 0, + "delete": 0, + "area": 1.06449389999566e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119852903, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34282875, + 48.85641205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:00:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000102975025999734, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119852114, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste", + "answer": 7, + "locale": "en", + "imagery": "osm", + "move:node/2190793962": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34322295, + 48.8513274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T10:54:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 126, + "delete": 0, + "area": 0.00575934807209951, + "is_suspect": false, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:40:58.579319Z", + "id": 119851785, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 186, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45693945, + 50.354724000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T09:17:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.42334099996752e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119847348, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3968399, + 51.21654855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T08:31:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 11, + "delete": 1, + "area": 0.0000436965363600516, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119845401, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 20, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 13, + "change_within_50m": 6, + "change_within_500m": 6, + "change_within_1000m": 2, + "deletion:node/9673820171": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1010893, + 50.786694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T07:23:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119842585, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "EsriWorldImagery", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7328382, + 51.0428471 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T06:59:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0680585806054204, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119841649, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 9, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7088351, + 50.99707735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T06:40:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.88760000010954e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119840909, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "move:node/9673558799": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.385438499999999, + 50.9921897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #mapinkmurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T03:07:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119836088, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0589491, + 14.6138632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #mapinkmurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:41:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119835222, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0933102, + 14.6228874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #mapinkmurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:31:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119835110, + "host": "mapcomplete.osm.be", + "theme": "mapinkmurals", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0926826, + 14.622576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:29:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119835074, + "host": "pietervdvn.github.io", + "theme": "https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0926826, + 14.622576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:00:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.9337874999295e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119834847, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34322765, + 48.85132125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T23:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.000708925909490005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119833656, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 55, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.556885749999999, + 51.24577415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T22:40:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119833211, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2326977, + 38.5038669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T22:26:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 722, + "modify": 0, + "delete": 0, + "area": 0.00002022905004004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119833026, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 53, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2240564, + 51.1990837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T21:46:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119832393, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2085216, + 41.5400129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T20:45:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000879089199991197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119831119, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.06696875, + 33.4692883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-24786068", + "name": "Sophie-von-La-Roche-Straße", + "osm_id": 24786068, + "reasons": [ + 87 + ], + "version": 13, + "primary_tags": { + "highway": "residential" + } + } + ], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T20:29:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 410, + "delete": 0, + "area": 0.01127183163582, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:40:46.579590Z", + "id": 119830754, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 555, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6048072, + 50.34468765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oscar112", + "uid": "15318660", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T20:04:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 2, + "delete": 0, + "area": 0.000157820155559975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119830156, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.41785275, + 52.1847455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gloda", + "uid": "646144", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T19:39:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119829571, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.058148, + 49.6093657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T19:24:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119829162, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9167805, + 51.2336607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T18:22:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119827351, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1337857, + 51.1550196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T15:18:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000716625952998951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119820804, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85977415, + 46.387599449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-824962552", + "name": "Bassenheimer Straße", + "osm_id": 824962552, + "reasons": [ + 87 + ], + "version": 2, + "primary_tags": { + "highway": "tertiary" + } + }, + { + "url": "way-28215051", + "name": "Bassenheimer Straße", + "osm_id": 28215051, + "reasons": [ + 87 + ], + "version": 33, + "primary_tags": { + "highway": "tertiary" + } + } + ], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T12:34:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 123, + "delete": 0, + "area": 0.00692774628544977, + "is_suspect": false, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:43:11.352466Z", + "id": 119815081, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 184, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54163705, + 50.36456565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T12:23:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 7.58607599994824e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119814739, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 4, + "locale": "en", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94424875, + 50.427498299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T12:11:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000400150348560044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119814338, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 36, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8550441, + 48.85972325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T12:10:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119814295, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8533423, + 48.8599016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T11:33:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 8.86761479990545e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119813133, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 20, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 4, + "change_within_100m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.853940699999999, + 48.8600067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T10:46:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119811801, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3227506, + 51.1188775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mottiger", + "uid": "7504544", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T10:43:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119811691, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3086867, + 47.0443317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T10:42:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119811667, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3593883, + 50.8915087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T10:03:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 9, + "delete": 0, + "area": 0.00136558953404, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119810393, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 20, + "locale": "nl", + "imagery": "osm", + "add-image": 9, + "change_over_5000m": 8, + "change_within_25m": 29 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19910725, + 51.115832100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T09:34:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119809473, + "host": "pietervdvn.github.io", + "theme": "openwindpowermap", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2327887, + 51.1610453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T08:58:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000410645294399075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119808437, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3978339, + 50.8133591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T08:19:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 104, + "modify": 136, + "delete": 5, + "area": 0.0000159865703999931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119807384, + "host": "mapcomplete.osm.be", + "move": 125, + "theme": "grb", + "answer": 1, + "import": 12, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9846141, + 51.1831387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T08:16:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119807254, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5929823, + 50.8130765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T07:48:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 62, + "delete": 0, + "area": 0.00839298950492004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119806510, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 81, + "locale": "nl", + "imagery": "osm", + "add-image": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9525387499999995, + 51.0008186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T23:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000728357301000162, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119801027, + "host": "pietervdvn.github.io", + "theme": "https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0141399, + 14.5849328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T22:37:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0717669147130002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119800489, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 9, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51753335, + 50.9942908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T22:02:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 123, + "modify": 118, + "delete": 2, + "area": 0.0000817686403000107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119799968, + "host": "mapcomplete.osm.be", + "move": 99, + "theme": "grb", + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 38 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.922061299999999, + 51.05840055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T19:53:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 373, + "delete": 0, + "area": 0.00744765056655979, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:43:27.635646Z", + "id": 119797011, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 517, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5888451, + 50.365595600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T17:22:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000206717211000575, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119792302, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.9813161, + 33.47363135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T16:34:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.90784000019672e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119790785, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10398855, + 51.153568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T15:44:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.10470719990696e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119789167, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3161935, + 48.1712369 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T15:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0021331891483902, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119788902, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29715775, + 51.216844949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T15:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00262994465723995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119787548, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20966195, + 51.1898577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:49:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119785251, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4032457, + 51.215893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T13:42:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.7029320999837e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119785048, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22846645, + 51.22419805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:30:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.0177450001981e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119784681, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.396439750000001, + 51.21857815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T13:30:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 783, + "modify": 934, + "delete": 28, + "area": 0.000145442823539997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119784638, + "host": "pietervdvn.github.io", + "move": 838, + "theme": "grb", + "import": 116, + "locale": "nl", + "imagery": "osm", + "conflation": 208 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32902915, + 50.8785915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:29:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119784618, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3965562, + 51.2184773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.17731799999293e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119784254, + "host": "pietervdvn.github.io", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.396478, + 51.2169076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:19:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.00000878007479999812, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119784224, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 9, + "change_over_5000m": 6, + "change_within_25m": 12, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3984178, + 51.2176142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koreller", + "uid": "12419855", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T12:57:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119783430, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4634101, + 47.2556162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-498307015", + "osm_id": 498307015, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "building": "civil" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:54:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.8972768000088e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119783353, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3958858, + 51.214689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:42:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 25, + "delete": 0, + "area": 0.0000138331670400079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119783005, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 15, + "locale": "nl", + "imagery": "osm", + "add-image": 17, + "change_over_5000m": 11, + "change_within_25m": 25, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.397019, + 51.2150886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:33:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.00000731045580000717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119782703, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 5, + "change_within_25m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3988286, + 51.21622985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:26:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119782437, + "host": "pietervdvn.github.io", + "theme": "facadegardens", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4009645, + 51.2141372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:17:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119782117, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1820032, + 51.1520255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:14:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000250953259999878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119780036, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9865353500000005, + 51.1765201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:04:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119779753, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1816724, + 51.140351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:04:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 16, + "delete": 0, + "area": 0.000021276452700039, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119779737, + "host": "pietervdvn.github.io", + "theme": "personal", + "answer": 15, + "locale": "nl", + "imagery": "osm", + "add-image": 14, + "change_over_5000m": 9, + "change_within_25m": 29 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4026864, + 51.21375085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:01:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119779644, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4054586, + 51.2133618 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "N969", + "uid": "13086756", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T10:26:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000498180214499841, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119778483, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 14, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.90431975, + 49.4895668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T09:56:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000503396322001789, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119777511, + "host": "pietervdvn.github.io", + "theme": "cyclestreets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3245970499999995, + 51.2137631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T09:31:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000483231219199454, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119776638, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_within_500m": 9, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3080825, + 48.170037199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T09:28:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 5, + "delete": 1, + "area": 0.000818820703679347, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119776558, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 7, + "change_within_25m": 12, + "deletion:node/9669927624": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3320794, + 51.2107246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T08:12:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000014919151499978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119774566, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3077942, + 48.16506435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T07:08:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 79, + "delete": 0, + "area": 0.000198177574920041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119773239, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 96, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.55623585, + 52.4683732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T06:37:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000467199133199876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119772579, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1923376, + 51.1479238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T23:29:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 71, + "modify": 35, + "delete": 0, + "area": 0.0000583658626199637, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119768307, + "host": "mapcomplete.osm.be", + "move": 32, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71633815, + 51.165777899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-143045733", + "osm_id": 143045733, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "building": "school" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T22:36:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 556, + "modify": 399, + "delete": 2, + "area": 0.000220627487499877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119767559, + "host": "mapcomplete.osm.be", + "move": 337, + "theme": "grb", + "answer": 1, + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 102, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7350268, + 51.16929665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakub Trojan", + "uid": "273212", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T22:19:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119767277, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.6419213, + 49.0263376 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T21:56:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 3.29147999966096e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119766859, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "move:node/9669073980": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1985852, + 51.1583993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T21:31:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000691216061379889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119766359, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23909425, + -39.8235006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T21:02:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.295438902005522, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119765657, + "host": "mapcomplete.osm.be", + "theme": "dog", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.984600799999999, + 55.582331749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T20:40:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9034, + "modify": 12, + "delete": 0, + "area": 0.00100508581080015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119765173, + "host": "pietervdvn.github.io", + "move": 10, + "theme": "grb", + "import": 875, + "locale": "nl", + "imagery": "osm", + "conflation": 4, + "change_over_5000m": 799 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14038635, + 51.123894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "user_15591655", + "uid": "15591655", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T20:04:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119764245, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.0579059, + 42.3609712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T17:23:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119759553, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2242365, + 51.1986208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T16:52:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119758587, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5798803, + 55.7062199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T16:37:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000857457286298645, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119758052, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.529443050000001, + 52.49678935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T16:00:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1099, + "modify": 9, + "delete": 0, + "area": 0.00843240148666972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119756854, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 126, + "locale": "nl", + "imagery": "osm", + "conflation": 2, + "change_over_5000m": 126 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1762165499999995, + 51.154793749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T15:51:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119756629, + "host": "pietervdvn.github.io", + "theme": "sport_pitches", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.223468, + 51.1984435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T15:35:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 12, + "delete": 0, + "area": 0.00000829956120001396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119756111, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 14, + "locale": "fr", + "imagery": "osm", + "change_within_100m": 18, + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517215, + 44.86699095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T14:41:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 319, + "modify": 677, + "delete": 12, + "area": 0.0000370299044999862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119754197, + "host": "pietervdvn.github.io", + "move": 610, + "theme": "grb", + "import": 49, + "locale": "nl", + "imagery": "osm", + "conflation": 148 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3250765, + 50.88074255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T14:37:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 7, + "delete": 0, + "area": 0.00198412243448994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119754070, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 28, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 7, + "change_within_25m": 15, + "change_within_50m": 12, + "change_within_500m": 6, + "move:node/9668331034": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19287005, + 51.214407949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T14:30:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000194347020999536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119753828, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.875078850000001, + 50.471216150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T13:50:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 979, + "modify": 0, + "delete": 0, + "area": 0.0000117345432000006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119752319, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 114, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 114 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1323785, + 51.11387205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T13:03:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119750711, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5316703, + 44.8372515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "orlPL", + "uid": "15180064", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T13:02:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119750706, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 9, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9041905, + 50.168696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T12:02:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 428, + "delete": 0, + "area": 0.00551398791759962, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:43:45.341225Z", + "id": 119748620, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 606, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5577283, + 50.3444432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T11:57:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119748440, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.122735, + 51.1985746 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9667957033", + "name": "Op Wielekes Sint-Niklaas", + "osm_id": 9667957033, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T11:31:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119747468, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1439123, + 51.1712705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T11:12:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 790, + "modify": 21, + "delete": 0, + "area": 0.0000111766518000005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119746884, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "answer": 1, + "import": 116, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1336202, + 51.11633535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T11:11:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 10, + "delete": 0, + "area": 1.24801250000737e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119746849, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13322185, + 51.11548615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T10:50:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000178294429999898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119746148, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 6, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_500m": 5, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1818417500000002, + 50.779246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T09:59:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00899874306790018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119744321, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45759395, + 51.1342304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T09:02:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000441588358500251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119742174, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.149132349999999, + 48.53526085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T08:23:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 21, + "delete": 0, + "area": 0.00956070071615977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119740781, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 19, + "locale": "nl", + "imagery": "osm", + "add-image": 8, + "move:node/-15": "improve_accuracy", + "move:node/6426672573": "improve_accuracy", + "move:node/9667759813": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45554205, + 51.1301501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T08:20:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 10, + "delete": 0, + "area": 0.0000252287173400008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119740653, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 25, + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 6, + "change_within_25m": 14, + "change_within_50m": 6, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9902521, + 48.501021249999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T08:02:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000101755784399901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119740127, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6186482999999998, + 54.8665864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T07:53:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 29, + "delete": 0, + "area": 0.0000208139012800284, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119739832, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "street_lighting", + "answer": 64, + "locale": "en", + "imagery": "osm", + "change_within_25m": 34, + "change_within_50m": 29, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9923331, + 48.5010729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T07:47:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2708, + "modify": 27, + "delete": 4, + "area": 0.000236396359759937, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119739647, + "host": "mapcomplete.osm.be", + "move": 24, + "theme": "grb", + "import": 215, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3152885999999997, + 51.3527385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T05:08:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 74, + "delete": 0, + "area": 0.000507272252129903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119735877, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 102, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.51996025, + 52.49589875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T01:24:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.40349959998644e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119733370, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9945618, + 48.50075595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T22:44:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119731640, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2326154, + -39.8436585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T20:01:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.4991199999346e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119727677, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3638607499999997, + 51.35324 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T19:03:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 188, + "modify": 238, + "delete": 0, + "area": 0.000147604641290019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119725862, + "host": "pietervdvn.github.io", + "move": 219, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31273015, + 50.87623825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T17:43:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119723200, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3521372, + 50.8441952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T14:50:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 306, + "modify": 1405, + "delete": 33, + "area": 0.0000469936621000023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119716905, + "host": "pietervdvn.github.io", + "move": 1249, + "theme": "grb", + "import": 54, + "locale": "nl", + "imagery": "osm", + "conflation": 318 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30716035, + 50.8703744 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T14:39:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119716458, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4356097, + 52.1095051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:21:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 359, + "modify": 891, + "delete": 5, + "area": 0.0000464812549599659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119713449, + "host": "pietervdvn.github.io", + "move": 799, + "theme": "grb", + "import": 62, + "locale": "nl", + "imagery": "osm", + "conflation": 198 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3047435, + 50.866559249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "veerle_aerts", + "uid": "15579266", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:11:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00228141992489002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119713077, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4736724500000005, + 51.14769325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:10:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 214, + "modify": 260, + "delete": 7, + "area": 0.0000170191047000047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119713035, + "host": "pietervdvn.github.io", + "move": 231, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 66 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3093787500000005, + 50.8648044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:02:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 172, + "modify": 312, + "delete": 7, + "area": 0.0000219971494399913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119712744, + "host": "pietervdvn.github.io", + "move": 281, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 62 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30895735, + 50.8636615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "donarreiskoffer", + "uid": "67294", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T12:03:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-04-16T06:43:00.544578Z", + "id": 119710379, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6275247, + 51.0003281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T08:35:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119701067, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T08:34:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119701000, + "host": "pietervdvn.github.io", + "theme": "transit", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2652655, + 53.2099246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T07:33:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00382025096573999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119698240, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 4, + "locale": "nl", + "imagery": "AGIV10cm", + "move:node/9665195509": "improve_accuracy", + "move:node/9665224256": "improve_accuracy", + "move:node/9665248255": "improve_accuracy", + "move:node/9665251660": "improve_accuracy", + "import:node/9665195509": "source: https://osm.org/note/3044132", + "import:node/9665224256": "source: https://osm.org/note/3044686", + "import:node/9665248255": "source: https://osm.org/note/3044520", + "import:node/9665251660": "source: https://osm.org/note/3044542" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.164210049999999, + 51.01824980000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T07:30:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.0000022189089999874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119698098, + "host": "mapcomplete.osm.be", + "move": 31, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16001405, + 51.056065700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T06:28:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000289276021999978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119695852, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "toerisme_vlaanderen", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "move:node/9665041837": "improve_accuracy", + "move:node/9665075703": "improve_accuracy", + "move:node/9665082494": "improve_accuracy", + "move:node/9665090024": "improve_accuracy", + "import:node/9665041837": "source: https://osm.org/note/3044480", + "import:node/9665075703": "source: https://osm.org/note/3044354", + "import:node/9665082494": "source: https://osm.org/note/3044514", + "import:node/9665090024": "source: https://osm.org/note/3044299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1614112, + 51.05714275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T03:51:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000183540598840081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119692149, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24004765, + -39.8091939 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T00:31:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.71413479997846e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119689652, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 6, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25323515, + -39.805283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T22:25:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119687669, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 20, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9282134, + 42.4327794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T21:39:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 354, + "modify": 32, + "delete": 0, + "area": 0.00000683532410000651, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119686715, + "host": "mapcomplete.osm.be", + "move": 24, + "theme": "grb", + "answer": 2, + "import": 58, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72058835, + 50.8888127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T21:36:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000168858326000351, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119686659, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4511587500000003, + 51.0418947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T20:50:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119685551, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "locale": "nl", + "imagery": "AGIV10cm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2138617, + 51.1987922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T20:22:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.47824999958721e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119684675, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.40823915, + 52.53177585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T19:22:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000510759949998542, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119682710, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23627485, + -39.8434801 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:39:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119681275, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.213625, + 51.1982355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:36:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.61998699998644e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119681157, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2138684499999997, + 51.198754 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:34:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.24246599998292e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119681100, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2139005999999997, + 51.19887205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:32:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119681029, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2131751, + 51.1989477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:23:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 29, + "delete": 0, + "area": 0.00000416386224001387, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680703, + "host": "pietervdvn.github.io", + "move": 26, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.306219199999999, + 50.864542400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:21:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 98, + "delete": 1, + "area": 8.92350909989447e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680635, + "host": "pietervdvn.github.io", + "move": 87, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30553905, + 50.86527985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:21:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 4.44250799986601e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680628, + "host": "pietervdvn.github.io", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3069894, + 50.8653464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:20:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 9, + "delete": 0, + "area": 8.16526399998573e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680614, + "host": "pietervdvn.github.io", + "move": 8, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3073043, + 50.86516535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:20:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 9, + "delete": 0, + "area": 5.69039900016974e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680611, + "host": "pietervdvn.github.io", + "move": 8, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3071309499999995, + 50.86496845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:19:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 48, + "delete": 0, + "area": 0.00000132364941000134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680590, + "host": "pietervdvn.github.io", + "move": 44, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.306400549999999, + 50.86469905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:18:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 24, + "modify": 19, + "delete": 0, + "area": 0.00000248360946001578, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680546, + "host": "pietervdvn.github.io", + "move": 16, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3063607, + 50.864510949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:13:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.09800000010734e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680423, + "host": "pietervdvn.github.io", + "theme": "trees", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2128506, + 51.209812850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:12:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 56, + "modify": 331, + "delete": 0, + "area": 0.00000871603199998886, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119680364, + "host": "pietervdvn.github.io", + "move": 295, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 72 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3056383, + 50.863748900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T14:55:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 16, + "delete": 0, + "area": 0.0000804387414999846, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119672536, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 30, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 13, + "change_within_50m": 20, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47596150000000004, + 44.91286275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T14:12:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.56831999997954e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119670473, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4498851000000004, + 51.042040400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MapTheWalk", + "uid": "10499594", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T14:07:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000287224208880168, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119670301, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 103.8529201, + 1.3125644 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T13:32:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 206, + "modify": 497, + "delete": 2, + "area": 0.0000746486728399936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119668956, + "host": "pietervdvn.github.io", + "move": 442, + "theme": "grb", + "import": 38, + "locale": "nl", + "imagery": "osm", + "conflation": 114 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.301119, + 50.858955550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Hooglede", + "uid": "15568930", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T12:39:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00118234934064006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119666785, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 26, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.099027, + 50.986431100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Hooglede", + "uid": "15568930", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T12:33:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 1, + "area": 0.000846527786609857, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119666496, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9663219838": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10408835, + 50.98795295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T12:09:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119665390, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4488676, + 51.0398619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T11:57:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119664919, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3419266, + 49.9889193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:23:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000288292273499873, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119657968, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59461345, + 53.23429095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:14:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 5.57460000003237e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119657572, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "change_within_50m": 2, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509431, + 44.856661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:08:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.16129170000823e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119657286, + "host": "mapcomplete.osm.be", + "theme": "personal", + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17640205, + 38.96886715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:04:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.000642335709839756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119657105, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 59, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 8, + "change_within_1000m": 28, + "change_within_5000m": 19 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.550817500000001, + 53.238253 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Visit Leuven", + "uid": "15566671", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T08:20:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119655084, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0420389, + 50.9380097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Roccio", + "uid": "12443591", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T07:14:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000149209298999928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119652140, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.23497985, + 46.06433325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T06:59:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 25, + "modify": 65, + "delete": 8, + "area": 0.0000979878801599935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119651515, + "host": "mapcomplete.osm.be", + "move": 56, + "theme": "grb", + "answer": 2, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.030519999999999, + 51.0492297 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T06:33:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.00000308322709998801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119650401, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 35, + "locale": "en", + "imagery": "osm", + "change_within_25m": 13, + "change_within_50m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.995254800000001, + 48.500113150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T06:08:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00110234351599988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119649554, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "import": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "move:node/9662296771": "improve_accuracy", + "move:node/9662310336": "improve_accuracy", + "move:node/9662328457": "improve_accuracy", + "import:node/9662296771": "source: https://osm.org/note/3044361", + "import:node/9662310336": "source: https://osm.org/note/3044308", + "import:node/9662328457": "source: https://osm.org/note/3044422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.058681999999999, + 51.064278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T05:48:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 45, + "modify": 94, + "delete": 0, + "area": 0.0000169417117499945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119648939, + "host": "mapcomplete.osm.be", + "move": 83, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 22, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.000155250000001, + 51.12734585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T03:24:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000636408500000167, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119645881, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2350682, + -39.8438617 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T22:53:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119641675, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23689, + -39.8441981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T21:08:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 6.1244999999587e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119639476, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2418784, + 51.206421250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T19:16:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 109, + "modify": 168, + "delete": 0, + "area": 0.0000056989527700021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119635939, + "host": "pietervdvn.github.io", + "move": 150, + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29615715, + 50.85926895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T17:53:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000138383301600117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119632692, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "move:node/8191707622": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20062635, + 51.184497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T17:38:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00000560418487999672, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119632095, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "en", + "imagery": "PNOA-Spain", + "add-image": 3, + "change_over_5000m": 4, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.018179599999999997, + 38.850937599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Baloe$", + "uid": "15543890", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T16:27:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119629379, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9949248, + 51.0863259 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T15:59:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 2.796994999983e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119628266, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2442337500000002, + 51.20866675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T14:55:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119625581, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0214762, + 50.9421947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T13:58:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 95, + "modify": 75, + "delete": 1, + "area": 0.00000356678784998662, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119623470, + "host": "pietervdvn.github.io", + "move": 68, + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29547855, + 50.860450549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "phodgkin", + "uid": "7666952", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T13:25:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.12591999997224e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119622293, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5843935, + 54.7773149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alxGS", + "uid": "13367754", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T12:49:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.54850160002398e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119621045, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.138764850000001, + 48.13244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-513645075", + "osm_id": 513645075, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "building": "yes" + } + } + ], + "user": "Martijn Van Loon", + "uid": "6058806", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T12:04:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.14025639993373e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119619153, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "soft-delete": 1, + "soft-delete:way/513645075": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93880615, + 51.2368163 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T11:14:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.00000104060207999858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119617103, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 19, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 17, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958131, + 48.501130399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T11:12:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119617024, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965305, + 48.5015504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T11:06:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.45079999701234e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119616745, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99754545, + 48.5017103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T10:58:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.000002106594379999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119616397, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "street_lighting", + "answer": 20, + "locale": "en", + "imagery": "osm", + "change_within_25m": 21, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.995368150000001, + 48.5011642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T10:33:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119615302, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4447126, + 52.382584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T08:28:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 137, + "modify": 471, + "delete": 5, + "area": 0.0000349448215799999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119610049, + "host": "mapcomplete.osm.be", + "move": 420, + "theme": "grb", + "answer": 1, + "import": 20, + "locale": "nl", + "imagery": "AGIV", + "conflation": 106, + "change_within_500m": 20, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.008547650000001, + 51.125893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9660103709", + "name": "Op Wielekes Zemst", + "osm_id": 9660103709, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T06:58:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119606815, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4645879, + 50.9828049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenbeleid Dendermonde", + "uid": "15550372", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T06:21:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 9, + "delete": 0, + "area": 0.00415775080416048, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119605449, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 28, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1431714, + 51.0367426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T05:05:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 40, + "delete": 0, + "area": 3.52026213427076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119603423, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49776514999999, + 11.972427750000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T03:32:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.03452799992501e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119601559, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9662364, + 40.5809852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T23:43:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 36, + "modify": 9, + "delete": 0, + "area": 2.34584639999803e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119598743, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8944221, + 50.2202752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T20:21:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 86, + "modify": 244, + "delete": 0, + "area": 0.0000088326465499947, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119594536, + "host": "pietervdvn.github.io", + "move": 217, + "theme": "grb", + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 62 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29430865, + 50.86254605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T19:56:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119593806, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "locale": "zh_Hans", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9240511, + 51.22586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T19:33:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119593122, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.385181, + 51.1657828 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T18:44:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119591686, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3808729, + 50.8777221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T18:28:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 5, + "delete": 0, + "area": 0.0000471330875499877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119591205, + "host": "pietervdvn.github.io", + "move": 4, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28833035, + 50.86832355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T18:19:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119590906, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7456643, + 51.0366997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T17:14:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.000329929044909987, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119588669, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 2, + "change_within_1000m": 2, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.734889150000001, + 51.13315505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T16:00:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.0000039597268599858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119586056, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 48, + "locale": "ca", + "imagery": "osm", + "change_within_100m": 12, + "change_within_500m": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11507405, + 38.833612099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T15:37:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119585053, + "host": "pietervdvn.github.io", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8959118, + 50.2220354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:49:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 28, + "delete": 4, + "area": 0.0000237737696799735, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119582922, + "host": "pietervdvn.github.io", + "move": 25, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2860285000000005, + 50.86910265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:48:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 9, + "delete": 0, + "area": 0.00000330620147999917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119582888, + "host": "pietervdvn.github.io", + "move": 8, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2836095, + 50.8684877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:31:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 237, + "modify": 603, + "delete": 1, + "area": 0.0000653183226000499, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119582223, + "host": "pietervdvn.github.io", + "move": 542, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 140 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28924665, + 50.868147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OWZemst", + "uid": "1768434", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:14:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 10, + "delete": 0, + "area": 0.00249184674111998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119581578, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 24, + "import": 6, + "locale": "nl", + "imagery": "osm", + "import:node/-10": "source: https://osm.org/note/3090113", + "import:node/-11": "source: https://osm.org/note/3084033", + "import:node/9658663649": "source: https://osm.org/note/3090241", + "import:node/9658665418": "source: https://osm.org/note/3090210", + "import:node/9658665419": "source: https://osm.org/note/3090323", + "import:node/9658665420": "source: https://osm.org/note/3090221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.452445, + 50.975820299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zaizone", + "uid": "1122708", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:08:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000718270759001078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119581369, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93064495, + 43.68230225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T14:06:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119581284, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1202371, + 38.8393697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenbeleid Dendermonde", + "uid": "15550372", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:05:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 15, + "delete": 0, + "area": 0.00100259401886977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119581246, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 28, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09358875, + 51.02570385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T14:05:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119581226, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1201149, + 38.8398445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T13:10:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119579065, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9934658, + 49.6469392 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T13:02:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.31618960001657e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119578751, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11959020000000001, + 38.840137999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T12:19:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 5.73300000057285e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119576853, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2148529999999997, + 50.92102865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T12:10:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119576397, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7337606, + 51.0365016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T11:36:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-04-16T06:40:42.740637Z", + "id": 119574885, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7704845, + 50.8100128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T10:59:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 8, + "delete": 0, + "area": 1.52300200000114e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119573280, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 18, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7337193, + 51.03573085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T10:53:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119573026, + "host": "pietervdvn.github.io", + "theme": "fritures", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8959118, + 50.2220354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T09:12:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119568453, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7363124, + 49.8773645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:58:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 6.90624479998143e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119567813, + "host": "pietervdvn.github.io", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8939733499999996, + 50.2192173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:56:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119567736, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8942449, + 50.2201569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:46:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119567260, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8941041, + 50.2201419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:45:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119567207, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8945433, + 50.2198583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:43:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.82477840002531e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119567148, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0834646, + 38.833068999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:32:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000135367649999543, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119566702, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1150407, + 38.83266665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:14:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000213203391280068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119565968, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 12, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 7, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1036194, + 38.843062700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T07:13:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 25, + "delete": 0, + "area": 15.6717397646643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119563361, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.64066945, + 10.60095375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "raspbeguy", + "uid": "3398417", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T07:12:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119563315, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8823775, + 45.2346261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wajrou", + "uid": "407828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T06:11:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119560743, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.170223, + 50.2323077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wajrou", + "uid": "407828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T06:07:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119560603, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.2047377, + 50.2310895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wajrou", + "uid": "407828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T05:54:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.0000624278496600465, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119560167, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 39, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.192401499999999, + 50.222844550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T23:29:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119553807, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2573914, + -39.8011021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:47:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000669230100000112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119553226, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10919925, + 38.835932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:46:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000620119680001564, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119553204, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10958609999999999, + 38.8392106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:44:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.41392199998731e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119553169, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11102814999999999, + 38.843732200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000381675552750124, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119552883, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 11, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08934625, + 38.82969275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:26:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000451849483799537, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119552780, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10525505, + 38.839497300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:25:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119552767, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1131737, + 38.8416599 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T20:46:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.48302000001075e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119550714, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Mapbox", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.257519, + -39.801082449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T20:35:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119550404, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6977556, + 50.8801027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daniel46", + "uid": "9677", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T18:41:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000704946441799731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119547147, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.05898635, + 52.403466300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T17:43:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.11999999965054e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119545232, + "host": "pietervdvn.github.io", + "move": 3, + "theme": "climbing", + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3, + "move:node/9656156846": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9584241, + 50.482065500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T17:11:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.63990400002748e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119544175, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9333756, + 50.495606800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "w_morland", + "uid": "402620", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T16:25:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000162385780000076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119542603, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0126047, + 51.466392049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T15:07:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119539594, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7695202, + 51.1572893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ikgeloofnooitdatdezeallemaalingebruikzijn", + "uid": "11581604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T15:05:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.02625999996534e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119539545, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9654477465": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75277955, + 50.8496521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T14:47:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 10, + "delete": 0, + "area": 1.46296320000559e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119538826, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 4, + "change_within_25m": 6, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9583748, + 50.482179900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T14:03:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119537094, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3491699, + 50.8476217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:54:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000520609685000174, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119536803, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.43103155, + 52.109736749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:43:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000139370459999928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119536461, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7662724, + 51.1503354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:25:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.0000362937894000072, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119535790, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.000795650000001, + 51.1281757 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:04:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.00364669993117e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119535021, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85304625, + 48.86020585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:02:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 3.89260559999018e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119534937, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.851607600000001, + 48.8606536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119534886, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8507484, + 48.8611351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:00:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00224996448537013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119534861, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 4, + "change_within_25m": 5, + "import:node/9655911460": "source: https://osm.org/note/3090159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89356115, + 50.892823449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T12:48:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.862055999964e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119534412, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_50m": 1, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.845491549999998, + 48.863240700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "totera", + "uid": "123412", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T12:37:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119534077, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "it", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5253497, + 43.6158687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "totera", + "uid": "123412", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T12:32:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119533945, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5285429, + 43.6157189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T12:27:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119533781, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3419266, + 49.9889193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T12:21:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119533625, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9585006, + 50.4821285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T10:44:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119530600, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9582592, + 50.4820858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T10:30:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119530192, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4484924, + 51.096333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T09:43:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119528768, + "host": "pietervdvn.github.io", + "theme": "climbing", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9594474, + 50.4822206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T09:42:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000038462399199995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119528759, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7114645, + 51.1286678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T09:41:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119528731, + "host": "pietervdvn.github.io", + "theme": "toilets", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9597599, + 50.4819023 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T08:40:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119526815, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6935282, + 51.1337233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T08:32:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1125, + "modify": 759, + "delete": 4, + "area": 0.000110045473439956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119526616, + "host": "mapcomplete.osm.be", + "move": 640, + "theme": "grb", + "answer": 3, + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 254 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74479745, + 50.9007832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T08:21:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000165866688000461, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119526358, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7439911, + 51.037078199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T08:03:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 227, + "modify": 144, + "delete": 2, + "area": 0.0000872362544100281, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119525875, + "host": "mapcomplete.osm.be", + "move": 120, + "theme": "grb", + "answer": 6, + "import": 24, + "locale": "nl", + "imagery": "AGIV", + "conflation": 40, + "change_over_5000m": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74708035, + 50.89768615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T07:04:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 4.8657300000203e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119524687, + "host": "pietervdvn.github.io", + "theme": "facadegardens", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 4, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70419705, + 51.052537099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T03:56:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.2886399998602e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119522430, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.79576659999999, + -34.648832999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T22:23:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00161361205969979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119519266, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3183252, + 50.85000115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Yourock17", + "uid": "3083720", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T19:59:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 36, + "delete": 0, + "area": 0.00193387593680975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119516392, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 50, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.74377115, + -32.92071025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ikgeloofnooitdatdezeallemaalingebruikzijn", + "uid": "11581604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T19:24:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 10, + "delete": 0, + "area": 0.00117118247423992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119515531, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "move:node/9654526750": "improve_accuracy", + "move:node/9654557569": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7821772, + 50.8596112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T18:46:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.3263120000107e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119514590, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.359896, + 50.9339566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "orlPL", + "uid": "15180064", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T17:19:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119512006, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9058239, + 50.1712464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Yourock17", + "uid": "3083720", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:50:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119509417, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.7486115, + -32.9176103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:15:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119508248, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4069011, + 52.5397044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T14:49:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119507324, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4398525, + 51.0800812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T14:36:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 332, + "modify": 601, + "delete": 12, + "area": 0.000023448090900012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119506761, + "host": "pietervdvn.github.io", + "move": 539, + "theme": "grb", + "import": 49, + "locale": "nl", + "imagery": "osm", + "conflation": 138 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29085215, + 50.8633636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T13:00:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000208301161800443, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119503350, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 15, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41230955, + 51.2274732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T12:56:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119503191, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4379944, + 51.1931779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T12:41:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.043521340518391, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119502644, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 15, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63416885, + 51.170570850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T12:31:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 2.40585729999132e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119502333, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53671385, + 50.033779550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T12:01:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 20, + "delete": 0, + "area": 0.00000397490625000844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119501415, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 44, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 38, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72657955, + 51.053011049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T09:40:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000455348819079986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119496856, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2386277, + 50.74061415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T08:28:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119494606, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2536719, + 50.748181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T07:24:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 646, + "modify": 782, + "delete": 0, + "area": 0.0000528403033200288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119493187, + "host": "mapcomplete.osm.be", + "move": 652, + "theme": "grb", + "answer": 33, + "import": 50, + "locale": "nl", + "imagery": "osm", + "conflation": 222 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75043895, + 50.8966549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T07:16:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119492991, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0590262, + 51.2834938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T06:54:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1189, + "modify": 31, + "delete": 0, + "area": 0.0000699809997600107, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119492600, + "host": "mapcomplete.osm.be", + "move": 24, + "theme": "grb", + "answer": 2, + "import": 105, + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.782997099999999, + 50.9079707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T06:51:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 45, + "modify": 27, + "delete": 0, + "area": 0.00000168137038000437, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119492544, + "host": "mapcomplete.osm.be", + "move": 22, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77146295, + 50.9033978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T06:20:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 567, + "modify": 358, + "delete": 0, + "area": 0.0000566165734499912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119492047, + "host": "mapcomplete.osm.be", + "move": 306, + "theme": "grb", + "answer": 1, + "import": 26, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77732735, + 50.90560415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T05:50:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1175, + "modify": 218, + "delete": 0, + "area": 0.00015523256477996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119491649, + "host": "mapcomplete.osm.be", + "move": 180, + "theme": "grb", + "answer": 13, + "import": 153, + "locale": "nl", + "imagery": "osm", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7633548999999995, + 50.90337685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T05:45:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 72, + "modify": 110, + "delete": 0, + "area": 0.00000518038379998731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119491576, + "host": "mapcomplete.osm.be", + "move": 94, + "theme": "grb", + "answer": 1, + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75619685, + 50.8992772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T05:32:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 372, + "modify": 48, + "delete": 0, + "area": 0.0000109348799999978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119491456, + "host": "mapcomplete.osm.be", + "move": 38, + "theme": "grb", + "answer": 4, + "import": 43, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7594494, + 50.90067155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paulrbr", + "uid": "12447319", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T20:22:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 10, + "delete": 0, + "area": 0.00549535859973988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119484313, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 25, + "locale": "en", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3737084, + 48.85669815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nicknz", + "uid": "4735682", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T20:07:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119483946, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1461241, + 51.4821824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T18:54:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 171, + "modify": 468, + "delete": 5, + "area": 0.0000153953603999841, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119481914, + "host": "pietervdvn.github.io", + "move": 417, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 114 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28592345, + 50.8616334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T17:35:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119479657, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2935642, + 51.3545361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T15:35:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119475833, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 14, + "locale": "ca", + "imagery": "osm", + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1040428, + 38.8346599 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T14:31:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119473867, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2066573, + 51.2267317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T14:21:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 225, + "modify": 544, + "delete": 10, + "area": 0.0000403515471599989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119473535, + "host": "pietervdvn.github.io", + "move": 489, + "theme": "grb", + "answer": 1, + "import": 32, + "locale": "nl", + "imagery": "osm", + "conflation": 116 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2823024, + 50.85862585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T13:32:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 890, + "modify": 607, + "delete": 6, + "area": 0.0000754892603600226, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119471869, + "host": "pietervdvn.github.io", + "move": 543, + "theme": "grb", + "import": 124, + "locale": "nl", + "imagery": "osm", + "conflation": 140 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2766982, + 50.86054945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T13:31:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119471853, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2616792, + 50.8498349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T13:25:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.27800000281908e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119471653, + "host": "pietervdvn.github.io", + "move": 1, + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5, + "move:node/9651816644": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2067123000000004, + 51.2267695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T13:22:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119471538, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7205216, + 51.0569778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T12:18:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119469101, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1625605, + 45.649321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T12:17:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2076, + "modify": 2233, + "delete": 39, + "area": 0.00060650611109998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119469051, + "host": "pietervdvn.github.io", + "move": 2010, + "theme": "grb", + "import": 312, + "locale": "nl", + "imagery": "osm", + "conflation": 466 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2665424000000005, + 50.85174255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T11:44:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119467704, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3735719, + 52.4683114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-1050237447", + "osm_id": 1050237447, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "building": "nutspaal type windturbine" + } + }, + { + "url": "way-1050237446", + "osm_id": 1050237446, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "building": "nutspaal type windturbine" + } + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T10:05:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 491, + "modify": 392, + "delete": 1, + "area": 0.0000979364505599785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119463786, + "host": "pietervdvn.github.io", + "move": 353, + "theme": "grb", + "import": 62, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2618841, + 50.8638394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T09:28:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119461562, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9136991, + 51.8263286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijndebuck", + "uid": "15353406", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T08:27:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.000305420264600092, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119458775, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21799065, + 51.043390200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T07:00:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000017698823999795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119455492, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/399875080": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3389699, + 50.99859885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T00:15:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 1, + "delete": 0, + "area": 5.03907000000892e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119447375, + "host": "pietervdvn.github.io", + "theme": "grb", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6087113, + 51.09402455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T00:10:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 457, + "modify": 0, + "delete": 0, + "area": 0.00000784359839998492, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119447300, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 57, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6094626, + 51.0955983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arx - 83", + "uid": "9282195", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T22:45:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000569822034119916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119446246, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2275678, + 51.20081535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T20:54:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00000482635591998998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119443981, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 16, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2333763, + -39.8445265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T19:17:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 56, + "modify": 0, + "delete": 0, + "area": 0.000186992086260037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119441307, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.271827999999999, + 50.87112785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T18:37:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00435564916537951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119440333, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1395408499999995, + 51.1759796 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T18:25:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 223, + "modify": 434, + "delete": 4, + "area": 0.000103969516200002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119440040, + "host": "mapcomplete.osm.be", + "move": 393, + "theme": "grb", + "answer": 3, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 86 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05747355, + 51.1233454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T15:36:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.48703999999622e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119435148, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1507084, + 41.388975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T15:10:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 100, + "modify": 0, + "delete": 0, + "area": 0.00000708686079999374, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119434186, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1, + "change_within_500m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5934562999999997, + 51.1019362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T15:08:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000198008748000174, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119434092, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9159575, + 51.82501545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T15:03:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 22, + "delete": 0, + "area": 0.00000929179483002577, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119433950, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 19, + "locale": "nl", + "imagery": "osm", + "add-image": 9, + "change_over_5000m": 2, + "change_within_500m": 4, + "change_within_1000m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91060965, + 51.82484465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T14:46:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.19455000036455e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119433382, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "import:node/9649224070": "source: https://osm.org/note/3099182", + "import:node/9649252497": "source: https://osm.org/note/3099198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81129085, + 50.78668385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T13:57:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2635, + "modify": 1935, + "delete": 6, + "area": 0.000231863173599907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119431455, + "host": "pietervdvn.github.io", + "move": 1686, + "theme": "grb", + "import": 346, + "locale": "nl", + "imagery": "osm", + "conflation": 520 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.270657699999999, + 50.870319800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:58:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 139, + "modify": 180, + "delete": 1, + "area": 0.00000402508523997464, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119429413, + "host": "pietervdvn.github.io", + "move": 164, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2784303, + 50.87238035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T12:54:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119429240, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2246267, + 51.2185636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:34:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 918, + "modify": 551, + "delete": 4, + "area": 0.000025837080169985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119428605, + "host": "pietervdvn.github.io", + "move": 475, + "theme": "grb", + "import": 100, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27346335, + 50.872639750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T12:29:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6652, + "modify": 0, + "delete": 0, + "area": 0.000148200271379959, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119428442, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 827, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60431035, + 51.0974793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "boogscheut", + "uid": "2290210", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:13:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119427854, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4892776, + 51.1826486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:10:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 19, + "delete": 0, + "area": 0.00000551798757999671, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119427709, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 35, + "import": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9648851052": "improve_accuracy", + "move:node/9648909892": "improve_accuracy", + "move:node/9648909893": "improve_accuracy", + "import:node/9648921722": "source: https://osm.org/note/3044449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5729359, + 50.921466249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8024991201", + "name": "Blazers en Blazers", + "osm_id": 8024991201, + "reasons": [ + 43 + ], + "version": 12, + "primary_tags": { + "shop": "brass_instruments" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T11:44:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119426696, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7022343, + 51.050972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChisomoL", + "uid": "15333258", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T11:19:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119425364, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0647357, + 52.0955902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T11:04:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119424619, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5742969, + 50.9224285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:24:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 744, + "modify": 510, + "delete": 0, + "area": 0.000033202473919972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119422988, + "host": "pietervdvn.github.io", + "move": 443, + "theme": "grb", + "import": 101, + "locale": "nl", + "imagery": "osm", + "conflation": 138 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.276246, + 50.874302099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:22:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 95, + "modify": 38, + "delete": 1, + "area": 0.00000273295151000037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119422904, + "host": "pietervdvn.github.io", + "move": 33, + "theme": "grb", + "import": 12, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27526845, + 50.876362150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:21:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 14, + "delete": 0, + "area": 1.30679099998591e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119422889, + "host": "pietervdvn.github.io", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2740597000000005, + 50.87686085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:13:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 199, + "modify": 156, + "delete": 0, + "area": 0.00000890527731001752, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119422568, + "host": "pietervdvn.github.io", + "move": 126, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.273039450000001, + 50.877014349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:04:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 646, + "modify": 0, + "delete": 0, + "area": 0.0000794239484500284, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119422251, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 75, + "locale": "_context", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27996445, + 50.87597475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T09:17:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000410830772000097, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119420330, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5722243, + 50.92193295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T08:48:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000549875711999908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119419335, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87901755, + 51.007603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T08:20:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119418312, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0035342, + 51.3276014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Velle", + "uid": "6196862", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T07:48:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 1, + "delete": 2, + "area": 6.91029899978035e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119417091, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "change_over_5000m": 6, + "change_within_25m": 5, + "change_within_50m": 1, + "deletion:node/9647908884": "testing point", + "deletion:node/9647922799": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00545525, + 51.209425350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T06:44:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 10, + "delete": 0, + "area": 7.42791239994718e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119414564, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 18, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 15, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.995795699999999, + 48.500183199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T23:44:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119406477, + "host": "pietervdvn.github.io", + "theme": "transit", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212297, + 51.2153672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Den Heikanter", + "uid": "15507557", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T22:38:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 11, + "delete": 0, + "area": 8.81050000078704e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119405504, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 19, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97933365, + 51.24664845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9636183925", + "name": "Enclave Tours", + "osm_id": 9636183925, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "bicycle_rental" + } + } + ], + "user": "Enclave Tours", + "uid": "15506540", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T21:31:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119404196, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9146419, + 51.4530129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "node-4439612463", + "osm_id": 4439612463, + "reasons": [ + 489 + ], + "version": 9 + } + ], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T20:38:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00000116540999999777, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119402986, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 30, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72958695, + 41.2215519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:44:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 71, + "modify": 111, + "delete": 1, + "area": 0.00000296266615999583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119401323, + "host": "pietervdvn.github.io", + "move": 99, + "theme": "grb", + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2874706499999995, + 50.8720246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:38:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 107, + "modify": 140, + "delete": 0, + "area": 0.000007369355840015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119401138, + "host": "pietervdvn.github.io", + "move": 126, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2858401, + 50.87280945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:30:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 189, + "modify": 223, + "delete": 0, + "area": 0.00000660696467999657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119400908, + "host": "pietervdvn.github.io", + "move": 201, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 44 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2847919, + 50.8731752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:00:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.33336000005804e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119400021, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/barriers_bridges/barriers_bridges.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39827785, + 51.1754737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T18:40:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.67117499995066e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119399406, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 7, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72956395, + 41.220940850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T17:58:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119397966, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2789208, + 50.3326713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9644980902", + "osm_id": 9644980902, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "barrier": "wicket_gate" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T15:51:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.611377634378177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119393686, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/barriers_bridges/barriers_bridges.json", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 2, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5254848, + 51.50270525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:38:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000164768603998652, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119388139, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57137985, + 50.9217728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:29:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1312, + "modify": 1073, + "delete": 24, + "area": 0.00049063126072001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119387781, + "host": "pietervdvn.github.io", + "move": 971, + "theme": "grb", + "import": 205, + "locale": "nl", + "imagery": "osm", + "conflation": 230 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2910914, + 50.88534455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T13:27:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119387711, + "host": "pietervdvn.github.io", + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9645639172": "source: https://osm.org/note/3044224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8224595, + 50.7401743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T13:17:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119387271, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 4, + "import:node/9645625081": "source: https://osm.org/note/3044682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8477342, + 50.7372896 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:00:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 348, + "modify": 348, + "delete": 12, + "area": 0.000059566683400008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119386583, + "host": "pietervdvn.github.io", + "move": 316, + "theme": "grb", + "import": 55, + "locale": "nl", + "imagery": "osm", + "conflation": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27702785, + 50.8820555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:49:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119386120, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3370245, + 50.8672187 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:37:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119385630, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3526805, + 50.8558007 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:17:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 893, + "modify": 446, + "delete": 0, + "area": 0.0000518154751999756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119384835, + "host": "pietervdvn.github.io", + "move": 401, + "theme": "grb", + "import": 110, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.269424, + 50.877988900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:06:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 431, + "modify": 337, + "delete": 3, + "area": 0.000156508163960073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119384375, + "host": "pietervdvn.github.io", + "move": 303, + "theme": "grb", + "import": 50, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.258442949999999, + 50.8705176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T10:14:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119379270, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9061527, + 51.822271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T09:29:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 347, + "modify": 292, + "delete": 0, + "area": 0.0000248929401600149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119377136, + "host": "pietervdvn.github.io", + "move": 257, + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm", + "conflation": 78 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25664415, + 50.8692308 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T08:30:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 585, + "modify": 149, + "delete": 2, + "area": 0.00015609460271997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119374888, + "host": "pietervdvn.github.io", + "move": 126, + "theme": "grb", + "import": 67, + "locale": "nl", + "imagery": "osm", + "conflation": 50 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2462658, + 50.8623712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "drklee3", + "uid": "12569239", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T06:21:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119370272, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 10, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.02375635000001, + 37.3113032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T05:43:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000610346465999992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119369056, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "UrbISOrtho", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39408265, + 50.8574167 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T19:46:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 193, + "modify": 138, + "delete": 2, + "area": 0.0000157460499599953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119357797, + "host": "pietervdvn.github.io", + "move": 120, + "theme": "grb", + "import": 25, + "locale": "nl", + "imagery": "osm", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2445607, + 50.8599739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Philippe Winant", + "uid": "6354026", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T19:06:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 24, + "delete": 0, + "area": 0.0000344738786200172, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119356641, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "add-image": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8736865, + 51.30517465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T19:03:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.05425600000084e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119356571, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2762561, + 47.7984966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:52:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 504, + "modify": 476, + "delete": 1, + "area": 0.0000507820372400346, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119356252, + "host": "mapcomplete.osm.be", + "move": 397, + "theme": "grb", + "answer": 1, + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.864511350000001, + 51.1439197 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:51:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 18, + "delete": 0, + "area": 2.53233649998902e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119356245, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86778395, + 51.14510455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:26:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.00000158345949999355, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119355457, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_500m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28166225, + 47.7953495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:15:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.000101964527999998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119355151, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 6, + "change_over_5000m": 4, + "change_within_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98032625, + 51.8390278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:12:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000983541699997227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119355072, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97530675, + 51.8369243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:10:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000137606690399083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119355028, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97566955, + 51.836529999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T16:54:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119352776, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.944824, + 50.2206975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T16:22:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119351555, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9817695, + 51.8372649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T14:29:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119347199, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9823809, + 51.8368842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T14:20:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119346822, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9817695, + 51.8372649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T13:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 335, + "modify": 322, + "delete": 6, + "area": 0.0000459820799999493, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119345884, + "host": "pietervdvn.github.io", + "move": 288, + "theme": "grb", + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2392597, + 50.8569571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T13:52:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 23, + "modify": 20, + "delete": 0, + "area": 0.00000397863959999449, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119345798, + "host": "pietervdvn.github.io", + "move": 16, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2384603, + 50.857545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T13:39:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 486, + "modify": 468, + "delete": 3, + "area": 0.000216369507209973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119345235, + "host": "pietervdvn.github.io", + "move": 421, + "theme": "grb", + "import": 71, + "locale": "nl", + "imagery": "osm", + "conflation": 106 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24783125, + 50.85076465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:58:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1021, + "modify": 1540, + "delete": 10, + "area": 0.000109432732500011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119343636, + "host": "pietervdvn.github.io", + "move": 1379, + "theme": "grb", + "import": 176, + "locale": "nl", + "imagery": "osm", + "conflation": 318 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2553455, + 50.840995250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T12:48:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119343192, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9922164, + 51.8412684 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:16:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 931, + "modify": 979, + "delete": 22, + "area": 0.0000232018625999832, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119341741, + "host": "pietervdvn.github.io", + "move": 874, + "theme": "grb", + "import": 176, + "locale": "nl", + "imagery": "osm", + "conflation": 222 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25425845, + 50.833532399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:03:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 85, + "modify": 557, + "delete": 14, + "area": 0.000012550668479994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119341177, + "host": "pietervdvn.github.io", + "move": 502, + "theme": "grb", + "import": 21, + "locale": "nl", + "imagery": "osm", + "conflation": 138 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2545362, + 50.8326924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T10:18:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 276, + "modify": 664, + "delete": 2, + "area": 0.000287834857599913, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119337024, + "host": "pietervdvn.github.io", + "move": 590, + "theme": "grb", + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2491667, + 50.82190585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T10:13:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119336812, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4715524, + 51.3734347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T09:37:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000147000641999866, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119335338, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.43018845, + 48.2563387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "proudtobeevi", + "uid": "15491391", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T08:25:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 1, + "area": 0.00125959833080025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119332474, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 4, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "move:node/4639723285": "improve_accuracy", + "move:node/4639723286": "improve_accuracy", + "import:node/9642595560": "source: https://osm.org/note/3044026", + "import:node/9642605521": "source: https://osm.org/note/3044068", + "import:node/9642605793": "source: https://osm.org/note/3044033", + "import:node/9642609026": "source: https://osm.org/note/3044010", + "deletion:node/6124967530": "is een picknickbank" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266390999999995, + 50.8389025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Café ´t Orgelhuys", + "uid": "15491052", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T07:08:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119329440, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8085673, + 51.1322707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "jospyck", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Kasterlee", + "uid": "15445529", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T06:43:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 64, + "modify": 0, + "delete": 2, + "area": 0.00940191088759935, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-04-05T10:10:20.318983Z", + "id": 119328552, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "deletion:node/9642446796": "testing point", + "deletion:node/9642701084": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9487856, + 51.23577445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T06:01:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119327176, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9085143, + 51.8247942 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T06:00:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119327140, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.907216, + 51.8241695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T22:23:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119319951, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3579941, + 50.8481811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T22:02:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00142109007225028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119319572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34366655, + 50.84846555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jhowie_Nitnek", + "uid": "10209781", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T22:00:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119319527, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3224426, + 50.841712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NearCry", + "uid": "2373957", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T21:13:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 28, + "delete": 0, + "area": 0.000123799354379994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119318536, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 39, + "locale": "en", + "imagery": "hri-orto" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.814948899999997, + 60.46047285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T21:10:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119318448, + "host": "pietervdvn.github.io", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2327132, + 51.2095932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T19:56:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0000073255853300117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119316196, + "host": "pietervdvn.github.io", + "move": 6, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2315340500000005, + 50.81326505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T19:48:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 180, + "modify": 277, + "delete": 0, + "area": 0.00000731864663000053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119315943, + "host": "pietervdvn.github.io", + "move": 243, + "theme": "grb", + "import": 25, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22805425, + 50.813987350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T19:10:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119314812, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2931984, + 47.7964505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T18:28:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 9, + "delete": 0, + "area": 3.81423000000491e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119313585, + "host": "pietervdvn.github.io", + "move": 8, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2270273, + 50.813759250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T18:09:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000184718459300208, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119312922, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.437107350000002, + 48.257023450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T18:01:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000316494364499996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119312657, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 11, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.43509805, + 48.251115600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T17:39:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000165352952050031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119311890, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 41, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.44056585, + 48.24925315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T17:33:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.45151000002262e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119311701, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.43367425, + 48.256294600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T17:29:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.26669759996481e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119311575, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9079326, + 51.8244579 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T17:16:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000298587546720028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119311075, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 17, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4353044, + 48.24969335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T16:54:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000196842723000396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119310359, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 16, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4383089, + 48.254996750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T15:38:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119307611, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9994362, + 48.5046399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T15:31:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119307381, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2327132, + 51.2095932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jdcarls2", + "uid": "5778126", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T15:13:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000359985479039958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119306762, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -88.5005854, + 41.6615336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T13:47:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 233, + "modify": 347, + "delete": 0, + "area": 0.0000230256098800106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119304057, + "host": "pietervdvn.github.io", + "move": 305, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.233592, + 50.814115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T13:20:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.87986399993241e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119303225, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23794369999999, + -39.8437595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T12:49:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1001, + "modify": 1748, + "delete": 26, + "area": 0.000847123345249874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119302063, + "host": "pietervdvn.github.io", + "move": 1547, + "theme": "grb", + "import": 142, + "locale": "nl", + "imagery": "osm", + "conflation": 412 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23068885, + 50.797544349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T12:23:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 1, + "area": 0.0000597882051900076, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119301118, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 15, + "deletion:node/9570775619": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.846129550000001, + 50.822150050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T11:12:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.0000464308929600302, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119298597, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 9, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.893178499999999, + 50.8024863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T10:48:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119297722, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3621716, + 50.8571793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T10:03:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 12, + "delete": 0, + "area": 0.0000585692702999869, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119296121, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 18, + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04241755, + 50.9434123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T09:23:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 433, + "modify": 290, + "delete": 0, + "area": 0.0000619630967199662, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119294511, + "host": "pietervdvn.github.io", + "move": 247, + "theme": "grb", + "import": 53, + "locale": "nl", + "imagery": "osm", + "conflation": 90 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21895905, + 50.7924691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T08:45:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00558100463703939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119292927, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "import:node/9635164567": "source: https://osm.org/note/3090273", + "import:node/9635167220": "source: https://osm.org/note/3090151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0736747, + 50.78945745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T08:38:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1690, + "modify": 939, + "delete": 4, + "area": 0.000230933030130035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119292620, + "host": "pietervdvn.github.io", + "move": 821, + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "osm", + "conflation": 244 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20924045, + 50.80248665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T08:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 584, + "modify": 850, + "delete": 8, + "area": 0.0000367671663500178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119291626, + "host": "pietervdvn.github.io", + "move": 754, + "theme": "grb", + "import": 74, + "locale": "nl", + "imagery": "osm", + "conflation": 204 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21859085, + 50.80746085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T08:05:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 124, + "modify": 290, + "delete": 1, + "area": 0.0000437017626799878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119291302, + "host": "pietervdvn.github.io", + "move": 253, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 74 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2187331, + 50.80541135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joethUK", + "uid": "13966463", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T22:23:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119280195, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1335548, + 50.8318295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T20:42:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119278252, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9947918, + 51.1770658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T20:41:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.09248000033662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119278248, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.332489, + 50.878166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T19:51:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119276975, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.239645, + 51.223322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T19:09:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119275875, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3840286, + 50.8708091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TrickyFoxy", + "uid": "11528195", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T18:53:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.69268999972521e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119275455, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 7, + "locale": "ru", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.501265099999998, + 59.935367549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T18:37:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 132, + "modify": 122, + "delete": 0, + "area": 0.00000728643222000955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119275032, + "host": "pietervdvn.github.io", + "move": 110, + "theme": "grb", + "import": 11, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.214392699999999, + 50.80253515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T18:21:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 3.46527706954573, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119274514, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06035765, + 51.13841845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T17:52:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119273643, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1942513, + 50.9106537 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T17:46:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000481143563999827, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119273465, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1980232, + 50.910972599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T17:42:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119273300, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1941332, + 50.9105421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T16:22:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119270696, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9859003, + 51.1605061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T13:56:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119265626, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98723, + 51.1612471 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ark van Noë", + "uid": "15477463", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T13:10:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 13, + "delete": 0, + "area": 2.89430400002133e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119264066, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "toerisme_vlaanderen", + "answer": 24, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "move:node/9633278314": "improve_accuracy", + "move:node/9633344313": "improve_accuracy", + "move:node/9633374752": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9377654, + 51.210074 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T12:57:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 855, + "modify": 739, + "delete": 1, + "area": 0.000148838624059956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119263733, + "host": "pietervdvn.github.io", + "move": 637, + "theme": "grb", + "import": 79, + "locale": "nl", + "imagery": "osm", + "conflation": 220 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21724225, + 50.8004883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T12:55:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119263646, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8831073, + 51.1476149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T11:56:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119261895, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0677361, + 49.4912512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T11:54:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.00000602749289999911, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119261814, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81008565, + 49.6210185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T11:05:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1935, + "modify": 1516, + "delete": 9, + "area": 0.000103754559150018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119260406, + "host": "pietervdvn.github.io", + "move": 1341, + "theme": "grb", + "import": 234, + "locale": "nl", + "imagery": "osm", + "conflation": 380 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2248227499999995, + 50.801623449999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T09:43:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 692, + "modify": 773, + "delete": 10, + "area": 0.000044727168959973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119258074, + "host": "pietervdvn.github.io", + "move": 687, + "theme": "grb", + "import": 93, + "locale": "nl", + "imagery": "osm", + "conflation": 176 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2260048, + 50.8041106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "thierydem", + "uid": "13422761", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T09:28:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000139667842899879, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119257676, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42621825, + 50.89344505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:12:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 207, + "modify": 195, + "delete": 0, + "area": 0.00000733617240001433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119257256, + "host": "mapcomplete.osm.be", + "move": 168, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.866204700000001, + 51.145328500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:11:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 8.23064000002044e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119257224, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm", + "change_within_25m": 20, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.990817499999999, + 48.502545350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:08:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.25739999905433e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119257102, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9905169, + 48.5028005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:06:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.22500000015594e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119257038, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9904817, + 48.502673200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:05:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.84000000125869e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119256997, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.990517350000001, + 48.5027834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:01:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.32244349999458e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119256882, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99060455, + 48.50268095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T07:52:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1739, + "modify": 1322, + "delete": 24, + "area": 0.013804213815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119255378, + "host": "pietervdvn.github.io", + "move": 1177, + "theme": "grb", + "import": 192, + "locale": "nl", + "imagery": "osm", + "conflation": 310 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3731836, + 50.8248312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T07:41:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 78, + "delete": 0, + "area": 0.00982736548101095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119255168, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 103, + "locale": "nl", + "imagery": "osm", + "add-image": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76328105, + 50.94028135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T07:35:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000341423511660091, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119255028, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9122728, + 50.944280250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T06:52:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119254211, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3974314, + 51.041181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T06:44:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 1, + "area": 0.0110777913783906, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119254072, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 4, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.268357849999999, + 49.76003635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T23:49:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119250358, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0956819, + 14.639055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T23:13:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119249777, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1563365, + 46.7970635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T23:06:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0368707905948106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119249675, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 13, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.92727285, + 43.93523035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T22:59:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119249553, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.0034483, + 43.8276037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T22:32:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119249116, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.3259043, + 47.8167695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T21:01:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.60009009994062e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119247280, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98956755, + 51.16178055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T19:56:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000228899580000785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119245874, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2288066, + -39.8149515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T17:13:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000054861775280016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119241481, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 33, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28589285, + 47.7941101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T15:58:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 1, + "delete": 0, + "area": 0.0000232355386000008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119239322, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 10, + "change_within_25m": 5, + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7853031, + 49.867208649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T15:50:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119239087, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3484879, + 50.7904179 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T15:42:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119238876, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8027161, + 43.2074565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "geocruizer", + "uid": "1050248", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T15:37:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119238736, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.2382694, + 38.8977298 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Agustin", + "uid": "30004", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T15:05:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000222668952749976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119237714, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "PNOA-Spain-TMS", + "add-image": 1, + "change_over_5000m": 2, + "change_within_100m": 3, + "change_within_5000m": 1, + "move:node/9631507959": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16855805000000001, + 39.75205525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ZenPhil", + "uid": "10208656", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T12:07:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 32, + "delete": 0, + "area": 0.000018462510080006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119232826, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 48, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.992559, + 51.58856 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T11:51:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119232288, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4414721, + 51.0815267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T11:01:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000258838762499922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119230832, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84969145, + 50.15480425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T08:47:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119227026, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4403616, + 52.2099574 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T08:35:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.93799999860821e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119226740, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8978498999999998, + 50.765483950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T08:00:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 126, + "modify": 226, + "delete": 22, + "area": 0.00174302084186994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119226064, + "host": "mapcomplete.osm.be", + "move": 215, + "theme": "grb", + "answer": 2, + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 34, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90578215, + 51.129417149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T07:50:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119225896, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7542109, + 43.4169029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T06:39:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0000417169788000365, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119224678, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8948566500000004, + 50.762462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807870540", + "osm_id": 8807870540, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-01T21:53:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119218560, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 1, + "locale": "ca", + "imagery": "HDM_HOT", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2454005, + 41.4446509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T20:29:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.61969359997395e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119216700, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35610645, + 50.849729100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T20:14:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00279989854535993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119216390, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 14, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3718075, + 50.83255385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T20:01:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119216024, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2381516, + -39.8439309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T18:44:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 298, + "modify": 7, + "delete": 0, + "area": 0.00000327684853000793, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119213901, + "host": "pietervdvn.github.io", + "move": 6, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50381035, + 50.84665375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T18:42:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 216, + "modify": 0, + "delete": 0, + "area": 0.0000039857227500005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119213840, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50121145, + 50.847073249999994 + ] + } + }, { "type": "Feature", "properties": { @@ -370134,6 +408365,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T16:57:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -370181,6 +408413,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T14:20:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1033, "modify": 23, "delete": 0, @@ -370222,6 +408455,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T13:29:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 876, "modify": 42, "delete": 0, @@ -370263,6 +408497,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T12:49:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 780, "modify": 0, "delete": 0, @@ -370302,6 +408537,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T12:46:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 258, "modify": 0, "delete": 0, @@ -370346,6 +408582,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T12:35:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1170, "modify": 0, "delete": 0, @@ -370390,6 +408627,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T10:14:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 2, @@ -370432,6 +408670,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T09:48:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 800, "modify": 0, "delete": 0, @@ -370471,6 +408710,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T09:37:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 727, "modify": 0, "delete": 0, @@ -370510,6 +408750,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T09:18:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 620, "modify": 0, "delete": 0, @@ -370549,6 +408790,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T08:57:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 464, "modify": 0, "delete": 0, @@ -370588,6 +408830,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T08:26:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 22, "delete": 0, @@ -370627,6 +408870,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T08:23:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 29, "delete": 0, @@ -370666,6 +408910,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T06:57:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -370705,6 +408950,7 @@ "imagery_used": "Not reported", "date": "2022-04-01T06:55:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -370727,6 +408973,19997 @@ 50.7952296 ] } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T08:05:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 380, + "modify": 13, + "delete": 2, + "area": 0.0000102375411600083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120874163, + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "answer": 3, + "import": 53, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1839739, + 50.9165413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vokki", + "uid": "15931327", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T06:57:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120871292, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.4220119, + 36.9028378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T06:26:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.31689600010031e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120869985, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4029027999999997, + 50.90699385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vangarov", + "uid": "15880565", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T05:18:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120867651, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 26.3317877, + 42.6832951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T00:42:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000563893617000174, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120862800, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.019869949999999997, + 38.850894249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T00:40:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000273291881099784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120862757, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10128685000000001, + 38.837477449999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T00:39:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120862749, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1124729, + 38.837982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T22:35:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000132981563300005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120860730, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46828565, + 50.845437149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T19:47:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000324383471998374, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120856013, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4007641, + 50.9069279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T19:30:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.04255100001272e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120855468, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40268845, + 50.90729455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T19:27:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000258037893899919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120855389, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40118915, + 50.90739965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "derFred", + "uid": "331548", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T19:16:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120854963, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8463995, + 49.4199836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T19:12:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000592951724899903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120854842, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39654505, + 50.85232245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T16:38:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120849677, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2526657, + 50.7102411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T16:18:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000021598623299933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120848795, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44141875, + 50.84130055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T16:12:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120848590, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5816479, + 50.883099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T15:02:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.63743440000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120845688, + "host": "pietervdvn.github.io", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4720604999999995, + 50.9124148 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T15:02:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 315, + "modify": 0, + "delete": 0, + "area": 0.0000156592388799981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120845664, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 48, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.192529, + 50.91342915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T14:58:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 160, + "modify": 0, + "delete": 0, + "area": 0.00000303934337999878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120845493, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1899928, + 50.91377745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T13:49:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.10237299997767e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120842166, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72179845, + 51.026884550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T13:07:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.33741220002705e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120840202, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4866046, + 50.854332150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T11:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000127036505000641, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120834121, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 7, + "change_within_25m": 6, + "change_within_50m": 1, + "import:node/9732382301": "source: https://osm.org/note/3156439", + "import:node/9732406100": "source: https://osm.org/note/3156465", + "import:node/9732421985": "source: https://osm.org/note/3156339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31501145, + 50.843638850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T10:48:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120833514, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8406551, + 43.2991622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T10:02:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120831510, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 1, + "import:node/9732245715": "source: https://osm.org/note/3044384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3052056, + 51.075126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T09:30:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120830059, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 1, + "import:node/9732140863": "source: https://osm.org/note/3156487" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3972841, + 50.9057477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T07:37:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120825038, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2802489, + 53.2143405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Krissmed", + "uid": "14675238", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T06:51:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120823176, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7752068, + 59.9263529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Els Brouwers", + "uid": "15461605", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T06:46:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.7456719999897e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120822976, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7184259, + 50.8944725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mottiger", + "uid": "7504544", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T06:00:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120821197, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5396399, + 47.3762817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mrey", + "uid": "6089796", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T03:28:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000685559906997596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120817078, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.086821749999999, + 49.43688755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mrey", + "uid": "6089796", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T03:25:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.69518799989007e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120817047, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0881209, + 49.43685325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T02:55:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00346366955454964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120816626, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 25, + "locale": "en", + "imagery": "osm", + "soft-delete": 1, + "change_over_5000m": 3, + "change_within_500m": 2, + "change_within_1000m": 7, + "change_within_5000m": 9, + "soft-delete:way/249728013": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.98160845, + 40.59779465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T23:25:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.118470147262397, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120813715, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "import:node/9731220089": "source: https://osm.org/note/3156351", + "import:node/9731264405": "source: https://osm.org/note/3156441", + "import:node/9731265898": "source: https://osm.org/note/3156445", + "import:node/9731265924": "source: https://osm.org/note/3156363", + "import:node/9731266648": "source: https://osm.org/note/3156348", + "import:node/9731266948": "source: https://osm.org/note/3156514", + "import:node/9731266949": "source: https://osm.org/note/3156462" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1051846999999997, + 50.9143252 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T22:17:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120812691, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1067251, + 38.8455358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T20:05:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120809532, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7359211, + 48.3298646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mietcls", + "uid": "15913740", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T18:58:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 8.16342019997007e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120807384, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7326738500000003, + 51.0554937 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T18:24:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120806190, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2971361, + 50.7863165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T18:16:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120805867, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7104171, + 51.0373003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:51:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000240179767996707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120804994, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 5, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25076885, + -39.829694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:22:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 12, + "delete": 0, + "area": 0.000210716505599927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120804027, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 29, + "move:node/9724554639": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.595136999999999, + 50.777287900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:19:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120803919, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2322005, + 50.7313691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:14:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000924802926479525, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120803744, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 17, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2866943, + 50.7371554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T15:42:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.49015199999828e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120799823, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 4, + "change_within_25m": 9, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2660069, + 50.75532065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Luice Marion", + "uid": "9490064", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T15:20:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.76445000075897e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120799030, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "locale": "en", + "imagery": "ORTOS_DGT_2018_WMS", + "change_over_5000m": 2, + "change_within_500m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.28729285, + 38.818591749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T14:16:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120796607, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2496558, + -39.830912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lololailo", + "uid": "8621270", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T14:15:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.000920663745299788, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120796593, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 12, + "locale": "es", + "imagery": "osm", + "move:node/9730192543": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13228745, + 37.9933081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:40:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 61, + "modify": 527, + "delete": 4, + "area": 0.0000120821855000128, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120795016, + "host": "pietervdvn.github.io", + "move": 468, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 122 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46634505, + 50.9189523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T13:15:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120793810, + "host": "pietervdvn.github.io", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4822592, + 51.0173869 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:12:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 137, + "modify": 1013, + "delete": 43, + "area": 0.0000176580706499908, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120793653, + "host": "pietervdvn.github.io", + "move": 893, + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 270 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46926615, + 50.91864085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:11:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 44, + "delete": 2, + "area": 0.00000158842450000001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120793603, + "host": "pietervdvn.github.io", + "move": 39, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4694829, + 50.91704755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T12:51:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 8.96099999960165e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120792734, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.276756000000001, + 53.21399475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T12:44:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.37319999934868e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120792405, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 14, + "locale": "en", + "imagery": "osm", + "change_within_25m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4576999, + -34.625216300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T12:28:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 68, + "modify": 986, + "delete": 9, + "area": 0.0000408967472800385, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120791664, + "host": "pietervdvn.github.io", + "move": 853, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 266 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4654869999999995, + 50.917009199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T12:19:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120791305, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5, + "import:node/9729925596": "source: https://osm.org/note/3091099" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3390365, + 50.7415725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Turfje65", + "uid": "15863882", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T11:38:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120789321, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5720681, + 50.8041532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:31:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.9716000001538e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120786710, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4303141, + 51.1785815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Adrian McEwen", + "uid": "55910", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120786267, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9631704, + 53.4058384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "micjoe", + "uid": "15079427", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:07:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120785757, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7876863, + 53.0245418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:02:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 45, + "delete": 1, + "area": 5.95356640003171e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120785535, + "host": "pietervdvn.github.io", + "move": 37, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4622034, + 50.9188467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T10:00:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 263, + "modify": 11, + "delete": 0, + "area": 0.00000551906649999048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120785470, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3999697, + 50.79379725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T09:56:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 250, + "delete": 0, + "area": 0.00000317284154999746, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120785272, + "host": "pietervdvn.github.io", + "move": 220, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.460436550000001, + 50.91948815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9729432901", + "osm_id": 9729432901, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T09:09:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 17, + "delete": 0, + "area": 0.00398406770177998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120783116, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 27, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5, + "change_within_1000m": 9, + "change_within_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.060938149999999996, + 38.8162629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T09:07:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000160127778600026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120783030, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 3, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10956955, + 38.8362126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T09:05:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.52434500001798e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120782971, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09533535, + 38.83935025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T08:27:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.23137720003357e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120781401, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.98768655, + 51.7607256 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T07:42:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0034956763156603, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120779320, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 14, + "locale": "en", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 6, + "change_within_25m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.84240925, + 43.2817509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T07:09:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 199, + "modify": 1588, + "delete": 40, + "area": 0.0000599181774799332, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120777821, + "host": "pietervdvn.github.io", + "move": 1387, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 406 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46000105, + 50.920782700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T06:12:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.56271500000129e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120775456, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "de", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99598625, + 48.4994625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T06:12:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 8.21650680003511e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120775452, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Mapbox", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24955525, + -39.8314142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T06:06:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.38339440001472e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120775243, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2496447, + -39.8312637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:53:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.27071159996326e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120774724, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25005379999999, + -39.8306535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:42:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.01752780005513e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120774333, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2504822, + -39.830111349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:32:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.10269999582803e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120774012, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25069145, + -39.829514849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:14:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 6.93676500042161e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120773568, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25063225, + -39.829086450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:06:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120773337, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2506134, + -39.8290211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T00:18:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120769135, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.379049, + 52.5696113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T00:06:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120768965, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "EsriWorldImageryClarity", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.250758, + -39.8286203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T23:39:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120768556, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3607558, + 52.5712482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T21:27:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.64175399986216e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120766323, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1969392, + 48.654666750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T21:22:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120766214, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1929478, + 48.6532462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T20:57:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120765560, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3484364, + 52.5757559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T19:18:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000595934377999728, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120762668, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 18, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 6, + "change_within_100m": 8, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9950382, + 48.49992425000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T19:14:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000577868676002521, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120762570, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19030285, + 48.6537924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T18:51:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120761878, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7024508, + 51.0412119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T18:47:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.5240499999927e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120761758, + "host": "pietervdvn.github.io", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70317165, + 51.039102099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:38:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120759277, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6156557, + 39.324963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:35:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.06268249998789e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120759206, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 9, + "locale": "ca", + "imagery": "osm", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10496275, + 38.840185149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:28:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120758932, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3505254, + 52.575432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ayack", + "uid": "32476", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T17:24:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120758754, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6970783, + 47.8288567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:23:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120758706, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3521541, + 52.5747559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T16:53:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120757633, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4168042, + 46.9354753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T16:39:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.76971999983165e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120757174, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.196500499999999, + 48.654736150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "madbob", + "uid": "734100", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T16:34:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 218, + "delete": 0, + "area": 0.00228916302873023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120756962, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 357, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66206925, + 45.07202585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nw520", + "uid": "6895624", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T16:14:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120756175, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2300796, + -39.8441085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T15:54:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000222138859996465, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120755140, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "Mapbox", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25016959999999, + -39.82940085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T14:37:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000875718989999911, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120751998, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm", + "move:node/9727037575": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23887225, + 50.73572969999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T14:30:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120751761, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.238831, + 50.7384493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T12:02:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0105677947224003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120745628, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 2, + "locale": "nl", + "imagery": "osm", + "move:node/9726748950": "improve_accuracy", + "import:node/9726748950": "source: https://osm.org/note/3161435", + "import:node/9726749177": "source: https://osm.org/note/3161448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9493534, + 50.804917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T11:36:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 147, + "modify": 726, + "delete": 27, + "area": 0.000107527239600062, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120744338, + "host": "pietervdvn.github.io", + "move": 637, + "theme": "grb", + "import": 24, + "locale": "nl", + "imagery": "osm", + "conflation": 182 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46055645, + 50.9160969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T11:18:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000327535246719928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120743540, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "locale": "ca", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1072164, + 38.8387241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T11:08:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 403, + "modify": 10, + "delete": 0, + "area": 0.0000332375038999842, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120743062, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "answer": 1, + "import": 41, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77698845, + 50.9054172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T10:49:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000108145197600042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120742166, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 8, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10123789999999999, + 38.834766900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T10:22:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 55, + "modify": 1191, + "delete": 19, + "area": 0.0000335041124999993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120740918, + "host": "pietervdvn.github.io", + "move": 1040, + "theme": "grb", + "answer": 1, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 318 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4625776, + 50.914996349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:54:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 55, + "modify": 980, + "delete": 0, + "area": 0.0000324857269999863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120739482, + "host": "pietervdvn.github.io", + "move": 848, + "theme": "grb", + "answer": 1, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 264 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46024435, + 50.9141213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:53:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120739435, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9726460006": "source: https://osm.org/note/3156313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2375953, + 50.8060686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:34:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 214, + "modify": 694, + "delete": 6, + "area": 0.0000519014236799533, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120738436, + "host": "pietervdvn.github.io", + "move": 611, + "theme": "grb", + "import": 24, + "locale": "nl", + "imagery": "osm", + "conflation": 172 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4499467, + 50.9173866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:29:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 67, + "modify": 199, + "delete": 3, + "area": 0.0000105441083999868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120738248, + "host": "pietervdvn.github.io", + "move": 182, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4481771, + 50.9180675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:25:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 268, + "delete": 10, + "area": 0.0000192355762500031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120738068, + "host": "pietervdvn.github.io", + "move": 231, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 52 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45090835, + 50.920441749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T08:49:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120736209, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.988477, + 43.3452759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T08:44:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120735970, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.641443, + 47.3225692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T07:36:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000154331460000563, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120733149, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2125027, + 41.546388199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "A Hall", + "uid": "936117", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T02:28:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120724011, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.2564001, + 43.7845398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T00:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120722796, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.1715486, + 19.4255156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T00:04:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.07740999955625e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120722214, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23190095000001, + -39.84461905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T23:19:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00000446314484003003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120721622, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23016390000001, + -39.844837749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T22:16:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120720725, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3770763, + 52.5695488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T21:52:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 3, + "delete": 0, + "area": 7.45626000032759e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120720277, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.1843264, + 19.313984249999997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T21:48:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 4, + "delete": 0, + "area": 1.18437499993493e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120720180, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "es", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.18466215000001, + 19.313973949999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T21:41:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120720053, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2305079, + -39.8448463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:57:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 138, + "modify": 224, + "delete": 8, + "area": 0.157592312989369, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120719103, + "host": "mapcomplete.osm.be", + "move": 197, + "theme": "grb", + "answer": 4, + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46, + "change_over_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75727835, + 50.95367885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:54:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 22, + "modify": 33, + "delete": 0, + "area": 0.0000412532785200121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120719054, + "host": "pietervdvn.github.io", + "theme": "kerbs_and_crossings", + "answer": 37, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 32, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5657026, + 53.017854850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:18:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120718072, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3978439, + 50.8588811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:15:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120717998, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3973717, + 50.8592935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T19:04:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120715827, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111952, + 44.8465782 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:41:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000833805132001739, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120714938, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3748743, + 50.862201400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:29:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 31, + "modify": 44, + "delete": 0, + "area": 0.00000694825493998161, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120714230, + "host": "pietervdvn.github.io", + "theme": "kerbs_and_crossings", + "answer": 46, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 25, + "change_within_1000m": 39 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5692945, + 53.02015445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:20:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.58399999357477e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120713748, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3731405, + 50.863533000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:03:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 26, + "modify": 31, + "delete": 0, + "area": 0.0000510376683299631, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120713017, + "host": "pietervdvn.github.io", + "theme": "kerbs_and_crossings", + "answer": 35, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 35, + "change_within_1000m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56231195, + 53.01856995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9725152321", + "name": "Be Mobile Shop", + "osm_id": 9725152321, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "telecommunication" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:33:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000447197708999854, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120711721, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37231235, + 50.86240405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:29:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120711558, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3716089, + 50.8611078 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:13:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120710998, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3729978, + 50.8632563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:08:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.53689760000812e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120710874, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3727783, + 50.8629555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T16:19:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000259171963049969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120709286, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2140178500000003, + 41.541509250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:08:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000936289793999584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708939, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2655425000000005, + 53.20865885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:08:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708901, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2876617, + 50.71165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:07:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708849, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2767103, + 53.2134036 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:06:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708810, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2682003, + 53.2106725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:05:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708774, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2760951, + 53.2164172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:02:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000047305551959956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708693, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2707844999999995, + 53.2116366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T15:58:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000112681942000089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120708578, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2595537, + 53.20440875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T13:30:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000255325694400035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120702754, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.108224, + 38.8364635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T13:14:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120702220, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3735711, + 50.8643453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "self", + "uid": "34921", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T11:53:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120699297, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0660409, + 49.9762415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T11:30:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.000206504171739993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120698684, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59510725, + 50.777355799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T11:20:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000347921999999899, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120698370, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.9665614, + 60.3165439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T11:14:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.42266870001236e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120698157, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.96821765, + 60.31774405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T10:59:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 298, + "delete": 0, + "area": 0.0000125996635500079, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120697709, + "host": "pietervdvn.github.io", + "move": 261, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 74 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46388525, + 50.89555625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T10:53:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120697581, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3792697, + 50.8449872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T10:10:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000382620229002245, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120696126, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87902755, + 51.06082855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T09:41:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 477, + "modify": 2221, + "delete": 22, + "area": 0.000316815804710074, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120695033, + "host": "pietervdvn.github.io", + "move": 1980, + "theme": "grb", + "answer": 1, + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 534 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.458448949999999, + 50.89645735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T09:31:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 195, + "modify": 382, + "delete": 14, + "area": 0.000230362857520028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120694660, + "host": "pietervdvn.github.io", + "move": 336, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4425293, + 50.901441899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8853143449", + "osm_id": 8853143449, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T07:44:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.32277490002957e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120691778, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 8, + "locale": "ca", + "imagery": "HDM_HOT", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23803675, + 41.46576655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T07:34:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120691575, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2387445, + 50.7363996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "muc-osm", + "uid": "17011", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T07:14:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120691024, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4855543, + 48.0827774 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T06:06:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120689653, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2383659, + 50.7391702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T04:42:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120688598, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1360711, + 51.2913161 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T22:12:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120684303, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2401775, + -39.8281995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:34:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 41, + "modify": 67, + "delete": 0, + "area": 0.000626124230129973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120682165, + "host": "mapcomplete.osm.be", + "move": 55, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14505615, + 50.94432105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:25:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 210, + "modify": 88, + "delete": 0, + "area": 0.000218891994959972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120681851, + "host": "mapcomplete.osm.be", + "move": 81, + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1625252, + 50.96493235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "romeoz5", + "uid": "15864993", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T20:18:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120681568, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.2668175, + 39.1787364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:00:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120681098, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1079998, + 51.2966146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:58:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00112259950055997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120681024, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1189034500000004, + 51.292744400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:56:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120680961, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1014387, + 51.3093986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T19:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000021598623299933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120680908, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44141875, + 50.84130055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tanzbärli", + "uid": "11052582", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:26:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000141566866800053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120680141, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0195665, + 49.728921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:17:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000995031657000189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120679817, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 14, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8789154, + 49.834410250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T18:06:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 488, + "modify": 958, + "delete": 7, + "area": 0.000200785076380048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120677798, + "host": "pietervdvn.github.io", + "move": 874, + "theme": "grb", + "import": 84, + "locale": "nl", + "imagery": "osm", + "conflation": 196 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4270471, + 50.912618550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T18:04:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120677698, + "host": "pietervdvn.github.io", + "theme": "toerisme_vlaanderen", + "answer": 9, + "import": 1, + "locale": "en", + "imagery": "osm", + "link-image": 1, + "import:node/9723403079": "source: https://osm.org/note/3161416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5747986, + 51.1809193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T17:25:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.6464228000232e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120676556, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.218498499999999, + 48.6850971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8852917075", + "osm_id": 8852917075, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T17:19:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 2.67845400007755e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120676429, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "locale": "ca", + "imagery": "HDM_HOT", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24296945, + 41.4676865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T17:14:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 4.04547600004986e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120676244, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8322287, + 45.7595033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T16:49:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120675455, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9877866, + 51.001608 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T16:36:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120675053, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8573921, + 43.3704372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:32:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 668, + "modify": 1134, + "delete": 24, + "area": 0.000541554129899866, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120674927, + "host": "pietervdvn.github.io", + "move": 1010, + "theme": "grb", + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 276 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44355635, + 50.9249349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.000249627282299974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120674531, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 47, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8692546, + 49.81258905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T16:12:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120674222, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2182632, + 48.68478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-332106881", + "name": "Aksar Döner", + "osm_id": 332106881, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:08:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 1, + "area": 0.000250924801919958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120674125, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 22, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "soft-delete": 1, + "deletion:node/299464546": "shop_closed", + "soft-delete:node/332106881": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.870444549999998, + 49.8211355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:08:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120674119, + "host": "127.0.0.1:1234", + "theme": "toerisme_vlaanderen", + "answer": 5, + "import": 1, + "locale": "en", + "imagery": "osm", + "import:node/9722978227": "source: https://osm.org/note/3161472" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.130606, + 50.9494475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Strubbl", + "uid": "536583", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:08:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120674112, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6174714, + 48.1022486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T15:44:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120673388, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8714298, + 49.8134198 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T15:35:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120673123, + "host": "127.0.0.1:1234", + "theme": "bicycle_rental", + "answer": 5, + "import": 1, + "locale": "en", + "imagery": "osm", + "import:node/9722758036": "source: https://osm.org/note/3161450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6549322, + 51.0474268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:20:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000144918199530022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120672492, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 21, + "move:node/9722709204": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98081905, + 50.991325950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:18:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.26040199997449e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120672396, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9783916999999995, + 50.980723350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:16:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120672325, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9794125, + 50.9808605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T15:14:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.0664000001883e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120672270, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "move:node/7556696949": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8714432, + 49.8134041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T14:51:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120671491, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9722635408": "source: https://osm.org/note/3161433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1337294, + 51.3118862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T12:57:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120667519, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2344225, + 50.7377153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T11:34:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000407036256000042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120664615, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 2, + "change_within_50m": 1, + "import:node/9722396748": "source: https://osm.org/note/3044563", + "import:node/9722435310": "source: https://osm.org/note/3044366", + "import:node/9722441185": "source: https://osm.org/note/3044384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2991164, + 51.080146799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T10:01:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000306772371000617, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120660825, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.04843765, + 48.54113985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T09:48:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120660359, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.256017, + 50.7163962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T09:46:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.62482800002256e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120660298, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34810255, + 51.358226099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ssarzen", + "uid": "10198216", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T09:09:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120658982, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.1473677, + -33.8140484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T06:48:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 153, + "modify": 97, + "delete": 0, + "area": 0.00000573812831997965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120655486, + "host": "mapcomplete.osm.be", + "move": 93, + "theme": "grb", + "answer": 1, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 8, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48143, + 50.97263065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T06:45:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.86867799993857e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120655411, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23266135, + -39.844757200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Legitimater", + "uid": "15335201", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T05:37:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00000162720795001226, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120654285, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 4, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.01778254999999, + 14.74115875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T05:17:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 191, + "modify": 209, + "delete": 6, + "area": 0.000400738860839893, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120653983, + "host": "mapcomplete.osm.be", + "move": 188, + "theme": "grb", + "answer": 6, + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46286115, + 50.9447607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T21:08:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120647295, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9721518740": "source: https://osm.org/note/3156418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4119851, + 50.7474743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T21:04:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000702856571800319, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120647202, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.204759849999999, + 56.159638400000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T21:00:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.000167706917839979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120647108, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 3, + "deletion:node/817854687": "disused", + "deletion:node/1241055925": "shop_closed", + "deletion:node/1241055928": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.207735, + 56.1610209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T20:58:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000920581972199381, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120647063, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.04987515, + 48.5147262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T20:12:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.34424700001692e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120645792, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93517165, + 51.32530095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T19:41:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120644874, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "ign-orthophotos-mosaic" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.8857903, + -27.4348316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Carlos Brys", + "uid": "189520", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T19:36:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00985509691470032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120644701, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 8, + "locale": "es", + "imagery": "HDM_HOT", + "change_over_5000m": 6, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.9153948, + -27.42115715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T19:24:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120644359, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3448063, + 50.8241078 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T19:00:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120643628, + "host": "pietervdvn.github.io", + "theme": "buurtnatuur", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7026393, + 51.0488104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T19:00:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120643618, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2931376, + 50.7041174 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andersdc23", + "uid": "15865930", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T18:36:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120642884, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.897134, + 56.9513084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mrey", + "uid": "6089796", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T18:04:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120641863, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0903469, + 49.4374832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T17:04:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120639716, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70252, + 51.0482564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "node-9721059917", + "osm_id": 9721059917, + "reasons": [ + 57 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T16:41:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120638753, + "host": "pietervdvn.github.io", + "theme": "buurtnatuur", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7026393, + 51.0488104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T16:05:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 7.78909999969379e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120637448, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 8, + "move:node/9720945660": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4777631499999995, + 50.96485534999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T15:49:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.86499999979218e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120636854, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 9, + "move:node/8146611471": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.339177149999999, + 50.8290164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T15:21:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0.0000948552995799844, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120635686, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16034135, + 50.616623000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9720793314", + "osm_id": 9720793314, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T14:50:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120634455, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3223806, + 50.8398741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T14:33:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00737568327391983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120633771, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "import:node/9720761314": "source: https://osm.org/note/3156275", + "import:node/9720784414": "source: https://osm.org/note/3156460", + "import:node/9720784415": "source: https://osm.org/note/3156278", + "import:node/9720839567": "source: https://osm.org/note/3156302", + "import:node/9720841418": "source: https://osm.org/note/3156310", + "import:node/9720878250": "source: https://osm.org/note/3156408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35669605, + 50.8552284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:19:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120633327, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "de", + "imagery": "Mapbox", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9964643, + 48.5012345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:07:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000107053682400012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120632983, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 2, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9938419, + 48.50030445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:06:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000129983484999754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120632938, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_50m": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99194715, + 48.498835549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:05:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120632872, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9914223, + 48.4988938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T13:58:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120632689, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3827569, + 50.9454827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T13:51:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 69, + "delete": 0, + "area": 0.0000889816524000396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120632442, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 69, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2288569, + 48.678819950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T13:06:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.06034400007858e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120630861, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_within_25m": 3, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.990754500000001, + 48.4983776 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T13:03:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 290, + "modify": 1146, + "delete": 13, + "area": 0.000157554114799965, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120630718, + "host": "pietervdvn.github.io", + "move": 1000, + "theme": "grb", + "import": 52, + "locale": "nl", + "imagery": "osm", + "conflation": 330 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4508876, + 50.928127200000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T13:03:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000983197563598718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120630711, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.02198325, + 48.499836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lichtervelde", + "uid": "15862569", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T12:58:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 7.580159999938e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120630482, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.137457, + 51.0222417 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T12:33:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120629569, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4807557, + 50.9725908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T12:28:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120629362, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4811205, + 50.9722244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T11:47:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 18, + "delete": 0, + "area": 0.000023720979629994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120627571, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 35, + "locale": "nl", + "imagery": "AGIV", + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 35, + "change_within_50m": 7, + "move:node/9720472771": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47928715, + 50.96874205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T10:36:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 96, + "modify": 287, + "delete": 8, + "area": 0.0000216585826800087, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120624070, + "host": "pietervdvn.github.io", + "move": 251, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 76 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4460511, + 50.92176635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wille", + "uid": "360183", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T10:24:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.07474999998378e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120623643, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.461592800000005, + -12.99047365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Carlos Brys", + "uid": "189520", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T09:41:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120621898, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "es", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.8919391, + -27.3746668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T09:31:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.00000171374827999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120621508, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 13, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34704455, + 51.358502099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T09:26:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000148910400000242, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120621316, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2, + "import:node/9720062362": "source: https://osm.org/note/3143433", + "import:node/9720109934": "source: https://osm.org/note/3044210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0261276, + 51.044581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T09:11:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120620789, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4850681, + 51.288569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GISDeerlijk", + "uid": "12302378", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T08:52:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.00000355852227000799, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120620079, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "benches", + "answer": 14, + "locale": "en", + "imagery": "AGIV", + "move:node/9720013463": "improve_accuracy", + "move:node/9720030838": "improve_accuracy", + "move:node/9720042057": "improve_accuracy", + "move:node/9720066282": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3469668500000003, + 50.84798025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:35:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120619387, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4220802, + 50.7905194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:31:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0000822348110499994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120619267, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4213565500000005, + 50.79262385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Vlaanderen - Pin je punt", + "uid": "15015689", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:12:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120618567, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9719954423": "source: https://osm.org/note/3022998" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4862145, + 51.2876144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:06:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 1, + "area": 2.56367999960778e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120618351, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 1, + "change_within_25m": 7, + "deletion:node/7091762084": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3508586, + 51.3584407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:03:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.46689400000352e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120618231, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3508467, + 51.35862055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T07:02:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120616111, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4474947, + 52.4726501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T06:47:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120615594, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2323875, + -39.8446045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T01:16:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120609426, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "Mapbox", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2329395, + -39.8446682 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T01:02:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 1.71692170001322e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120609266, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "Mapbox", + "add-image": 6, + "change_over_5000m": 1, + "change_within_500m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23267215, + -39.84472165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T21:52:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120606872, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2431734, + -39.844192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T21:35:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00043480462786007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120606521, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "import:node/9719107136": "source: https://osm.org/note/3156288", + "import:node/9719133684": "source: https://osm.org/note/3156252", + "import:node/9719156752": "source: https://osm.org/note/3156401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2943059, + 51.26909845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T21:20:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.49320000288481e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120606231, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 6, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2327274, + -39.8447274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T20:53:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000131287402350067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120605528, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 42, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29234285, + 48.95541595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "xriss", + "uid": "191264", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T20:20:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 1, + "area": 2.7279373806888, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120604624, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 17, + "locale": "de", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "move:node/8726017928": "improve_accuracy", + "deletion:node/8516353946": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.496981250000001, + 51.6728788 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T19:16:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.37091149999167e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120602770, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 5, + "locale": "es", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24311995, + -39.84430115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T19:02:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.0000106513065599973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120602328, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9914161, + 51.7761269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T17:23:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-05-06T07:23:05.055668Z", + "id": 120598978, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2552468, + 51.0275679 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T16:51:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.2781259999576e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120598018, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2431956, + -39.84432075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:59:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120595899, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2111014, + 51.2313241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:39:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.75424800002492e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120595079, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2322686000000003, + 51.2185725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:37:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120594996, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 3, + "import": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3, + "import:node/9718431092": "source: https://osm.org/note/3151816" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.232375, + 51.2186546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:34:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120594879, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2695594, + 48.933132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T15:28:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120594599, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.6025908, + -38.7368662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T15:26:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 3.06422999989449e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120594476, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9718388986": "source: https://osm.org/note/3156437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1124209499999997, + 51.146037449999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "landersav", + "uid": "15850223", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T14:36:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120592313, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5974148, + 51.1412343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T14:09:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120591217, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5722989, + 53.0101026 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T14:06:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120591093, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2734067, + 48.9381886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:55:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120590640, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9718193747": "source: https://osm.org/note/3161422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.281699, + 51.03833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T13:52:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120590526, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2729904, + 48.9377849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:46:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 346, + "modify": 17, + "delete": 0, + "area": 0.000128698541400033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120590282, + "host": "pietervdvn.github.io", + "move": 14, + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7420955, + 51.170096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:33:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000988104651600089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120589743, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 5, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18139605, + 50.9274527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:24:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 1, + "area": 0.00032442159585008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120589368, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "deletion": 1, + "deletion:node/1594721367": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1855895499999995, + 50.91516885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MartGr", + "uid": "14891328", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T12:31:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00112198582032022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120587275, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "locale": "en", + "imagery": "SPW_PICC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5599931, + 50.6453701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T12:31:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000884111605000859, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120587272, + "host": "pietervdvn.github.io", + "theme": "postboxes", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51661245, + 52.998995750000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T12:09:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.91109999985924e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120586363, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2551809, + 51.027575150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T11:37:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120584886, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6911995, + 48.3229676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T11:22:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000302962284000081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120584205, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6041598, + 50.8436238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Justine Dam", + "uid": "12308921", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T09:59:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120580400, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.768952, + 49.4469453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T09:10:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1699, + "modify": 901, + "delete": 8, + "area": 0.0000755635918999855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120578005, + "host": "pietervdvn.github.io", + "move": 747, + "theme": "grb", + "answer": 1, + "import": 193, + "locale": "nl", + "imagery": "osm", + "conflation": 306 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73484825, + 51.1681735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T08:20:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000494661419999741, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120575806, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "AGIV", + "move:node/7417535073": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9184589, + 51.1052461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9192874267", + "osm_id": 9192874267, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9192717866", + "osm_id": 9192717866, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T07:26:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.10813099998412e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120573548, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 6, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2377692500000004, + 41.46479825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BarbaraSting97", + "uid": "13789029", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T07:16:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 32, + "delete": 0, + "area": 0.00199636853550003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120573094, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 59, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.625799, + 50.64531065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lololailo", + "uid": "8621270", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:44:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120560570, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "locale": "es", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4151952, + 37.8526553 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9715990648", + "osm_id": 9715990648, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "barrier": "barbed_wire" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000382739491200084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120560434, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/barriers_bridges/barriers_bridges.json", + "answer": 3, + "locale": "en", + "imagery": "AGIV", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42980995, + 51.1678536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:35:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120560382, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.439457, + 51.1649224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:34:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000407858503499912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120560317, + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 10, + "locale": "en", + "imagery": "AGIV", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4368726499999998, + 51.16852245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T20:02:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 16, + "delete": 0, + "area": 3.54497370000419e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120559509, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 26, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.054434350000001, + 48.50035245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T19:56:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120559355, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2328535, + 50.7346111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T19:27:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120558476, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4349729, + 50.8366833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T18:57:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 12, + "delete": 4, + "area": 4.41848399996902e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120557427, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 21, + "locale": "de", + "imagery": "Mapbox", + "deletion": 4, + "change_over_5000m": 4, + "change_within_25m": 13, + "change_within_50m": 12, + "deletion:node/2027958333": "not found", + "deletion:node/2027971406": "not found", + "deletion:node/4514143512": "not found", + "deletion:node/4514143513": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.054293900000001, + 48.50037595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T18:55:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.43079999994662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120557380, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 10, + "locale": "de", + "imagery": "osm", + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0540029, + 48.50054795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T18:51:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 18, + "delete": 0, + "area": 2.86948759999105e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120557265, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 35, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 27, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0540743, + 48.500444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T17:15:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120553977, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47227, + 51.0336225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T15:31:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.81246639997121e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120550119, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "AGIV", + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2323965, + 50.734667599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T15:28:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120549997, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2328535, + 50.7346111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T14:07:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 70, + "modify": 0, + "delete": 0, + "area": 0.00000371630624998514, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120546504, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73066605, + 51.16565975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "llstan", + "uid": "15836405", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T13:11:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000416791769199971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120544176, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81922625, + 50.8517863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T12:55:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000134438176000189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120543550, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5, + "change_over_5000m": 1, + "change_within_25m": 10, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2347173, + 50.7342539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Avotien", + "uid": "7853020", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T12:30:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120542459, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.2603935, + 45.445525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T12:26:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.97150700007708e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120542276, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.63061035, + 39.34488495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Avotien", + "uid": "7853020", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T12:05:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000837621245999581, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120541236, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.2618, + 45.45154115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T11:04:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120538294, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2392962, + 48.6758826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T10:10:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120535775, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8670692, + 45.7847685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:47:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 680, + "modify": 286, + "delete": 0, + "area": 0.0000152586087899946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120534638, + "host": "pietervdvn.github.io", + "move": 238, + "theme": "grb", + "import": 102, + "locale": "nl", + "imagery": "osm", + "conflation": 96 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7300397499999995, + 51.16617555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Simonvhoudt", + "uid": "15823493", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:37:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 11, + "delete": 1, + "area": 0.0000277118879300091, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120534166, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 12, + "move:node/9612554619": "improve_accuracy", + "deletion:node/9713477809": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08302445, + 51.22941395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "syerval", + "uid": "15398849", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:15:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000547829639997716, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120532992, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1296255, + 51.1442019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T09:08:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120532675, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2361198, + 50.7341351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T09:06:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 64, + "delete": 0, + "area": 0.000656137788960126, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120532602, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 77, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 77 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5827148, + 52.997758399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T08:48:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1328, + "modify": 717, + "delete": 0, + "area": 0.0000669648007599041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120531772, + "host": "pietervdvn.github.io", + "move": 601, + "theme": "grb", + "import": 160, + "locale": "nl", + "imagery": "osm", + "conflation": 236 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73641265, + 51.166701599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T07:17:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120527949, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9950765, + 51.1519384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CurlingMan13", + "uid": "6641970", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T07:10:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120527634, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.2891847, + 39.9976617 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T06:54:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120527094, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9713145157": "source: https://osm.org/note/3156276" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9598693, + 51.2474714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Simonvhoudt", + "uid": "15823493", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T06:44:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000027878986800025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120526758, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0838041, + 51.2291027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T23:00:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120518764, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2514172, + -39.8274328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T21:07:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.63727350001768e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120516444, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23910155, + 50.738340050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex030", + "uid": "418040", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #berlin_emergency_water_pumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T19:40:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.08549999998239e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120513831, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "berlin_emergency_water_pumps", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/6341152124": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.575005149999999, + 52.422095150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T18:47:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.000128206562480294, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120512036, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "Mapbox", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2309295, + -39.8289197 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AngocA", + "uid": "89128", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T18:22:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120511193, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.1017807, + 4.6151786 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T18:11:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.55331000009515e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120510783, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "move:node/9711906584": "improve_accuracy", + "import:node/9711906584": "source: https://osm.org/note/3143423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0794999, + 51.13094075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T17:13:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0452191149302189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120508724, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 12, + "locale": "nl", + "imagery": "AGIV", + "import:node/-10": "source: https://osm.org/note/3156537", + "import:node/-11": "source: https://osm.org/note/3156375", + "change_over_5000m": 2, + "import:node/9711809276": "source: https://osm.org/note/3156258", + "import:node/9711903959": "source: https://osm.org/note/3156551", + "import:node/9711903960": "source: https://osm.org/note/3156508", + "import:node/9711903961": "source: https://osm.org/note/3156308", + "import:node/9711927991": "source: https://osm.org/note/3156438", + "import:node/9711993532": "source: https://osm.org/note/3156587", + "import:node/9711993533": "source: https://osm.org/note/3156472", + "import:node/9712020471": "source: https://osm.org/note/3156435", + "import:node/9712059289": "source: https://osm.org/note/3156495", + "import:node/9712076568": "source: https://osm.org/note/3156481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9732614, + 51.16857415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T14:20:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120502162, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2082483, + 51.1867515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T14:02:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 207, + "modify": 108, + "delete": 0, + "area": 0.00000651859802999925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120501481, + "host": "pietervdvn.github.io", + "move": 86, + "theme": "grb", + "answer": 1, + "import": 21, + "locale": "nl", + "imagery": "osm", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.742374249999999, + 51.16679795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T13:34:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00203503965483004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120500559, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 61, + "locale": "de", + "imagery": "osm", + "move:node/4623986807": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20849835, + 48.66325185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T13:18:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 470, + "modify": 267, + "delete": 1, + "area": 0.0000126503769599904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120499964, + "host": "pietervdvn.github.io", + "move": 221, + "theme": "grb", + "import": 65, + "locale": "nl", + "imagery": "osm", + "conflation": 94 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7414977, + 51.167772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T13:16:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 51, + "modify": 32, + "delete": 3, + "area": 0.0000013025983500051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120499907, + "host": "pietervdvn.github.io", + "move": 28, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7421374499999995, + 51.168935149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T12:43:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.31999999666021e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120498599, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.61576360000001, + 39.324868300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T12:26:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.65443999999306e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120497985, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 4, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7781972, + 39.648841649999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T12:05:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000924828494100065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120497207, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.52195835, + 48.066671850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T10:36:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 133, + "modify": 87, + "delete": 0, + "area": 0.00000575783644999722, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120494500, + "host": "pietervdvn.github.io", + "move": 70, + "theme": "grb", + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.741917150000001, + 51.16855475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T10:36:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 36, + "modify": 33, + "delete": 0, + "area": 0.0000016663486500061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120494468, + "host": "pietervdvn.github.io", + "move": 28, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74267975, + 51.168713749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T10:27:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.89318279997086e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120494167, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.180125799999999, + 48.6470417 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T09:54:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 813, + "modify": 359, + "delete": 0, + "area": 0.0000124290952200077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120493185, + "host": "pietervdvn.github.io", + "move": 292, + "theme": "grb", + "import": 101, + "locale": "nl", + "imagery": "osm", + "conflation": 134 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74199585, + 51.1687073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T09:53:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 0, + "delete": 0, + "area": 1.40590000000727e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120493171, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7392759, + 51.16897485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tsv38170", + "uid": "13047590", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:52:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00117496924581966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120491373, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.594477550000001, + 45.182969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:22:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1395, + "modify": 326, + "delete": 0, + "area": 0.0000282984524999687, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120490512, + "host": "pietervdvn.github.io", + "move": 266, + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "osm", + "conflation": 120 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.740114849999999, + 51.170308399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nathaliesmolders", + "uid": "15820052", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:14:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000739136660319844, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120490316, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0313974, + 51.0944214 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:10:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 292, + "modify": 233, + "delete": 0, + "area": 0.00000914883199998555, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120490223, + "host": "pietervdvn.github.io", + "move": 194, + "theme": "grb", + "import": 36, + "locale": "nl", + "imagery": "osm", + "conflation": 82 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7411403, + 51.171407099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:00:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 268, + "modify": 125, + "delete": 2, + "area": 0.0000120180168900087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120489955, + "host": "pietervdvn.github.io", + "move": 96, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 44 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73953365, + 51.17233095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T07:57:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.14378717196504, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120489853, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 12, + "locale": "nl", + "imagery": "AGIV10cm", + "import:node/9710745614": "source: https://osm.org/note/3156554", + "import:node/9710798957": "source: https://osm.org/note/3156318", + "import:node/9710801395": "source: https://osm.org/note/3156478", + "import:node/9710840585": "source: https://osm.org/note/3156430", + "import:node/9710852265": "source: https://osm.org/note/3156329", + "import:node/9710864939": "source: https://osm.org/note/3156333", + "import:node/9710874299": "source: https://osm.org/note/3156300", + "import:node/9710877722": "source: https://osm.org/note/3156427", + "import:node/9710882904": "source: https://osm.org/note/3156573", + "import:node/9710916162": "source: https://osm.org/note/3156518", + "import:node/9710945340": "source: https://osm.org/note/3099177", + "import:node/9710961828": "source: https://osm.org/note/3156571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1326910000000003, + 51.1272219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T07:25:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120488931, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5107035, + 44.8455246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "peeweeke", + "uid": "494726", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T06:58:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120488156, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130707, + 51.2349833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "peeweeke", + "uid": "494726", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T06:53:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 124, + "delete": 0, + "area": 0.000612569859720005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120488035, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 2, + "change_within_100m": 2, + "change_within_500m": 28, + "change_within_1000m": 28, + "change_within_5000m": 94 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2037096, + 51.23116645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:55:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000356994791900132, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120478509, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32780475, + 50.783051549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:52:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120478392, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3298297, + 50.7875223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobim91", + "uid": "3233303", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:51:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000898007124401094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120478345, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54778325, + 48.0622331 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:44:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000410707731099845, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120478059, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.327829749999999, + 50.78325155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:40:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 4.02976560000636e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120477903, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.329639, + 50.78690055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T20:38:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 68, + "modify": 61, + "delete": 0, + "area": 0.000104137881119988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120477868, + "host": "mapcomplete.osm.be", + "move": 50, + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02010185, + 51.105676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:35:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 3.41401499996491e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120477782, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.030863549999999, + 51.102868650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-135989691", + "name": "Pastorie", + "osm_id": 135989691, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "building": "presbytery" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T20:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 146, + "delete": 1, + "area": 0.000403813764899934, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120477639, + "host": "mapcomplete.osm.be", + "move": 130, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0222912, + 51.09213425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:23:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120477439, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.8474551, + 44.0417584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-70182559", + "name": "Groupe Scolaire Pasteur", + "osm_id": 70182559, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "landuse": "education" + } + } + ], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:20:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 115, + "delete": 0, + "area": 0.00162230734565981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120477312, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 154, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2677047999999997, + 48.95990945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rubecula", + "uid": "9278757", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:10:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0010974680557602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120476975, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 11, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0239299, + 50.954777899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T19:48:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05900000002773e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120476241, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 1, + "locale": "es", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2157178, + 48.67301195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T19:37:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120475916, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.238405, + 50.739197 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T19:34:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000693924909001261, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120475791, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23950855, + 50.737607249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T19:30:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120475680, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2396372, + 50.7347273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T18:49:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120474378, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0403236, + 51.1091326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T18:48:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120474342, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5122688, + 51.3115194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T18:25:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 2, + "area": 0.00168769409456003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120473564, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "change_over_5000m": 4, + "deletion:node/9709108800": "duplicate", + "deletion:node/9709265935": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2082782000000005, + 51.0934902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T18:02:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120472653, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2171282, + 51.1939797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T17:34:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120471685, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2291806, + 50.7466404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T17:14:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000763167550000058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120471039, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2358971, + 50.73423745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T16:55:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120470296, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.223733, + 48.6768307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T16:19:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120468833, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2175514, + 48.6765426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T16:07:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.77813269999755e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120468255, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21706985, + 48.67623845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T15:58:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000606261428000017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120467836, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2201188, + 48.67460965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9709464531", + "name": "Veronique’s Gourmet Huisje", + "osm_id": 9709464531, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "shop": "Gourmet store" + } + } + ], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T15:46:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120467216, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23891, + 50.7334017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T15:38:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120466835, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.239778, + 50.7367458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T15:36:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.76437800005392e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120466733, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "es", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2158274, + 48.67290655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T14:15:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120463498, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2168093, + 48.6724061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T14:13:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000130140101699858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120463444, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23701375, + 50.73568285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T13:39:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.02917859999945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120462015, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2240319, + 48.67380265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "croustille", + "uid": "15455805", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T13:00:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120460538, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3260735, + 43.361255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:48:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120460119, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8524032, + 43.3686043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "syerval", + "uid": "15398849", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T12:40:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120459805, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2098638, + 51.158909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:35:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.000102200061119942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120459600, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 113, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 114 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2213685, + 48.672954000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:27:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.00213473277259992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120459240, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 23, + "import": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 6, + "change_within_25m": 25, + "change_within_50m": 1, + "change_within_100m": 2, + "move:node/9709265935": "improve_accuracy", + "import:node/9709101155": "source: https://osm.org/note/3143418", + "import:node/9709108800": "source: https://osm.org/note/3143418", + "import:node/9709265935": "source: https://osm.org/note/3161446" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20521655, + 51.093226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:21:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.44304999986603e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120459030, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 4, + "locale": "es", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22656275, + 48.67754425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:18:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.8420843999982e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120458904, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2274618, + 48.67692975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T12:15:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 1, + "delete": 0, + "area": 0.00111410934269971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120458772, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7129098, + 51.30320615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T12:13:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120458698, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7403907, + 51.3047643 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:04:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.000144336460520016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120458298, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 30, + "locale": "de", + "imagery": "osm", + "add-image": 10, + "change_within_25m": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2216184, + 48.6752034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T11:35:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.15341999977948e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120457061, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21708165, + 48.6768404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T11:23:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 3, + "delete": 1, + "area": 0.00034606176263994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120456588, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9709091288": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74076445, + 51.302996699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:57:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000749534606999673, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120455542, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 21, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1834717, + 48.69260545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:39:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00290938692017028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120454894, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 10, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18191815, + 48.64537705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:28:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.59676999994229e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120454548, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.049759899999999996, + 38.60374885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pieter T", + "uid": "15807133", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T10:21:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120454260, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3631942, + 50.7547658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:00:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00108473877595995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120453428, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 27, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2163544, + 48.679803050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:42:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 40, + "delete": 0, + "area": 0.0130684544764803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120445862, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 56, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.242817800000001, + 48.6600759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:38:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120445717, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2390228, + 50.7348475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:35:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000111429459600164, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120445606, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22635785, + 48.6814035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:17:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000112500481799392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120445045, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 11, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.223105700000001, + 48.67722405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:14:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120444933, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2212877, + 48.6789038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T05:52:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000804995231400106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120444206, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 19, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2222148, + 48.68220635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T05:43:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120443946, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6200804, + 47.3111615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "troNpo", + "uid": "12221867", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T05:42:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120443909, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.858835, + 37.1915893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T05:39:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000753969813900306, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120443807, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21801565, + 48.680127549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gloda", + "uid": "646144", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T05:35:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120443700, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0577061, + 49.6103535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T04:48:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120442602, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2185703, + 48.6794693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T04:41:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.91034640000246e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120442418, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "de", + "imagery": "HDM_HOT", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22042515, + 48.6791978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:54:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00012338138614993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120441621, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.32097705, + 38.89111565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:43:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.00125392545938968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120441439, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 42, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31542735, + 38.87814615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:41:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120441410, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.320608, + 38.9038277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joel56dt", + "uid": "3794090", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:14:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120441063, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -123.01851615000001, + 49.2362183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:29:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00000206928540000474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120438348, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 4, + "locale": "es", + "imagery": "osm", + "add-image": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66630705, + -33.4405784 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:23:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120438248, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2306751, + 50.7311554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:05:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120437961, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2434343, + -39.8443795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:01:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120437894, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2363391, + 50.7359919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T22:57:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.1603949999806e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120437837, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2374107500000004, + 50.73640565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fdemmer", + "uid": "58402", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T22:49:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120437719, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.2464055, + 48.1720387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T22:38:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000939062568500273, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120437536, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 8, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 2, + "change_within_500m": 2, + "change_within_1000m": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10629115, + 38.84029975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T22:01:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.45699999631881e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120436845, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66533845000001, + -33.4406442 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:53:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 29, + "delete": 0, + "area": 0.0153537627313296, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120436686, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 101, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54831295, + 51.25618395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T21:51:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000813326914200169, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120436644, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 4, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.219906349999999, + 48.6804882 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:32:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000159334236479944, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120436249, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23633185, + 50.7389479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:31:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.0831970049337913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120436236, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 15, + "locale": "nl", + "imagery": "AGIV", + "import:node/-11": "source: https://osm.org/note/3156284", + "import:node/-13": "source: https://osm.org/note/3156315", + "import:node/-14": "source: https://osm.org/note/3156490", + "import:node/-19": "source: https://osm.org/note/3156293", + "import:node/-20": "source: https://osm.org/note/3156286", + "import:node/9707990388": "source: https://osm.org/note/3156422", + "import:node/9707990622": "source: https://osm.org/note/3156323", + "import:node/9707990624": "source: https://osm.org/note/3156540", + "import:node/9707991563": "source: https://osm.org/note/3156272", + "import:node/9707992409": "source: https://osm.org/note/3156565", + "import:node/9708004477": "source: https://osm.org/note/3156577", + "import:node/9708028315": "source: https://osm.org/note/3156372", + "import:node/9708037355": "source: https://osm.org/note/3156566", + "import:node/9708038737": "source: https://osm.org/note/3156419", + "import:node/9708062212": "source: https://osm.org/note/3156440" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0022280500000003, + 50.876619149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T21:15:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 999, + "modify": 41, + "delete": 0, + "area": 0.000025589330900006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120435857, + "host": "mapcomplete.osm.be", + "move": 40, + "theme": "grb", + "answer": 3, + "import": 128, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90815425, + 50.9418281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:09:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120435697, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2360756, + 50.7420359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:04:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120435581, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2360543, + 50.7420493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T20:29:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120434675, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2390228, + 50.7348475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T20:27:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000448379874998746, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120434623, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24195265, + -39.84486185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T18:32:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120431749, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9707636079": "source: https://osm.org/note/3091110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7013349, + 50.8236765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T18:20:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120431345, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6452299, + 47.3085121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:59:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120430720, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4270633, + 51.2075569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "G4rden3r", + "uid": "12091530", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:32:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000324866688400152, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120429835, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.031946600000001, + 53.6019129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:27:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120429660, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2385025, + 48.6809452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T17:25:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.89059839993071e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120429589, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "Mapbox", + "add-image": 9, + "change_within_50m": 2, + "change_within_100m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2408096, + -39.8445741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:21:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.13406049997759e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120429453, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24659905, + 50.738425649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "troNpo", + "uid": "12221867", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:03:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120428848, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.858835, + 37.1915893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T16:31:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120427592, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2357063, + 48.6728272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T15:48:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120425940, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5707875, + 53.0199278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-135256863", + "osm_id": 135256863, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T15:40:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.48656000011709e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120425621, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/135256863": "Jetzt Baustelle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2383308, + 48.6736304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T15:38:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120425539, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2091881, + 51.1878525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T14:59:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.73845000036561e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120424028, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 5, + "locale": "de", + "imagery": "osm", + "move:node/4904755373": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.238646549999999, + 48.67391415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T14:15:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120422433, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/9707232815": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4442755, + 50.8560931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T14:12:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000290545009999822, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120422325, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.239237750000001, + 48.675043599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T14:02:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.39066999980561e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120421867, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2395094, + 48.67584685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:51:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.00000471856258999049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120421449, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "benches", + "answer": 59, + "locale": "de", + "imagery": "osm", + "move:node/8025925983": "improve_accuracy", + "move:node/8025926154": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.23868525, + 48.67492665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T13:35:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000131059554999951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120420872, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 15, + "change_within_50m": 1, + "move:node/9677061317": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.021496150000001, + 51.1021725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:31:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.29569930002891e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120420748, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.23825815, + 48.67765005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:29:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120420672, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.238722, + 48.6775696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:14:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120420090, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2419503, + 48.6810474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T13:04:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120419624, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2452814, + 50.7431813 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T12:57:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000232765179120025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120419354, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_50m": 9, + "import:node/9706977587": "source: https://osm.org/note/3090274" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5749261, + 50.8744419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:56:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120419300, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2422658, + 48.6809251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:53:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120419175, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2385625, + 48.6810127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:47:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.2455982000056e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120418946, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24216975, + 48.6814708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:40:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.00089993708365004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120418641, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 129, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26422145, + 48.98290645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:31:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.54827599999892e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120418326, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.239625499999999, + 48.6811148 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:27:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120418178, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9706914055": "source: https://osm.org/note/3099195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0834258, + 51.043625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T12:19:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000732283062000289, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120417910, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09631945, + 50.9449639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T12:19:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00909207942799001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120417902, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53276825, + 51.290344950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T11:46:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0419629216031997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120416758, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "import:node/9706889984": "source: https://osm.org/note/3156502", + "import:node/9706920630": "source: https://osm.org/note/3156340" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1914666, + 50.8186798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T11:46:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 837, + "modify": 93, + "delete": 4, + "area": 0.0000337625908500299, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120416741, + "host": "mapcomplete.osm.be", + "move": 80, + "theme": "grb", + "import": 87, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9012268500000005, + 50.941674649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T11:17:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.0592000015555e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120415669, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "move:node/9706809949": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9433381, + 50.7558612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T10:23:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120413938, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2122983, + 48.6828035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H@mlet", + "uid": "691314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T10:23:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000185794599339991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120413920, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.4546402, + 47.67033105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T09:04:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 71, + "delete": 0, + "area": 0.0230219748956999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120411586, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 99, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8617385000000004, + 50.99770325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T08:57:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 940, + "modify": 208, + "delete": 0, + "area": 0.0000289759343499727, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120411425, + "host": "pietervdvn.github.io", + "move": 170, + "theme": "grb", + "import": 107, + "locale": "nl", + "imagery": "osm", + "conflation": 76 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73809695, + 51.174607550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T08:39:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000198744062909984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120410928, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 27, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22602315, + 48.679804250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T08:16:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000844818400269976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120410291, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.416755950000001, + 50.81949645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T08:04:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 794, + "modify": 308, + "delete": 0, + "area": 0.0000196408051900234, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120409983, + "host": "pietervdvn.github.io", + "move": 253, + "theme": "grb", + "answer": 1, + "import": 90, + "locale": "nl", + "imagery": "osm", + "conflation": 108 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.739039849999999, + 51.17633225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T07:49:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 6.3176399996992e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120409507, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9706561948": "source: https://osm.org/note/3156264" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0129073, + 50.9765515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T07:09:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000309076683099827, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120408533, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23822215, + 50.73244575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T06:47:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120408040, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2055036, + 48.6563703 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T05:54:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 747, + "modify": 501, + "delete": 3, + "area": 0.0000844484948999354, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120406971, + "host": "mapcomplete.osm.be", + "move": 417, + "theme": "grb", + "answer": 24, + "import": 96, + "locale": "nl", + "imagery": "AGIV", + "conflation": 142 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1974196500000005, + 50.865459200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T03:02:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120404611, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4171031, + 50.7981103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T02:57:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.39670000264506e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120404558, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_1000m": 6, + "move:node/3308451568": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41680865, + 50.79822725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T02:26:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120404239, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6659081, + -33.4407675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T01:36:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 120403766, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5205387, + 51.2270719 + ] + } } ] } \ No newline at end of file diff --git a/Docs/Tools/graphs/Actual changes in 2022.png b/Docs/Tools/graphs/Actual changes in 2022.png index 3924438e4d..fd084a87aa 100644 Binary files a/Docs/Tools/graphs/Actual changes in 2022.png and b/Docs/Tools/graphs/Actual changes in 2022.png differ diff --git a/Docs/Tools/graphs/Actual changes met pin je punt.png b/Docs/Tools/graphs/Actual changes met pin je punt.png index 480e028466..bbb4b900ad 100644 Binary files a/Docs/Tools/graphs/Actual changes met pin je punt.png and b/Docs/Tools/graphs/Actual changes met pin je punt.png differ diff --git a/Docs/Tools/graphs/Actual changes with the GRB import tool.png b/Docs/Tools/graphs/Actual changes with the GRB import tool.png index c592aec1bf..171bfb1716 100644 Binary files a/Docs/Tools/graphs/Actual changes with the GRB import tool.png and b/Docs/Tools/graphs/Actual changes with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Actual changes.png b/Docs/Tools/graphs/Actual changes.png index 87c3262327..7f3ce92036 100644 Binary files a/Docs/Tools/graphs/Actual changes.png and b/Docs/Tools/graphs/Actual changes.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2022.png b/Docs/Tools/graphs/Changesets per day (line) in 2022.png index 9125c15607..c148fa723e 100644 Binary files a/Docs/Tools/graphs/Changesets per day (line) in 2022.png and b/Docs/Tools/graphs/Changesets per day (line) in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png b/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png index 953e41edaf..574b389f0b 100644 Binary files a/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png and b/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png b/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png index 4ad4145396..e1d551b94b 100644 Binary files a/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line).png b/Docs/Tools/graphs/Changesets per day (line).png index f51947ff91..d86c03461e 100644 Binary files a/Docs/Tools/graphs/Changesets per day (line).png and b/Docs/Tools/graphs/Changesets per day (line).png differ diff --git a/Docs/Tools/graphs/Changesets per host in 2022.png b/Docs/Tools/graphs/Changesets per host in 2022.png index 49403851f8..2eaa1d11f7 100644 Binary files a/Docs/Tools/graphs/Changesets per host in 2022.png and b/Docs/Tools/graphs/Changesets per host in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per host met pin je punt.png b/Docs/Tools/graphs/Changesets per host met pin je punt.png index 19ee1735e6..eae3febbfb 100644 Binary files a/Docs/Tools/graphs/Changesets per host met pin je punt.png and b/Docs/Tools/graphs/Changesets per host met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per host with the GRB import tool.png b/Docs/Tools/graphs/Changesets per host with the GRB import tool.png index 4639c6ee10..a0608815c3 100644 Binary files a/Docs/Tools/graphs/Changesets per host with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per host with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per host.png b/Docs/Tools/graphs/Changesets per host.png index 83d8f2375d..c0ea9dbaca 100644 Binary files a/Docs/Tools/graphs/Changesets per host.png and b/Docs/Tools/graphs/Changesets per host.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number in 2022.png b/Docs/Tools/graphs/Changesets per minor version number in 2022.png index 6dd1f1d861..72e4a016c2 100644 Binary files a/Docs/Tools/graphs/Changesets per minor version number in 2022.png and b/Docs/Tools/graphs/Changesets per minor version number in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png b/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png index 6cca557a40..63c03b2ad1 100644 Binary files a/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png and b/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png b/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png index 190a87bcb4..5c4a87962f 100644 Binary files a/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number.png b/Docs/Tools/graphs/Changesets per minor version number.png index 80c8cfe934..3cbd2d3b52 100644 Binary files a/Docs/Tools/graphs/Changesets per minor version number.png and b/Docs/Tools/graphs/Changesets per minor version number.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png b/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png index 316bedca67..bd4f32b6ce 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png and b/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png b/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png index 3e488f6ec8..e2374cc994 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png and b/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png b/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png index a9e64298b8..c7a886fcf3 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar).png b/Docs/Tools/graphs/Changesets per theme (bar).png index 0cac2222ef..d72a3c2cf0 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar).png and b/Docs/Tools/graphs/Changesets per theme (bar).png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png b/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png index c9c4a6901a..71a36a024f 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png and b/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png b/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png index 03ba61a177..8247d9973c 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png and b/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png b/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png index 688cf47924..6a00227d28 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie).png b/Docs/Tools/graphs/Changesets per theme (pie).png index 35ed1c11fa..0a570e7fcc 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie).png and b/Docs/Tools/graphs/Changesets per theme (pie).png differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2022.png b/Docs/Tools/graphs/Changesets per theme in 2022.png index 89e6c3a702..e0de0dee11 100644 Binary files a/Docs/Tools/graphs/Changesets per theme in 2022.png and b/Docs/Tools/graphs/Changesets per theme in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per theme met pin je punt.png b/Docs/Tools/graphs/Changesets per theme met pin je punt.png index ec0e26e26c..cfdcb4d0ce 100644 Binary files a/Docs/Tools/graphs/Changesets per theme met pin je punt.png and b/Docs/Tools/graphs/Changesets per theme met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png b/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png index bdac231945..dbed3064a2 100644 Binary files a/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per theme.png b/Docs/Tools/graphs/Changesets per theme.png index 0ba4a14dd4..1287236e02 100644 Binary files a/Docs/Tools/graphs/Changesets per theme.png and b/Docs/Tools/graphs/Changesets per theme.png differ diff --git a/Docs/Tools/graphs/Changesets per version number in 2022.png b/Docs/Tools/graphs/Changesets per version number in 2022.png index 8bc9fa8eaa..b51175b0b4 100644 Binary files a/Docs/Tools/graphs/Changesets per version number in 2022.png and b/Docs/Tools/graphs/Changesets per version number in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per version number met pin je punt.png b/Docs/Tools/graphs/Changesets per version number met pin je punt.png index b7cd30efae..f081df83ab 100644 Binary files a/Docs/Tools/graphs/Changesets per version number met pin je punt.png and b/Docs/Tools/graphs/Changesets per version number met pin je punt.png differ diff --git a/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png b/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png index 191d1972b0..64c27e7b8a 100644 Binary files a/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png and b/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Changesets per version number.png b/Docs/Tools/graphs/Changesets per version number.png index e18286f72d..7b51501154 100644 Binary files a/Docs/Tools/graphs/Changesets per version number.png and b/Docs/Tools/graphs/Changesets per version number.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count in 2022.png b/Docs/Tools/graphs/Contributors per changeset count in 2022.png index 46f2ef7f3e..d91cd2174d 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2022.png and b/Docs/Tools/graphs/Contributors per changeset count in 2022.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png b/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png index 98be786d7f..15f4e8f5d2 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png and b/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png b/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png index 3aa733abf2..e6af9e97d9 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png and b/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count.png b/Docs/Tools/graphs/Contributors per changeset count.png index e5bd04e42a..ac908305ba 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count.png and b/Docs/Tools/graphs/Contributors per changeset count.png differ diff --git a/Docs/Tools/graphs/Contributors per day in 2022.png b/Docs/Tools/graphs/Contributors per day in 2022.png index aea5a037cf..dbbfa65e38 100644 Binary files a/Docs/Tools/graphs/Contributors per day in 2022.png and b/Docs/Tools/graphs/Contributors per day in 2022.png differ diff --git a/Docs/Tools/graphs/Contributors per day met pin je punt.png b/Docs/Tools/graphs/Contributors per day met pin je punt.png index ab021bc49c..8f23791503 100644 Binary files a/Docs/Tools/graphs/Contributors per day met pin je punt.png and b/Docs/Tools/graphs/Contributors per day met pin je punt.png differ diff --git a/Docs/Tools/graphs/Contributors per day with the GRB import tool.png b/Docs/Tools/graphs/Contributors per day with the GRB import tool.png index 59f3291fea..c6060d4b45 100644 Binary files a/Docs/Tools/graphs/Contributors per day with the GRB import tool.png and b/Docs/Tools/graphs/Contributors per day with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Contributors per day.png b/Docs/Tools/graphs/Contributors per day.png index cc4d168e91..224d3a1cd1 100644 Binary files a/Docs/Tools/graphs/Contributors per day.png and b/Docs/Tools/graphs/Contributors per day.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png b/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png index 4e3055a9c1..1d19e28e40 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png and b/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png b/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png index 0e5d96b882..8bd8fc4bb5 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png and b/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png b/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png index cbfb8700a6..bd7c4d0d15 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png and b/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme.png b/Docs/Tools/graphs/Deletion-changesets per theme.png index 35b284f98a..2a2a8ad3ac 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme.png and b/Docs/Tools/graphs/Deletion-changesets per theme.png differ diff --git a/Docs/Tools/graphs/Empty changesets by date.png b/Docs/Tools/graphs/Empty changesets by date.png index 09d3ea8cb2..40c88e480d 100644 Binary files a/Docs/Tools/graphs/Empty changesets by date.png and b/Docs/Tools/graphs/Empty changesets by date.png differ diff --git a/Docs/Tools/stats/file-overview.json b/Docs/Tools/stats/file-overview.json new file mode 100644 index 0000000000..3fde2672ab --- /dev/null +++ b/Docs/Tools/stats/file-overview.json @@ -0,0 +1 @@ +["stats.2020-10.json","stats.2020-11.json","stats.2020-12.json","stats.2020-5.json","stats.2020-6.json","stats.2020-7.json","stats.2020-8.json","stats.2020-9.json","stats.2021-1.json","stats.2021-10.json","stats.2021-11.json","stats.2021-12.json","stats.2021-2.json","stats.2021-3.json","stats.2021-4.json","stats.2021-5.json","stats.2021-6.json","stats.2021-7.json","stats.2021-8.json","stats.2021-9.json","stats.2022-1.json","stats.2022-2.json","stats.2022-3.json","stats.2022-4.json","stats.2022-5-01.json","stats.2022-5-02.json","stats.2022-5-03.json","stats.2022-5-04.json","stats.2022-5-05.json","stats.2022-5-06.json","stats.2022-5-07.json","stats.2022-5-08.json","stats.2022-5-09.json","stats.2022-5-10.json","stats.2022-5-11.json","stats.2022-5-12.json","stats.2022-5-13.json","stats.2022-5-14.json","stats.2022-5-15.json","stats.2022-5-16.json","stats.2022-5-17.json","stats.2022-5-18.json","stats.2022-5-19.json","stats.2022-5-20.json","stats.2022-5-21.json","stats.2022-5-22.json","stats.2022-5-23.json","stats.2022-5-24.json","stats.2022-5-25.json","stats.2022-5-26.json","stats.2022-5-27.json","stats.2022-5-28.json","stats.2022-5-29.json","stats.2022-5-30.json","stats.2022-5-31.json","stats.2022-6-01.json","stats.2022-6-02.json","stats.2022-6-03.json","stats.2022-6-04.json","stats.2022-6-05.json","stats.2022-6-06.json","stats.2022-6-07.json","stats.2022-6-08.json","stats.2022-6-09.json","stats.2022-6-10.json","stats.2022-6-11.json","stats.2022-6-12.json","stats.2022-6-13.json","stats.2022-6-14.json","stats.2022-6-15.json","stats.2022-6-16.json","stats.2022-6-17.json","stats.2022-6-18.json","stats.2022-6-19.json","stats.2022-6-20.json","stats.2022-6-21.json","stats.2022-6-22.json","stats.2022-6-23.json","stats.2022-6-24.json","stats.2022-6-25.json","stats.2022-6-26.json","stats.2022-6-27.json","stats.2022-6-28.json","stats.2022-6-29.json","stats.2022-6-30.json","stats.2022-7-01.json","stats.2022-7-02.json","stats.2022-7-03.json","stats.2022-7-04.json","stats.2022-7-05.json","stats.2022-7-06.json","stats.2022-7-07.json","stats.2022-7-08.json","stats.2022-7-09.json","stats.2022-7-10.json","stats.2022-7-11.json","stats.2022-7-12.json","stats.2022-7-13.json","stats.2022-7-14.json","stats.2022-7-15.json","stats.2022-7-16.json","stats.2022-7-17.json","stats.2022-7-18.json","stats.2022-7-19.json","stats.2022-7-20.json","stats.2022-7-21.json","stats.2022-7-22.json","stats.2022-7-23.json","stats.2022-7-24.json","stats.2022-7-25.json","stats.2022-7-26.json","stats.2022-7-27.json","stats.2022-7-28.json"] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-3.json b/Docs/Tools/stats/stats.2022-3.json index a662c792ec..66c44127e0 100644 --- a/Docs/Tools/stats/stats.2022-3.json +++ b/Docs/Tools/stats/stats.2022-3.json @@ -44,6 +44,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T22:10:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 269, "modify": 268, "delete": 7, @@ -111,6 +112,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T21:05:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -174,6 +176,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T20:42:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 165, "modify": 0, "delete": 0, @@ -236,6 +239,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T20:23:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -299,6 +303,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T19:00:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 47, "delete": 0, @@ -362,6 +367,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T18:45:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -432,6 +438,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T15:29:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 254, "delete": 0, @@ -494,6 +501,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T15:26:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -557,6 +565,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T14:47:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 0, "delete": 0, @@ -624,6 +633,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T14:34:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 7, "delete": 0, @@ -686,6 +696,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T14:25:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -753,6 +764,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T13:40:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 588, "delete": 0, @@ -820,6 +832,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T13:29:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 1075, "modify": 0, "delete": 0, @@ -887,6 +900,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T13:29:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 9, "modify": 55, "delete": 0, @@ -976,6 +990,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T11:54:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -1038,6 +1053,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T11:14:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -1105,6 +1121,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T09:42:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -1176,6 +1193,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T07:52:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 10, "delete": 1, @@ -1249,6 +1267,7 @@ "imagery_used": "Not reported", "date": "2022-03-31T07:02:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 679, "delete": 0, @@ -1311,6 +1330,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T22:40:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -1376,6 +1396,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T21:33:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -1443,6 +1464,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T15:47:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -1512,6 +1534,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T15:47:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 961, "delete": 0, @@ -1574,6 +1597,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T14:21:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -1643,6 +1667,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T13:54:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 1868, "modify": 0, "delete": 0, @@ -1705,6 +1730,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T13:49:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 69, "delete": 0, @@ -1772,6 +1798,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T12:39:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 10, "delete": 0, @@ -1840,6 +1867,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T12:06:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 1044, "modify": 0, "delete": 0, @@ -1902,6 +1930,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T11:34:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 86, "delete": 0, @@ -1969,6 +1998,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T10:58:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 18, "modify": 15, "delete": 0, @@ -2039,6 +2069,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T10:39:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -2103,6 +2134,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T10:05:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -2169,6 +2201,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:46:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -2232,6 +2265,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:33:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 36, "modify": 0, "delete": 0, @@ -2294,6 +2328,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:19:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -2360,6 +2395,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:09:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -2422,6 +2458,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T09:06:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -2490,6 +2527,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T08:08:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 5, "delete": 0, @@ -2554,6 +2592,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T08:00:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -2617,6 +2656,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T07:50:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 46, "delete": 0, @@ -2679,6 +2719,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T07:02:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 37, "delete": 0, @@ -2750,6 +2791,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T06:34:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -2815,6 +2857,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T02:51:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -2877,6 +2920,7 @@ "imagery_used": "Not reported", "date": "2022-03-30T02:33:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -2940,6 +2984,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T21:35:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 960, "modify": 0, "delete": 0, @@ -3002,6 +3047,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T21:20:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -3065,6 +3111,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T20:58:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -3130,6 +3177,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T19:10:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 4, "delete": 0, @@ -3198,6 +3246,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T17:31:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1245, "delete": 0, @@ -3260,6 +3309,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T16:32:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -3327,6 +3377,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T15:29:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -3389,6 +3440,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T14:35:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -3457,6 +3509,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T14:22:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 4, "delete": 0, @@ -3524,6 +3577,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T12:42:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 971, "delete": 0, @@ -3591,6 +3645,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T12:08:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 21, "modify": 20, "delete": 2, @@ -3661,6 +3716,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T11:24:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 3, "delete": 0, @@ -3724,6 +3780,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T11:22:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -3789,6 +3846,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T10:17:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -3851,6 +3909,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T10:00:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -3919,6 +3978,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T09:55:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 946, "delete": 0, @@ -3981,6 +4041,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T09:27:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -4043,6 +4104,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T09:20:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -4105,6 +4167,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:57:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -4168,6 +4231,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:54:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -4230,6 +4294,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:50:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -4292,6 +4357,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:43:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -4331,6 +4397,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:43:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -4394,6 +4461,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:43:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -4457,6 +4525,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:41:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -4522,6 +4591,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:31:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 2, @@ -4588,6 +4658,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:11:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 266, "modify": 0, "delete": 0, @@ -4656,6 +4727,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T08:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -4722,6 +4794,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T07:54:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 224, "modify": 0, "delete": 0, @@ -4776,10 +4849,39 @@ { "id": 4, "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" } ], "tags": [], - "features": [], + "features": [ + { + "url": "way-904787526", + "name": "Avinguda Meridiana", + "osm_id": 904787526, + "reasons": [ + 91 + ], + "version": 2, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-52586323", + "name": "Passeig de Torras i Bages", + "osm_id": 52586323, + "reasons": [ + 91 + ], + "version": 18, + "primary_tags": { + "highway": "trunk_link" + } + } + ], "user": "ccamara", "uid": "423535", "editor": "MapComplete 0.17.0", @@ -4789,6 +4891,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T07:43:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 813, "delete": 0, @@ -4856,6 +4959,7 @@ "imagery_used": "Not reported", "date": "2022-03-29T03:59:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -4938,6 +5042,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T21:11:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 19, "delete": 0, @@ -5000,6 +5105,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T20:53:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 322, "modify": 0, "delete": 0, @@ -5067,6 +5173,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T20:39:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2384, "modify": 5, "delete": 0, @@ -5135,6 +5242,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T19:33:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 492, "delete": 0, @@ -5197,6 +5305,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:59:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 12, "delete": 0, @@ -5256,6 +5365,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:56:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -5324,6 +5434,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:56:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1367, "modify": 0, "delete": 0, @@ -5386,6 +5497,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:54:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -5448,6 +5560,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:53:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -5511,6 +5624,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:08:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -5578,6 +5692,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T18:07:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -5648,6 +5763,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T16:08:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 5, "delete": 0, @@ -5710,6 +5826,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T14:54:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 103, "modify": 0, "delete": 0, @@ -5772,6 +5889,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T14:47:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 363, "modify": 0, "delete": 0, @@ -5839,6 +5957,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T11:32:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 10, "delete": 0, @@ -5911,6 +6030,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T10:50:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1302, "delete": 0, @@ -5978,6 +6098,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T10:26:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 18, "delete": 0, @@ -6047,6 +6168,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T09:37:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 17, "modify": 0, "delete": 0, @@ -6109,6 +6231,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T09:30:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -6171,6 +6294,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:46:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -6234,6 +6358,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:13:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -6304,6 +6429,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:08:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 2, "delete": 0, @@ -6371,6 +6497,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T08:03:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1092, "delete": 0, @@ -6433,6 +6560,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T07:32:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -6495,6 +6623,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T01:03:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -6557,6 +6686,7 @@ "imagery_used": "Not reported", "date": "2022-03-28T00:25:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -6620,6 +6750,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T22:37:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 14, "delete": 0, @@ -6683,6 +6814,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T21:41:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -6745,6 +6877,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T21:18:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -6812,6 +6945,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T20:38:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 43, "delete": 0, @@ -6874,6 +7008,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T20:09:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 56, "modify": 0, "delete": 0, @@ -6936,6 +7071,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T20:00:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 10, "delete": 0, @@ -7000,6 +7136,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T17:57:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -7065,6 +7202,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T14:35:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -7128,6 +7266,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:52:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -7194,6 +7333,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:41:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -7260,6 +7400,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:40:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -7324,6 +7465,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:35:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -7394,6 +7536,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T13:27:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -7457,6 +7600,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:46:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -7523,6 +7667,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:39:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -7589,6 +7734,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:10:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -7652,6 +7798,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T12:06:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -7716,6 +7863,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T11:40:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 102, "modify": 0, "delete": 0, @@ -7783,6 +7931,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T10:59:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 28, "delete": 2, @@ -7852,6 +8001,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T10:54:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -7915,6 +8065,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T10:24:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -7979,6 +8130,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:45:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -8048,6 +8200,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:41:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 10, "delete": 0, @@ -8112,6 +8265,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:36:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -8174,6 +8328,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:22:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -8244,6 +8399,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T09:07:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 22, "modify": 109, "delete": 1, @@ -8315,6 +8471,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T07:16:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 1, "delete": 0, @@ -8378,6 +8535,7 @@ "imagery_used": "Not reported", "date": "2022-03-27T06:55:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -8442,6 +8600,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T21:00:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 10, "delete": 0, @@ -8505,6 +8664,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T20:45:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 14, "delete": 0, @@ -8568,6 +8728,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T20:34:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -8635,6 +8796,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T20:18:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 32, "delete": 0, @@ -8698,6 +8860,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T19:23:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -8760,6 +8923,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T19:07:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 0, "delete": 0, @@ -8823,6 +8987,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T17:22:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 6, "delete": 0, @@ -8886,6 +9051,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T16:47:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -8954,6 +9120,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T16:24:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -9020,6 +9187,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:37:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -9086,6 +9254,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:32:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 436, "modify": 314, "delete": 0, @@ -9150,6 +9319,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:29:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -9215,6 +9385,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T15:19:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -9280,6 +9451,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T14:54:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 320, "modify": 96, "delete": 2, @@ -9345,6 +9517,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T14:44:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 7, "delete": 0, @@ -9412,6 +9585,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T13:39:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 1516, "modify": 1267, "delete": 41, @@ -9477,6 +9651,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T13:04:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -9540,6 +9715,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T13:00:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -9603,6 +9779,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:56:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -9674,6 +9851,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:52:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -9742,6 +9920,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:24:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 5, "delete": 0, @@ -9811,6 +9990,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T12:05:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -9874,6 +10054,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T09:32:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 34, "delete": 0, @@ -9936,6 +10117,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T09:17:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -10006,6 +10188,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T07:17:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -10068,6 +10251,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T07:07:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -10133,6 +10317,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T06:57:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 1, "delete": 0, @@ -10199,6 +10384,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T06:54:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -10262,6 +10448,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T06:46:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 58, "delete": 0, @@ -10326,6 +10513,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:30:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 15, "delete": 0, @@ -10388,6 +10576,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:28:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -10451,6 +10640,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:27:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -10514,6 +10704,7 @@ "imagery_used": "Not reported", "date": "2022-03-26T00:24:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 7, "delete": 0, @@ -10577,6 +10768,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T20:30:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -10647,6 +10839,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T18:51:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 41, "modify": 40, "delete": 0, @@ -10709,6 +10902,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T17:27:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -10777,6 +10971,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T16:09:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 17, "modify": 49, "delete": 1, @@ -10842,6 +11037,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T15:40:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -10910,6 +11106,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T15:36:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -10972,6 +11169,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T14:58:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -11036,6 +11234,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T14:56:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -11102,6 +11301,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T13:45:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -11166,6 +11366,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T11:46:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -11233,6 +11434,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T11:07:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -11296,6 +11498,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T06:02:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -11364,6 +11567,7 @@ "imagery_used": "Not reported", "date": "2022-03-25T02:26:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -11426,6 +11630,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T21:34:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 7, "delete": 0, @@ -11489,6 +11694,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T21:08:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 536, "modify": 535, "delete": 2, @@ -11556,6 +11762,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T20:54:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -11619,6 +11826,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T20:32:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -11682,6 +11890,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T18:37:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -11744,6 +11953,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T18:02:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -11810,6 +12020,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T17:10:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -11873,6 +12084,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T17:09:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 6, "delete": 0, @@ -11938,6 +12150,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T15:43:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -12007,6 +12220,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T14:31:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -12071,6 +12285,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T12:21:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -12139,6 +12354,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T12:16:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -12202,6 +12418,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T10:21:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -12271,6 +12488,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T09:26:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 0, "delete": 0, @@ -12339,6 +12557,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T07:38:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 5, "delete": 1, @@ -12404,6 +12623,7 @@ "imagery_used": "Bing Maps Aerial", "date": "2022-03-24T04:47:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 165, "modify": 52, "delete": 46, @@ -12468,6 +12688,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T01:07:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -12529,6 +12750,7 @@ "imagery_used": "Not reported", "date": "2022-03-24T00:33:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -12596,6 +12818,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:46:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -12681,6 +12904,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:36:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -12744,6 +12968,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:33:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -12811,6 +13036,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:25:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -12874,6 +13100,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:24:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 50, "modify": 17, "delete": 0, @@ -12938,6 +13165,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:18:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -13000,6 +13228,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:18:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -13071,6 +13300,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T20:14:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -13156,6 +13386,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T19:45:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -13241,6 +13472,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T19:26:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -13309,6 +13541,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T19:04:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -13377,6 +13610,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T18:56:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -13445,6 +13679,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:59:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -13513,6 +13748,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:43:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 9, "delete": 1, @@ -13586,6 +13822,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:40:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -13650,6 +13887,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:27:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 14, "delete": 0, @@ -13722,6 +13960,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T16:22:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 3, "delete": 1, @@ -13787,6 +14026,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T15:37:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -13827,6 +14067,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T15:05:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -13891,6 +14132,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T15:03:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -13957,6 +14199,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T14:33:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 7, "delete": 0, @@ -14025,6 +14268,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:59:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -14093,6 +14337,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:56:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -14156,6 +14401,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:17:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 1055, "modify": 812, "delete": 16, @@ -14221,6 +14467,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:04:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 7, "delete": 1, @@ -14288,6 +14535,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T13:04:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 148, "modify": 251, "delete": 19, @@ -14353,6 +14601,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T12:45:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -14415,6 +14664,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T12:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 11, "delete": 0, @@ -14480,6 +14730,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T11:18:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 65, "delete": 0, @@ -14547,6 +14798,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T10:21:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 114, "modify": 122, "delete": 7, @@ -14612,6 +14864,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T09:39:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -14680,6 +14933,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T09:21:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 1, "delete": 2, @@ -14754,6 +15008,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T09:14:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 12, "modify": 3, "delete": 0, @@ -14829,6 +15084,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:56:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 38, "modify": 58, "delete": 4, @@ -14868,6 +15124,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:56:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -14935,6 +15192,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:55:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 17, "modify": 3, "delete": 1, @@ -15003,6 +15261,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:45:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 146, "modify": 166, "delete": 4, @@ -15068,6 +15327,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:35:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 309, "modify": 438, "delete": 4, @@ -15133,6 +15393,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:17:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 271, "modify": 396, "delete": 0, @@ -15197,6 +15458,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T08:08:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 205, "modify": 221, "delete": 1, @@ -15262,6 +15524,7 @@ "imagery_used": "Not reported", "date": "2022-03-23T07:32:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 8, "delete": 0, @@ -15329,6 +15592,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T21:22:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -15392,6 +15656,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T19:43:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 94, "modify": 139, "delete": 4, @@ -15462,6 +15727,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T17:17:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -15527,6 +15793,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T17:09:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 5, "delete": 0, @@ -15599,6 +15866,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T16:35:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 1, @@ -15664,6 +15932,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:46:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 90, "modify": 145, "delete": 0, @@ -15728,6 +15997,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:36:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 274, "modify": 257, "delete": 2, @@ -15793,6 +16063,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:25:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 2, "delete": 1, @@ -15860,6 +16131,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T15:04:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -15925,6 +16197,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T14:57:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -15991,6 +16264,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T13:59:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 36, "delete": 2, @@ -16060,6 +16334,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T13:49:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 0, "delete": 0, @@ -16127,6 +16402,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T13:01:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -16197,6 +16473,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:38:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 6, "delete": 0, @@ -16238,6 +16515,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:32:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -16300,6 +16578,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:32:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -16336,6 +16615,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:32:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -16403,6 +16683,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T12:06:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 25, "delete": 0, @@ -16476,6 +16757,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T11:45:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 17, "delete": 0, @@ -16549,6 +16831,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T11:27:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 0, "delete": 0, @@ -16611,6 +16894,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T10:01:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -16681,6 +16965,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T09:44:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 0, "delete": 0, @@ -16744,6 +17029,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T09:15:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -16812,6 +17098,7 @@ "imagery_used": "Not reported", "date": "2022-03-22T07:26:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 3, "delete": 0, @@ -16876,6 +17163,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T19:35:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 101, "modify": 102, "delete": 1, @@ -16941,6 +17229,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T19:35:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 0, "delete": 0, @@ -17003,6 +17292,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:57:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -17071,6 +17361,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:31:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -17134,6 +17425,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:05:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -17177,6 +17469,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:05:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -17218,6 +17511,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T16:05:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -17285,6 +17579,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T15:44:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -17347,6 +17642,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T15:31:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 447, "modify": 539, "delete": 13, @@ -17417,6 +17713,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T15:16:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -17479,6 +17776,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T14:03:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -17541,6 +17839,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:53:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 3, @@ -17606,6 +17905,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:51:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -17669,6 +17969,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:43:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -17733,6 +18034,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T12:19:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 11, "delete": 0, @@ -17802,6 +18104,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T11:59:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 28, "delete": 0, @@ -17869,6 +18172,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T11:36:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -17937,6 +18241,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T09:25:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -18001,6 +18306,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T07:24:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 14, "delete": 0, @@ -18064,6 +18370,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T07:13:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -18127,6 +18434,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T06:24:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -18189,6 +18497,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T05:39:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -18254,6 +18563,7 @@ "imagery_used": "Not reported", "date": "2022-03-21T01:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -18316,6 +18626,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T19:29:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -18383,6 +18694,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T18:47:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -18446,6 +18758,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T16:14:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -18514,6 +18827,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T15:43:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -18577,6 +18891,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T15:31:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -18645,6 +18960,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T14:35:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -18713,6 +19029,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T13:32:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -18755,6 +19072,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T13:31:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -18823,6 +19141,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T13:19:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 10, "delete": 1, @@ -18896,6 +19215,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T11:55:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 69, "modify": 286, "delete": 9, @@ -18967,6 +19287,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T11:05:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 20, "modify": 1, "delete": 0, @@ -19041,6 +19362,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:42:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 20, "modify": 94, "delete": 0, @@ -19087,6 +19409,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:39:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -19128,6 +19451,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:39:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -19169,6 +19493,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:39:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -19210,6 +19535,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:39:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -19252,6 +19578,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:38:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -19319,6 +19646,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T09:36:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -19381,6 +19709,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T08:53:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -19449,6 +19778,7 @@ "imagery_used": "Not reported", "date": "2022-03-20T07:26:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 64, "delete": 0, @@ -19515,6 +19845,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T23:54:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -19579,6 +19910,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T23:52:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -19641,6 +19973,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T23:47:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -19705,6 +20038,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T22:55:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -19770,6 +20104,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T22:46:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -19840,6 +20175,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T20:50:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 49, "delete": 0, @@ -19904,6 +20240,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T19:17:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -19970,6 +20307,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T18:58:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -20033,6 +20371,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T16:35:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -20096,6 +20435,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T16:08:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -20158,6 +20498,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T15:33:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -20222,6 +20563,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T15:17:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -20286,6 +20628,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T14:06:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -20348,6 +20691,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T13:53:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -20412,6 +20756,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T13:17:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -20448,6 +20793,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T13:14:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -20485,6 +20831,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T13:14:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -20549,6 +20896,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T12:02:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -20611,6 +20959,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T11:55:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -20678,6 +21027,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T11:34:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -20742,6 +21092,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T11:21:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -20805,6 +21156,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T10:21:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -20869,6 +21221,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T10:00:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -20933,6 +21286,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T09:57:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 7, "delete": 0, @@ -20997,6 +21351,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T09:36:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -21059,6 +21414,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T08:38:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -21122,6 +21478,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T08:24:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -21184,6 +21541,7 @@ "imagery_used": "Not reported", "date": "2022-03-19T07:49:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -21247,6 +21605,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T21:06:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 37, "modify": 16, "delete": 0, @@ -21311,6 +21670,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T19:25:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 908, "modify": 0, "delete": 0, @@ -21377,6 +21737,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T18:51:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -21439,6 +21800,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T17:31:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 6, "delete": 0, @@ -21509,6 +21871,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T17:27:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -21576,6 +21939,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T14:18:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 765, "modify": 1928, "delete": 31, @@ -21643,6 +22007,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T13:44:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 1284, "modify": 1525, "delete": 13, @@ -21713,6 +22078,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T13:30:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 0, "delete": 0, @@ -21780,6 +22146,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T13:11:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -21861,6 +22228,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T10:02:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 13, "delete": 1, @@ -21923,11 +22291,12 @@ "uid": "1947314", "editor": "MapComplete 0.16.8", "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, + "comments_count": 1, "source": "Not reported", "imagery_used": "Not reported", "date": "2022-03-18T09:59:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 696, "modify": 608, "delete": 23, @@ -21993,6 +22362,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T09:09:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 950, "modify": 843, "delete": 38, @@ -22058,6 +22428,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T09:07:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 41, "modify": 26, "delete": 0, @@ -22122,6 +22493,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T08:45:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -22184,6 +22556,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T08:06:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 1342, "modify": 1282, "delete": 6, @@ -22249,6 +22622,7 @@ "imagery_used": "Not reported", "date": "2022-03-18T07:58:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -22311,6 +22685,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T22:50:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -22373,6 +22748,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T21:47:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -22435,6 +22811,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T21:01:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -22502,6 +22879,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T19:32:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 16, "delete": 0, @@ -22566,6 +22944,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T19:08:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -22628,6 +23007,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T18:13:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -22690,6 +23070,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T15:52:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 112, "modify": 182, "delete": 0, @@ -22754,6 +23135,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T14:19:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1515, "modify": 1393, "delete": 9, @@ -22820,6 +23202,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T14:11:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -22883,6 +23266,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T12:21:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -22951,6 +23335,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:19:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -23013,6 +23398,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:10:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -23075,6 +23461,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:05:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -23141,6 +23528,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T11:05:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 704, "modify": 452, "delete": 3, @@ -23206,6 +23594,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:02:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 921, "modify": 539, "delete": 9, @@ -23245,6 +23634,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:02:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -23281,6 +23671,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:02:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -23317,6 +23708,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:02:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -23379,6 +23771,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T10:01:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 44, "modify": 10, "delete": 0, @@ -23443,6 +23836,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T08:37:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -23510,6 +23904,7 @@ "imagery_used": "Not reported", "date": "2022-03-17T06:41:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 14, "delete": 0, @@ -23572,6 +23967,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T21:00:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 28, "modify": 33, "delete": 0, @@ -23636,6 +24032,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:39:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -23700,6 +24097,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:28:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 208, "modify": 106, "delete": 0, @@ -23739,6 +24137,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:28:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -23801,6 +24200,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:23:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 121, "modify": 142, "delete": 0, @@ -23865,6 +24265,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:11:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 40, "delete": 0, @@ -23928,6 +24329,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T20:02:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 742, "modify": 52, "delete": 0, @@ -23993,6 +24395,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T17:40:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 16, "delete": 0, @@ -24064,6 +24467,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T17:33:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -24133,6 +24537,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T16:30:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -24197,6 +24602,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T16:00:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -24264,6 +24670,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T15:39:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -24334,6 +24741,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T15:33:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -24397,6 +24805,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T15:25:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -24468,6 +24877,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:58:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -24532,6 +24942,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:35:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1004, "modify": 1315, "delete": 13, @@ -24602,6 +25013,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:15:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 203, "modify": 506, "delete": 4, @@ -24667,6 +25079,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T14:14:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 18, "modify": 34, "delete": 0, @@ -24731,6 +25144,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T13:30:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -24799,6 +25213,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T13:22:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -24869,6 +25284,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T12:56:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1370, "modify": 5, "delete": 0, @@ -24939,6 +25355,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T12:28:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -25010,6 +25427,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T10:08:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 1, @@ -25079,6 +25497,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T10:05:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -25146,6 +25565,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T09:39:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 15, "delete": 0, @@ -25209,6 +25629,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T08:13:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 456, "modify": 551, "delete": 9, @@ -25279,6 +25700,7 @@ "imagery_used": "Not reported", "date": "2022-03-16T07:18:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 1, @@ -25342,6 +25764,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T22:49:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -25404,6 +25827,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T21:17:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 229, "modify": 318, "delete": 10, @@ -25469,6 +25893,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T20:47:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -25531,6 +25956,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T19:55:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -25594,6 +26020,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T19:44:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 9, "delete": 0, @@ -25657,6 +26084,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T19:29:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 19, "modify": 33, "delete": 0, @@ -25722,6 +26150,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T17:53:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -25792,6 +26221,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:52:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 101, "modify": 247, "delete": 4, @@ -25857,6 +26287,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:49:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 69, "modify": 102, "delete": 4, @@ -25896,6 +26327,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:49:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -25932,6 +26364,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:49:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -25968,6 +26401,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:49:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -26030,6 +26464,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T15:42:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 152, "modify": 165, "delete": 5, @@ -26095,6 +26530,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T14:28:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -26166,6 +26602,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T14:17:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -26230,6 +26667,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:59:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -26296,6 +26734,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:42:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 269, "modify": 208, "delete": 0, @@ -26360,6 +26799,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:41:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 52, "modify": 47, "delete": 0, @@ -26429,6 +26869,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:41:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 0, "delete": 0, @@ -26491,6 +26932,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:24:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 105, "modify": 211, "delete": 2, @@ -26562,6 +27004,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T13:09:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 342, "delete": 0, @@ -26624,6 +27067,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:57:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -26687,6 +27131,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:52:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -26724,6 +27169,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:41:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -26766,6 +27212,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:37:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -26829,6 +27276,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:36:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -26896,6 +27344,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:36:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 10, "delete": 0, @@ -26964,6 +27413,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T12:19:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -27032,6 +27482,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:34:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -27096,6 +27547,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:28:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -27135,6 +27587,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:26:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -27172,6 +27625,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:25:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -27208,6 +27662,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T11:25:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -27270,6 +27725,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:56:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 492, "modify": 1155, "delete": 3, @@ -27335,6 +27791,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:45:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 14, "modify": 134, "delete": 5, @@ -27405,6 +27862,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:37:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 22, "modify": 223, "delete": 4, @@ -27475,6 +27933,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:30:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 49, "modify": 304, "delete": 20, @@ -27540,6 +27999,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:22:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -27607,6 +28067,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:18:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 21, "modify": 73, "delete": 0, @@ -27673,6 +28134,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T10:15:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 224, "modify": 315, "delete": 13, @@ -27738,6 +28200,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T09:09:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -27806,6 +28269,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T07:24:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -27873,6 +28337,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T07:02:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 24, "delete": 0, @@ -27937,6 +28402,7 @@ "imagery_used": "Not reported", "date": "2022-03-15T05:18:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -28004,6 +28470,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:36:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -28069,6 +28536,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:30:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -28131,6 +28599,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:18:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -28194,6 +28663,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:08:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -28261,6 +28731,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T22:08:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 0, "delete": 0, @@ -28323,6 +28794,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T20:16:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 46, "delete": 2, @@ -28390,6 +28862,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T20:06:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 3, "delete": 0, @@ -28460,6 +28933,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:46:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 61, "delete": 0, @@ -28506,6 +28980,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:43:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -28568,6 +29043,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:41:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -28630,6 +29106,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:16:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -28692,6 +29169,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T19:12:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -28761,6 +29239,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:53:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 40, "delete": 1, @@ -28827,6 +29306,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:42:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 13, "delete": 0, @@ -28892,6 +29372,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:10:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -28955,6 +29436,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T18:03:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -29022,6 +29504,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T16:49:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -29084,6 +29567,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T16:07:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -29152,6 +29636,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T15:29:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -29214,6 +29699,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T15:28:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -29282,6 +29768,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T15:16:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 3116, "modify": 46, "delete": 0, @@ -29346,6 +29833,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T14:46:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -29413,6 +29901,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T14:09:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 25, "delete": 0, @@ -29477,6 +29966,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T13:53:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -29539,6 +30029,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T13:04:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 761, "modify": 1035, "delete": 22, @@ -29609,6 +30100,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T12:50:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 89, "modify": 327, "delete": 9, @@ -29679,6 +30171,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T12:41:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -29746,6 +30239,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T11:34:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 58, "modify": 970, "delete": 27, @@ -29811,6 +30305,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T09:04:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -29874,6 +30369,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T08:21:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -29938,6 +30434,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T08:18:28Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -30006,6 +30503,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T06:55:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 32, "delete": 0, @@ -30069,6 +30567,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:41:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -30132,6 +30631,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:39:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -30195,6 +30695,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:30:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 2, @@ -30237,6 +30738,7 @@ "imagery_used": "Not reported", "date": "2022-03-14T02:15:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -30299,6 +30801,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T20:45:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 70, "delete": 0, @@ -30361,6 +30864,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T20:43:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -30423,6 +30927,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T19:52:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -30492,6 +30997,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T16:37:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -30556,6 +31062,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T16:29:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 9, "delete": 0, @@ -30622,6 +31129,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T14:19:04Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -30685,6 +31193,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T14:09:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 22, "delete": 0, @@ -30754,6 +31263,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T14:02:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -30816,6 +31326,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T11:24:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -30884,6 +31395,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T09:24:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -30951,6 +31463,7 @@ "imagery_used": "Not reported", "date": "2022-03-13T06:26:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 488, "modify": 1853, "delete": 29, @@ -31017,6 +31530,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T23:37:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 68, "modify": 0, "delete": 0, @@ -31079,6 +31593,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T23:13:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -31146,6 +31661,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T19:39:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 9, "modify": 4, "delete": 0, @@ -31208,6 +31724,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T16:11:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -31279,6 +31796,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T15:04:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 2228, "modify": 69, "delete": 4, @@ -31345,6 +31863,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T14:59:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -31407,6 +31926,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:56:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -31477,6 +31997,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:33:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -31513,6 +32034,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:28:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -31552,6 +32074,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:28:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -31588,6 +32111,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:28:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -31627,6 +32151,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:28:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -31663,6 +32188,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:27:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -31702,6 +32228,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:27:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -31767,6 +32294,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T13:27:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -31829,6 +32357,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T12:50:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -31893,6 +32422,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T10:46:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -31956,6 +32486,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T08:32:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -32018,6 +32549,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T07:29:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 11, "delete": 0, @@ -32080,6 +32612,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T07:18:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -32149,6 +32682,7 @@ "imagery_used": "Not reported", "date": "2022-03-12T05:34:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 1854, "modify": 258, "delete": 0, @@ -32231,6 +32765,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T19:56:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -32294,6 +32829,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T19:42:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -32358,6 +32894,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T19:37:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -32425,6 +32962,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T18:24:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 5, "delete": 0, @@ -32490,6 +33028,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T18:06:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -32552,6 +33091,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T16:30:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 30, "delete": 0, @@ -32616,6 +33156,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T16:25:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 17, "delete": 0, @@ -32684,6 +33225,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:48:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 1688, "modify": 11, "delete": 0, @@ -32748,6 +33290,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:40:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 202, "modify": 133, "delete": 0, @@ -32787,6 +33330,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:27:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -32853,6 +33397,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:27:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -32890,6 +33435,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:27:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -32927,6 +33473,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:27:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -32967,6 +33514,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T15:26:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -33033,6 +33581,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T14:33:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 87, "modify": 111, "delete": 0, @@ -33098,6 +33647,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T13:54:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 488, "modify": 192, "delete": 2, @@ -33164,6 +33714,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:57:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -33230,6 +33781,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:51:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -33297,6 +33849,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:51:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 1448, "modify": 245, "delete": 6, @@ -33337,6 +33890,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T12:51:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -33410,6 +33964,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T11:52:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 19, "delete": 2, @@ -33483,6 +34038,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T11:18:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 6, "delete": 0, @@ -33547,6 +34103,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T10:23:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -33613,6 +34170,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T10:13:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -33676,6 +34234,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T10:05:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -33742,6 +34301,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T09:29:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -33806,6 +34366,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T05:37:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 1006, "modify": 546, "delete": 4, @@ -33872,6 +34433,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T01:20:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -33939,6 +34501,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T00:43:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -34001,6 +34564,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T00:20:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -34069,6 +34633,7 @@ "imagery_used": "Not reported", "date": "2022-03-11T00:14:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -34132,6 +34697,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T23:29:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -34194,6 +34760,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T21:35:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -34256,6 +34823,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T21:25:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -34318,6 +34886,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T20:07:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -34380,6 +34949,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T19:01:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -34442,6 +35012,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T18:58:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -34504,6 +35075,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T18:24:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -34585,6 +35157,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T15:52:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 110, "delete": 0, @@ -34653,6 +35226,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:55:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 9, "delete": 0, @@ -34719,6 +35293,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:49:46Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 11, "delete": 0, @@ -34786,6 +35361,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:34:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 4906, "modify": 77, "delete": 0, @@ -34851,6 +35427,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:30:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -34918,6 +35495,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T14:17:09Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -34987,6 +35565,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:47:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 0, "delete": 0, @@ -35054,6 +35633,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:35:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 205, "modify": 1024, "delete": 19, @@ -35125,6 +35705,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:33:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 1, "delete": 0, @@ -35194,6 +35775,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:21:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 2479, "modify": 0, "delete": 0, @@ -35262,6 +35844,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T12:07:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1543, "modify": 0, "delete": 0, @@ -35330,6 +35913,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T11:08:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -35392,6 +35976,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T09:35:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -35457,6 +36042,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T08:43:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 382, "modify": 452, "delete": 0, @@ -35526,6 +36112,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T08:31:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 8, "delete": 0, @@ -35591,6 +36178,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T08:10:59Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -35653,6 +36241,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T07:44:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -35720,6 +36309,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T05:43:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 51, "modify": 420, "delete": 8, @@ -35801,6 +36391,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T05:00:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 72, "delete": 0, @@ -35865,6 +36456,7 @@ "imagery_used": "Not reported", "date": "2022-03-10T02:08:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -35928,6 +36520,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T22:03:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -35990,6 +36583,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:56:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 75, "delete": 0, @@ -36053,6 +36647,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:32:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 149, "delete": 0, @@ -36089,6 +36684,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:32:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -36155,6 +36751,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T21:05:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -36223,6 +36820,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T20:56:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 7, "modify": 11, "delete": 0, @@ -36293,6 +36891,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T20:47:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -36361,6 +36960,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T20:11:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -36429,6 +37029,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T19:38:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -36497,6 +37098,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T18:28:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 10, "delete": 0, @@ -36567,6 +37169,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T17:26:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 1942, "modify": 0, "delete": 0, @@ -36633,6 +37236,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T16:32:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -36701,6 +37305,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:51:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -36769,6 +37374,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:44:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 97, "modify": 240, "delete": 4, @@ -36834,6 +37440,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:42:20Z", "reviewed_features": [], + "tag_changes": {}, "create": 128, "modify": 94, "delete": 4, @@ -36908,6 +37515,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:20:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -36972,6 +37580,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:14:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 186, "modify": 332, "delete": 39, @@ -37037,6 +37646,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:12:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 6, "modify": 13, "delete": 3, @@ -37102,6 +37712,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:12:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 34, "delete": 0, @@ -37182,6 +37793,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:10:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 92, "modify": 267, "delete": 9, @@ -37252,6 +37864,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T14:07:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 19, "modify": 0, "delete": 0, @@ -37315,6 +37928,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T13:47:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -37379,6 +37993,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T13:26:18Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -37450,6 +38065,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T12:46:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 572, "modify": 1472, "delete": 24, @@ -37515,6 +38131,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T11:34:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 5, "delete": 0, @@ -37580,6 +38197,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T11:19:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 132, "modify": 140, "delete": 1, @@ -37645,6 +38263,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T11:12:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 45, "modify": 183, "delete": 4, @@ -37715,6 +38334,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T10:31:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 5, "delete": 0, @@ -37780,6 +38400,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T10:16:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 126, "delete": 0, @@ -37847,6 +38468,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T09:44:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 4, "delete": 0, @@ -37910,6 +38532,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T09:03:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 657, "modify": 1526, "delete": 39, @@ -37975,6 +38598,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T07:35:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 14, "modify": 16, "delete": 0, @@ -38054,6 +38678,7 @@ "imagery_used": "Not reported", "date": "2022-03-09T07:17:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 7, "delete": 0, @@ -38120,6 +38745,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T21:53:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -38187,6 +38813,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T21:50:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -38254,6 +38881,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T21:31:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 255, "delete": 0, @@ -38319,6 +38947,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T20:53:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 22, "modify": 191, "delete": 6, @@ -38384,6 +39013,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T20:03:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 50, "delete": 7, @@ -38449,6 +39079,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T19:44:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -38512,6 +39143,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T16:06:47Z", "reviewed_features": [], + "tag_changes": {}, "create": 11, "modify": 15, "delete": 0, @@ -38576,6 +39208,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T15:16:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 596, "modify": 928, "delete": 21, @@ -38641,6 +39274,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:50:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -38710,6 +39344,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:47:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 15, "delete": 0, @@ -38776,6 +39411,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:38:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 1, "delete": 0, @@ -38844,6 +39480,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T14:16:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 10, "modify": 7, "delete": 1, @@ -38909,6 +39546,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:48:11Z", "reviewed_features": [], + "tag_changes": {}, "create": 321, "modify": 345, "delete": 3, @@ -38974,6 +39612,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:42:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -39037,6 +39676,7 @@ "imagery_used": "dgu.hr: Croatia 2019-2020 aerial imagery", "date": "2022-03-08T13:40:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -39098,6 +39738,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:23:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -39160,6 +39801,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T13:07:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -39222,6 +39864,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:46:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 913, "modify": 916, "delete": 15, @@ -39292,6 +39935,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:42:15Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -39359,6 +40003,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:10:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 150, "modify": 486, "delete": 21, @@ -39430,6 +40075,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T12:00:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -39492,6 +40138,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:24:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 137, "modify": 45, "delete": 0, @@ -39530,6 +40177,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:23:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -39566,6 +40214,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:23:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -39602,6 +40251,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:23:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -39664,6 +40314,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T11:22:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 20, "modify": 0, "delete": 0, @@ -39726,6 +40377,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T10:57:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 5, "delete": 0, @@ -39796,6 +40448,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T10:43:27Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 480, "delete": 0, @@ -39867,6 +40520,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:53:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 2, "delete": 0, @@ -39930,6 +40584,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:51:41Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -40008,6 +40663,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:18:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 7, "delete": 0, @@ -40079,6 +40735,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T09:08:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1715, "modify": 544, "delete": 2, @@ -40144,6 +40801,7 @@ "imagery_used": "Not reported", "date": "2022-03-08T05:40:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 432, "modify": 341, "delete": 0, @@ -40209,6 +40867,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T21:57:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 8, "delete": 0, @@ -40277,6 +40936,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T21:26:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 0, "delete": 0, @@ -40339,6 +40999,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T19:52:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -40401,6 +41062,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T19:25:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -40469,6 +41131,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T19:24:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -40531,6 +41194,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T16:43:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 95, "delete": 0, @@ -40616,6 +41280,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T10:32:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -40679,6 +41344,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:40:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -40742,6 +41408,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:16:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -40804,6 +41471,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:13:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 6, "delete": 0, @@ -40868,6 +41536,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:12:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -40930,6 +41599,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T09:08:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 600, "modify": 427, "delete": 3, @@ -40996,6 +41666,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T08:23:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 115, "delete": 0, @@ -41063,6 +41734,7 @@ "imagery_used": "Not reported", "date": "2022-03-07T00:54:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -41131,6 +41803,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T17:09:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -41193,6 +41866,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T15:36:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -41255,6 +41929,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T14:41:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -41318,6 +41993,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T10:32:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 106, "delete": 2, @@ -41383,6 +42059,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T07:56:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 342, "modify": 309, "delete": 0, @@ -41448,6 +42125,7 @@ "imagery_used": "Not reported", "date": "2022-03-06T06:24:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 56, "delete": 0, @@ -41510,6 +42188,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T20:53:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -41578,6 +42257,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T20:33:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -41646,6 +42326,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T20:31:00Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -41709,6 +42390,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T19:09:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 128, "modify": 58, "delete": 2, @@ -41780,6 +42462,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T18:02:03Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 1, @@ -41850,6 +42533,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T18:00:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 1, @@ -41914,6 +42598,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:58:37Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -41980,6 +42665,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:42:31Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 15, "delete": 0, @@ -42042,6 +42728,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:20:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -42106,6 +42793,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:14:43Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -42169,6 +42857,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T14:12:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -42251,6 +42940,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T12:54:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -42316,6 +43006,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T12:20:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -42382,6 +43073,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T12:16:48Z", "reviewed_features": [], + "tag_changes": {}, "create": 5, "modify": 3, "delete": 0, @@ -42450,6 +43142,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T10:46:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 481, "modify": 237, "delete": 0, @@ -42519,6 +43212,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T10:27:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1128, "modify": 12, "delete": 0, @@ -42584,6 +43278,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T10:10:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -42650,6 +43345,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T09:51:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -42714,6 +43410,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T08:21:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 75, "modify": 91, "delete": 0, @@ -42779,6 +43476,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T08:02:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 138, "modify": 51, "delete": 0, @@ -42817,6 +43515,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T08:02:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -42879,6 +43578,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T07:37:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 113, "modify": 35, "delete": 0, @@ -42918,6 +43618,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T07:36:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 0, "delete": 0, @@ -42980,6 +43681,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T07:33:16Z", "reviewed_features": [], + "tag_changes": {}, "create": 13, "modify": 5, "delete": 0, @@ -43044,6 +43746,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T03:07:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -43111,6 +43814,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T00:49:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 123, "modify": 403, "delete": 7, @@ -43177,6 +43881,7 @@ "imagery_used": "Not reported", "date": "2022-03-05T00:49:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 32, "delete": 2, @@ -43242,6 +43947,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T23:36:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -43304,6 +44010,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T21:27:01Z", "reviewed_features": [], + "tag_changes": {}, "create": 43, "modify": 159, "delete": 0, @@ -43369,6 +44076,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T19:59:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 47, "delete": 0, @@ -43432,6 +44140,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T18:58:58Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -43495,6 +44204,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T17:14:12Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 10, "delete": 0, @@ -43579,6 +44289,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T17:10:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 29, "modify": 222, "delete": 7, @@ -43645,6 +44356,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T16:43:13Z", "reviewed_features": [], + "tag_changes": {}, "create": 37, "modify": 129, "delete": 2, @@ -43715,6 +44427,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T15:51:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 7, "delete": 0, @@ -43777,6 +44490,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T15:44:22Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 4, "delete": 0, @@ -43839,6 +44553,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T13:55:08Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 32, "delete": 0, @@ -43907,6 +44622,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T13:13:49Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -43973,6 +44689,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T12:42:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 0, "delete": 0, @@ -44035,6 +44752,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T11:53:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -44098,6 +44816,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T11:46:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -44162,6 +44881,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:25:34Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 2, "delete": 0, @@ -44225,6 +44945,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:24:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -44288,6 +45009,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:11:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -44350,6 +45072,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T09:02:35Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 3, "delete": 0, @@ -44414,6 +45137,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T05:32:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -44476,6 +45200,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T03:03:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 44, "delete": 0, @@ -44544,6 +45269,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T02:54:02Z", "reviewed_features": [], + "tag_changes": {}, "create": 88, "modify": 300, "delete": 4, @@ -44615,6 +45341,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T02:42:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 32, "modify": 276, "delete": 7, @@ -44686,6 +45413,7 @@ "imagery_used": "Not reported", "date": "2022-03-04T01:58:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 76, "modify": 427, "delete": 9, @@ -44752,6 +45480,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T20:46:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 0, "delete": 0, @@ -44816,6 +45545,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T20:28:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -44882,6 +45612,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T19:59:29Z", "reviewed_features": [], + "tag_changes": {}, "create": 598, "modify": 19, "delete": 0, @@ -44946,6 +45677,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T15:23:56Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 13, "delete": 0, @@ -45008,6 +45740,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T14:58:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 25, "modify": 126, "delete": 0, @@ -45078,6 +45811,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T14:10:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -45140,6 +45874,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T13:53:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 16, "modify": 34, "delete": 2, @@ -45224,6 +45959,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T12:41:10Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 135, "delete": 0, @@ -45286,6 +46022,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T11:38:26Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 6, "delete": 0, @@ -45354,6 +46091,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T11:01:54Z", "reviewed_features": [], + "tag_changes": {}, "create": 3, "modify": 6, "delete": 0, @@ -45417,6 +46155,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T09:58:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 4, "delete": 0, @@ -45480,6 +46219,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T09:49:40Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -45549,6 +46289,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T08:05:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -45612,6 +46353,7 @@ "imagery_used": "Not reported", "date": "2022-03-03T08:00:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 50, "delete": 0, @@ -45674,6 +46416,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T23:07:23Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -45737,6 +46480,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T20:04:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 38, "modify": 124, "delete": 13, @@ -45807,6 +46551,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T19:08:51Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 8, "delete": 0, @@ -45870,6 +46615,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T17:54:55Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -45934,6 +46680,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:57:39Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -46000,6 +46747,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:44:33Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -46067,6 +46815,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:33:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 8, "modify": 7, "delete": 0, @@ -46149,6 +46898,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T16:27:07Z", "reviewed_features": [], + "tag_changes": {}, "create": 125, "modify": 193, "delete": 17, @@ -46215,6 +46965,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T15:35:21Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 18, "delete": 0, @@ -46279,6 +47030,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T14:11:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -46345,6 +47097,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T12:51:25Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -46408,6 +47161,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T10:06:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 4, "delete": 0, @@ -46472,6 +47226,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T05:34:53Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 128, "delete": 0, @@ -46534,6 +47289,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T03:38:30Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -46599,6 +47355,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T03:10:14Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 11, "delete": 0, @@ -46662,6 +47419,7 @@ "imagery_used": "Not reported", "date": "2022-03-02T00:39:24Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -46724,6 +47482,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:49:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -46787,6 +47546,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:46:42Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 1, "delete": 0, @@ -46850,6 +47610,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:20:32Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 1, "delete": 0, @@ -46914,6 +47675,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:10:19Z", "reviewed_features": [], + "tag_changes": {}, "create": 4, "modify": 9, "delete": 0, @@ -46978,6 +47740,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T20:08:45Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -47040,6 +47803,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T16:43:52Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 5, "delete": 0, @@ -47108,6 +47872,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T13:54:57Z", "reviewed_features": [], + "tag_changes": {}, "create": 2, "modify": 3, "delete": 0, @@ -47176,6 +47941,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T12:48:44Z", "reviewed_features": [], + "tag_changes": {}, "create": 0, "modify": 1, "delete": 0, @@ -47253,6 +48019,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T11:06:36Z", "reviewed_features": [], + "tag_changes": {}, "create": 1202, "modify": 1340, "delete": 8, @@ -47319,6 +48086,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T10:41:05Z", "reviewed_features": [], + "tag_changes": {}, "create": 1, "modify": 2, "delete": 0, @@ -47384,6 +48152,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T10:11:50Z", "reviewed_features": [], + "tag_changes": {}, "create": 901, "modify": 1280, "delete": 20, @@ -47455,6 +48224,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T09:42:06Z", "reviewed_features": [], + "tag_changes": {}, "create": 211, "modify": 815, "delete": 20, @@ -47521,6 +48291,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T08:20:17Z", "reviewed_features": [], + "tag_changes": {}, "create": 1802, "modify": 1066, "delete": 3, @@ -47592,6 +48363,7 @@ "imagery_used": "Not reported", "date": "2022-03-01T06:54:38Z", "reviewed_features": [], + "tag_changes": {}, "create": 54, "modify": 438, "delete": 6, diff --git a/Docs/Tools/stats/stats.2022-4.json b/Docs/Tools/stats/stats.2022-4.json new file mode 100644 index 0000000000..fb4c6dff40 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-4.json @@ -0,0 +1,60956 @@ +{ + "features": [ + { + "id": 120402521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2398643, + -39.8452535 + ], + [ + -73.2364631, + -39.8452535 + ], + [ + -73.2364631, + -39.8438733 + ], + [ + -73.2398643, + -39.8438733 + ], + [ + -73.2398643, + -39.8452535 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T23:33:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000469433623999804, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osm", + "add-image": 12 + }, + "id": 120402521 + } + }, + { + "id": 120399310, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0260386, + 51.1162673 + ], + [ + 5.0396545, + 51.1162673 + ], + [ + 5.0396545, + 51.1241221 + ], + [ + 5.0260386, + 51.1241221 + ], + [ + 5.0260386, + 51.1162673 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T20:43:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000106950171320059, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 2, + "theme": "benches", + "answer": 13, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_5000m": 15, + "move:node/9677061284": "improve_accuracy", + "move:node/9705812213": "improve_accuracy" + }, + "id": 120399310 + } + }, + { + "id": 120399138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0320273, + 48.500312 + ], + [ + 9.0512069, + 48.500312 + ], + [ + 9.0512069, + 48.5066186 + ], + [ + 9.0320273, + 48.5066186 + ], + [ + 9.0320273, + 48.500312 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T20:36:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000120958065360046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 120399138 + } + }, + { + "id": 120398990, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2327853, + -39.8450743 + ], + [ + -73.2327853, + -39.8450743 + ], + [ + -73.2327853, + -39.8450743 + ], + [ + -73.2327853, + -39.8450743 + ], + [ + -73.2327853, + -39.8450743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T20:31:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 120398990 + } + }, + { + "id": 120398268, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7464049, + 50.8339484 + ], + [ + 4.7464049, + 50.8339484 + ], + [ + 4.7464049, + 50.8339484 + ], + [ + 4.7464049, + 50.8339484 + ], + [ + 4.7464049, + 50.8339484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T20:04:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9705865439": "source: https://osm.org/note/3090132" + }, + "id": 120398268 + } + }, + { + "id": 120397785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2333302, + 50.7383987 + ], + [ + 4.2333302, + 50.7383987 + ], + [ + 4.2333302, + 50.7383987 + ], + [ + 4.2333302, + 50.7383987 + ], + [ + 4.2333302, + 50.7383987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T19:43:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120397785 + } + }, + { + "id": 120396455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6966718, + 50.8510167 + ], + [ + 4.7154658, + 50.8510167 + ], + [ + 4.7154658, + 50.8838936 + ], + [ + 4.6966718, + 50.8838936 + ], + [ + 4.6966718, + 50.8510167 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:55:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 78, + "delete": 0, + "area": 0.000617888458599954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 113, + "locale": "nl", + "imagery": "osm" + }, + "id": 120396455 + } + }, + { + "id": 120396401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7391439, + 51.1725831 + ], + [ + 4.7475054, + 51.1725831 + ], + [ + 4.7475054, + 51.1774043 + ], + [ + 4.7391439, + 51.1774043 + ], + [ + 4.7391439, + 51.1725831 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:53:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 502, + "modify": 50, + "delete": 3, + "area": 0.0000403124638000148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 41, + "theme": "grb", + "delete": 3, + "import": 53, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "id": 120396401 + } + }, + { + "id": 120396255, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.8565603, + 48.1074348 + ], + [ + 7.8565603, + 48.1074348 + ], + [ + 7.8565603, + 48.1074348 + ], + [ + 7.8565603, + 48.1074348 + ], + [ + 7.8565603, + 48.1074348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sneidoer", + "uid": "15782267", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:48:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "Mapbox" + }, + "id": 120396255 + } + }, + { + "id": 120395804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7386571, + 51.1726844 + ], + [ + 4.7428277, + 51.1726844 + ], + [ + 4.7428277, + 51.1744161 + ], + [ + 4.7386571, + 51.1744161 + ], + [ + 4.7386571, + 51.1726844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:31:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 273, + "modify": 91, + "delete": 0, + "area": 0.00000722222802000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 74, + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "id": 120395804 + } + }, + { + "id": 120394790, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7394681, + 51.1730635 + ], + [ + 4.7487216, + 51.1730635 + ], + [ + 4.7487216, + 51.1772826 + ], + [ + 4.7394681, + 51.1772826 + ], + [ + 4.7394681, + 51.1730635 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1056277234", + "osm_id": 1056277234, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1056277525", + "osm_id": 1056277525, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1056277302", + "osm_id": 1056277302, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T18:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1435, + "modify": 422, + "delete": 2, + "area": 0.0000390414418500015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 359, + "theme": "grb", + "delete": 2, + "import": 187, + "locale": "nl", + "imagery": "osm", + "conflation": 130 + }, + "id": 120394790 + } + }, + { + "id": 120394688, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7222135, + 51.0532036 + ], + [ + 3.7263697, + 51.0532036 + ], + [ + 3.7263697, + 51.0566991 + ], + [ + 3.7222135, + 51.0566991 + ], + [ + 3.7222135, + 51.0532036 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T17:57:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000145279970999976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 2, + "change_within_500m": 1 + }, + "id": 120394688 + } + }, + { + "id": 120394541, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0137803, + 50.7709559 + ], + [ + 3.6195344, + 50.7709559 + ], + [ + 3.6195344, + 50.9773679 + ], + [ + 3.0137803, + 50.9773679 + ], + [ + 3.0137803, + 50.7709559 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T17:53:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 0, + "delete": 0, + "area": 0.1250349152892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "import": 15, + "locale": "nl", + "imagery": "AGIV", + "import:node/9705693346": "source: https://osm.org/note/3156316", + "import:node/9705693365": "source: https://osm.org/note/3156535", + "import:node/9705693366": "source: https://osm.org/note/3156538", + "import:node/9705693673": "source: https://osm.org/note/3156454", + "import:node/9705702007": "source: https://osm.org/note/3156330", + "import:node/9705703274": "source: https://osm.org/note/3156456", + "import:node/9705713129": "source: https://osm.org/note/3156588", + "import:node/9705722354": "source: https://osm.org/note/3156522", + "import:node/9705742551": "source: https://osm.org/note/3156553", + "import:node/9705742552": "source: https://osm.org/note/3156251", + "import:node/9705744996": "source: https://osm.org/note/3156322", + "import:node/9705744997": "source: https://osm.org/note/3156544", + "import:node/9705744998": "source: https://osm.org/note/3156391", + "import:node/9705762101": "source: https://osm.org/note/3099188", + "import:node/9705764047": "source: https://osm.org/note/3156517" + }, + "id": 120394541 + } + }, + { + "id": 120394538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7264761, + 51.0576823 + ], + [ + 3.7264761, + 51.0576823 + ], + [ + 3.7264761, + 51.0576823 + ], + [ + 3.7264761, + 51.0576823 + ], + [ + 3.7264761, + 51.0576823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T17:53:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 120394538 + } + }, + { + "id": 120392891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7224951, + 51.0557129 + ], + [ + 3.7224951, + 51.0557129 + ], + [ + 3.7224951, + 51.0557129 + ], + [ + 3.7224951, + 51.0557129 + ], + [ + 3.7224951, + 51.0557129 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T16:56:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 4 + }, + "id": 120392891 + } + }, + { + "id": 120392621, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3895547, + 50.8556532 + ], + [ + 4.3895547, + 50.8556532 + ], + [ + 4.3895547, + 50.8556532 + ], + [ + 4.3895547, + 50.8556532 + ], + [ + 4.3895547, + 50.8556532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T16:49:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120392621 + } + }, + { + "id": 120392452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8199535, + 55.3213495 + ], + [ + 12.5566509, + 55.3213495 + ], + [ + 12.5566509, + 55.7735667 + ], + [ + 8.8199535, + 55.7735667 + ], + [ + 8.8199535, + 55.3213495 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:44:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.68979883547531, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "id": 120392452 + } + }, + { + "id": 120392398, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2432576, + -39.8455509 + ], + [ + -73.2411974, + -39.8455509 + ], + [ + -73.2411974, + -39.8440972 + ], + [ + -73.2432576, + -39.8440972 + ], + [ + -73.2432576, + -39.8455509 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T16:42:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 11, + "delete": 0, + "area": 0.00000299491274000159, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 6, + "create": 4, + "locale": "es", + "imagery": "Mapbox", + "add-image": 7, + "change_over_5000m": 3, + "change_within_25m": 9, + "change_within_500m": 1 + }, + "id": 120392398 + } + }, + { + "id": 120392156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7078355, + 55.3547277 + ], + [ + 8.7746255, + 55.3547277 + ], + [ + 8.7746255, + 55.4610372 + ], + [ + 8.7078355, + 55.4610372 + ], + [ + 8.7078355, + 55.3547277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:37:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00710041150500023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120392156 + } + }, + { + "id": 120392071, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7411807, + 51.1736549 + ], + [ + 4.7488425, + 51.1736549 + ], + [ + 4.7488425, + 51.1755151 + ], + [ + 4.7411807, + 51.1755151 + ], + [ + 4.7411807, + 51.1736549 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:35:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 466, + "modify": 154, + "delete": 0, + "area": 0.0000142524803599687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 129, + "theme": "grb", + "import": 56, + "locale": "nl", + "imagery": "osm", + "conflation": 54 + }, + "id": 120392071 + } + }, + { + "id": 120392066, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T16:34:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120392066 + } + }, + { + "id": 120390495, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2367627, + -39.845014 + ], + [ + -73.2367627, + -39.845014 + ], + [ + -73.2367627, + -39.845014 + ], + [ + -73.2367627, + -39.845014 + ], + [ + -73.2367627, + -39.845014 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T15:50:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120390495 + } + }, + { + "id": 120390114, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7274309, + 51.0475331 + ], + [ + 3.7274309, + 51.0475331 + ], + [ + 3.7274309, + 51.0475331 + ], + [ + 3.7274309, + 51.0475331 + ], + [ + 3.7274309, + 51.0475331 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T15:38:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 120390114 + } + }, + { + "id": 120388913, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7419512, + 50.924552 + ], + [ + 5.4482154, + 50.924552 + ], + [ + 5.4482154, + 51.1750418 + ], + [ + 4.7419512, + 51.1750418 + ], + [ + 4.7419512, + 50.924552 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T15:09:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1261, + "modify": 572, + "delete": 5, + "area": 0.176911978205163, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 488, + "theme": "grb", + "delete": 5, + "import": 137, + "locale": "nl", + "imagery": "osm", + "conflation": 168 + }, + "id": 120388913 + } + }, + { + "id": 120384042, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8172066, + 50.7831854 + ], + [ + 3.1737285, + 50.7831854 + ], + [ + 3.1737285, + 51.0643974 + ], + [ + 2.8172066, + 51.0643974 + ], + [ + 2.8172066, + 50.7831854 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T12:52:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.100258236542799, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "import:node/9705089111": "source: https://osm.org/note/3156493", + "import:node/9705160168": "source: https://osm.org/note/3156480" + }, + "id": 120384042 + } + }, + { + "id": 120379913, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9902848, + 48.4983452 + ], + [ + 8.9920034, + 48.4983452 + ], + [ + 8.9920034, + 48.4984939 + ], + [ + 8.9902848, + 48.4984939 + ], + [ + 8.9902848, + 48.4983452 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:59:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.55555819994695e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 1 + }, + "id": 120379913 + } + }, + { + "id": 120379466, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904583, + 48.4979853 + ], + [ + 8.9905921, + 48.4979853 + ], + [ + 8.9905921, + 48.4982191 + ], + [ + 8.9904583, + 48.4982191 + ], + [ + 8.9904583, + 48.4979853 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:44:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.12824399996426e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 5 + }, + "id": 120379466 + } + }, + { + "id": 120379440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2174503, + 49.8073122 + ], + [ + 5.2174503, + 49.8073122 + ], + [ + 5.2174503, + 49.8073122 + ], + [ + 5.2174503, + 49.8073122 + ], + [ + 5.2174503, + 49.8073122 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T10:43:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120379440 + } + }, + { + "id": 120379056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904214, + 48.4972016 + ], + [ + 8.9919615, + 48.4972016 + ], + [ + 8.9919615, + 48.4985387 + ], + [ + 8.9904214, + 48.4985387 + ], + [ + 8.9904214, + 48.4972016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:32:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000205926771000061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "id": 120379056 + } + }, + { + "id": 120379014, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7034453, + 51.05174 + ], + [ + 3.7034681, + 51.05174 + ], + [ + 3.7034681, + 51.051783 + ], + [ + 3.7034453, + 51.051783 + ], + [ + 3.7034453, + 51.05174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:30:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.80399999954332e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/facadegardens.html", + "theme": "facadegardens", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "id": 120379014 + } + }, + { + "id": 120378778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9913481, + 48.4987423 + ], + [ + 8.9913493, + 48.4987423 + ], + [ + 8.9913493, + 48.4987678 + ], + [ + 8.9913481, + 48.4987678 + ], + [ + 8.9913481, + 48.4987423 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:24:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.05999999946988e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120378778 + } + }, + { + "id": 120378587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9903969, + 48.4980299 + ], + [ + 8.9914248, + 48.4980299 + ], + [ + 8.9914248, + 48.4986756 + ], + [ + 8.9903969, + 48.4986756 + ], + [ + 8.9903969, + 48.4980299 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T10:18:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.6371503000001e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_50m": 2 + }, + "id": 120378587 + } + }, + { + "id": 120377943, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904262, + 48.4979179 + ], + [ + 8.9929502, + 48.4979179 + ], + [ + 8.9929502, + 48.5000749 + ], + [ + 8.9904262, + 48.5000749 + ], + [ + 8.9904262, + 48.4979179 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:55:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 36, + "delete": 0, + "area": 0.0000054442680000085, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 58, + "create": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 41, + "change_within_50m": 12, + "change_within_100m": 6, + "move:node/9704904037": "improve_accuracy" + }, + "id": 120377943 + } + }, + { + "id": 120377903, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7036753, + 51.0489713 + ], + [ + 3.7286967, + 51.0489713 + ], + [ + 3.7286967, + 51.0527377 + ], + [ + 3.7036753, + 51.0527377 + ], + [ + 3.7036753, + 51.0489713 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:54:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000942406009600875, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_within_50m": 3, + "change_within_100m": 5, + "change_within_500m": 4, + "change_within_5000m": 1 + }, + "id": 120377903 + } + }, + { + "id": 120377432, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.253825, + 51.0431958 + ], + [ + 3.7162827, + 51.0431958 + ], + [ + 3.7162827, + 51.2358986 + ], + [ + 3.253825, + 51.2358986 + ], + [ + 3.253825, + 51.0431958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0891168936715596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/pets.html", + "theme": "pets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1, + "change_within_5000m": 1 + }, + "id": 120377432 + } + }, + { + "id": 120377097, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5635829, + 51.0952383 + ], + [ + 3.5635829, + 51.0952383 + ], + [ + 3.5635829, + 51.0952383 + ], + [ + 3.5635829, + 51.0952383 + ], + [ + 3.5635829, + 51.0952383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paul taildeman", + "uid": "15770618", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T09:26:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120377097 + } + }, + { + "id": 120376939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2557681, + 50.7130243 + ], + [ + 4.2687988, + 50.7130243 + ], + [ + 4.2687988, + 50.7278217 + ], + [ + 4.2557681, + 50.7278217 + ], + [ + 4.2557681, + 50.7130243 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T09:22:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000192820480179986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120376939 + } + }, + { + "id": 120374917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1286634, + 50.8943555 + ], + [ + 3.3460497, + 50.8943555 + ], + [ + 3.3460497, + 50.9457302 + ], + [ + 3.1286634, + 50.9457302 + ], + [ + 3.1286634, + 50.8943555 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T07:59:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0111681559466093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "import:node/9704729883": "source: https://osm.org/note/3156283", + "import:node/9704757597": "source: https://osm.org/note/3156545", + "import:node/9704768060": "source: https://osm.org/note/3156415" + }, + "id": 120374917 + } + }, + { + "id": 120374390, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1913973, + 50.8631001 + ], + [ + 5.2006824, + 50.8631001 + ], + [ + 5.2006824, + 50.8704355 + ], + [ + 5.1913973, + 50.8704355 + ], + [ + 5.1913973, + 50.8631001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T07:36:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 960, + "modify": 705, + "delete": 4, + "area": 0.0000681099225400187, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 597, + "theme": "grb", + "answer": 3, + "delete": 4, + "import": 90, + "locale": "nl", + "imagery": "osm", + "conflation": 210 + }, + "id": 120374390 + } + }, + { + "id": 120372631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0044315, + 51.2455364 + ], + [ + 3.3567665, + 51.2455364 + ], + [ + 3.3567665, + 51.3415574 + ], + [ + 3.0044315, + 51.3415574 + ], + [ + 3.0044315, + 51.2455364 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T06:19:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0338315590350001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 7, + "locale": "nl", + "imagery": "AGIV10cm", + "import:node/9704566926": "source: https://osm.org/note/3156388", + "import:node/9704570589": "source: https://osm.org/note/3156265", + "import:node/9704625186": "source: https://osm.org/note/3156297", + "import:node/9704635666": "source: https://osm.org/note/3156432", + "import:node/9704661419": "source: https://osm.org/note/3156580", + "import:node/9704667496": "source: https://osm.org/note/3156361", + "import:node/9704669954": "source: https://osm.org/note/3156403" + }, + "id": 120372631 + } + }, + { + "id": 120372165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1863906, + 50.9148896 + ], + [ + 3.1900667, + 50.9148896 + ], + [ + 3.1900667, + 50.9168361 + ], + [ + 3.1863906, + 50.9168361 + ], + [ + 3.1863906, + 50.9148896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T05:50:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 331, + "modify": 72, + "delete": 0, + "area": 0.00000715552864998283, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 59, + "theme": "grb", + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 120372165 + } + }, + { + "id": 120371966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1883005, + 50.8605881 + ], + [ + 5.2418551, + 50.8605881 + ], + [ + 5.2418551, + 50.8986694 + ], + [ + 5.1883005, + 50.8986694 + ], + [ + 5.1883005, + 50.8605881 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-30T05:37:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2986, + "modify": 711, + "delete": 3, + "area": 0.00203942878898009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 646, + "theme": "grb", + "answer": 4, + "delete": 3, + "import": 375, + "locale": "nl", + "imagery": "osm", + "conflation": 152, + "change_over_5000m": 139 + }, + "id": 120371966 + } + }, + { + "id": 120371769, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.666702, + -33.4410578 + ], + [ + -70.6653068, + -33.4410578 + ], + [ + -70.6653068, + -33.4401605 + ], + [ + -70.666702, + -33.4401605 + ], + [ + -70.666702, + -33.4410578 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T05:21:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.0000012519129600117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 13, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 17 + }, + "id": 120371769 + } + }, + { + "id": 120369153, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2324848, + -39.8421043 + ], + [ + -73.2324069, + -39.8421043 + ], + [ + -73.2324069, + -39.8418759 + ], + [ + -73.2324848, + -39.8418759 + ], + [ + -73.2324848, + -39.8421043 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-30T01:13:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.77923599989277e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 4 + }, + "id": 120369153 + } + }, + { + "id": 120367932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2328388, + -39.840476 + ], + [ + -73.2328388, + -39.840476 + ], + [ + -73.2328388, + -39.840476 + ], + [ + -73.2328388, + -39.840476 + ], + [ + -73.2328388, + -39.840476 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T23:34:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 120367932 + } + }, + { + "id": 120367870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.238302, + 50.7358458 + ], + [ + 4.238302, + 50.7358458 + ], + [ + 4.238302, + 50.7358458 + ], + [ + 4.238302, + 50.7358458 + ], + [ + 4.238302, + 50.7358458 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T23:30:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120367870 + } + }, + { + "id": 120366505, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2348095, + -39.8397957 + ], + [ + -73.2348095, + -39.8397957 + ], + [ + -73.2348095, + -39.8397957 + ], + [ + -73.2348095, + -39.8397957 + ], + [ + -73.2348095, + -39.8397957 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T22:10:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 120366505 + } + }, + { + "id": 120365046, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9995462, + 48.4997254 + ], + [ + 9.0006684, + 48.4997254 + ], + [ + 9.0006684, + 48.5012634 + ], + [ + 8.9995462, + 48.5012634 + ], + [ + 8.9995462, + 48.4997254 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T21:07:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.00000172594359999771, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 32, + "locale": "de", + "imagery": "osm" + }, + "id": 120365046 + } + }, + { + "id": 120364465, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9068538, + 51.0911055 + ], + [ + 4.907967, + 51.0911055 + ], + [ + 4.907967, + 51.0920025 + ], + [ + 4.9068538, + 51.0920025 + ], + [ + 4.9068538, + 51.0911055 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T20:46:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.98540400001975e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 5, + "change_within_5000m": 5 + }, + "id": 120364465 + } + }, + { + "id": 120364359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9096264, + 51.1073958 + ], + [ + 4.9096264, + 51.1073958 + ], + [ + 4.9096264, + 51.1073958 + ], + [ + 4.9096264, + 51.1073958 + ], + [ + 4.9096264, + 51.1073958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T20:42:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_1000m": 1 + }, + "id": 120364359 + } + }, + { + "id": 120363858, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2346527, + -39.8422102 + ], + [ + -73.2324386, + -39.8422102 + ], + [ + -73.2324386, + -39.8402137 + ], + [ + -73.2346527, + -39.8402137 + ], + [ + -73.2346527, + -39.8422102 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T20:27:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000442045065000016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 14, + "change_within_25m": 3, + "change_within_500m": 2 + }, + "id": 120363858 + } + }, + { + "id": 120362003, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9044765, + 48.468765 + ], + [ + 8.980525, + 48.468765 + ], + [ + 8.980525, + 48.5262919 + ], + [ + 8.9044765, + 48.5262919 + ], + [ + 8.9044765, + 48.468765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T19:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.00437483445464997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 145, + "locale": "de", + "imagery": "osm" + }, + "id": 120362003 + } + }, + { + "id": 120359646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.276713, + 55.5092658 + ], + [ + 11.276713, + 55.5092658 + ], + [ + 11.276713, + 55.5092658 + ], + [ + 11.276713, + 55.5092658 + ], + [ + 11.276713, + 55.5092658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T18:09:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "answer": 1, + "locale": "da", + "imagery": "osm" + }, + "id": 120359646 + } + }, + { + "id": 120358624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.251159, + -39.8277397 + ], + [ + -73.2498673, + -39.8277397 + ], + [ + -73.2498673, + -39.8274431 + ], + [ + -73.251159, + -39.8274431 + ], + [ + -73.251159, + -39.8277397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T17:41:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.83118219997037e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2 + }, + "id": 120358624 + } + }, + { + "id": 120355930, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7285087, + 51.0486068 + ], + [ + 3.7290877, + 51.0486068 + ], + [ + 3.7290877, + 51.049483 + ], + [ + 3.7285087, + 51.049483 + ], + [ + 3.7285087, + 51.0486068 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T16:26:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 5.07319800000347e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 120355930 + } + }, + { + "id": 120355179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6950896, + 50.8560385 + ], + [ + 4.7010642, + 50.8560385 + ], + [ + 4.7010642, + 50.8662777 + ], + [ + 4.6950896, + 50.8662777 + ], + [ + 4.6950896, + 50.8560385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T16:07:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.0000611751243200059, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 35, + "locale": "nl", + "imagery": "osm" + }, + "id": 120355179 + } + }, + { + "id": 120354482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.519889, + 44.866215 + ], + [ + -0.514541, + 44.866215 + ], + [ + -0.514541, + 44.8677669 + ], + [ + -0.519889, + 44.8677669 + ], + [ + -0.519889, + 44.866215 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T15:48:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000829956120001396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 6, + "create": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 5, + "change_within_50m": 4, + "change_within_100m": 4 + }, + "id": 120354482 + } + }, + { + "id": 120352890, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2130498, + 51.2047361 + ], + [ + 3.2130498, + 51.2047361 + ], + [ + 3.2130498, + 51.2047361 + ], + [ + 3.2130498, + 51.2047361 + ], + [ + 3.2130498, + 51.2047361 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T15:08:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "id": 120352890 + } + }, + { + "id": 120351020, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4471157, + 50.9234633 + ], + [ + 5.4536135, + 50.9234633 + ], + [ + 5.4536135, + 50.926139 + ], + [ + 5.4471157, + 50.926139 + ], + [ + 5.4471157, + 50.9234633 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T14:23:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 167, + "delete": 6, + "area": 0.0000173861634599838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 147, + "theme": "grb", + "delete": 6, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "id": 120351020 + } + }, + { + "id": 120350164, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7283606, + 51.0489748 + ], + [ + 3.7284411, + 51.0489748 + ], + [ + 3.7284411, + 51.0490869 + ], + [ + 3.7283606, + 51.0490869 + ], + [ + 3.7283606, + 51.0489748 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T14:04:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.02404999965515e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "id": 120350164 + } + }, + { + "id": 120348008, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4447661, + 50.9234665 + ], + [ + 5.4486741, + 50.9234665 + ], + [ + 5.4486741, + 50.9262928 + ], + [ + 5.4447661, + 50.9262928 + ], + [ + 5.4447661, + 50.9234665 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T13:04:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 79, + "modify": 557, + "delete": 12, + "area": 0.0000110451803999816, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 494, + "theme": "grb", + "delete": 12, + "import": 19, + "locale": "nl", + "imagery": "osm", + "conflation": 142 + }, + "id": 120348008 + } + }, + { + "id": 120346477, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4439204, + 50.9207664 + ], + [ + 5.4503216, + 50.9207664 + ], + [ + 5.4503216, + 50.924494 + ], + [ + 5.4439204, + 50.924494 + ], + [ + 5.4439204, + 50.9207664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T12:22:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 145, + "modify": 957, + "delete": 14, + "area": 0.0000238611131200309, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 860, + "theme": "grb", + "delete": 14, + "import": 31, + "locale": "nl", + "imagery": "osm", + "conflation": 250 + }, + "id": 120346477 + } + }, + { + "id": 120345807, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.994632, + 48.5012839 + ], + [ + 8.9975211, + 48.5012839 + ], + [ + 8.9975211, + 48.5013374 + ], + [ + 8.994632, + 48.5013374 + ], + [ + 8.994632, + 48.5012839 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T12:03:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.5456684999984e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_within_25m": 11 + }, + "id": 120345807 + } + }, + { + "id": 120345669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9979481, + 48.5014694 + ], + [ + 8.9979481, + 48.5014694 + ], + [ + 8.9979481, + 48.5014694 + ], + [ + 8.9979481, + 48.5014694 + ], + [ + 8.9979481, + 48.5014694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T11:59:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120345669 + } + }, + { + "id": 120341721, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3383529, + 50.9268755 + ], + [ + 5.3421981, + 50.9268755 + ], + [ + 5.3421981, + 50.9275984 + ], + [ + 5.3383529, + 50.9275984 + ], + [ + 5.3383529, + 50.9268755 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T10:19:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 30, + "modify": 32, + "delete": 0, + "area": 0.00000277969507999801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 29, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "id": 120341721 + } + }, + { + "id": 120340015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7283606, + 51.048999 + ], + [ + 3.7283606, + 51.048999 + ], + [ + 3.7283606, + 51.048999 + ], + [ + 3.7283606, + 51.048999 + ], + [ + 3.7283606, + 51.048999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T09:33:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 120340015 + } + }, + { + "id": 120339118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.442324, + 52.478745 + ], + [ + 13.442324, + 52.478745 + ], + [ + 13.442324, + 52.478745 + ], + [ + 13.442324, + 52.478745 + ], + [ + 13.442324, + 52.478745 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #berlin_emergency_water_pumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T09:10:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "berlin_emergency_water_pumps", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 120339118 + } + }, + { + "id": 120338160, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4418486, + 50.921075 + ], + [ + 5.4455207, + 50.921075 + ], + [ + 5.4455207, + 50.9225077 + ], + [ + 5.4418486, + 50.9225077 + ], + [ + 5.4418486, + 50.921075 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T08:45:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 91, + "modify": 215, + "delete": 10, + "area": 0.00000526101766998255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 194, + "theme": "grb", + "delete": 10, + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 42 + }, + "id": 120338160 + } + }, + { + "id": 120337448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.334383, + 50.9325825 + ], + [ + 5.3344888, + 50.9325825 + ], + [ + 5.3344888, + 50.9325868 + ], + [ + 5.334383, + 50.9325868 + ], + [ + 5.334383, + 50.9325825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-29T08:27:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.54940000054386e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "move:node/9702388959": "improve_accuracy", + "import:node/9702388959": "source: https://osm.org/note/3044134" + }, + "id": 120337448 + } + }, + { + "id": 120335108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.531136, + 53.2213008 + ], + [ + 6.5895385, + 53.2213008 + ], + [ + 6.5895385, + 53.2337883 + ], + [ + 6.531136, + 53.2337883 + ], + [ + 6.531136, + 53.2213008 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "martiensch", + "uid": "319572", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T07:23:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00072930121874993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 120335108 + } + }, + { + "id": 120334916, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.53721, + 53.2181639 + ], + [ + 6.546886, + 53.2181639 + ], + [ + 6.546886, + 53.2257492 + ], + [ + 6.53721, + 53.2257492 + ], + [ + 6.53721, + 53.2181639 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "martiensch", + "uid": "319572", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T07:17:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000733953628000212, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 8, + "create": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 120334916 + } + }, + { + "id": 120332456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1589584, + 40.4616134 + ], + [ + 0.3542295, + 40.4616134 + ], + [ + 0.3542295, + 40.6182505 + ], + [ + 0.1589584, + 40.6182505 + ], + [ + 0.1589584, + 40.4616134 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cleta14", + "uid": "13856772", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T06:06:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0305866988178109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 4, + "create": 4, + "locale": "ca", + "imagery": "CartoDB.Voyager" + }, + "id": 120332456 + } + }, + { + "id": 120331766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T05:45:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 120331766 + } + }, + { + "id": 120329675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2558997, + -39.8102926 + ], + [ + -73.2465914, + -39.8102926 + ], + [ + -73.2465914, + -39.8057535 + ], + [ + -73.2558997, + -39.8057535 + ], + [ + -73.2558997, + -39.8102926 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T04:13:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000042251304529959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "es", + "imagery": "Mapbox", + "add-image": 7 + }, + "id": 120329675 + } + }, + { + "id": 120327530, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2531191, + -39.8065294 + ], + [ + -73.2468344, + -39.8065294 + ], + [ + -73.2468344, + -39.8049543 + ], + [ + -73.2531191, + -39.8049543 + ], + [ + -73.2531191, + -39.8065294 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-29T01:32:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000989903097003756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osmfr", + "add-image": 6 + }, + "id": 120327530 + } + }, + { + "id": 120326170, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2141254, + -39.8097407 + ], + [ + -73.2141254, + -39.8097407 + ], + [ + -73.2141254, + -39.8097407 + ], + [ + -73.2141254, + -39.8097407 + ], + [ + -73.2141254, + -39.8097407 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T23:53:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120326170 + } + }, + { + "id": 120324556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7351029, + 50.9033232 + ], + [ + 4.7414597, + 50.9033232 + ], + [ + 4.7414597, + 50.9062445 + ], + [ + 4.7351029, + 50.9062445 + ], + [ + 4.7351029, + 50.9033232 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T22:18:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 402, + "modify": 177, + "delete": 0, + "area": 0.0000185701198399805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 150, + "theme": "grb", + "answer": 1, + "import": 36, + "locale": "nl", + "imagery": "osm", + "conflation": 52 + }, + "id": 120324556 + } + }, + { + "id": 120322768, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2397259, + -39.8331128 + ], + [ + -73.2397259, + -39.8331128 + ], + [ + -73.2397259, + -39.8331128 + ], + [ + -73.2397259, + -39.8331128 + ], + [ + -73.2397259, + -39.8331128 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T20:57:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120322768 + } + }, + { + "id": 120322668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7547044, + 50.8389844 + ], + [ + 3.4074052, + 50.8389844 + ], + [ + 3.4074052, + 51.2051122 + ], + [ + 2.7547044, + 51.2051122 + ], + [ + 2.7547044, + 50.8389844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T20:53:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.238971907962241, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 2, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "import:node/9701542104": "source: https://osm.org/note/3156562", + "import:node/9701561270": "source: https://osm.org/note/3156411", + "import:node/9701570812": "source: https://osm.org/note/3156570", + "import:node/9701571209": "source: https://osm.org/note/3156271", + "import:node/9701584703": "source: https://osm.org/note/3156255", + "import:node/9701587608": "source: https://osm.org/note/3156539", + "import:node/9701587609": "source: https://osm.org/note/3156307", + "import:node/9701598030": "source: https://osm.org/note/3156305", + "import:node/9701671177": "source: https://osm.org/note/3156382", + "import:node/9701687965": "source: https://osm.org/note/3156581", + "import:node/9701710280": "source: https://osm.org/note/3156559" + }, + "id": 120322668 + } + }, + { + "id": 120322230, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3886565, + 50.9812992 + ], + [ + 4.3886565, + 50.9812992 + ], + [ + 4.3886565, + 50.9812992 + ], + [ + 4.3886565, + 50.9812992 + ], + [ + 4.3886565, + 50.9812992 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T20:37:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 120322230 + } + }, + { + "id": 120319093, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0219993, + 52.2934042 + ], + [ + 8.0219993, + 52.2934042 + ], + [ + 8.0219993, + 52.2934042 + ], + [ + 8.0219993, + 52.2934042 + ], + [ + 8.0219993, + 52.2934042 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T18:48:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/ghostbikes", + "theme": "ghostbikes", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Positron", + "change_over_5000m": 3 + }, + "id": 120319093 + } + }, + { + "id": 120316691, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7036397, + 50.8805314 + ], + [ + 4.7039947, + 50.8805314 + ], + [ + 4.7039947, + 50.8805475 + ], + [ + 4.7036397, + 50.8805475 + ], + [ + 4.7036397, + 50.8805314 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T17:41:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.71549999868449e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "move:node/7835232730": "improve_accuracy" + }, + "id": 120316691 + } + }, + { + "id": 120316661, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8911088, + 50.7934721 + ], + [ + 3.2911181, + 50.7934721 + ], + [ + 3.2911181, + 50.946004 + ], + [ + 2.8911088, + 50.946004 + ], + [ + 2.8911088, + 50.7934721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T17:40:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0610141785466698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "import:node/9701180924": "source: https://osm.org/note/3156253", + "import:node/9701180925": "source: https://osm.org/note/3156292", + "import:node/9701215172": "source: https://osm.org/note/3156327", + "import:node/9701228251": "source: https://osm.org/note/3156428", + "import:node/9701237371": "source: https://osm.org/note/3156506", + "import:node/9701296154": "source: https://osm.org/note/3156414" + }, + "id": 120316661 + } + }, + { + "id": 120315154, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T17:00:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 120315154 + } + }, + { + "id": 120315050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.643786, + 44.7767245 + ], + [ + -0.6423973, + 44.7767245 + ], + [ + -0.6423973, + 44.7777805 + ], + [ + -0.643786, + 44.7777805 + ], + [ + -0.643786, + 44.7767245 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T16:58:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000146646719999779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 4, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 8 + }, + "id": 120315050 + } + }, + { + "id": 120314964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.7609605, + 50.858289 + ], + [ + 12.7613552, + 50.858289 + ], + [ + 12.7613552, + 50.8585943 + ], + [ + 12.7609605, + 50.8585943 + ], + [ + 12.7609605, + 50.858289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TS-R", + "uid": "8070841", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T16:56:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.20501910000662e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 120314964 + } + }, + { + "id": 120314173, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7013633, + 50.8304518 + ], + [ + 3.2332977, + 50.8304518 + ], + [ + 3.2332977, + 51.2757217 + ], + [ + 2.7013633, + 51.2757217 + ], + [ + 2.7013633, + 50.8304518 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T16:36:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.23685437709456, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "import": 11, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 1, + "import:node/9701058313": "source: https://osm.org/note/3156486", + "import:node/9701073381": "source: https://osm.org/note/3156491", + "import:node/9701076723": "source: https://osm.org/note/3156467", + "import:node/9701091891": "source: https://osm.org/note/3156290", + "import:node/9701097634": "source: https://osm.org/note/3156291", + "import:node/9701136016": "source: https://osm.org/note/3156326", + "import:node/9701148510": "source: https://osm.org/note/3156277", + "import:node/9701176442": "source: https://osm.org/note/3156280", + "import:node/9701180827": "source: https://osm.org/note/3156362", + "import:node/9701183780": "source: https://osm.org/note/3156380", + "import:node/9701186418": "source: https://osm.org/note/3156353" + }, + "id": 120314173 + } + }, + { + "id": 120312891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6353165, + 50.7721722 + ], + [ + 4.7288914, + 50.7721722 + ], + [ + 4.7288914, + 50.8372338 + ], + [ + 4.6353165, + 50.8372338 + ], + [ + 4.6353165, + 50.7721722 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jeromeSAR", + "uid": "15749666", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T15:57:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.00608813271384, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 22, + "create": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "move:node/9700999305": "improve_accuracy", + "move:node/9701006765": "improve_accuracy", + "move:node/9701092181": "improve_accuracy" + }, + "id": 120312891 + } + }, + { + "id": 120310177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2720791, + 51.2072598 + ], + [ + 3.2720791, + 51.2072598 + ], + [ + 3.2720791, + 51.2072598 + ], + [ + 3.2720791, + 51.2072598 + ], + [ + 3.2720791, + 51.2072598 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T14:57:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "import:node/9700863480": "source: https://osm.org/note/3130938" + }, + "id": 120310177 + } + }, + { + "id": 120307502, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7128895, + 41.2183525 + ], + [ + 1.7129298, + 41.2183525 + ], + [ + 1.7129298, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2183525 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T13:47:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.9298099998757e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 8, + "create": 4, + "locale": "es", + "imagery": "Mapbox" + }, + "id": 120307502 + } + }, + { + "id": 120306979, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5523952, + 52.4674428 + ], + [ + 10.5751271, + 52.4674428 + ], + [ + 10.5751271, + 52.4791091 + ], + [ + 10.5523952, + 52.4791091 + ], + [ + 10.5523952, + 52.4674428 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T13:37:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.00026519716497004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 25, + "locale": "de", + "imagery": "osm" + }, + "id": 120306979 + } + }, + { + "id": 120306076, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2441478, + 50.7358077 + ], + [ + 4.2443401, + 50.7358077 + ], + [ + 4.2443401, + 50.7359231 + ], + [ + 4.2441478, + 50.7359231 + ], + [ + 4.2441478, + 50.7358077 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T13:18:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.21914199996343e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 4 + }, + "id": 120306076 + } + }, + { + "id": 120303736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2162452, + 51.215144 + ], + [ + 3.2202656, + 51.215144 + ], + [ + 3.2202656, + 51.2183341 + ], + [ + 3.2162452, + 51.2183341 + ], + [ + 3.2162452, + 51.215144 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T12:25:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000128254780399903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 20, + "locale": "nl", + "imagery": "osm" + }, + "id": 120303736 + } + }, + { + "id": 120302732, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6868303, + 50.7815248 + ], + [ + -0.6865394, + 50.7815248 + ], + [ + -0.6865394, + 50.7817476 + ], + [ + -0.6868303, + 50.7817476 + ], + [ + -0.6868303, + 50.7815248 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hasnep", + "uid": "7657368", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T12:01:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.4812520000891e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120302732 + } + }, + { + "id": 120301131, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2115821, + 51.2114453 + ], + [ + 3.2127246, + 51.2114453 + ], + [ + 3.2127246, + 51.2118374 + ], + [ + 3.2115821, + 51.2118374 + ], + [ + 3.2115821, + 51.2114453 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T11:25:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.47974249998924e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 6 + }, + "id": 120301131 + } + }, + { + "id": 120300189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3411788, + 50.8052703 + ], + [ + 3.3441447, + 50.8052703 + ], + [ + 3.3441447, + 50.8140091 + ], + [ + 3.3411788, + 50.8140091 + ], + [ + 3.3411788, + 50.8052703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T11:03:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000259184069200133, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "create": 2, + "locale": "en", + "imagery": "AGIV" + }, + "id": 120300189 + } + }, + { + "id": 120292066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6423973, + 44.6064666 + ], + [ + -0.5539217, + 44.6064666 + ], + [ + -0.5539217, + 44.7769144 + ], + [ + -0.6423973, + 44.7769144 + ], + [ + -0.6423973, + 44.6064666 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T08:03:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0150804713736805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 8, + "create": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 9, + "change_within_100m": 3 + }, + "id": 120292066 + } + }, + { + "id": 120289145, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1794021, + 41.3912499 + ], + [ + 2.1794021, + 41.3912499 + ], + [ + 2.1794021, + 41.3912499 + ], + [ + 2.1794021, + 41.3912499 + ], + [ + 2.1794021, + 41.3912499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UnGeograf", + "uid": "601515", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T06:54:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 2, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "add-image": 1 + }, + "id": 120289145 + } + }, + { + "id": 120288908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1812797, + 41.3923747 + ], + [ + 2.1812797, + 41.3923747 + ], + [ + 2.1812797, + 41.3923747 + ], + [ + 2.1812797, + 41.3923747 + ], + [ + 2.1812797, + 41.3923747 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UnGeograf", + "uid": "601515", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-28T06:48:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS" + }, + "id": 120288908 + } + }, + { + "id": 120287347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5319926, + 44.8382183 + ], + [ + -0.5303936, + 44.8382183 + ], + [ + -0.5303936, + 44.8392447 + ], + [ + -0.5319926, + 44.8392447 + ], + [ + -0.5319926, + 44.8382183 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T06:07:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.00000164121360000106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 10, + "create": 5, + "locale": "fr", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 1, + "change_within_25m": 19 + }, + "id": 120287347 + } + }, + { + "id": 120287059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9939917, + 48.4988276 + ], + [ + 9.0038216, + 48.4988276 + ], + [ + 9.0038216, + 48.5023499 + ], + [ + 8.9939917, + 48.5023499 + ], + [ + 8.9939917, + 48.4988276 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-28T05:59:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.000034623856770001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 74, + "locale": "de", + "imagery": "osm", + "change_within_25m": 20, + "change_within_50m": 21, + "change_within_100m": 9, + "change_within_500m": 24 + }, + "id": 120287059 + } + }, + { + "id": 120278278, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2496647, + -39.8098563 + ], + [ + -70.6659334, + -39.8098563 + ], + [ + -70.6659334, + -33.4410098 + ], + [ + -73.2496647, + -33.4410098 + ], + [ + -73.2496647, + -39.8098563 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T21:45:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 16.4553880469454, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "id": 120278278 + } + }, + { + "id": 120275844, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3926468, + 50.9757445 + ], + [ + 4.3928009, + 50.9757445 + ], + [ + 4.3928009, + 50.975898 + ], + [ + 4.3926468, + 50.975898 + ], + [ + 4.3926468, + 50.9757445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T20:13:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 11, + "delete": 0, + "area": 2.36543500005758e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 16, + "move:node/9698398536": "improve_accuracy", + "move:node/9698479416": "improve_accuracy", + "move:node/9699008125": "improve_accuracy" + }, + "id": 120275844 + } + }, + { + "id": 120275459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3847083, + 50.862308 + ], + [ + 4.3849686, + 50.862308 + ], + [ + 4.3849686, + 50.8624739 + ], + [ + 4.3847083, + 50.8624739 + ], + [ + 4.3847083, + 50.862308 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T20:01:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.31837699997047e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_within_5000m": 3 + }, + "id": 120275459 + } + }, + { + "id": 120275236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3849516, + 50.8622407 + ], + [ + 4.3849516, + 50.8622407 + ], + [ + 4.3849516, + 50.8622407 + ], + [ + 4.3849516, + 50.8622407 + ], + [ + 4.3849516, + 50.8622407 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T19:53:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 3 + }, + "id": 120275236 + } + }, + { + "id": 120274592, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9996652, + 48.5015076 + ], + [ + 9.0048033, + 48.5015076 + ], + [ + 9.0048033, + 48.5023499 + ], + [ + 8.9996652, + 48.5023499 + ], + [ + 8.9996652, + 48.5015076 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T19:33:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 24, + "delete": 0, + "area": 0.00000432782163001115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 80, + "create": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 64, + "change_within_50m": 16 + }, + "id": 120274592 + } + }, + { + "id": 120273966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.4311352, + 44.4106035 + ], + [ + 6.4311352, + 44.4106035 + ], + [ + 6.4311352, + 44.4106035 + ], + [ + 6.4311352, + 44.4106035 + ], + [ + 6.4311352, + 44.4106035 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T19:14:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 10 + }, + "id": 120273966 + } + }, + { + "id": 120273645, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5580058, + 52.4728631 + ], + [ + 10.5759154, + 52.4728631 + ], + [ + 10.5759154, + 52.4829719 + ], + [ + 10.5580058, + 52.4829719 + ], + [ + 10.5580058, + 52.4728631 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T19:03:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.000181044564480078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 60, + "locale": "de", + "imagery": "osm" + }, + "id": 120273645 + } + }, + { + "id": 120271984, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3919547, + 50.9757445 + ], + [ + 4.3928009, + 50.9757445 + ], + [ + 4.3928009, + 50.9820632 + ], + [ + 4.3919547, + 50.9820632 + ], + [ + 4.3919547, + 50.9757445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T18:14:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000534688393999985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "change_within_50m": 1, + "change_within_1000m": 3 + }, + "id": 120271984 + } + }, + { + "id": 120271082, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8145332, + 50.9245338 + ], + [ + 7.0936242, + 50.9245338 + ], + [ + 7.0936242, + 51.0429538 + ], + [ + 6.8145332, + 51.0429538 + ], + [ + 6.8145332, + 50.9245338 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T17:49:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1153, + "delete": 0, + "area": 0.0330499562200001, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-28T07:04:33.617501Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1584, + "locale": "de", + "imagery": "osm" + }, + "id": 120271082 + } + }, + { + "id": 120269379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3927563, + 50.9758061 + ], + [ + 4.3927563, + 50.9758061 + ], + [ + 4.3927563, + 50.9758061 + ], + [ + 4.3927563, + 50.9758061 + ], + [ + 4.3927563, + 50.9758061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T17:05:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "id": 120269379 + } + }, + { + "id": 120264044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5590334, + 44.841086 + ], + [ + -0.5504843, + 44.841086 + ], + [ + -0.5504843, + 44.8429435 + ], + [ + -0.5590334, + 44.8429435 + ], + [ + -0.5590334, + 44.841086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:58:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000158799532499986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 11, + "create": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8, + "change_within_5000m": 6 + }, + "id": 120264044 + } + }, + { + "id": 120262559, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:23:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120262559 + } + }, + { + "id": 120262558, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:23:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120262558 + } + }, + { + "id": 120262231, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4388758, + 50.9223772 + ], + [ + 5.4492955, + 50.9223772 + ], + [ + 5.4492955, + 50.9326226 + ], + [ + 5.4388758, + 50.9326226 + ], + [ + 5.4388758, + 50.9223772 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T14:16:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 943, + "modify": 1243, + "delete": 6, + "area": 0.000106753994380023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1087, + "theme": "grb", + "delete": 6, + "import": 133, + "locale": "nl", + "imagery": "osm", + "conflation": 316 + }, + "id": 120262231 + } + }, + { + "id": 120262024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4425273, + 50.9285437 + ], + [ + 5.4449969, + 50.9285437 + ], + [ + 5.4449969, + 50.9307454 + ], + [ + 5.4425273, + 50.9307454 + ], + [ + 5.4425273, + 50.9285437 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T14:10:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 308, + "modify": 75, + "delete": 4, + "area": 0.00000543731832000024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 65, + "theme": "grb", + "delete": 4, + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 20 + }, + "id": 120262024 + } + }, + { + "id": 120261724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3276124, + 50.9308768 + ], + [ + 5.3564325, + 50.9308768 + ], + [ + 5.3564325, + 50.9353526 + ], + [ + 5.3276124, + 50.9353526 + ], + [ + 5.3276124, + 50.9308768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:03:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 8, + "delete": 0, + "area": 0.000128993003580049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 6, + "import": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 8, + "change_within_25m": 13, + "import:node/9697869265": "source: https://osm.org/note/3022956", + "import:node/9697901804": "source: https://osm.org/note/3044123" + }, + "id": 120261724 + } + }, + { + "id": 120261638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4066514, + 50.9597592 + ], + [ + 5.4115236, + 50.9597592 + ], + [ + 5.4115236, + 50.964387 + ], + [ + 5.4066514, + 50.964387 + ], + [ + 5.4066514, + 50.9597592 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T14:01:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000225475671600048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "id": 120261638 + } + }, + { + "id": 120259986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4096885, + 50.9640934 + ], + [ + 5.4096885, + 50.9640934 + ], + [ + 5.4096885, + 50.9640934 + ], + [ + 5.4096885, + 50.9640934 + ], + [ + 5.4096885, + 50.9640934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T13:23:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "move": 1, + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4, + "move:node/9697781830": "improve_accuracy" + }, + "id": 120259986 + } + }, + { + "id": 120258160, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T12:39:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120258160 + } + }, + { + "id": 120253381, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4437326, + 50.9248717 + ], + [ + 5.4536818, + 50.9248717 + ], + [ + 5.4536818, + 50.9286236 + ], + [ + 5.4437326, + 50.9286236 + ], + [ + 5.4437326, + 50.9248717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:54:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 132, + "delete": 0, + "area": 0.0000373284034800468, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 115, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "id": 120253381 + } + }, + { + "id": 120252971, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4514661, + 50.9255006 + ], + [ + 5.4569341, + 50.9255006 + ], + [ + 5.4569341, + 50.9290919 + ], + [ + 5.4514661, + 50.9290919 + ], + [ + 5.4514661, + 50.9255006 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:44:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 35, + "modify": 508, + "delete": 8, + "area": 0.0000196372284000183, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 451, + "theme": "grb", + "delete": 8, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 122 + }, + "id": 120252971 + } + }, + { + "id": 120251819, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.449723, + 50.9263156 + ], + [ + 5.4561734, + 50.9263156 + ], + [ + 5.4561734, + 50.9297073 + ], + [ + 5.449723, + 50.9297073 + ], + [ + 5.449723, + 50.9263156 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:17:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 165, + "modify": 961, + "delete": 55, + "area": 0.0000218778216799659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 839, + "theme": "grb", + "delete": 55, + "import": 29, + "locale": "nl", + "imagery": "osm", + "conflation": 252 + }, + "id": 120251819 + } + }, + { + "id": 120251357, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4497945, + 50.9266987 + ], + [ + 5.4535776, + 50.9266987 + ], + [ + 5.4535776, + 50.9279123 + ], + [ + 5.4497945, + 50.9279123 + ], + [ + 5.4497945, + 50.9266987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T10:07:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 25, + "modify": 297, + "delete": 9, + "area": 0.00000459117015999894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 259, + "theme": "grb", + "delete": 9, + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "id": 120251357 + } + }, + { + "id": 120251334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2241441, + 51.2100561 + ], + [ + 3.2241441, + 51.2100561 + ], + [ + 3.2241441, + 51.2100561 + ], + [ + 3.2241441, + 51.2100561 + ], + [ + 3.2241441, + 51.2100561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T10:06:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 120251334 + } + }, + { + "id": 120250606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4185221, + 46.9274587 + ], + [ + 7.4185221, + 46.9274587 + ], + [ + 7.4185221, + 46.9274587 + ], + [ + 7.4185221, + 46.9274587 + ], + [ + 7.4185221, + 46.9274587 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T09:51:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 120250606 + } + }, + { + "id": 120248389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3398385, + 50.9275422 + ], + [ + 5.3409647, + 50.9275422 + ], + [ + 5.3409647, + 50.9278388 + ], + [ + 5.3398385, + 50.9278388 + ], + [ + 5.3398385, + 50.9275422 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T09:01:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.34030920006436e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "id": 120248389 + } + }, + { + "id": 120248044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3330195, + 50.9276346 + ], + [ + 5.3471524, + 50.9276346 + ], + [ + 5.3471524, + 50.9324509 + ], + [ + 5.3330195, + 50.9324509 + ], + [ + 5.3330195, + 50.9276346 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T08:53:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.000068068286270023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 3, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 4, + "change_within_25m": 14, + "import:node/9697095024": "source: https://osm.org/note/3044547" + }, + "id": 120248044 + } + }, + { + "id": 120244590, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3748418, + 50.9496914 + ], + [ + 5.4104335, + 50.9496914 + ], + [ + 5.4104335, + 50.968158 + ], + [ + 5.3748418, + 50.968158 + ], + [ + 5.3748418, + 50.9496914 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T07:30:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 40, + "delete": 0, + "area": 0.000657257687220133, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 59, + "create": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 13, + "change_over_5000m": 6, + "change_within_25m": 67, + "change_within_50m": 5 + }, + "id": 120244590 + } + }, + { + "id": 120244482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3955156, + 50.9653478 + ], + [ + 5.3955156, + 50.9653478 + ], + [ + 5.3955156, + 50.9653478 + ], + [ + 5.3955156, + 50.9653478 + ], + [ + 5.3955156, + 50.9653478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T07:27:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 120244482 + } + }, + { + "id": 120242221, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9947416, + 48.500913 + ], + [ + 8.9963973, + 48.500913 + ], + [ + 8.9963973, + 48.5013838 + ], + [ + 8.9947416, + 48.5013838 + ], + [ + 8.9947416, + 48.500913 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T06:37:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.79503560003945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 2 + }, + "id": 120242221 + } + }, + { + "id": 120239556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.373508, + 50.9490024 + ], + [ + 5.3764986, + 50.9490024 + ], + [ + 5.3764986, + 50.9517814 + ], + [ + 5.373508, + 50.9517814 + ], + [ + 5.373508, + 50.9490024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-27T05:17:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 37, + "delete": 0, + "area": 0.00000831087740001019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 32, + "theme": "grb", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 120239556 + } + }, + { + "id": 120234753, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5635077, + 51.2541828 + ], + [ + 4.56759, + 51.2541828 + ], + [ + 4.56759, + 51.2632023 + ], + [ + 4.5635077, + 51.2632023 + ], + [ + 4.5635077, + 51.2541828 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-27T00:41:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000368203048500063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 120234753 + } + }, + { + "id": 120232481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7404303, + 50.9040704 + ], + [ + 4.7450336, + 50.9040704 + ], + [ + 4.7450336, + 50.9057489 + ], + [ + 4.7404303, + 50.9057489 + ], + [ + 4.7404303, + 50.9040704 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T22:16:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 395, + "modify": 72, + "delete": 0, + "area": 0.00000772663904998685, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 61, + "theme": "grb", + "answer": 1, + "import": 47, + "locale": "nl", + "imagery": "AGIV", + "conflation": 20 + }, + "id": 120232481 + } + }, + { + "id": 120231894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1321597, + 50.945512 + ], + [ + 3.1321597, + 50.945512 + ], + [ + 3.1321597, + 50.945512 + ], + [ + 3.1321597, + 50.945512 + ], + [ + 3.1321597, + 50.945512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gptm", + "uid": "2873411", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T21:49:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "id": 120231894 + } + }, + { + "id": 120227439, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5745276, + 44.8516137 + ], + [ + -0.5745276, + 44.8516137 + ], + [ + -0.5745276, + 44.8516137 + ], + [ + -0.5745276, + 44.8516137 + ], + [ + -0.5745276, + 44.8516137 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T19:25:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 2 + }, + "id": 120227439 + } + }, + { + "id": 120225439, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 34.7938312, + 50.9039554 + ], + [ + 34.8002064, + 50.9039554 + ], + [ + 34.8002064, + 50.906146 + ], + [ + 34.7938312, + 50.906146 + ], + [ + 34.7938312, + 50.9039554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mike140", + "uid": "2471547", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T18:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000139655131199935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 2, + "locale": "ru", + "imagery": "osm" + }, + "id": 120225439 + } + }, + { + "id": 120223902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3714535, + 50.8460928 + ], + [ + 4.3714535, + 50.8460928 + ], + [ + 4.3714535, + 50.8460928 + ], + [ + 4.3714535, + 50.8460928 + ], + [ + 4.3714535, + 50.8460928 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T17:54:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 120223902 + } + }, + { + "id": 120223551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.570827, + 44.849881 + ], + [ + -0.570285, + 44.849881 + ], + [ + -0.570285, + 44.85007 + ], + [ + -0.570827, + 44.85007 + ], + [ + -0.570827, + 44.849881 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T17:47:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.02437999999382e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 6 + }, + "id": 120223551 + } + }, + { + "id": 120223210, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3715139, + 50.8461728 + ], + [ + 4.3715139, + 50.8461728 + ], + [ + 4.3715139, + 50.8461728 + ], + [ + 4.3715139, + 50.8461728 + ], + [ + 4.3715139, + 50.8461728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T17:40:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "UrbISOrtho2019", + "add-image": 1 + }, + "id": 120223210 + } + }, + { + "id": 120222092, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8278402, + 50.8812077 + ], + [ + 7.0141001, + 50.8812077 + ], + [ + 7.0141001, + 51.0535663 + ], + [ + 6.8278402, + 51.0535663 + ], + [ + 6.8278402, + 50.8812077 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T17:18:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1507, + "delete": 0, + "area": 0.0321034956001406, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:42:46.095881Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 2043, + "locale": "de", + "imagery": "osm" + }, + "id": 120222092 + } + }, + { + "id": 120219950, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1662108, + 50.4593106 + ], + [ + 4.1695145, + 50.4593106 + ], + [ + 4.1695145, + 50.4630277 + ], + [ + 4.1662108, + 50.4630277 + ], + [ + 4.1662108, + 50.4593106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T16:20:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 316, + "modify": 22, + "delete": 0, + "area": 0.0000122801832699862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 16, + "theme": "grb", + "answer": 11, + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "id": 120219950 + } + }, + { + "id": 120219343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9960516, + 48.5015802 + ], + [ + 8.996525, + 48.5015802 + ], + [ + 8.996525, + 48.5017357 + ], + [ + 8.9960516, + 48.5017357 + ], + [ + 8.9960516, + 48.5015802 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T16:02:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.36136999992442e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 3 + }, + "id": 120219343 + } + }, + { + "id": 120219110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9964405, + 48.5019446 + ], + [ + 8.997406, + 48.5019446 + ], + [ + 8.997406, + 48.5033908 + ], + [ + 8.9964405, + 48.5033908 + ], + [ + 8.9964405, + 48.5019446 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T15:56:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00000139630609999603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 47, + "locale": "de", + "imagery": "osm", + "change_within_25m": 21, + "change_within_50m": 26 + }, + "id": 120219110 + } + }, + { + "id": 120216757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4474662, + 50.9263933 + ], + [ + 5.4532841, + 50.9263933 + ], + [ + 5.4532841, + 50.9284687 + ], + [ + 5.4474662, + 50.9284687 + ], + [ + 5.4474662, + 50.9263933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T14:52:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 23, + "modify": 143, + "delete": 0, + "area": 0.0000120744696600151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 127, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "id": 120216757 + } + }, + { + "id": 120216323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1824725, + 50.7409776 + ], + [ + 5.4532943, + 50.7409776 + ], + [ + 5.4532943, + 50.9266826 + ], + [ + 5.1824725, + 50.9266826 + ], + [ + 5.1824725, + 50.7409776 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T14:42:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 81, + "modify": 278, + "delete": 11, + "area": 0.0502929623689995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 244, + "theme": "grb", + "delete": 11, + "import": 12, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "id": 120216323 + } + }, + { + "id": 120207342, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4738925, + 51.1585866 + ], + [ + 4.4873759, + 51.1585866 + ], + [ + 4.4873759, + 51.1681231 + ], + [ + 4.4738925, + 51.1681231 + ], + [ + 4.4738925, + 51.1585866 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "maubu", + "uid": "15716055", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T11:18:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 14, + "delete": 0, + "area": 0.000128584444100041, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 25, + "create": 10, + "locale": "nl", + "imagery": "osm", + "move:node/9695002953": "improve_accuracy", + "move:node/9695011074": "improve_accuracy" + }, + "id": 120207342 + } + }, + { + "id": 120207177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4777924, + 51.1677805 + ], + [ + 4.4814491, + 51.1677805 + ], + [ + 4.4814491, + 51.1704701 + ], + [ + 4.4777924, + 51.1704701 + ], + [ + 4.4777924, + 51.1677805 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "maubu", + "uid": "15716055", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T11:14:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000983506032001223, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 120207177 + } + }, + { + "id": 120206971, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9994342, + 48.5014179 + ], + [ + 8.9998915, + 48.5014179 + ], + [ + 8.9998915, + 48.5016334 + ], + [ + 8.9994342, + 48.5016334 + ], + [ + 8.9994342, + 48.5014179 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T11:10:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.8548150001553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 9, + "create": 2, + "locale": "de", + "imagery": "Mapbox", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 120206971 + } + }, + { + "id": 120206348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9986825, + 48.5010869 + ], + [ + 8.9986825, + 48.5010869 + ], + [ + 8.9986825, + 48.5010869 + ], + [ + 8.9986825, + 48.5010869 + ], + [ + 8.9986825, + 48.5010869 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T10:55:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "HDM_HOT", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 120206348 + } + }, + { + "id": 120206275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9978656, + 48.5004222 + ], + [ + 8.9993589, + 48.5004222 + ], + [ + 8.9993589, + 48.5016207 + ], + [ + 8.9978656, + 48.5016207 + ], + [ + 8.9978656, + 48.5004222 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-26T10:53:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000178972004999077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 24, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 17, + "change_within_50m": 7 + }, + "id": 120206275 + } + }, + { + "id": 120206062, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.4146899, + 52.4925382 + ], + [ + 13.5047906, + 52.4925382 + ], + [ + 13.5047906, + 55.6880602 + ], + [ + 12.4146899, + 55.6880602 + ], + [ + 12.4146899, + 52.4925382 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T10:49:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 3.4834407690654, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "answer": 8, + "locale": "da", + "imagery": "osm" + }, + "id": 120206062 + } + }, + { + "id": 120195444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.181427, + 51.2186785 + ], + [ + 5.181885, + 51.2186785 + ], + [ + 5.181885, + 51.2186886 + ], + [ + 5.181427, + 51.2186886 + ], + [ + 5.181427, + 51.2186785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "toerisme Mol", + "uid": "8297519", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T06:36:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 4.62579999873539e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9694357881": "improve_accuracy" + }, + "id": 120195444 + } + }, + { + "id": 120195385, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5937885, + 50.9449326 + ], + [ + 4.6790566, + 50.9449326 + ], + [ + 4.6790566, + 50.9805494 + ], + [ + 4.5937885, + 50.9805494 + ], + [ + 4.5937885, + 50.9449326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MDGISHaacht***", + "uid": "12746326", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T06:34:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 10, + "delete": 1, + "area": 0.00303697686407999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 21, + "create": 14, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9016776554": "testing point" + }, + "id": 120195385 + } + }, + { + "id": 120187584, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5783778, + 55.7031117 + ], + [ + 12.5883898, + 55.7031117 + ], + [ + 12.5883898, + 55.7080512 + ], + [ + 12.5783778, + 55.7080512 + ], + [ + 12.5783778, + 55.7031117 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-26T00:16:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.0000494542739999883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 27, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120187584 + } + }, + { + "id": 120187025, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4894975, + 55.0959313 + ], + [ + 12.5743897, + 55.0959313 + ], + [ + 12.5743897, + 55.7138495 + ], + [ + 8.4894975, + 55.7138495 + ], + [ + 8.4894975, + 55.0959313 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T23:36:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 2.52412923541806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "answer": 15, + "locale": "da", + "imagery": "osm" + }, + "id": 120187025 + } + }, + { + "id": 120186161, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.9038395, + 50.8976594 + ], + [ + 6.9806282, + 50.8976594 + ], + [ + 6.9806282, + 50.9661808 + ], + [ + 6.9038395, + 50.9661808 + ], + [ + 6.9038395, + 50.8976594 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T22:40:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 268, + "delete": 0, + "area": 0.00526166922817957, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:42:28.793217Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 349, + "locale": "de", + "imagery": "osm" + }, + "id": 120186161 + } + }, + { + "id": 120185489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9693125, + 48.4961818 + ], + [ + 9.0013771, + 48.4961818 + ], + [ + 9.0013771, + 48.5055486 + ], + [ + 8.9693125, + 48.5055486 + ], + [ + 8.9693125, + 48.4961818 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T22:06:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000300342695279844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "id": 120185489 + } + }, + { + "id": 120183066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2497451, + -39.8279219 + ], + [ + -73.2497373, + -39.8279219 + ], + [ + -73.2497373, + -39.8278168 + ], + [ + -73.2497451, + -39.8278168 + ], + [ + -73.2497451, + -39.8279219 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T20:35:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.19779999117068e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 3 + }, + "id": 120183066 + } + }, + { + "id": 120183047, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2497741, + -39.8278462 + ], + [ + -73.2497741, + -39.8278462 + ], + [ + -73.2497741, + -39.8278462 + ], + [ + -73.2497741, + -39.8278462 + ], + [ + -73.2497741, + -39.8278462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T20:34:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120183047 + } + }, + { + "id": 120181343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4037145, + 37.796486 + ], + [ + -122.403714, + 37.796486 + ], + [ + -122.403714, + 37.796486 + ], + [ + -122.4037145, + 37.796486 + ], + [ + -122.4037145, + 37.796486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T19:43:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120181343 + } + }, + { + "id": 120176790, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.022781, + 58.166119 + ], + [ + 8.0420166, + 58.166119 + ], + [ + 8.0420166, + 58.178694 + ], + [ + 8.022781, + 58.178694 + ], + [ + 8.022781, + 58.166119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Trygve03", + "uid": "13780862", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T17:35:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000241887669999966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120176790 + } + }, + { + "id": 120170937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1377902, + 51.1505411 + ], + [ + 4.1657281, + 51.1505411 + ], + [ + 4.1657281, + 51.1714126 + ], + [ + 4.1377902, + 51.1714126 + ], + [ + 4.1377902, + 51.1505411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T15:08:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.000583105879849945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 18, + "create": 6, + "locale": "nl", + "imagery": "osm" + }, + "id": 120170937 + } + }, + { + "id": 120170214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.178747, + 50.7405825 + ], + [ + 5.1894177, + 50.7405825 + ], + [ + 5.1894177, + 50.7453643 + ], + [ + 5.178747, + 50.7453643 + ], + [ + 5.178747, + 50.7405825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:51:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 75, + "modify": 143, + "delete": 0, + "area": 0.000051025153259959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 130, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 120170214 + } + }, + { + "id": 120170210, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:51:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120170210 + } + }, + { + "id": 120169944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0038112, + 51.1438948 + ], + [ + 4.06712, + 51.1438948 + ], + [ + 4.06712, + 51.1654434 + ], + [ + 4.0038112, + 51.1654434 + ], + [ + 4.0038112, + 51.1438948 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:45:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 30, + "delete": 0, + "area": 0.00136421600768016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 39, + "create": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 10 + }, + "id": 120169944 + } + }, + { + "id": 120169450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1740001, + 50.741684 + ], + [ + 5.1883351, + 50.741684 + ], + [ + 5.1883351, + 50.7454081 + ], + [ + 5.1740001, + 50.7454081 + ], + [ + 5.1740001, + 50.741684 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1130, + "modify": 24, + "delete": 0, + "area": 0.0000533849734999921, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 22, + "theme": "grb", + "import": 144, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "id": 120169450 + } + }, + { + "id": 120169448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1752228, + 50.7443831 + ], + [ + 5.1754037, + 50.7443831 + ], + [ + 5.1754037, + 50.7444769 + ], + [ + 5.1752228, + 50.7444769 + ], + [ + 5.1752228, + 50.7443831 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:31:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 15, + "modify": 0, + "delete": 0, + "area": 1.69684200003615e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 120169448 + } + }, + { + "id": 120168895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2182755, + 51.1283752 + ], + [ + 4.2273739, + 51.1283752 + ], + [ + 4.2273739, + 51.128833 + ], + [ + 4.2182755, + 51.128833 + ], + [ + 4.2182755, + 51.1283752 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore Baeck", + "uid": "15137714", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:15:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000416524751999556, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 12, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 120168895 + } + }, + { + "id": 120168366, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.249474, + -39.8098227 + ], + [ + -73.249474, + -39.8098227 + ], + [ + -73.249474, + -39.8098227 + ], + [ + -73.249474, + -39.8098227 + ], + [ + -73.249474, + -39.8098227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T14:03:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 2 + }, + "id": 120168366 + } + }, + { + "id": 120167551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1723853, + 51.1837683 + ], + [ + 4.1869444, + 51.1837683 + ], + [ + 4.1869444, + 51.1961223 + ], + [ + 4.1723853, + 51.1961223 + ], + [ + 4.1723853, + 51.1837683 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T13:41:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 5, + "delete": 0, + "area": 0.000179863121400024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 8, + "locale": "nl", + "imagery": "osm" + }, + "id": 120167551 + } + }, + { + "id": 120167480, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1732651, + 51.110355 + ], + [ + 4.2626381, + 51.110355 + ], + [ + 4.2626381, + 51.1611977 + ], + [ + 4.1732651, + 51.1611977 + ], + [ + 4.1732651, + 51.110355 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore Baeck", + "uid": "15137714", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T13:39:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.00454396462710037, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 22, + "create": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120167480 + } + }, + { + "id": 120166110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5349641, + 44.8552743 + ], + [ + -0.5349641, + 44.8552743 + ], + [ + -0.5349641, + 44.8552743 + ], + [ + -0.5349641, + 44.8552743 + ], + [ + -0.5349641, + 44.8552743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T13:10:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120166110 + } + }, + { + "id": 120165592, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3070007, + 51.0908074 + ], + [ + 4.3289492, + 51.0908074 + ], + [ + 4.3289492, + 51.106593 + ], + [ + 4.3070007, + 51.106593 + ], + [ + 4.3070007, + 51.0908074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeneralGman", + "uid": "7125513", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T12:57:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000346470241599874, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 8, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "move:node/9692144604": "improve_accuracy", + "move:node/9692188037": "improve_accuracy", + "import:node/9692144604": "source: https://osm.org/note/3143447", + "import:node/9692188037": "source: https://osm.org/note/3143431" + }, + "id": 120165592 + } + }, + { + "id": 120165474, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1741493, + 50.7190371 + ], + [ + 5.3795284, + 50.7190371 + ], + [ + 5.3795284, + 50.7628459 + ], + [ + 5.1741493, + 50.7628459 + ], + [ + 5.1741493, + 50.7190371 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T12:55:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2774, + "modify": 911, + "delete": 56, + "area": 0.00899741191608016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 797, + "theme": "grb", + "delete": 56, + "import": 384, + "locale": "nl", + "imagery": "osm", + "conflation": 240 + }, + "id": 120165474 + } + }, + { + "id": 120164101, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9714812, + 51.0019248 + ], + [ + 3.9764942, + 51.0019248 + ], + [ + 3.9764942, + 51.0090059 + ], + [ + 3.9714812, + 51.0090059 + ], + [ + 3.9714812, + 51.0019248 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Do Wim", + "uid": "708153", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T12:21:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000354975543000026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 18, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "move:node/9692130729": "improve_accuracy", + "move:node/9692133204": "improve_accuracy" + }, + "id": 120164101 + } + }, + { + "id": 120162833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9780915, + 50.9582274 + ], + [ + 3.9787473, + 50.9582274 + ], + [ + 3.9787473, + 50.9673007 + ], + [ + 3.9780915, + 50.9673007 + ], + [ + 3.9780915, + 50.9582274 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Do Wim", + "uid": "708153", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T11:53:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.00000595027014000367, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 16, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 20, + "move:node/9692058225": "improve_accuracy" + }, + "id": 120162833 + } + }, + { + "id": 120162015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9262899, + 51.2262933 + ], + [ + 4.9262899, + 51.2262933 + ], + [ + 4.9262899, + 51.2262933 + ], + [ + 4.9262899, + 51.2262933 + ], + [ + 4.9262899, + 51.2262933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bistro Lichtaartse Kwezel", + "uid": "15702264", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T11:34:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120162015 + } + }, + { + "id": 120161969, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2310185, + 50.883426 + ], + [ + 3.8754326, + 50.883426 + ], + [ + 3.8754326, + 51.0073958 + ], + [ + 3.2310185, + 51.0073958 + ], + [ + 3.2310185, + 50.883426 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T11:33:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0798878870941784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 21, + "locale": "nl", + "imagery": "osm" + }, + "id": 120161969 + } + }, + { + "id": 120160725, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9688167, + 51.1656562 + ], + [ + 4.9727713, + 51.1656562 + ], + [ + 4.9727713, + 51.1676953 + ], + [ + 4.9688167, + 51.1676953 + ], + [ + 4.9688167, + 51.1656562 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T11:03:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 51, + "modify": 102, + "delete": 4, + "area": 0.00000806382485999047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 89, + "theme": "grb", + "delete": 4, + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 120160725 + } + }, + { + "id": 120160668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9715144, + 51.1672788 + ], + [ + 4.9717714, + 51.1672788 + ], + [ + 4.9717714, + 51.1674514 + ], + [ + 4.9715144, + 51.1674514 + ], + [ + 4.9715144, + 51.1672788 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T11:02:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 4.43581999996783e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 120160668 + } + }, + { + "id": 120160529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9272649, + 51.1057295 + ], + [ + 4.9275371, + 51.1057295 + ], + [ + 4.9275371, + 51.1058747 + ], + [ + 4.9272649, + 51.1058747 + ], + [ + 4.9272649, + 51.1057295 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:58:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 3.9523439999682e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 2, + "change_within_1000m": 7, + "move:node/9678653779": "improve_accuracy" + }, + "id": 120160529 + } + }, + { + "id": 120160440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9268854, + 51.1062234 + ], + [ + 4.9268854, + 51.1062234 + ], + [ + 4.9268854, + 51.1062234 + ], + [ + 4.9268854, + 51.1062234 + ], + [ + 4.9268854, + 51.1062234 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:55:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_1000m": 8 + }, + "id": 120160440 + } + }, + { + "id": 120160364, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2212426, + 51.2154766 + ], + [ + 3.2212426, + 51.2154766 + ], + [ + 3.2212426, + 51.2154766 + ], + [ + 3.2212426, + 51.2154766 + ], + [ + 3.2212426, + 51.2154766 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:53:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 120160364 + } + }, + { + "id": 120160331, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:52:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120160331 + } + }, + { + "id": 120159544, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9696896, + 48.501467 + ], + [ + 8.9698584, + 48.501467 + ], + [ + 8.9698584, + 48.5015719 + ], + [ + 8.9696896, + 48.5015719 + ], + [ + 8.9696896, + 48.501467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.77071200005346e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 120159544 + } + }, + { + "id": 120159432, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9685055, + 51.1669452 + ], + [ + 4.9879915, + 51.1669452 + ], + [ + 4.9879915, + 51.172447 + ], + [ + 4.9685055, + 51.172447 + ], + [ + 4.9685055, + 51.1669452 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:29:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 94, + "modify": 305, + "delete": 13, + "area": 0.000107208074799951, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 271, + "theme": "grb", + "delete": 13, + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 72 + }, + "id": 120159432 + } + }, + { + "id": 120158880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.9819431, + 43.2351672 + ], + [ + -3.9531952, + 43.2351672 + ], + [ + -3.9531952, + 43.2365312 + ], + [ + -3.9819431, + 43.2365312 + ], + [ + -3.9819431, + 43.2351672 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T10:14:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000392121356000679, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 120158880 + } + }, + { + "id": 120158150, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1598368, + 51.2137736 + ], + [ + 5.1598368, + 51.2137736 + ], + [ + 5.1598368, + 51.2137736 + ], + [ + 5.1598368, + 51.2137736 + ], + [ + 5.1598368, + 51.2137736 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Loekie 96", + "uid": "15699422", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T09:57:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9691796726": "source: https://osm.org/note/3143493" + }, + "id": 120158150 + } + }, + { + "id": 120157938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3379113, + 44.498018 + ], + [ + 11.3379113, + 44.498018 + ], + [ + 11.3379113, + 44.498018 + ], + [ + 11.3379113, + 44.498018 + ], + [ + 11.3379113, + 44.498018 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T09:52:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 120157938 + } + }, + { + "id": 120156539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.7682581, + 49.4355528 + ], + [ + 7.769821, + 49.4355528 + ], + [ + 7.769821, + 49.4359468 + ], + [ + 7.7682581, + 49.4359468 + ], + [ + 7.7682581, + 49.4355528 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Justine Dam", + "uid": "12308921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T09:18:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 6.15782600000241e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 120156539 + } + }, + { + "id": 120154534, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T08:31:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant", + "theme": "hailhydrant", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 120154534 + } + }, + { + "id": 120154517, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.983842, + 51.1686792 + ], + [ + 4.9873995, + 51.1686792 + ], + [ + 4.9873995, + 51.1720586 + ], + [ + 4.983842, + 51.1720586 + ], + [ + 4.983842, + 51.1686792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T08:31:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 197, + "modify": 742, + "delete": 30, + "area": 0.0000120222155000012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 665, + "theme": "grb", + "answer": 5, + "delete": 30, + "import": 20, + "locale": "nl", + "imagery": "AGIV", + "conflation": 194 + }, + "id": 120154517 + } + }, + { + "id": 120153499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.532808, + 44.8374679 + ], + [ + -0.532808, + 44.8374679 + ], + [ + -0.532808, + 44.8374679 + ], + [ + -0.532808, + 44.8374679 + ], + [ + -0.532808, + 44.8374679 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T08:05:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 120153499 + } + }, + { + "id": 120152802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1737211, + 51.1905938 + ], + [ + 4.1769907, + 51.1905938 + ], + [ + 4.1769907, + 51.1911267 + ], + [ + 4.1737211, + 51.1911267 + ], + [ + 4.1737211, + 51.1905938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T07:46:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00000174236983998729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 8 + }, + "id": 120152802 + } + }, + { + "id": 120152790, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T07:46:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 120152790 + } + }, + { + "id": 120152789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.0172933, + 8.7199517 + ], + [ + 77.744054, + 8.7199517 + ], + [ + 77.744054, + 10.648478 + ], + [ + 77.0172933, + 10.648478 + ], + [ + 77.0172933, + 8.7199517 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T07:46:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.40157712375641, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 120152789 + } + }, + { + "id": 120152781, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T07:46:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 120152781 + } + }, + { + "id": 120152075, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.174456, + 51.1906711 + ], + [ + 4.176473, + 51.1906711 + ], + [ + 4.176473, + 51.1926547 + ], + [ + 4.174456, + 51.1926547 + ], + [ + 4.174456, + 51.1906711 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T07:30:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 8, + "delete": 1, + "area": 0.00000400092119998998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 24, + "create": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_over_5000m": 36, + "move:node/9691514458": "improve_accuracy", + "deletion:node/9691514458": "testing point" + }, + "id": 120152075 + } + }, + { + "id": 120148743, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9945506, + 48.4996889 + ], + [ + 8.9956248, + 48.4996889 + ], + [ + 8.9956248, + 48.500619 + ], + [ + 8.9945506, + 48.500619 + ], + [ + 8.9945506, + 48.4996889 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-25T06:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 3, + "delete": 0, + "area": 9.99113419997496e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 2, + "theme": "trees", + "answer": 7, + "create": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 4, + "change_within_50m": 5, + "move:node/9691362038": "improve_accuracy", + "move:node/9691362039": "improve_accuracy" + }, + "id": 120148743 + } + }, + { + "id": 120148584, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.1252519, + 12.7853259 + ], + [ + 80.2041448, + 12.7853259 + ], + [ + 80.2041448, + 13.0584818 + ], + [ + 79.1252519, + 13.0584818 + ], + [ + 79.1252519, + 12.7853259 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T06:09:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.294705961103109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 36, + "locale": "en", + "imagery": "osm" + }, + "id": 120148584 + } + }, + { + "id": 120145421, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.516853, + 44.8996624 + ], + [ + -0.5114825, + 44.8996624 + ], + [ + -0.5114825, + 44.9037389 + ], + [ + -0.516853, + 44.9037389 + ], + [ + -0.516853, + 44.8996624 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-25T04:19:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000218928432500195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "id": 120145421 + } + }, + { + "id": 120139641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5729138, + 55.6980772 + ], + [ + 12.5768017, + 55.6980772 + ], + [ + 12.5768017, + 55.7050842 + ], + [ + 12.5729138, + 55.7050842 + ], + [ + 12.5729138, + 55.6980772 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T21:32:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000272425153000095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "answer": 2, + "locale": "da", + "imagery": "osm" + }, + "id": 120139641 + } + }, + { + "id": 120138392, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.136644, + 57.1285621 + ], + [ + -2.0972007, + 57.1285621 + ], + [ + -2.0972007, + 57.1691266 + ], + [ + -2.136644, + 57.1691266 + ], + [ + -2.136644, + 57.1285621 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T20:36:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0015999977428498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 120138392 + } + }, + { + "id": 120135054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1048011, + 51.1397728 + ], + [ + 3.1048011, + 51.1397728 + ], + [ + 3.1048011, + 51.1397728 + ], + [ + 3.1048011, + 51.1397728 + ], + [ + 3.1048011, + 51.1397728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T18:33:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 120135054 + } + }, + { + "id": 120126389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -123.6870359, + 48.7849366 + ], + [ + -123.687035, + 48.7849366 + ], + [ + -123.687035, + 48.7849366 + ], + [ + -123.6870359, + 48.7849366 + ], + [ + -123.6870359, + 48.7849366 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bmitch", + "uid": "3529163", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T14:22:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120126389 + } + }, + { + "id": 120126293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -123.6896799, + 48.7818764 + ], + [ + -123.6888509, + 48.7818764 + ], + [ + -123.6888509, + 48.7821159 + ], + [ + -123.6896799, + 48.7821159 + ], + [ + -123.6896799, + 48.7818764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bmitch", + "uid": "3529163", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T14:19:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.9854549999844e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120126293 + } + }, + { + "id": 120126057, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -123.6715772, + 48.7821781 + ], + [ + -123.659553, + 48.7821781 + ], + [ + -123.659553, + 48.7883177 + ], + [ + -123.6715772, + 48.7883177 + ], + [ + -123.6715772, + 48.7821781 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bmitch", + "uid": "3529163", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T14:13:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000738237783199624, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120126057 + } + }, + { + "id": 120125051, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.392097, + 51.9219038 + ], + [ + 14.4177425, + 51.9219038 + ], + [ + 14.4177425, + 51.9292871 + ], + [ + 14.392097, + 51.9292871 + ], + [ + 14.392097, + 51.9219038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stephan112", + "uid": "15691045", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T13:45:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000189348420150016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 120125051 + } + }, + { + "id": 120119826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9857068, + 48.4969753 + ], + [ + 9.0153184, + 48.4969753 + ], + [ + 9.0153184, + 48.5075197 + ], + [ + 8.9857068, + 48.5075197 + ], + [ + 8.9857068, + 48.4969753 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T11:06:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.000312236555040007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "id": 120119826 + } + }, + { + "id": 120119676, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1802583, + 51.197229 + ], + [ + 3.1803935, + 51.197229 + ], + [ + 3.1803935, + 51.1972781 + ], + [ + 3.1802583, + 51.1972781 + ], + [ + 3.1802583, + 51.197229 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T11:01:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.63831999975774e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120119676 + } + }, + { + "id": 120119331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6157562, + 39.324763 + ], + [ + -76.6157556, + 39.324763 + ], + [ + -76.6157556, + 39.3247682 + ], + [ + -76.6157562, + 39.3247682 + ], + [ + -76.6157562, + 39.324763 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T10:49:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.1200000388152e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "move": 1, + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "US_Forest_Service_roads", + "change_over_5000m": 1, + "change_within_25m": 3, + "move:node/9689489188": "improve_accuracy" + }, + "id": 120119331 + } + }, + { + "id": 120115431, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5127848, + 44.9031148 + ], + [ + -0.5114825, + 44.9031148 + ], + [ + -0.5114825, + 44.9037389 + ], + [ + -0.5127848, + 44.9037389 + ], + [ + -0.5127848, + 44.9031148 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T08:46:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 8.12765430004125e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 7, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "id": 120115431 + } + }, + { + "id": 120112928, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0822203, + 51.1509259 + ], + [ + 3.122729, + 51.1509259 + ], + [ + 3.122729, + 51.171152 + ], + [ + 3.0822203, + 51.171152 + ], + [ + 3.0822203, + 51.1509259 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T07:15:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00081933301707009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 120112928 + } + }, + { + "id": 120112740, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T07:06:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "id": 120112740 + } + }, + { + "id": 120112710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ], + [ + -73.2496808, + -39.810087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T07:05:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120112710 + } + }, + { + "id": 120111678, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.391168, + 50.8573535 + ], + [ + 5.3958006, + 50.8573535 + ], + [ + 5.3958006, + 50.8593436 + ], + [ + 5.391168, + 50.8593436 + ], + [ + 5.391168, + 50.8573535 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-24T06:05:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000921933726000179, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV10cm", + "move:node/5189225237": "improve_accuracy", + "move:node/9689116779": "improve_accuracy", + "import:node/9689116779": "source: https://osm.org/note/3044020" + }, + "id": 120111678 + } + }, + { + "id": 120108327, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.638389, + 44.053642 + ], + [ + -91.638389, + 44.053642 + ], + [ + -91.638389, + 44.053642 + ], + [ + -91.638389, + 44.053642 + ], + [ + -91.638389, + 44.053642 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "imnichol", + "uid": "522254", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T00:47:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120108327 + } + }, + { + "id": 120107996, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.6280589, + 14.5620957 + ], + [ + 121.0940109, + 14.5620957 + ], + [ + 121.0940109, + 14.9645337 + ], + [ + 120.6280589, + 14.9645337 + ], + [ + 120.6280589, + 14.5620957 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-24T00:16:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 12, + "delete": 0, + "area": 0.187516790976001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 17, + "create": 3, + "locale": "en", + "imagery": "cyclosm" + }, + "id": 120107996 + } + }, + { + "id": 120107578, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2355944, + -39.8385786 + ], + [ + -73.2355944, + -39.8385786 + ], + [ + -73.2355944, + -39.8385786 + ], + [ + -73.2355944, + -39.8385786 + ], + [ + -73.2355944, + -39.8385786 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T23:38:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "id": 120107578 + } + }, + { + "id": 120107458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5695766, + 50.4491717 + ], + [ + 5.5710044, + 50.4491717 + ], + [ + 5.5710044, + 50.4502963 + ], + [ + 5.5695766, + 50.4502963 + ], + [ + 5.5695766, + 50.4491717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T23:27:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000160570387999503, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120107458 + } + }, + { + "id": 120107429, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2494513, + -39.8385645 + ], + [ + -73.2355996, + -39.8385645 + ], + [ + -73.2355996, + -39.809661 + ], + [ + -73.2494513, + -39.809661 + ], + [ + -73.2494513, + -39.8385645 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T23:25:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000400362610950081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 4 + }, + "id": 120107429 + } + }, + { + "id": 120106841, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4239344, + 50.8866536 + ], + [ + 3.4314821, + 50.8866536 + ], + [ + 3.4314821, + 50.8911054 + ], + [ + 3.4239344, + 50.8911054 + ], + [ + 3.4239344, + 50.8866536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T22:44:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000336008508599883, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 120106841 + } + }, + { + "id": 120106311, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9377638, + 48.4845403 + ], + [ + 8.9377638, + 48.4845403 + ], + [ + 8.9377638, + 48.4845403 + ], + [ + 8.9377638, + 48.4845403 + ], + [ + 8.9377638, + 48.4845403 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T22:10:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120106311 + } + }, + { + "id": 120106277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6153505, + 39.3246199 + ], + [ + -76.6144896, + 39.3246199 + ], + [ + -76.6144896, + 39.324651 + ], + [ + -76.6153505, + 39.324651 + ], + [ + -76.6153505, + 39.3246199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T22:09:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 2.67739900011117e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 6, + "create": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "id": 120106277 + } + }, + { + "id": 120106269, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6144037, + 39.3246531 + ], + [ + -76.6142696, + 39.3246531 + ], + [ + -76.6142696, + 39.3246567 + ], + [ + -76.6144037, + 39.3246567 + ], + [ + -76.6144037, + 39.3246531 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T22:08:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.82759999913056e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 120106269 + } + }, + { + "id": 120106118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1164973, + 51.1495293 + ], + [ + 3.1165743, + 51.1495293 + ], + [ + 3.1165743, + 51.1496024 + ], + [ + 3.1164973, + 51.1496024 + ], + [ + 3.1164973, + 51.1495293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:59:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.62870000013105e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 120106118 + } + }, + { + "id": 120105314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1364592, + 51.1467511 + ], + [ + 3.1388471, + 51.1467511 + ], + [ + 3.1388471, + 51.1546245 + ], + [ + 3.1364592, + 51.1546245 + ], + [ + 3.1364592, + 51.1467511 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:18:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000188008918599857, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 120105314 + } + }, + { + "id": 120105230, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1909729, + 51.1557131 + ], + [ + 3.1909729, + 51.1557131 + ], + [ + 3.1909729, + 51.1557131 + ], + [ + 3.1909729, + 51.1557131 + ], + [ + 3.1909729, + 51.1557131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:14:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 120105230 + } + }, + { + "id": 120105174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1891021, + 51.1936769 + ], + [ + 3.193787, + 51.1936769 + ], + [ + 3.193787, + 51.1988902 + ], + [ + 3.1891021, + 51.1988902 + ], + [ + 3.1891021, + 51.1936769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T21:11:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000244237891700056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sidewalks.html", + "theme": "sidewalks", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 120105174 + } + }, + { + "id": 120104656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.1358329, + 57.144125 + ], + [ + -2.0955425, + 57.144125 + ], + [ + -2.0955425, + 57.1746623 + ], + [ + -2.1358329, + 57.1746623 + ], + [ + -2.1358329, + 57.144125 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T20:48:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00123036003191995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 44, + "locale": "en", + "imagery": "osm" + }, + "id": 120104656 + } + }, + { + "id": 120104017, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1909176, + 51.1990723 + ], + [ + 3.1909176, + 51.1990723 + ], + [ + 3.1909176, + 51.1990723 + ], + [ + 3.1909176, + 51.1990723 + ], + [ + 3.1909176, + 51.1990723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T20:20:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 120104017 + } + }, + { + "id": 120103998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2208126, + 50.9831783 + ], + [ + 4.2267753, + 50.9831783 + ], + [ + 4.2267753, + 50.9851835 + ], + [ + 4.2208126, + 50.9851835 + ], + [ + 4.2208126, + 50.9831783 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T20:19:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 827, + "modify": 0, + "delete": 0, + "area": 0.0000119564060399947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 115, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 113 + }, + "id": 120103998 + } + }, + { + "id": 120100650, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6157033, + 39.3249404 + ], + [ + -76.6157033, + 39.3249404 + ], + [ + -76.6157033, + 39.3249404 + ], + [ + -76.6157033, + 39.3249404 + ], + [ + -76.6157033, + 39.3249404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T18:11:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 120100650 + } + }, + { + "id": 120100215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0684829, + 51.1381481 + ], + [ + 3.1477559, + 51.1381481 + ], + [ + 3.1477559, + 51.1759869 + ], + [ + 3.0684829, + 51.1759869 + ], + [ + 3.0684829, + 51.1381481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T17:57:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.00299959519239968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 71, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 71 + }, + "id": 120100215 + } + }, + { + "id": 120100200, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2497444, + -39.8102913 + ], + [ + -73.2491059, + -39.8102913 + ], + [ + -73.2491059, + -39.8097116 + ], + [ + -73.2497444, + -39.8097116 + ], + [ + -73.2497444, + -39.8102913 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T17:56:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.70138449998277e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 6 + }, + "id": 120100200 + } + }, + { + "id": 120100059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2493381, + -39.843547 + ], + [ + -73.2313904, + -39.843547 + ], + [ + -73.2313904, + -39.8101576 + ], + [ + -73.2493381, + -39.8101576 + ], + [ + -73.2493381, + -39.843547 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T17:51:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000599262934380334, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 3 + }, + "id": 120100059 + } + }, + { + "id": 120097575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3034313, + 50.81816 + ], + [ + 4.3034313, + 50.81816 + ], + [ + 4.3034313, + 50.81816 + ], + [ + 4.3034313, + 50.81816 + ], + [ + 4.3034313, + 50.81816 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T16:35:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120097575 + } + }, + { + "id": 120095810, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1116576, + 51.2168309 + ], + [ + 4.1192781, + 51.2168309 + ], + [ + 4.1192781, + 51.2191714 + ], + [ + 4.1116576, + 51.2191714 + ], + [ + 4.1116576, + 51.2168309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T15:49:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 889, + "modify": 0, + "delete": 0, + "area": 0.0000178357802500188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 131, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 131 + }, + "id": 120095810 + } + }, + { + "id": 120095762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2075116, + 50.9024581 + ], + [ + 4.2075116, + 50.9024581 + ], + [ + 4.2075116, + 50.9024581 + ], + [ + 4.2075116, + 50.9024581 + ], + [ + 4.2075116, + 50.9024581 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T15:48:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 120095762 + } + }, + { + "id": 120094637, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1129664, + 51.2130233 + ], + [ + 4.1376261, + 51.2130233 + ], + [ + 4.1376261, + 51.2239798 + ], + [ + 4.1129664, + 51.2239798 + ], + [ + 4.1129664, + 51.2130233 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T15:14:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9402, + "modify": 0, + "delete": 0, + "area": 0.000270184003049973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 1339, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 990 + }, + "id": 120094637 + } + }, + { + "id": 120093955, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T14:58:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120093955 + } + }, + { + "id": 120093218, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1447064, + 51.1854243 + ], + [ + 4.4088663, + 51.1854243 + ], + [ + 4.4088663, + 51.2129982 + ], + [ + 3.1447064, + 51.2129982 + ], + [ + 3.1447064, + 51.1854243 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T14:40:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0348578186666102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120093218 + } + }, + { + "id": 120092228, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2309923, + 51.2193639 + ], + [ + 3.2311982, + 51.2193639 + ], + [ + 3.2311982, + 51.2195622 + ], + [ + 3.2309923, + 51.2195622 + ], + [ + 3.2309923, + 51.2193639 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T14:12:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.08299700002208e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 5, + "change_within_50m": 4 + }, + "id": 120092228 + } + }, + { + "id": 120092144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2257161, + 51.2161746 + ], + [ + 3.2313082, + 51.2161746 + ], + [ + 3.2313082, + 51.2192094 + ], + [ + 3.2257161, + 51.2192094 + ], + [ + 3.2257161, + 51.2161746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T14:09:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000169709050799699, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 120092144 + } + }, + { + "id": 120091368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2283514, + 51.2175126 + ], + [ + 3.2311338, + 51.2175126 + ], + [ + 3.2311338, + 51.21895 + ], + [ + 3.2283514, + 51.21895 + ], + [ + 3.2283514, + 51.2175126 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T13:46:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000399942176000049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/trees.html", + "theme": "trees", + "answer": 3, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "id": 120091368 + } + }, + { + "id": 120091151, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ], + [ + 3.2252303, + 51.2163693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T13:39:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "id": 120091151 + } + }, + { + "id": 120083940, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5378883, + 44.8593317 + ], + [ + -0.5378883, + 44.8593317 + ], + [ + -0.5378883, + 44.8593317 + ], + [ + -0.5378883, + 44.8593317 + ], + [ + -0.5378883, + 44.8593317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T10:05:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 120083940 + } + }, + { + "id": 120083739, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T09:59:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "answer": 1, + "locale": "da", + "imagery": "osm" + }, + "id": 120083739 + } + }, + { + "id": 120082829, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2289386, + 50.7432108 + ], + [ + 4.2289386, + 50.7432108 + ], + [ + 4.2289386, + 50.7432108 + ], + [ + 4.2289386, + 50.7432108 + ], + [ + 4.2289386, + 50.7432108 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T09:33:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 120082829 + } + }, + { + "id": 120078949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.494237, + 44.8689263 + ], + [ + -0.4929441, + 44.8689263 + ], + [ + -0.4929441, + 44.8703406 + ], + [ + -0.494237, + 44.8703406 + ], + [ + -0.494237, + 44.8689263 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T07:13:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000182854847000053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 8, + "create": 3, + "locale": "fr", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 8 + }, + "id": 120078949 + } + }, + { + "id": 120078637, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2374517, + 50.7374414 + ], + [ + 4.2374517, + 50.7374414 + ], + [ + 4.2374517, + 50.7374414 + ], + [ + 4.2374517, + 50.7374414 + ], + [ + 4.2374517, + 50.7374414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T06:58:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 120078637 + } + }, + { + "id": 120076634, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0212541, + 51.1203518 + ], + [ + 5.0828019, + 51.1203518 + ], + [ + 5.0828019, + 51.1335398 + ], + [ + 5.0212541, + 51.1335398 + ], + [ + 5.0212541, + 51.1203518 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-23T05:24:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 436, + "modify": 1089, + "delete": 17, + "area": 0.000811692386399966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 949, + "theme": "grb", + "answer": 14, + "delete": 17, + "import": 39, + "locale": "nl", + "imagery": "AGIV", + "conflation": 286, + "change_within_5000m": 7 + }, + "id": 120076634 + } + }, + { + "id": 120075111, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.954245, + 14.6710034 + ], + [ + 120.954245, + 14.6710034 + ], + [ + 120.954245, + 14.6710034 + ], + [ + 120.954245, + 14.6710034 + ], + [ + 120.954245, + 14.6710034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T03:29:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120075111 + } + }, + { + "id": 120073902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T01:38:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120073902 + } + }, + { + "id": 120073669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0489994, + 14.5838934 + ], + [ + 121.0842202, + 14.5838934 + ], + [ + 121.0842202, + 14.6382531 + ], + [ + 121.0489994, + 14.6382531 + ], + [ + 121.0489994, + 14.5838934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-23T01:19:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00191459212176029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 9, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120073669 + } + }, + { + "id": 120072188, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8342367, + 55.9025268 + ], + [ + 8.8347325, + 55.9025268 + ], + [ + 8.8347325, + 55.9037664 + ], + [ + 8.8342367, + 55.9037664 + ], + [ + 8.8342367, + 55.9025268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T23:16:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.1459368000196e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "create": 2, + "locale": "da", + "imagery": "osm" + }, + "id": 120072188 + } + }, + { + "id": 120068654, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4159668, + 50.8302492 + ], + [ + 4.4166104, + 50.8302492 + ], + [ + 4.4166104, + 50.8308515 + ], + [ + 4.4159668, + 50.8308515 + ], + [ + 4.4159668, + 50.8302492 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T20:18:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.87640280002726e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 120068654 + } + }, + { + "id": 120068640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0678868, + 48.5316213 + ], + [ + 9.0679008, + 48.5316213 + ], + [ + 9.0679008, + 48.5318789 + ], + [ + 9.0678868, + 48.5318789 + ], + [ + 9.0678868, + 48.5316213 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T20:18:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.60640000011291e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 120068640 + } + }, + { + "id": 120068331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.40481, + 50.8191588 + ], + [ + 4.40481, + 50.8191588 + ], + [ + 4.40481, + 50.8191588 + ], + [ + 4.40481, + 50.8191588 + ], + [ + 4.40481, + 50.8191588 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T20:06:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120068331 + } + }, + { + "id": 120060793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2135581, + 51.2100717 + ], + [ + 3.2135581, + 51.2100717 + ], + [ + 3.2135581, + 51.2100717 + ], + [ + 3.2135581, + 51.2100717 + ], + [ + 3.2135581, + 51.2100717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T16:51:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 120060793 + } + }, + { + "id": 120060471, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -49.2670604, + -16.6045561 + ], + [ + -49.2670604, + -16.6045561 + ], + [ + -49.2670604, + -16.6045561 + ], + [ + -49.2670604, + -16.6045561 + ], + [ + -49.2670604, + -16.6045561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Túllio", + "uid": "1206082", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T16:43:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120060471 + } + }, + { + "id": 120060039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3561954, + 48.884813 + ], + [ + 2.3680841, + 48.884813 + ], + [ + 2.3680841, + 48.8899056 + ], + [ + 2.3561954, + 48.8899056 + ], + [ + 2.3561954, + 48.884813 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T16:32:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 15, + "delete": 0, + "area": 0.0000605443936199714, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 31, + "create": 9, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 27, + "change_within_50m": 3, + "change_within_100m": 3 + }, + "id": 120060039 + } + }, + { + "id": 120058503, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7134875, + 51.0263971 + ], + [ + 3.7137128, + 51.0263971 + ], + [ + 3.7137128, + 51.0264477 + ], + [ + 3.7134875, + 51.0264477 + ], + [ + 3.7134875, + 51.0263971 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T15:55:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.14001800003689e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", + "theme": "sport_pitches", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "id": 120058503 + } + }, + { + "id": 120057067, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1456491, + 51.1118193 + ], + [ + 4.1456491, + 51.1118193 + ], + [ + 4.1456491, + 51.1118193 + ], + [ + 4.1456491, + 51.1118193 + ], + [ + 4.1456491, + 51.1118193 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T15:21:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 120057067 + } + }, + { + "id": 120056133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4236799, + 50.8913454 + ], + [ + 3.4240847, + 50.8913454 + ], + [ + 3.4240847, + 50.8919728 + ], + [ + 3.4236799, + 50.8919728 + ], + [ + 3.4236799, + 50.8913454 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T15:01:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.53971519999398e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120056133 + } + }, + { + "id": 120053710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3752695, + 50.7603255 + ], + [ + 5.3783561, + 50.7603255 + ], + [ + 5.3783561, + 50.7623421 + ], + [ + 5.3752695, + 50.7623421 + ], + [ + 5.3752695, + 50.7603255 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T14:13:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 68, + "delete": 6, + "area": 0.00000622443755999322, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 59, + "theme": "grb", + "delete": 6, + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "id": 120053710 + } + }, + { + "id": 120051820, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5357379, + 44.8558567 + ], + [ + -0.5351315, + 44.8558567 + ], + [ + -0.5351315, + 44.8562607 + ], + [ + -0.5357379, + 44.8562607 + ], + [ + -0.5357379, + 44.8558567 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T13:36:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.44985600001931e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "id": 120051820 + } + }, + { + "id": 120051790, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.9573323, + 45.7992809 + ], + [ + 15.9577583, + 45.7992809 + ], + [ + 15.9577583, + 45.8008284 + ], + [ + 15.9573323, + 45.8008284 + ], + [ + 15.9573323, + 45.7992809 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T13:35:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.59235000001826e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 120051790 + } + }, + { + "id": 120050570, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6807709, + 51.0489011 + ], + [ + 3.681615, + 51.0489011 + ], + [ + 3.681615, + 51.0500726 + ], + [ + 3.6807709, + 51.0500726 + ], + [ + 3.6807709, + 51.0489011 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T13:08:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.88863149998027e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 120050570 + } + }, + { + "id": 120049007, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3463936, + 50.8499268 + ], + [ + 4.3463936, + 50.8499268 + ], + [ + 4.3463936, + 50.8499268 + ], + [ + 4.3463936, + 50.8499268 + ], + [ + 4.3463936, + 50.8499268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T12:29:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6 + }, + "id": 120049007 + } + }, + { + "id": 120047986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0581433, + 51.1380284 + ], + [ + 4.1726214, + 51.1380284 + ], + [ + 4.1726214, + 51.1871946 + ], + [ + 4.0581433, + 51.1871946 + ], + [ + 4.0581433, + 51.1380284 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T12:08:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 4, + "delete": 2, + "area": 0.00562845316021938, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 22, + "create": 12, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "change_over_5000m": 1, + "change_within_5000m": 1, + "deletion:node/5866281648": "disused", + "deletion:node/9685560450": "testing point" + }, + "id": 120047986 + } + }, + { + "id": 120046660, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7197948, + 51.0466304 + ], + [ + 3.7197948, + 51.0466304 + ], + [ + 3.7197948, + 51.0466304 + ], + [ + 3.7197948, + 51.0466304 + ], + [ + 3.7197948, + 51.0466304 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T11:42:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 3 + }, + "id": 120046660 + } + }, + { + "id": 120044361, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5103487, + 44.8444802 + ], + [ + -0.5103487, + 44.8444802 + ], + [ + -0.5103487, + 44.8444802 + ], + [ + -0.5103487, + 44.8444802 + ], + [ + -0.5103487, + 44.8444802 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T10:58:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "id": 120044361 + } + }, + { + "id": 120044087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5324564, + 53.2406062 + ], + [ + 6.5324564, + 53.2406062 + ], + [ + 6.5324564, + 53.2406062 + ], + [ + 6.5324564, + 53.2406062 + ], + [ + 6.5324564, + 53.2406062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T10:52:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120044087 + } + }, + { + "id": 120032273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.4542156, + 54.8367673 + ], + [ + 83.1169842, + 54.8367673 + ], + [ + 83.1169842, + 56.8322521 + ], + [ + 37.4542156, + 56.8322521 + ], + [ + 37.4542156, + 54.8367673 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Miroff", + "uid": "217899", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T06:58:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 28, + "delete": 0, + "area": 91.1193606672173, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 55, + "locale": "ru", + "imagery": "osm" + }, + "id": 120032273 + } + }, + { + "id": 120030212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9942808, + 48.4992368 + ], + [ + 8.9951484, + 48.4992368 + ], + [ + 8.9951484, + 48.4999785 + ], + [ + 8.9942808, + 48.4999785 + ], + [ + 8.9942808, + 48.4992368 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T06:05:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.4349891999866e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 10, + "locale": "en", + "imagery": "osm", + "change_within_25m": 10 + }, + "id": 120030212 + } + }, + { + "id": 120030193, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9956869, + 48.499415 + ], + [ + 8.9956869, + 48.499415 + ], + [ + 8.9956869, + 48.499415 + ], + [ + 8.9956869, + 48.499415 + ], + [ + 8.9956869, + 48.499415 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-22T06:04:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_50m": 3 + }, + "id": 120030193 + } + }, + { + "id": 120029463, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.998806, + 50.9227151 + ], + [ + 4.0017169, + 50.9227151 + ], + [ + 4.0017169, + 50.9253763 + ], + [ + 3.998806, + 50.9253763 + ], + [ + 3.998806, + 50.9227151 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivan Lievens", + "uid": "63737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-22T05:43:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.00000774648708001611, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 120029463 + } + }, + { + "id": 120023587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2128476, + 51.2097787 + ], + [ + 3.2135581, + 51.2097787 + ], + [ + 3.2135581, + 51.2100717 + ], + [ + 3.2128476, + 51.2100717 + ], + [ + 3.2128476, + 51.2097787 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T23:43:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.08176499999521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120023587 + } + }, + { + "id": 120022331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1456491, + 51.1118024 + ], + [ + 4.1456732, + 51.1118024 + ], + [ + 4.1456732, + 51.1118193 + ], + [ + 4.1456491, + 51.1118193 + ], + [ + 4.1456491, + 51.1118024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T22:26:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.07289999966281e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "move": 1, + "theme": "waste", + "locale": "nl", + "imagery": "osm", + "move:node/9682930704": "improve_accuracy" + }, + "id": 120022331 + } + }, + { + "id": 120020765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.2152085, + 47.1324262 + ], + [ + 7.216091, + 47.1324262 + ], + [ + 7.216091, + 47.1325649 + ], + [ + 7.2152085, + 47.1325649 + ], + [ + 7.2152085, + 47.1324262 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "strukturart", + "uid": "8622394", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T21:35:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.22402750000652e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing", + "theme": "climbing", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 120020765 + } + }, + { + "id": 120019006, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7049567, + 50.8081946 + ], + [ + 4.7057399, + 50.8081946 + ], + [ + 4.7057399, + 50.8082128 + ], + [ + 4.7049567, + 50.8082128 + ], + [ + 4.7049567, + 50.8081946 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T20:43:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.4254239999625e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/1497900820": "improve_accuracy" + }, + "id": 120019006 + } + }, + { + "id": 120018211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.141282, + 51.1123098 + ], + [ + 4.1423749, + 51.1123098 + ], + [ + 4.1423749, + 51.1126008 + ], + [ + 4.141282, + 51.1126008 + ], + [ + 4.141282, + 51.1123098 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T20:20:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 15, + "modify": 27, + "delete": 0, + "area": 3.18033900004577e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 23, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 8 + }, + "id": 120018211 + } + }, + { + "id": 120018165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.3951841, + -39.874165 + ], + [ + -73.3951525, + -39.874165 + ], + [ + -73.3951525, + -39.873966 + ], + [ + -73.3951841, + -39.873966 + ], + [ + -73.3951841, + -39.874165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T20:18:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 6.28839999980041e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 6 + }, + "id": 120018165 + } + }, + { + "id": 120015280, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1398698, + 51.1117836 + ], + [ + 4.1415073, + 51.1117836 + ], + [ + 4.1415073, + 51.1132768 + ], + [ + 4.1398698, + 51.1132768 + ], + [ + 4.1398698, + 51.1117836 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 494, + "name": "Mapbox: Fictional mapping" + } + ], + "tags": [], + "features": [ + { + "url": "way-375409532", + "osm_id": 375409532, + "reasons": [ + 494 + ], + "version": 2 + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T18:51:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 141, + "modify": 128, + "delete": 0, + "area": 0.00000244511499999822, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 112, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 56, + "change_over_5000m": 5 + }, + "id": 120015280 + } + }, + { + "id": 120014920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2635967, + 44.4812198 + ], + [ + 11.2635967, + 44.4812198 + ], + [ + 11.2635967, + 44.4812198 + ], + [ + 11.2635967, + 44.4812198 + ], + [ + 11.2635967, + 44.4812198 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T18:40:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 120014920 + } + }, + { + "id": 120014760, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1233726, + 51.1125166 + ], + [ + 4.1408802, + 51.1125166 + ], + [ + 4.1408802, + 51.2192014 + ], + [ + 4.1233726, + 51.2192014 + ], + [ + 4.1233726, + 51.1125166 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T18:36:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1164, + "modify": 5, + "delete": 0, + "area": 0.00186779480448007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 4, + "theme": "grb", + "import": 146, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2, + "change_within_500m": 16, + "change_within_1000m": 128 + }, + "id": 120014760 + } + }, + { + "id": 120011065, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.725076, + 50.8725726 + ], + [ + 4.725076, + 50.8725726 + ], + [ + 4.725076, + 50.8725726 + ], + [ + 4.725076, + 50.8725726 + ], + [ + 4.725076, + 50.8725726 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T17:15:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9683307129": "source: https://osm.org/note/3090200" + }, + "id": 120011065 + } + }, + { + "id": 120007895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9945106, + 48.5007788 + ], + [ + 8.9947941, + 48.5007788 + ], + [ + 8.9947941, + 48.5010643 + ], + [ + 8.9945106, + 48.5010643 + ], + [ + 8.9945106, + 48.5007788 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T16:00:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.09392500011451e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "id": 120007895 + } + }, + { + "id": 120007792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9958027, + 48.5010436 + ], + [ + 8.9958027, + 48.5010436 + ], + [ + 8.9958027, + 48.5010436 + ], + [ + 8.9958027, + 48.5010436 + ], + [ + 8.9958027, + 48.5010436 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:58:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120007792 + } + }, + { + "id": 120007728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9958065, + 48.5010345 + ], + [ + 8.9961988, + 48.5010345 + ], + [ + 8.9961988, + 48.5012885 + ], + [ + 8.9958065, + 48.5012885 + ], + [ + 8.9958065, + 48.5010345 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:56:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.96441999992124e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 120007728 + } + }, + { + "id": 120007669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1408037, + 51.1628468 + ], + [ + 4.1408037, + 51.1628468 + ], + [ + 4.1408037, + 51.1628468 + ], + [ + 4.1408037, + 51.1628468 + ], + [ + 4.1408037, + 51.1628468 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:55:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toilets.html", + "theme": "toilets", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 120007669 + } + }, + { + "id": 120007656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:54:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120007656 + } + }, + { + "id": 120007129, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9961427, + 48.5011745 + ], + [ + 8.9961427, + 48.5011745 + ], + [ + 8.9961427, + 48.5011745 + ], + [ + 8.9961427, + 48.5011745 + ], + [ + 8.9961427, + 48.5011745 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:42:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "id": 120007129 + } + }, + { + "id": 120006470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2327042, + 50.7686504 + ], + [ + 3.2375982, + 50.7686504 + ], + [ + 3.2375982, + 50.7719406 + ], + [ + 3.2327042, + 50.7719406 + ], + [ + 3.2327042, + 50.7686504 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:27:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1371, + "modify": 0, + "delete": 0, + "area": 0.0000161022388000095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 120006470 + } + }, + { + "id": 120006416, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.242176, + 50.7390479 + ], + [ + 4.242176, + 50.7390479 + ], + [ + 4.242176, + 50.7390479 + ], + [ + 4.242176, + 50.7390479 + ], + [ + 4.242176, + 50.7390479 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:25:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 120006416 + } + }, + { + "id": 120005564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5102529, + 44.844722 + ], + [ + -0.5098237, + 44.844722 + ], + [ + -0.5098237, + 44.8461884 + ], + [ + -0.5102529, + 44.8461884 + ], + [ + -0.5102529, + 44.844722 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T15:06:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 17, + "delete": 0, + "area": 6.29378880002305e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 31, + "create": 7, + "locale": "fr", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 7, + "change_within_25m": 21, + "change_within_50m": 13 + }, + "id": 120005564 + } + }, + { + "id": 120004867, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1409786, + 51.1118024 + ], + [ + 4.1456732, + 51.1118024 + ], + [ + 4.1456732, + 51.1622941 + ], + [ + 4.1409786, + 51.1622941 + ], + [ + 4.1409786, + 51.1118024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T14:51:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.000237038334819959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "id": 120004867 + } + }, + { + "id": 120003135, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T14:06:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9667627881": "testing point" + }, + "id": 120003135 + } + }, + { + "id": 120002521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1348309, + 51.1603225 + ], + [ + 4.1420532, + 51.1603225 + ], + [ + 4.1420532, + 51.1919171 + ], + [ + 4.1348309, + 51.1919171 + ], + [ + 4.1348309, + 51.1603225 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T13:52:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1170, + "modify": 0, + "delete": 0, + "area": 0.000228185679580002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "osm" + }, + "id": 120002521 + } + }, + { + "id": 120002215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1336045, + 51.1118013 + ], + [ + 4.1407511, + 51.1118013 + ], + [ + 4.1407511, + 51.1156917 + ], + [ + 4.1336045, + 51.1156917 + ], + [ + 4.1336045, + 51.1118013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T13:44:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1969, + "modify": 70, + "delete": 0, + "area": 0.0000278031326399729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 64, + "theme": "grb", + "import": 263, + "locale": "nl", + "imagery": "osm", + "conflation": 32, + "change_over_5000m": 263 + }, + "id": 120002215 + } + }, + { + "id": 119994676, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9956615, + 48.5015756 + ], + [ + 8.9956615, + 48.5015756 + ], + [ + 8.9956615, + 48.5015756 + ], + [ + 8.9956615, + 48.5015756 + ], + [ + 8.9956615, + 48.5015756 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:49:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 119994676 + } + }, + { + "id": 119994524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.996752, + 48.5016811 + ], + [ + 8.9976277, + 48.5016811 + ], + [ + 8.9976277, + 48.5017187 + ], + [ + 8.996752, + 48.5017187 + ], + [ + 8.996752, + 48.5016811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:45:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.29263199989995e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 4 + }, + "id": 119994524 + } + }, + { + "id": 119994441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1201099, + 51.1123963 + ], + [ + 4.1247241, + 51.1123963 + ], + [ + 4.1247241, + 51.1146726 + ], + [ + 4.1201099, + 51.1146726 + ], + [ + 4.1201099, + 51.1123963 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:42:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 332, + "modify": 13, + "delete": 1, + "area": 0.0000105033034599919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 12, + "theme": "grb", + "delete": 1, + "import": 39, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 119994441 + } + }, + { + "id": 119994356, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9945224, + 48.5008265 + ], + [ + 8.996525, + 48.5008265 + ], + [ + 8.996525, + 48.5017605 + ], + [ + 8.9945224, + 48.5017605 + ], + [ + 8.9945224, + 48.5008265 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T10:40:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 12, + "delete": 0, + "area": 0.00000187042840000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 18, + "create": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 17, + "change_within_50m": 1 + }, + "id": 119994356 + } + }, + { + "id": 119994215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4388668, + 51.2019393 + ], + [ + 4.4388668, + 51.2019393 + ], + [ + 4.4388668, + 51.2019393 + ], + [ + 4.4388668, + 51.2019393 + ], + [ + 4.4388668, + 51.2019393 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T10:36:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "en", + "imagery": "AGIV", + "import:node/9682398772": "source: https://osm.org/note/3143535" + }, + "id": 119994215 + } + }, + { + "id": 119982087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9941526, + 48.4987427 + ], + [ + 8.9957401, + 48.4987427 + ], + [ + 8.9957401, + 48.5003022 + ], + [ + 8.9941526, + 48.5003022 + ], + [ + 8.9941526, + 48.4987427 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-21T05:51:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000247570625000034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 17, + "locale": "en", + "imagery": "osm", + "change_within_25m": 12, + "change_within_50m": 5 + }, + "id": 119982087 + } + }, + { + "id": 119976803, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.1196636, + 14.6458542 + ], + [ + 121.1196636, + 14.6458542 + ], + [ + 121.1196636, + 14.6458542 + ], + [ + 121.1196636, + 14.6458542 + ], + [ + 121.1196636, + 14.6458542 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T00:51:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119976803 + } + }, + { + "id": 119976550, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-21T00:32:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119976550 + } + }, + { + "id": 119975889, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0933102, + 14.6228874 + ], + [ + 121.1212254, + 14.6228874 + ], + [ + 121.1212254, + 14.6467807 + ], + [ + 121.0933102, + 14.6467807 + ], + [ + 121.0933102, + 14.6228874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T23:39:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000666986248159917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 33, + "locale": "en", + "imagery": "osm" + }, + "id": 119975889 + } + }, + { + "id": 119972575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2332023, + 48.7340566 + ], + [ + 2.3247937, + 48.7340566 + ], + [ + 2.3247937, + 48.953824 + ], + [ + 2.2332023, + 48.953824 + ], + [ + 2.2332023, + 48.7340566 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sukkoria", + "uid": "3083013", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T21:00:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0201288038403595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "id": 119972575 + } + }, + { + "id": 119971839, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.2766682, + -32.9888989 + ], + [ + -71.2766682, + -32.9888989 + ], + [ + -71.2766682, + -32.9888989 + ], + [ + -71.2766682, + -32.9888989 + ], + [ + -71.2766682, + -32.9888989 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T20:37:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 119971839 + } + }, + { + "id": 119971493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3781585, + 50.8624288 + ], + [ + 4.3781585, + 50.8624288 + ], + [ + 4.3781585, + 50.8624288 + ], + [ + 4.3781585, + 50.8624288 + ], + [ + 4.3781585, + 50.8624288 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T20:23:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119971493 + } + }, + { + "id": 119971055, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3753386, + 50.8708371 + ], + [ + 4.3753386, + 50.8708371 + ], + [ + 4.3753386, + 50.8708371 + ], + [ + 4.3753386, + 50.8708371 + ], + [ + 4.3753386, + 50.8708371 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T20:07:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119971055 + } + }, + { + "id": 119968866, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2044063, + 50.9261431 + ], + [ + 3.2044063, + 50.9261431 + ], + [ + 3.2044063, + 50.9261431 + ], + [ + 3.2044063, + 50.9261431 + ], + [ + 3.2044063, + 50.9261431 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T19:01:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 11 + }, + "id": 119968866 + } + }, + { + "id": 119968671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4011492, + 51.0387728 + ], + [ + 3.4011492, + 51.0387728 + ], + [ + 3.4011492, + 51.0387728 + ], + [ + 3.4011492, + 51.0387728 + ], + [ + 3.4011492, + 51.0387728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T18:56:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 2, + "locale": "en", + "imagery": "HDM_HOT", + "change_within_500m": 2 + }, + "id": 119968671 + } + }, + { + "id": 119968588, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3867991, + 51.065187 + ], + [ + 3.3868098, + 51.065187 + ], + [ + 3.3868098, + 51.0652134 + ], + [ + 3.3867991, + 51.0652134 + ], + [ + 3.3867991, + 51.065187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T18:54:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.82479999950787e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 2 + }, + "id": 119968588 + } + }, + { + "id": 119966771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9035417, + 51.1680875 + ], + [ + 4.9035417, + 51.1680875 + ], + [ + 4.9035417, + 51.1680875 + ], + [ + 4.9035417, + 51.1680875 + ], + [ + 4.9035417, + 51.1680875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T18:11:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 119966771 + } + }, + { + "id": 119965684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8280242, + 48.5778598 + ], + [ + -3.8280242, + 48.5778598 + ], + [ + -3.8280242, + 48.5778598 + ], + [ + -3.8280242, + 48.5778598 + ], + [ + -3.8280242, + 48.5778598 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Plumf", + "uid": "3304272", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:50:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 119965684 + } + }, + { + "id": 119965584, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3704423, + 50.7593695 + ], + [ + 5.3764322, + 50.7593695 + ], + [ + 5.3764322, + 50.7615361 + ], + [ + 5.3704423, + 50.7615361 + ], + [ + 5.3704423, + 50.7593695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:49:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 41, + "modify": 58, + "delete": 0, + "area": 0.0000129777173400154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 51, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "id": 119965584 + } + }, + { + "id": 119965512, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.5881147, + 48.5113662 + ], + [ + -3.5868298, + 48.5113662 + ], + [ + -3.5868298, + 48.5119037 + ], + [ + -3.5881147, + 48.5119037 + ], + [ + -3.5881147, + 48.5113662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Plumf", + "uid": "3304272", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:47:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.90633750000299e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "fr", + "imagery": "HDM_HOT" + }, + "id": 119965512 + } + }, + { + "id": 119965281, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8569758, + 50.8906476 + ], + [ + 7.0293807, + 50.8906476 + ], + [ + 7.0293807, + 51.0188195 + ], + [ + 6.8569758, + 51.0188195 + ], + [ + 6.8569758, + 50.8906476 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:44:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3266, + "delete": 0, + "area": 0.0220974636023097, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:42:09.479067Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 4429, + "locale": "de", + "imagery": "osm" + }, + "id": 119965281 + } + }, + { + "id": 119964559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.141827, + 50.6870545 + ], + [ + 3.143675, + 50.6870545 + ], + [ + 3.143675, + 50.6877138 + ], + [ + 3.141827, + 50.6877138 + ], + [ + 3.141827, + 50.6870545 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T17:29:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000121838639999113, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 10, + "create": 2, + "locale": "fr", + "imagery": "osm" + }, + "id": 119964559 + } + }, + { + "id": 119963401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1251972, + 51.2193539 + ], + [ + 4.1251972, + 51.2193539 + ], + [ + 4.1251972, + 51.2193539 + ], + [ + 4.1251972, + 51.2193539 + ], + [ + 4.1251972, + 51.2193539 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T16:57:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 7, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "change_within_25m": 7 + }, + "id": 119963401 + } + }, + { + "id": 119963383, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3571871, + 52.1407746 + ], + [ + 13.3707637, + 52.1407746 + ], + [ + 13.3707637, + 52.1464401 + ], + [ + 13.3571871, + 52.1464401 + ], + [ + 13.3571871, + 52.1407746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefigthererich", + "uid": "15639798", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T16:57:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 7, + "delete": 0, + "area": 0.0000769182272999814, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119963383 + } + }, + { + "id": 119962401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5218346, + 44.8597743 + ], + [ + -0.5218346, + 44.8597743 + ], + [ + -0.5218346, + 44.8597743 + ], + [ + -0.5218346, + 44.8597743 + ], + [ + -0.5218346, + 44.8597743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T16:32:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 119962401 + } + }, + { + "id": 119961739, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1217126, + 51.2245346 + ], + [ + 4.129128, + 51.2245346 + ], + [ + 4.129128, + 51.2265965 + ], + [ + 4.1217126, + 51.2265965 + ], + [ + 4.1217126, + 51.2245346 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T16:13:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000152898132600064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 3, + "locale": "en", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 3, + "change_within_25m": 15 + }, + "id": 119961739 + } + }, + { + "id": 119961021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1317248, + 51.2234084 + ], + [ + 4.1317248, + 51.2234084 + ], + [ + 4.1317248, + 51.2234084 + ], + [ + 4.1317248, + 51.2234084 + ], + [ + 4.1317248, + 51.2234084 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:56:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 119961021 + } + }, + { + "id": 119960126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1265759, + 51.2176201 + ], + [ + 4.1282254, + 51.2176201 + ], + [ + 4.1282254, + 51.218198 + ], + [ + 4.1265759, + 51.218198 + ], + [ + 4.1265759, + 51.2176201 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9680423650", + "name": "Pittoors", + "osm_id": 9680423650, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "funeral_directions" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:30:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 9.53246050005391e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 8, + "create": 3, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "id": 119960126 + } + }, + { + "id": 119960025, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.2882772, + 48.1376928 + ], + [ + 16.310061, + 48.1376928 + ], + [ + 16.310061, + 48.1589434 + ], + [ + 16.2882772, + 48.1589434 + ], + [ + 16.2882772, + 48.1376928 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:28:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 55, + "delete": 0, + "area": 0.000462918820279918, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 79, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 79 + }, + "id": 119960025 + } + }, + { + "id": 119960012, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1251972, + 51.2176117 + ], + [ + 4.1294941, + 51.2176117 + ], + [ + 4.1294941, + 51.2193539 + ], + [ + 4.1251972, + 51.2193539 + ], + [ + 4.1251972, + 51.2176117 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:28:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000074860591800105, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "id": 119960012 + } + }, + { + "id": 119959191, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1009073, + 41.3709937 + ], + [ + 2.1009073, + 41.3709937 + ], + [ + 2.1009073, + 41.3709937 + ], + [ + 2.1009073, + 41.3709937 + ], + [ + 2.1009073, + 41.3709937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UnGeograf", + "uid": "601515", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T15:06:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 119959191 + } + }, + { + "id": 119958582, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1219892, + 51.2173875 + ], + [ + 4.1281966, + 51.2173875 + ], + [ + 4.1281966, + 51.2243145 + ], + [ + 4.1219892, + 51.2243145 + ], + [ + 4.1219892, + 51.2173875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T14:50:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2047, + "modify": 10, + "delete": 0, + "area": 0.0000429986597999848, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 9, + "theme": "grb", + "import": 244, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "conflation": 2, + "change_within_25m": 30, + "change_within_50m": 12, + "change_within_100m": 15, + "change_within_500m": 95, + "change_within_1000m": 90 + }, + "id": 119958582 + } + }, + { + "id": 119957830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.9844945, + 51.9534262 + ], + [ + 7.9844945, + 51.9534262 + ], + [ + 7.9844945, + 51.9534262 + ], + [ + 7.9844945, + 51.9534262 + ], + [ + 7.9844945, + 51.9534262 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aschenknoedel", + "uid": "10527911", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T14:31:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 119957830 + } + }, + { + "id": 119954954, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ], + [ + 5.4537115, + 51.1329705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T13:28:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119954954 + } + }, + { + "id": 119954605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3322155, + 50.7599365 + ], + [ + 5.37596, + 50.7599365 + ], + [ + 5.37596, + 50.7821231 + ], + [ + 5.3322155, + 50.7821231 + ], + [ + 5.3322155, + 50.7599365 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-463220600", + "name": "Pastorie", + "osm_id": 463220600, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "building": "presbytery" + } + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T13:20:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 560, + "modify": 785, + "delete": 28, + "area": 0.000970541723699897, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 702, + "theme": "grb", + "delete": 28, + "import": 85, + "locale": "nl", + "imagery": "osm", + "conflation": 174 + }, + "id": 119954605 + } + }, + { + "id": 119954365, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0416444, + 51.2063108 + ], + [ + 4.0417939, + 51.2063108 + ], + [ + 4.0417939, + 51.206362 + ], + [ + 4.0416444, + 51.206362 + ], + [ + 4.0416444, + 51.2063108 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T13:15:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 7.65440000022137e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "id": 119954365 + } + }, + { + "id": 119952954, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4596751, + -34.6259612 + ], + [ + -58.4596751, + -34.6259612 + ], + [ + -58.4596751, + -34.6259612 + ], + [ + -58.4596751, + -34.6259612 + ], + [ + -58.4596751, + -34.6259612 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T12:44:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 119952954 + } + }, + { + "id": 119952697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2886606, + 50.7785292 + ], + [ + 5.3435553, + 50.7785292 + ], + [ + 5.3435553, + 50.8049384 + ], + [ + 5.2886606, + 50.8049384 + ], + [ + 5.2886606, + 50.7785292 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T12:38:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 604, + "modify": 1331, + "delete": 54, + "area": 0.0014497251112398, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1197, + "theme": "grb", + "delete": 52, + "import": 112, + "locale": "nl", + "imagery": "osm", + "conflation": 284 + }, + "id": 119952697 + } + }, + { + "id": 119952631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.162562, + 51.3103646 + ], + [ + 5.162562, + 51.3103646 + ], + [ + 5.162562, + 51.3103646 + ], + [ + 5.162562, + 51.3103646 + ], + [ + 5.162562, + 51.3103646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "toerisme Mol", + "uid": "8297519", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T12:36:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119952631 + } + }, + { + "id": 119952272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2829544, + 50.7781935 + ], + [ + 5.3136251, + 50.7781935 + ], + [ + 5.3136251, + 50.8730323 + ], + [ + 5.2829544, + 50.8730323 + ], + [ + 5.2829544, + 50.7781935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T12:28:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 145, + "modify": 274, + "delete": 12, + "area": 0.00290877238315993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 248, + "theme": "grb", + "delete": 12, + "import": 26, + "locale": "nl", + "imagery": "osm", + "conflation": 58 + }, + "id": 119952272 + } + }, + { + "id": 119951539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0584826, + 51.1900861 + ], + [ + 4.0584826, + 51.1900861 + ], + [ + 4.0584826, + 51.1900861 + ], + [ + 4.0584826, + 51.1900861 + ], + [ + 4.0584826, + 51.1900861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T12:14:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 119951539 + } + }, + { + "id": 119947074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1475719, + 51.161091 + ], + [ + 4.1479198, + 51.161091 + ], + [ + 4.1479198, + 51.1613088 + ], + [ + 4.1475719, + 51.1613088 + ], + [ + 4.1475719, + 51.161091 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T10:39:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.57726200006053e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 4 + }, + "id": 119947074 + } + }, + { + "id": 119943988, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0150899, + 14.738268 + ], + [ + 121.0198363, + 14.738268 + ], + [ + 121.0198363, + 14.7497575 + ], + [ + 121.0150899, + 14.7497575 + ], + [ + 121.0150899, + 14.738268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Legitimater", + "uid": "15335201", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T09:31:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000545337627998575, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 3, + "create": 4, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "id": 119943988 + } + }, + { + "id": 119943699, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4619963, + 52.1137514 + ], + [ + 13.4619963, + 52.1137514 + ], + [ + 13.4619963, + 52.1137514 + ], + [ + 13.4619963, + 52.1137514 + ], + [ + 13.4619963, + 52.1137514 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T09:25:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119943699 + } + }, + { + "id": 119940989, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3794103, + 50.8604762 + ], + [ + 4.3796754, + 50.8604762 + ], + [ + 4.3796754, + 50.8607398 + ], + [ + 4.3794103, + 50.8607398 + ], + [ + 4.3794103, + 50.8604762 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T08:27:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 6.98803599991299e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "create": 2, + "locale": "en", + "imagery": "UrbISOrtho", + "add-image": 3, + "change_over_5000m": 2, + "change_within_1000m": 11 + }, + "id": 119940989 + } + }, + { + "id": 119934894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9957975, + 48.4982175 + ], + [ + 8.9965251, + 48.4982175 + ], + [ + 8.9965251, + 48.4997165 + ], + [ + 8.9957975, + 48.4997165 + ], + [ + 8.9957975, + 48.4982175 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-20T06:10:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 15, + "delete": 0, + "area": 0.00000109067239999579, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 27, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10, + "change_within_50m": 10, + "change_within_100m": 7 + }, + "id": 119934894 + } + }, + { + "id": 119932850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.5680024, + 8.6898719 + ], + [ + 77.5680423, + 8.6898719 + ], + [ + 77.5680423, + 8.6924471 + ], + [ + 77.5680024, + 8.6924471 + ], + [ + 77.5680024, + 8.6898719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T05:00:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.0275048001142e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119932850 + } + }, + { + "id": 119931544, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.244138, + -39.8147227 + ], + [ + -73.244079, + -39.8147227 + ], + [ + -73.244079, + -39.814529 + ], + [ + -73.244138, + -39.814529 + ], + [ + -73.244138, + -39.8147227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-20T03:57:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.14283000012464e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "id": 119931544 + } + }, + { + "id": 119927986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0926826, + 14.622576 + ], + [ + 121.1191803, + 14.622576 + ], + [ + 121.1191803, + 14.6467807 + ], + [ + 121.0926826, + 14.6467807 + ], + [ + 121.0926826, + 14.622576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T23:26:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00064136887918984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 28, + "locale": "en", + "imagery": "osm" + }, + "id": 119927986 + } + }, + { + "id": 119924489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9924217, + 48.5016714 + ], + [ + 8.9929054, + 48.5016714 + ], + [ + 8.9929054, + 48.5023649 + ], + [ + 8.9924217, + 48.5023649 + ], + [ + 8.9924217, + 48.5016714 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T20:29:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.35445950002131e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "id": 119924489 + } + }, + { + "id": 119924338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9952896, + 51.1587557 + ], + [ + 4.9956378, + 51.1587557 + ], + [ + 4.9956378, + 51.1589777 + ], + [ + 4.9952896, + 51.1589777 + ], + [ + 4.9952896, + 51.1587557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T20:23:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 7.73004000001713e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 14, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119924338 + } + }, + { + "id": 119923468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9916499, + 51.1587696 + ], + [ + 4.9987684, + 51.1587696 + ], + [ + 4.9987684, + 51.1611468 + ], + [ + 4.9916499, + 51.1611468 + ], + [ + 4.9916499, + 51.1587696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T19:54:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 73, + "modify": 232, + "delete": 15, + "area": 0.0000169220981999872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 219, + "theme": "grb", + "answer": 2, + "delete": 15, + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 119923468 + } + }, + { + "id": 119921051, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.2469395, + 52.3722777 + ], + [ + -1.2400973, + 52.3722777 + ], + [ + -1.2400973, + 52.3749107 + ], + [ + -1.2469395, + 52.3749107 + ], + [ + -1.2469395, + 52.3722777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T18:47:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 34, + "modify": 44, + "delete": 0, + "area": 0.0000180155126000208, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 71, + "import": 35, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 35, + "change_within_25m": 71 + }, + "id": 119921051 + } + }, + { + "id": 119920983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.2400313, + 52.3720062 + ], + [ + -1.2396532, + 52.3720062 + ], + [ + -1.2396532, + 52.3722371 + ], + [ + -1.2400313, + 52.3722371 + ], + [ + -1.2400313, + 52.3720062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T18:45:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 2, + "delete": 0, + "area": 8.73032899993522e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 7, + "import": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 7 + }, + "id": 119920983 + } + }, + { + "id": 119920891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0204134, + 50.7247103 + ], + [ + 6.2247422, + 50.7247103 + ], + [ + 6.2247422, + 50.8510045 + ], + [ + 6.0204134, + 50.8510045 + ], + [ + 6.0204134, + 50.7247103 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T18:42:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 577, + "delete": 0, + "area": 0.0258055423329608, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:41:52.588581Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 761, + "locale": "de", + "imagery": "osm" + }, + "id": 119920891 + } + }, + { + "id": 119917448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2134105, + 50.7179616 + ], + [ + 4.2140716, + 50.7179616 + ], + [ + 4.2140716, + 50.7187262 + ], + [ + 4.2134105, + 50.7187262 + ], + [ + 4.2134105, + 50.7179616 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T17:20:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.0547705999728e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 8 + }, + "id": 119917448 + } + }, + { + "id": 119917410, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2255346, + 50.7245471 + ], + [ + 4.2255346, + 50.7245471 + ], + [ + 4.2255346, + 50.7245471 + ], + [ + 4.2255346, + 50.7245471 + ], + [ + 4.2255346, + 50.7245471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T17:19:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 2 + }, + "id": 119917410 + } + }, + { + "id": 119914664, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2481042, + 51.2178797 + ], + [ + 3.2481042, + 51.2178797 + ], + [ + 3.2481042, + 51.2178797 + ], + [ + 3.2481042, + 51.2178797 + ], + [ + 3.2481042, + 51.2178797 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T16:07:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 119914664 + } + }, + { + "id": 119914306, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2482463, + 51.2144237 + ], + [ + 3.2537636, + 51.2144237 + ], + [ + 3.2537636, + 51.2178192 + ], + [ + 3.2482463, + 51.2178192 + ], + [ + 3.2482463, + 51.2144237 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T15:57:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.0000187339921500195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 19, + "create": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 6, + "change_within_25m": 25 + }, + "id": 119914306 + } + }, + { + "id": 119914267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2466247, + 51.2145069 + ], + [ + 3.2519746, + 51.2145069 + ], + [ + 3.2519746, + 51.2190179 + ], + [ + 3.2466247, + 51.2190179 + ], + [ + 3.2466247, + 51.2145069 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T15:56:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000024133398899967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 5, + "import": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 8, + "import:node/9677659806": "source: https://osm.org/note/3130943", + "import:node/9677671677": "source: https://osm.org/note/3130940" + }, + "id": 119914267 + } + }, + { + "id": 119913964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2200496, + 51.2083697 + ], + [ + 3.2484944, + 51.2083697 + ], + [ + 3.2484944, + 51.2157955 + ], + [ + 3.2200496, + 51.2157955 + ], + [ + 3.2200496, + 51.2083697 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T15:49:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 11, + "delete": 0, + "area": 0.000211225395840001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/facadegardens.html", + "theme": "facadegardens", + "answer": 13, + "create": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 4, + "change_within_25m": 18 + }, + "id": 119913964 + } + }, + { + "id": 119910945, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3140772, + 50.8715769 + ], + [ + 5.3212963, + 50.8715769 + ], + [ + 5.3212963, + 50.874553 + ], + [ + 5.3140772, + 50.874553 + ], + [ + 5.3140772, + 50.8715769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T14:38:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 304, + "modify": 668, + "delete": 13, + "area": 0.0000214847635099861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 595, + "theme": "grb", + "delete": 13, + "import": 48, + "locale": "nl", + "imagery": "osm", + "conflation": 146 + }, + "id": 119910945 + } + }, + { + "id": 119910456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6536423, + 54.9225886 + ], + [ + -1.5437996, + 54.9225886 + ], + [ + -1.5437996, + 54.9671227 + ], + [ + -1.6536423, + 54.9671227 + ], + [ + -1.6536423, + 54.9225886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T14:26:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 119, + "delete": 0, + "area": 0.00489174578606999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 159, + "locale": "en", + "imagery": "osm" + }, + "id": 119910456 + } + }, + { + "id": 119908983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9347796, + 50.4780661 + ], + [ + 4.9424022, + 50.4780661 + ], + [ + 4.9424022, + 50.4811579 + ], + [ + 4.9347796, + 50.4811579 + ], + [ + 4.9347796, + 50.4780661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T13:50:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000023567554680001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119908983 + } + }, + { + "id": 119908187, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.1158947, + 14.6407708 + ], + [ + 121.1158947, + 14.6407708 + ], + [ + 121.1158947, + 14.6407708 + ], + [ + 121.1158947, + 14.6407708 + ], + [ + 121.1158947, + 14.6407708 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/2b351d27694499eec029b9bc3f8fe8c0/raw/4ba854a8bfe9caebf5c622e55d8f28546dc47d4c/mc-MAPinkMurals-v1-1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:35:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/2b351d27694499eec029b9bc3f8fe8c0/raw/4ba854a8bfe9caebf5c622e55d8f28546dc47d4c/mc-MAPinkMurals-v1-1.json", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119908187 + } + }, + { + "id": 119907793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3199145, + 50.8672696 + ], + [ + 5.3329006, + 50.8672696 + ], + [ + 5.3329006, + 50.8743215 + ], + [ + 5.3199145, + 50.8743215 + ], + [ + 5.3199145, + 50.8672696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:26:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 872, + "modify": 923, + "delete": 1, + "area": 0.0000915766785900058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 827, + "theme": "grb", + "delete": 1, + "import": 130, + "locale": "nl", + "imagery": "osm", + "conflation": 196 + }, + "id": 119907793 + } + }, + { + "id": 119907752, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.1168338, + 14.6396083 + ], + [ + 121.1207322, + 14.6396083 + ], + [ + 121.1207322, + 14.6401362 + ], + [ + 121.1168338, + 14.6401362 + ], + [ + 121.1168338, + 14.6396083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:25:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000020579653600052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119907752 + } + }, + { + "id": 119907369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.1212254, + 14.6369355 + ], + [ + 121.1212254, + 14.6369355 + ], + [ + 121.1212254, + 14.6369355 + ], + [ + 121.1212254, + 14.6369355 + ], + [ + 121.1212254, + 14.6369355 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:16:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119907369 + } + }, + { + "id": 119907349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2023434, + 51.2120166 + ], + [ + 3.2045276, + 51.2120166 + ], + [ + 3.2045276, + 51.2148103 + ], + [ + 3.2023434, + 51.2148103 + ], + [ + 3.2023434, + 51.2120166 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T13:15:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000610199954001078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 2 + }, + "id": 119907349 + } + }, + { + "id": 119907266, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T13:13:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119907266 + } + }, + { + "id": 119905791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3972636, + 51.2165607 + ], + [ + 4.3972636, + 51.2165607 + ], + [ + 4.3972636, + 51.2165607 + ], + [ + 4.3972636, + 51.2165607 + ], + [ + 4.3972636, + 51.2165607 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T12:42:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 119905791 + } + }, + { + "id": 119901866, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.924883, + 46.3990632 + ], + [ + 6.924883, + 46.3990632 + ], + [ + 6.924883, + 46.3990632 + ], + [ + 6.924883, + 46.3990632 + ], + [ + 6.924883, + 46.3990632 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T11:16:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "id": 119901866 + } + }, + { + "id": 119899589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2055447, + 51.0874251 + ], + [ + 3.2396192, + 51.0874251 + ], + [ + 3.2396192, + 51.1516449 + ], + [ + 3.2055447, + 51.1516449 + ], + [ + 3.2055447, + 51.0874251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T10:27:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00218825757510012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "split": 2, + "theme": "cyclestreets", + "answer": 4, + "locale": "en", + "imagery": "osm", + "relation-fix": 2, + "change_over_5000m": 6 + }, + "id": 119899589 + } + }, + { + "id": 119897476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2531936, + 50.9140098 + ], + [ + 3.2559677, + 50.9140098 + ], + [ + 3.2559677, + 50.9242287 + ], + [ + 3.2531936, + 50.9242287 + ], + [ + 3.2531936, + 50.9140098 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T09:42:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000283482504899937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 119897476 + } + }, + { + "id": 119896897, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9042847, + 51.2163872 + ], + [ + 2.9229921, + 51.2163872 + ], + [ + 2.9229921, + 51.2336876 + ], + [ + 2.9042847, + 51.2336876 + ], + [ + 2.9042847, + 51.2163872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T09:30:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9816, + "modify": 0, + "delete": 0, + "area": 0.000323645502960069, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 1310, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 779 + }, + "id": 119896897 + } + }, + { + "id": 119896793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9167159, + 51.2337868 + ], + [ + 2.9167159, + 51.2337868 + ], + [ + 2.9167159, + 51.2337868 + ], + [ + 2.9167159, + 51.2337868 + ], + [ + 2.9167159, + 51.2337868 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T09:27:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets", + "theme": "toilets", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "id": 119896793 + } + }, + { + "id": 119896511, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5455721, + 44.8413034 + ], + [ + -0.5437162, + 44.8413034 + ], + [ + -0.5437162, + 44.8430267 + ], + [ + -0.5455721, + 44.8430267 + ], + [ + -0.5455721, + 44.8413034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T09:21:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 9, + "delete": 0, + "area": 0.00000319827247000351, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 17, + "create": 6, + "locale": "fr", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 9, + "change_within_100m": 5, + "change_within_500m": 5 + }, + "id": 119896511 + } + }, + { + "id": 119894921, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5456096, + 44.8463346 + ], + [ + -0.5455815, + 44.8463346 + ], + [ + -0.5455815, + 44.8464373 + ], + [ + -0.5456096, + 44.8464373 + ], + [ + -0.5456096, + 44.8463346 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-19T08:45:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 2.88586999997906e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 12, + "create": 3, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "id": 119894921 + } + }, + { + "id": 119890378, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0940972, + 14.6558069 + ], + [ + 121.0940972, + 14.6558069 + ], + [ + 121.0940972, + 14.6558069 + ], + [ + 121.0940972, + 14.6558069 + ], + [ + 121.0940972, + 14.6558069 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T07:00:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119890378 + } + }, + { + "id": 119887261, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1093171, + 50.7854646 + ], + [ + 4.1093613, + 50.7854646 + ], + [ + 4.1093613, + 50.7855562 + ], + [ + 4.1093171, + 50.7855562 + ], + [ + 4.1093171, + 50.7854646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T05:37:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 4.04872000016863e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3 + }, + "id": 119887261 + } + }, + { + "id": 119884733, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2450132, + -39.8154511 + ], + [ + -73.24341, + -39.8154511 + ], + [ + -73.24341, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8154511 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T03:55:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.63804159993135e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "id": 119884733 + } + }, + { + "id": 119882635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0959868, + 14.6291667 + ], + [ + 121.0997269, + 14.6291667 + ], + [ + 121.0997269, + 14.642468 + ], + [ + 121.0959868, + 14.642468 + ], + [ + 121.0959868, + 14.6291667 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #MAPinkMurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T00:59:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000497481921298275, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "MAPinkMurals", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "id": 119882635 + } + }, + { + "id": 119882409, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0959868, + 14.6231727 + ], + [ + 121.0974533, + 14.6231727 + ], + [ + 121.0974533, + 14.6291667 + ], + [ + 121.0959868, + 14.6291667 + ], + [ + 121.0959868, + 14.6231727 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T00:42:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000879020099995535, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119882409 + } + }, + { + "id": 119882048, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2312357, + 51.1800375 + ], + [ + 3.2328999, + 51.1800375 + ], + [ + 3.2328999, + 51.1826049 + ], + [ + 3.2312357, + 51.1826049 + ], + [ + 3.2312357, + 51.1800375 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-19T00:14:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 74, + "modify": 48, + "delete": 0, + "area": 0.00000427266708000629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 42, + "theme": "grb", + "import": 4, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "conflation": 16 + }, + "id": 119882048 + } + }, + { + "id": 119881317, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3317912, + 51.2106007 + ], + [ + 4.3387859, + 51.2106007 + ], + [ + 4.3387859, + 51.2146054 + ], + [ + 4.3317912, + 51.2146054 + ], + [ + 4.3317912, + 51.2106007 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T23:25:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000028011675090024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 119881317 + } + }, + { + "id": 119880375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1783155, + 51.1966943 + ], + [ + 3.1783155, + 51.1966943 + ], + [ + 3.1783155, + 51.1966943 + ], + [ + 3.1783155, + 51.1966943 + ], + [ + 3.1783155, + 51.1966943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T22:28:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "fritures", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119880375 + } + }, + { + "id": 119879730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2657911, + 52.483391 + ], + [ + 13.2944576, + 52.483391 + ], + [ + 13.2944576, + 52.4940023 + ], + [ + 13.2657911, + 52.4940023 + ], + [ + 13.2657911, + 52.483391 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexrk", + "uid": "18595", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T21:57:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000304188831450021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 23, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 16, + "change_within_1000m": 5, + "change_within_5000m": 2 + }, + "id": 119879730 + } + }, + { + "id": 119878916, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7031603, + 51.0547063 + ], + [ + 3.7036098, + 51.0547063 + ], + [ + 3.7036098, + 51.0550979 + ], + [ + 3.7031603, + 51.0550979 + ], + [ + 3.7031603, + 51.0547063 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T21:24:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.76024200000255e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "dog", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119878916 + } + }, + { + "id": 119877292, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5349641, + 44.8543503 + ], + [ + -0.53315, + 44.8543503 + ], + [ + -0.53315, + 44.8552743 + ], + [ + -0.5349641, + 44.8552743 + ], + [ + -0.5349641, + 44.8543503 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T20:31:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000167622839999587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 6, + "locale": "fr", + "imagery": "osm" + }, + "id": 119877292 + } + }, + { + "id": 119876244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8582775, + 46.3864024 + ], + [ + 6.8612708, + 46.3864024 + ], + [ + 6.8612708, + 46.3887965 + ], + [ + 6.8582775, + 46.3887965 + ], + [ + 6.8582775, + 46.3864024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T19:56:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000716625952998951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 119876244 + } + }, + { + "id": 119875787, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T19:41:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/index.html", + "theme": "bookcases", + "answer": 1, + "locale": "fr" + }, + "id": 119875787 + } + }, + { + "id": 119873702, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9760445, + 51.2034153 + ], + [ + 4.9764399, + 51.2034153 + ], + [ + 4.9764399, + 51.2043977 + ], + [ + 4.9760445, + 51.2043977 + ], + [ + 4.9760445, + 51.2034153 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T18:39:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 12, + "delete": 0, + "area": 3.88440959998729e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 119873702 + } + }, + { + "id": 119873561, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9762003, + 51.2005938 + ], + [ + 4.9817783, + 51.2005938 + ], + [ + 4.9817783, + 51.2027211 + ], + [ + 4.9762003, + 51.2027211 + ], + [ + 4.9762003, + 51.2005938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T18:36:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 97, + "delete": 2, + "area": 0.0000118660793999882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 89, + "theme": "grb", + "delete": 2, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 16 + }, + "id": 119873561 + } + }, + { + "id": 119872058, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3983922, + 50.9963267 + ], + [ + 5.3984683, + 50.9963267 + ], + [ + 5.3984683, + 50.9963359 + ], + [ + 5.3983922, + 50.9963359 + ], + [ + 5.3983922, + 50.9963267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T18:01:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 7.00120000073083e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "move": 1, + "theme": "bookcases", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "move:node/9674101953": "improve_accuracy" + }, + "id": 119872058 + } + }, + { + "id": 119870723, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3962611, + 50.9991119 + ], + [ + 5.4598021, + 50.9991119 + ], + [ + 5.4598021, + 51.0146536 + ], + [ + 5.3962611, + 51.0146536 + ], + [ + 5.3962611, + 50.9991119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T17:31:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 57, + "delete": 1, + "area": 0.000987535159699997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 6, + "theme": "benches", + "answer": 67, + "create": 4, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 22, + "move:node/2719776037": "improve_accuracy", + "move:node/5032535886": "improve_accuracy", + "move:node/5045034310": "improve_accuracy", + "move:node/5045034311": "improve_accuracy", + "move:node/6034784736": "improve_accuracy", + "move:node/9675030792": "improve_accuracy", + "import:node/9674966792": "source: https://osm.org/note/3044566", + "import:node/9675005357": "source: https://osm.org/note/3044599", + "deletion:node/5032535884": "Geen picknicktafel" + }, + "id": 119870723 + } + }, + { + "id": 119870707, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.168645, + 44.662399 + ], + [ + -1.168424, + 44.662399 + ], + [ + -1.168424, + 44.6632318 + ], + [ + -1.168645, + 44.6632318 + ], + [ + -1.168645, + 44.662399 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T17:31:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.84048799999524e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 4, + "change_within_50m": 1 + }, + "id": 119870707 + } + }, + { + "id": 119868347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.168645, + 44.662399 + ], + [ + -1.1636176, + 44.662399 + ], + [ + -1.1636176, + 44.6639223 + ], + [ + -1.168645, + 44.6639223 + ], + [ + -1.168645, + 44.662399 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T16:38:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0000076582384200116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 8, + "create": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "id": 119868347 + } + }, + { + "id": 119864083, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.2882014, + 40.2457658 + ], + [ + -0.2880714, + 40.2457658 + ], + [ + -0.2880714, + 40.2458188 + ], + [ + -0.2882014, + 40.2458188 + ], + [ + -0.2882014, + 40.2457658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "HomoGradiens", + "uid": "1946832", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T15:07:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.89000000015583e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 119864083 + } + }, + { + "id": 119864028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ], + [ + 2.1550034, + 48.885341 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T15:06:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 119864028 + } + }, + { + "id": 119860436, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2558732, + 51.1557279 + ], + [ + 3.2558732, + 51.1557279 + ], + [ + 3.2558732, + 51.1557279 + ], + [ + 3.2558732, + 51.1557279 + ], + [ + 3.2558732, + 51.1557279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T13:49:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/nature.html", + "theme": "nature", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 119860436 + } + }, + { + "id": 119859410, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2558654, + 51.1588243 + ], + [ + 3.2582509, + 51.1588243 + ], + [ + 3.2582509, + 51.1609023 + ], + [ + 3.2558654, + 51.1609023 + ], + [ + 3.2558654, + 51.1588243 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T13:26:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000495706899999448, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6, + "change_within_50m": 3 + }, + "id": 119859410 + } + }, + { + "id": 119856289, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.744903, + 50.9046375 + ], + [ + 4.7594896, + 50.9046375 + ], + [ + 4.7594896, + 50.9087522 + ], + [ + 4.744903, + 50.9087522 + ], + [ + 4.744903, + 50.9046375 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T12:24:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1288, + "modify": 41, + "delete": 0, + "area": 0.0000600194830200358, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 36, + "theme": "grb", + "import": 93, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "id": 119856289 + } + }, + { + "id": 119855468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2739994, + 51.1868575 + ], + [ + 3.2739994, + 51.1868575 + ], + [ + 3.2739994, + 51.1868575 + ], + [ + 3.2739994, + 51.1868575 + ], + [ + 3.2739994, + 51.1868575 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T12:09:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 119855468 + } + }, + { + "id": 119854597, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T11:52:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite", + "theme": "campersite", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 119854597 + } + }, + { + "id": 119853484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3984683, + 50.9963267 + ], + [ + 5.3984683, + 50.9963267 + ], + [ + 5.3984683, + 50.9963267 + ], + [ + 5.3984683, + 50.9963267 + ], + [ + 5.3984683, + 50.9963267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:28:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119853484 + } + }, + { + "id": 119853076, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.342752, + 48.8562512 + ], + [ + 2.342752, + 48.8562512 + ], + [ + 2.342752, + 48.8562512 + ], + [ + 2.342752, + 48.8562512 + ], + [ + 2.342752, + 48.8562512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:20:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119853076 + } + }, + { + "id": 119852939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0224886, + 50.3524875 + ], + [ + 7.6025916, + 50.3524875 + ], + [ + 7.6025916, + 50.824031 + ], + [ + 6.0224886, + 50.824031 + ], + [ + 6.0224886, + 50.3524875 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-222577615", + "name": "Kohlscheider Straße", + "osm_id": 222577615, + "reasons": [ + 91 + ], + "version": 6, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-438407249", + "name": "Kohlscheider Straße", + "osm_id": 438407249, + "reasons": [ + 91 + ], + "version": 3, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:17:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1348, + "delete": 0, + "area": 0.745087298980493, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:41:19.507743Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1828, + "locale": "de", + "imagery": "osm" + }, + "id": 119852939 + } + }, + { + "id": 119852903, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3426762, + 48.8562376 + ], + [ + 2.3429813, + 48.8562376 + ], + [ + 2.3429813, + 48.8565865 + ], + [ + 2.3426762, + 48.8565865 + ], + [ + 2.3426762, + 48.8562376 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:16:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 0, + "delete": 0, + "area": 1.06449389999566e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 11, + "create": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 119852903 + } + }, + { + "id": 119852114, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.341887, + 48.8511347 + ], + [ + 2.3445589, + 48.8511347 + ], + [ + 2.3445589, + 48.8515201 + ], + [ + 2.341887, + 48.8515201 + ], + [ + 2.341887, + 48.8511347 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T11:00:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000102975025999734, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 1, + "theme": "waste", + "answer": 7, + "create": 4, + "locale": "en", + "imagery": "osm", + "move:node/2190793962": "improve_accuracy" + }, + "id": 119852114 + } + }, + { + "id": 119851785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3778097, + 50.3365281 + ], + [ + 7.5360692, + 50.3365281 + ], + [ + 7.5360692, + 50.3729199 + ], + [ + 7.3778097, + 50.3729199 + ], + [ + 7.3778097, + 50.3365281 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T10:54:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 126, + "delete": 0, + "area": 0.00575934807209951, + "is_suspect": false, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:40:58.579319Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 186, + "locale": "de", + "imagery": "osm" + }, + "id": 119851785 + } + }, + { + "id": 119850576, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T10:27:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 119850576 + } + }, + { + "id": 119850450, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T10:25:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 4 + }, + "id": 119850450 + } + }, + { + "id": 119850427, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T10:25:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119850427 + } + }, + { + "id": 119847348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3961084, + 51.2163632 + ], + [ + 4.3975714, + 51.2163632 + ], + [ + 4.3975714, + 51.2167339 + ], + [ + 4.3961084, + 51.2167339 + ], + [ + 4.3961084, + 51.2163632 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T09:17:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.42334099996752e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 119847348 + } + }, + { + "id": 119845401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.092442, + 50.7854307 + ], + [ + 4.1097366, + 50.7854307 + ], + [ + 4.1097366, + 50.7879573 + ], + [ + 4.092442, + 50.7879573 + ], + [ + 4.092442, + 50.7854307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-18T08:31:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 11, + "delete": 1, + "area": 0.0000436965363600516, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 20, + "create": 7, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 13, + "change_within_50m": 6, + "change_within_500m": 6, + "change_within_1000m": 2, + "deletion:node/9673820171": "testing point" + }, + "id": 119845401 + } + }, + { + "id": 119842585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7328382, + 51.0428471 + ], + [ + 3.7328382, + 51.0428471 + ], + [ + 3.7328382, + 51.0428471 + ], + [ + 3.7328382, + 51.0428471 + ], + [ + 3.7328382, + 51.0428471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T07:23:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "EsriWorldImagery", + "add-image": 1 + }, + "id": 119842585 + } + }, + { + "id": 119841649, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.577262, + 50.8677603 + ], + [ + 5.8404082, + 50.8677603 + ], + [ + 5.8404082, + 51.1263944 + ], + [ + 5.577262, + 51.1263944 + ], + [ + 5.577262, + 50.8677603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T06:59:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0680585806054204, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 9, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 4 + }, + "id": 119841649 + } + }, + { + "id": 119840909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3853956, + 50.9921787 + ], + [ + 5.3854814, + 50.9921787 + ], + [ + 5.3854814, + 50.9922007 + ], + [ + 5.3853956, + 50.9922007 + ], + [ + 5.3853956, + 50.9921787 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Huainantzu", + "uid": "15614111", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T06:40:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.88760000010954e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 2, + "theme": "trees", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "move:node/9673558799": "improve_accuracy" + }, + "id": 119840909 + } + }, + { + "id": 119836088, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0589491, + 14.6138632 + ], + [ + 121.0589491, + 14.6138632 + ], + [ + 121.0589491, + 14.6138632 + ], + [ + 121.0589491, + 14.6138632 + ], + [ + 121.0589491, + 14.6138632 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #mapinkmurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T03:07:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "mapinkmurals", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119836088 + } + }, + { + "id": 119835382, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:56:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119835382 + } + }, + { + "id": 119835222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0933102, + 14.6228874 + ], + [ + 121.0933102, + 14.6228874 + ], + [ + 121.0933102, + 14.6228874 + ], + [ + 121.0933102, + 14.6228874 + ], + [ + 121.0933102, + 14.6228874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ᴎivvOG", + "uid": "6591426", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #mapinkmurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:41:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "mapinkmurals", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 119835222 + } + }, + { + "id": 119835110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #mapinkmurals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:31:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "mapinkmurals", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119835110 + } + }, + { + "id": 119835074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ], + [ + 121.0926826, + 14.622576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:29:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119835074 + } + }, + { + "id": 119834847, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3418964, + 48.8511347 + ], + [ + 2.3445589, + 48.8511347 + ], + [ + 2.3445589, + 48.8515078 + ], + [ + 2.3418964, + 48.8515078 + ], + [ + 2.3418964, + 48.8511347 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.18.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-18T01:00:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.9337874999295e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119834847 + } + }, + { + "id": 119833656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5421422, + 51.2337532 + ], + [ + 4.5716293, + 51.2337532 + ], + [ + 4.5716293, + 51.2577951 + ], + [ + 4.5421422, + 51.2577951 + ], + [ + 4.5421422, + 51.2337532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T23:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.000708925909490005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 55, + "locale": "nl", + "imagery": "osm" + }, + "id": 119833656 + } + }, + { + "id": 119833211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.2326977, + 38.5038669 + ], + [ + -0.2326977, + 38.5038669 + ], + [ + -0.2326977, + 38.5038669 + ], + [ + -0.2326977, + 38.5038669 + ], + [ + -0.2326977, + 38.5038669 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T22:40:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 2 + }, + "id": 119833211 + } + }, + { + "id": 119833026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2203011, + 51.197737 + ], + [ + 4.2278117, + 51.197737 + ], + [ + 4.2278117, + 51.2004304 + ], + [ + 4.2203011, + 51.2004304 + ], + [ + 4.2203011, + 51.197737 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T22:26:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 722, + "modify": 0, + "delete": 0, + "area": 0.00002022905004004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 53, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 119833026 + } + }, + { + "id": 119832393, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2085216, + 41.5400129 + ], + [ + 2.2085216, + 41.5400129 + ], + [ + 2.2085216, + 41.5400129 + ], + [ + 2.2085216, + 41.5400129 + ], + [ + 2.2085216, + 41.5400129 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T21:46:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "cycle_infra", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 119832393 + } + }, + { + "id": 119831119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -112.0675225, + 33.4653195 + ], + [ + -112.066415, + 33.4653195 + ], + [ + -112.066415, + 33.4732571 + ], + [ + -112.0675225, + 33.4732571 + ], + [ + -112.0675225, + 33.4653195 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T20:45:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000879089199991197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 119831119 + } + }, + { + "id": 119830754, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5486021, + 50.2945506 + ], + [ + 7.6610123, + 50.2945506 + ], + [ + 7.6610123, + 50.3948247 + ], + [ + 7.5486021, + 50.3948247 + ], + [ + 7.5486021, + 50.2945506 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-24786068", + "name": "Sophie-von-La-Roche-Straße", + "osm_id": 24786068, + "reasons": [ + 87 + ], + "version": 13, + "primary_tags": { + "highway": "residential" + } + } + ], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T20:29:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 410, + "delete": 0, + "area": 0.01127183163582, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:40:46.579590Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 555, + "locale": "de", + "imagery": "osm" + }, + "id": 119830754 + } + }, + { + "id": 119830156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4102221, + 52.1795749 + ], + [ + 13.4254834, + 52.1795749 + ], + [ + 13.4254834, + 52.1899161 + ], + [ + 13.4102221, + 52.1899161 + ], + [ + 13.4102221, + 52.1795749 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oscar112", + "uid": "15318660", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T20:04:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 2, + "delete": 0, + "area": 0.000157820155559975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119830156 + } + }, + { + "id": 119829571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.058148, + 49.6093657 + ], + [ + 6.058148, + 49.6093657 + ], + [ + 6.058148, + 49.6093657 + ], + [ + 6.058148, + 49.6093657 + ], + [ + 6.058148, + 49.6093657 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gloda", + "uid": "646144", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T19:39:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119829571 + } + }, + { + "id": 119829162, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9167805, + 51.2336607 + ], + [ + 2.9167805, + 51.2336607 + ], + [ + 2.9167805, + 51.2336607 + ], + [ + 2.9167805, + 51.2336607 + ], + [ + 2.9167805, + 51.2336607 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T19:24:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 119829162 + } + }, + { + "id": 119827351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1337857, + 51.1550196 + ], + [ + 4.1337857, + 51.1550196 + ], + [ + 4.1337857, + 51.1550196 + ], + [ + 4.1337857, + 51.1550196 + ], + [ + 4.1337857, + 51.1550196 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T18:22:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 119827351 + } + }, + { + "id": 119820804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8582775, + 46.3864024 + ], + [ + 6.8612708, + 46.3864024 + ], + [ + 6.8612708, + 46.3887965 + ], + [ + 6.8582775, + 46.3887965 + ], + [ + 6.8582775, + 46.3864024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T15:18:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000716625952998951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1, + "change_within_500m": 2 + }, + "id": 119820804 + } + }, + { + "id": 119815081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4796166, + 50.3366404 + ], + [ + 7.6036575, + 50.3366404 + ], + [ + 7.6036575, + 50.3924909 + ], + [ + 7.4796166, + 50.3924909 + ], + [ + 7.4796166, + 50.3366404 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-824962552", + "name": "Bassenheimer Straße", + "osm_id": 824962552, + "reasons": [ + 87 + ], + "version": 2, + "primary_tags": { + "highway": "tertiary" + } + }, + { + "url": "way-28215051", + "name": "Bassenheimer Straße", + "osm_id": 28215051, + "reasons": [ + 87 + ], + "version": 33, + "primary_tags": { + "highway": "tertiary" + } + } + ], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T12:34:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 123, + "delete": 0, + "area": 0.00692774628544977, + "is_suspect": false, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:43:11.352466Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 184, + "locale": "de", + "imagery": "osm" + }, + "id": 119815081 + } + }, + { + "id": 119814739, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9440883, + 50.4273801 + ], + [ + 2.9444092, + 50.4273801 + ], + [ + 2.9444092, + 50.4276165 + ], + [ + 2.9440883, + 50.4276165 + ], + [ + 2.9440883, + 50.4273801 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T12:23:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 7.58607599994824e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "fr.ign.bdortho" + }, + "id": 119814739 + } + }, + { + "id": 119814338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8404389, + 48.8528738 + ], + [ + 8.8696493, + 48.8528738 + ], + [ + 8.8696493, + 48.8665727 + ], + [ + 8.8404389, + 48.8665727 + ], + [ + 8.8404389, + 48.8528738 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T12:11:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000400150348560044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 36, + "locale": "en", + "imagery": "osm" + }, + "id": 119814338 + } + }, + { + "id": 119814295, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8533423, + 48.8599016 + ], + [ + 8.8533423, + 48.8599016 + ], + [ + 8.8533423, + 48.8599016 + ], + [ + 8.8533423, + 48.8599016 + ], + [ + 8.8533423, + 48.8599016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T12:10:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119814295 + } + }, + { + "id": 119813133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8529298, + 48.8597874 + ], + [ + 8.8549516, + 48.8597874 + ], + [ + 8.8549516, + 48.860226 + ], + [ + 8.8529298, + 48.860226 + ], + [ + 8.8529298, + 48.8597874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T11:33:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 8.86761479990545e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 20, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 4, + "change_within_100m": 12 + }, + "id": 119813133 + } + }, + { + "id": 119811801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3227506, + 51.1188775 + ], + [ + 3.3227506, + 51.1188775 + ], + [ + 3.3227506, + 51.1188775 + ], + [ + 3.3227506, + 51.1188775 + ], + [ + 3.3227506, + 51.1188775 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T10:46:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 119811801 + } + }, + { + "id": 119811691, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3086867, + 47.0443317 + ], + [ + 8.3086867, + 47.0443317 + ], + [ + 8.3086867, + 47.0443317 + ], + [ + 8.3086867, + 47.0443317 + ], + [ + 8.3086867, + 47.0443317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mottiger", + "uid": "7504544", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T10:43:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119811691 + } + }, + { + "id": 119811667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3593883, + 50.8915087 + ], + [ + 4.3593883, + 50.8915087 + ], + [ + 4.3593883, + 50.8915087 + ], + [ + 4.3593883, + 50.8915087 + ], + [ + 4.3593883, + 50.8915087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T10:42:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 119811667 + } + }, + { + "id": 119810393, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1513313, + 51.1086863 + ], + [ + 4.2468832, + 51.1086863 + ], + [ + 4.2468832, + 51.1229779 + ], + [ + 4.1513313, + 51.1229779 + ], + [ + 4.1513313, + 51.1086863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T10:03:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 9, + "delete": 0, + "area": 0.00136558953404, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 20, + "create": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 9, + "change_over_5000m": 8, + "change_within_25m": 29 + }, + "id": 119810393 + } + }, + { + "id": 119809473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2327887, + 51.1610453 + ], + [ + 4.2327887, + 51.1610453 + ], + [ + 4.2327887, + 51.1610453 + ], + [ + 4.2327887, + 51.1610453 + ], + [ + 4.2327887, + 51.1610453 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T09:34:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/openwindpowermap.html", + "theme": "openwindpowermap", + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 119809473 + } + }, + { + "id": 119808437, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3889316, + 50.8122059 + ], + [ + 5.4067362, + 50.8122059 + ], + [ + 5.4067362, + 50.8145123 + ], + [ + 5.3889316, + 50.8145123 + ], + [ + 5.3889316, + 50.8122059 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T08:58:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000410645294399075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_500m": 1 + }, + "id": 119808437 + } + }, + { + "id": 119807384, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9826881, + 51.1810636 + ], + [ + 4.9865401, + 51.1810636 + ], + [ + 4.9865401, + 51.1852138 + ], + [ + 4.9826881, + 51.1852138 + ], + [ + 4.9826881, + 51.1810636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T08:19:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 104, + "modify": 136, + "delete": 5, + "area": 0.0000159865703999931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 125, + "theme": "grb", + "answer": 1, + "delete": 5, + "import": 12, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 119807384 + } + }, + { + "id": 119807254, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5929823, + 50.8130765 + ], + [ + 3.5929823, + 50.8130765 + ], + [ + 3.5929823, + 50.8130765 + ], + [ + 3.5929823, + 50.8130765 + ], + [ + 3.5929823, + 50.8130765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-17T08:16:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 119807254 + } + }, + { + "id": 119806510, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8660851, + 50.9765484 + ], + [ + 4.0389924, + 50.9765484 + ], + [ + 4.0389924, + 51.0250888 + ], + [ + 3.8660851, + 51.0250888 + ], + [ + 3.8660851, + 50.9765484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-17T07:48:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 62, + "delete": 0, + "area": 0.00839298950492004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 81, + "create": 10, + "locale": "nl", + "imagery": "osm", + "add-image": 15 + }, + "id": 119806510 + } + }, + { + "id": 119801027, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.9994224, + 14.5725605 + ], + [ + 121.0288574, + 14.5725605 + ], + [ + 121.0288574, + 14.5973051 + ], + [ + 120.9994224, + 14.5973051 + ], + [ + 120.9994224, + 14.5725605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T23:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000728357301000162, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 119801027 + } + }, + { + "id": 119800489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4152634, + 50.8188558 + ], + [ + 4.6198033, + 50.8188558 + ], + [ + 4.6198033, + 51.1697258 + ], + [ + 4.4152634, + 51.1697258 + ], + [ + 4.4152634, + 50.8188558 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T22:37:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0717669147130002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 9, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119800489 + } + }, + { + "id": 119799968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9079618, + 51.0569507 + ], + [ + 4.9361608, + 51.0569507 + ], + [ + 4.9361608, + 51.0598504 + ], + [ + 4.9079618, + 51.0598504 + ], + [ + 4.9079618, + 51.0569507 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T22:02:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 123, + "modify": 118, + "delete": 2, + "area": 0.0000817686403000107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 99, + "theme": "grb", + "delete": 2, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 38 + }, + "id": 119799968 + } + }, + { + "id": 119797011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5360692, + 50.330316 + ], + [ + 7.641621, + 50.330316 + ], + [ + 7.641621, + 50.4008752 + ], + [ + 7.5360692, + 50.4008752 + ], + [ + 7.5360692, + 50.330316 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T19:53:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 373, + "delete": 0, + "area": 0.00744765056655979, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:43:27.635646Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 517, + "locale": "de", + "imagery": "osm" + }, + "id": 119797011 + } + }, + { + "id": 119792302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -111.9842272, + 33.4718561 + ], + [ + -111.978405, + 33.4718561 + ], + [ + -111.978405, + 33.4754066 + ], + [ + -111.9842272, + 33.4754066 + ], + [ + -111.9842272, + 33.4718561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T17:22:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000206717211000575, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 2 + }, + "id": 119792302 + } + }, + { + "id": 119790785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1039536, + 51.1535472 + ], + [ + 3.1040235, + 51.1535472 + ], + [ + 3.1040235, + 51.1535888 + ], + [ + 3.1039536, + 51.1535888 + ], + [ + 3.1039536, + 51.1535472 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T16:34:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.90784000019672e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 119790785 + } + }, + { + "id": 119789167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.3150139, + 48.1711711 + ], + [ + 16.3173731, + 48.1711711 + ], + [ + 16.3173731, + 48.1713027 + ], + [ + 16.3150139, + 48.1713027 + ], + [ + 16.3150139, + 48.1711711 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T15:44:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.10470719990696e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 119789167 + } + }, + { + "id": 119788902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2321639, + 51.2086396 + ], + [ + 4.3621516, + 51.2086396 + ], + [ + 4.3621516, + 51.2250503 + ], + [ + 4.2321639, + 51.2250503 + ], + [ + 4.2321639, + 51.2086396 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T15:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0021331891483902, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_100m": 2 + }, + "id": 119788902 + } + }, + { + "id": 119787548, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.190612, + 51.1553439 + ], + [ + 3.2287119, + 51.1553439 + ], + [ + 3.2287119, + 51.2243715 + ], + [ + 3.190612, + 51.2243715 + ], + [ + 3.190612, + 51.1553439 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T15:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00262994465723995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 119787548 + } + }, + { + "id": 119785251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4032457, + 51.215893 + ], + [ + 4.4032457, + 51.215893 + ], + [ + 4.4032457, + 51.215893 + ], + [ + 4.4032457, + 51.215893 + ], + [ + 4.4032457, + 51.215893 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:49:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 119785251 + } + }, + { + "id": 119785048, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.228221, + 51.2240246 + ], + [ + 3.2287119, + 51.2240246 + ], + [ + 3.2287119, + 51.2243715 + ], + [ + 3.228221, + 51.2243715 + ], + [ + 3.228221, + 51.2240246 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T13:42:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.7029320999837e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119785048 + } + }, + { + "id": 119784681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3962282, + 51.2184834 + ], + [ + 4.3966513, + 51.2184834 + ], + [ + 4.3966513, + 51.2186729 + ], + [ + 4.3962282, + 51.2186729 + ], + [ + 4.3962282, + 51.2184834 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:30:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.0177450001981e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 119784681 + } + }, + { + "id": 119784638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3204622, + 50.8743472 + ], + [ + 5.3375961, + 50.8743472 + ], + [ + 5.3375961, + 50.8828358 + ], + [ + 5.3204622, + 50.8828358 + ], + [ + 5.3204622, + 50.8743472 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T13:30:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 783, + "modify": 934, + "delete": 28, + "area": 0.000145442823539997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 838, + "theme": "grb", + "delete": 28, + "import": 116, + "locale": "nl", + "imagery": "osm", + "conflation": 208 + }, + "id": 119784638 + } + }, + { + "id": 119784618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3965562, + 51.2184773 + ], + [ + 4.3965562, + 51.2184773 + ], + [ + 4.3965562, + 51.2184773 + ], + [ + 4.3965562, + 51.2184773 + ], + [ + 4.3965562, + 51.2184773 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:29:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_50m": 2 + }, + "id": 119784618 + } + }, + { + "id": 119784254, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3963285, + 51.2165435 + ], + [ + 4.3966275, + 51.2165435 + ], + [ + 4.3966275, + 51.2172717 + ], + [ + 4.3963285, + 51.2172717 + ], + [ + 4.3963285, + 51.2165435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.17731799999293e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/etymology.html", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 119784254 + } + }, + { + "id": 119784224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3964893, + 51.216476 + ], + [ + 4.4003463, + 51.216476 + ], + [ + 4.4003463, + 51.2187524 + ], + [ + 4.3964893, + 51.2187524 + ], + [ + 4.3964893, + 51.216476 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T13:19:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.00000878007479999812, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/openwindpowermap.html", + "theme": "artwork", + "answer": 8, + "create": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 9, + "change_over_5000m": 6, + "change_within_25m": 12, + "change_within_50m": 5 + }, + "id": 119784224 + } + }, + { + "id": 119783430, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.4634101, + 47.2556162 + ], + [ + -1.4634101, + 47.2556162 + ], + [ + -1.4634101, + 47.2556162 + ], + [ + -1.4634101, + 47.2556162 + ], + [ + -1.4634101, + 47.2556162 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koreller", + "uid": "12419855", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T12:57:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 119783430 + } + }, + { + "id": 119783353, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3956551, + 51.2144834 + ], + [ + 4.3961165, + 51.2144834 + ], + [ + 4.3961165, + 51.2148946 + ], + [ + 4.3956551, + 51.2148946 + ], + [ + 4.3956551, + 51.2144834 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-498307015", + "osm_id": 498307015, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "building": "civil" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:54:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.8972768000088e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 119783353 + } + }, + { + "id": 119783005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3950114, + 51.213366 + ], + [ + 4.3990266, + 51.213366 + ], + [ + 4.3990266, + 51.2168112 + ], + [ + 4.3950114, + 51.2168112 + ], + [ + 4.3950114, + 51.213366 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:42:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 25, + "delete": 0, + "area": 0.0000138331670400079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 15, + "create": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 17, + "change_over_5000m": 11, + "change_within_25m": 25, + "change_within_50m": 7 + }, + "id": 119783005 + } + }, + { + "id": 119782703, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3974464, + 51.2149076 + ], + [ + 4.4002108, + 51.2149076 + ], + [ + 4.4002108, + 51.2175521 + ], + [ + 4.3974464, + 51.2175521 + ], + [ + 4.3974464, + 51.2149076 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:33:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.00000731045580000717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 5, + "change_within_25m": 16 + }, + "id": 119782703 + } + }, + { + "id": 119782437, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4009645, + 51.2141372 + ], + [ + 4.4009645, + 51.2141372 + ], + [ + 4.4009645, + 51.2141372 + ], + [ + 4.4009645, + 51.2141372 + ], + [ + 4.4009645, + 51.2141372 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:26:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/facadegardens.html", + "theme": "facadegardens", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119782437 + } + }, + { + "id": 119782117, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1820032, + 51.1520255 + ], + [ + 5.1820032, + 51.1520255 + ], + [ + 5.1820032, + 51.1520255 + ], + [ + 5.1820032, + 51.1520255 + ], + [ + 5.1820032, + 51.1520255 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T12:17:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 4 + }, + "id": 119782117 + } + }, + { + "id": 119780036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9861646, + 51.1748279 + ], + [ + 4.9869061, + 51.1748279 + ], + [ + 4.9869061, + 51.1782123 + ], + [ + 4.9861646, + 51.1782123 + ], + [ + 4.9861646, + 51.1748279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:14:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000250953259999878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "id": 119780036 + } + }, + { + "id": 119779753, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1816724, + 51.140351 + ], + [ + 5.1816724, + 51.140351 + ], + [ + 5.1816724, + 51.140351 + ], + [ + 5.1816724, + 51.140351 + ], + [ + 5.1816724, + 51.140351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:04:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119779753 + } + }, + { + "id": 119779737, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3979041, + 51.2126386 + ], + [ + 4.4074687, + 51.2126386 + ], + [ + 4.4074687, + 51.2148631 + ], + [ + 4.3979041, + 51.2148631 + ], + [ + 4.3979041, + 51.2126386 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:04:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 16, + "delete": 0, + "area": 0.000021276452700039, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 15, + "create": 9, + "locale": "nl", + "imagery": "osm", + "add-image": 14, + "change_over_5000m": 9, + "change_within_25m": 29 + }, + "id": 119779737 + } + }, + { + "id": 119779644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4054586, + 51.2133618 + ], + [ + 4.4054586, + 51.2133618 + ], + [ + 4.4054586, + 51.2133618 + ], + [ + 4.4054586, + 51.2133618 + ], + [ + 4.4054586, + 51.2133618 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T11:01:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119779644 + } + }, + { + "id": 119778483, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.8823056, + 49.4839093 + ], + [ + 7.9263339, + 49.4839093 + ], + [ + 7.9263339, + 49.4952243 + ], + [ + 7.8823056, + 49.4952243 + ], + [ + 7.8823056, + 49.4839093 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "N969", + "uid": "13086756", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T10:26:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000498180214499841, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 14, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 14 + }, + "id": 119778483 + } + }, + { + "id": 119777511, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3208212, + 51.2134298 + ], + [ + 4.3283729, + 51.2134298 + ], + [ + 4.3283729, + 51.2140964 + ], + [ + 4.3208212, + 51.2140964 + ], + [ + 4.3208212, + 51.2134298 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T09:56:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000503396322001789, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclestreets.html", + "theme": "cyclestreets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 119777511 + } + }, + { + "id": 119776638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.3037081, + 48.1672755 + ], + [ + 16.3124569, + 48.1672755 + ], + [ + 16.3124569, + 48.1727989 + ], + [ + 16.3037081, + 48.1727989 + ], + [ + 16.3037081, + 48.1672755 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T09:31:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000483231219199454, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_within_500m": 9, + "change_within_1000m": 2 + }, + "id": 119776638 + } + }, + { + "id": 119776558, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2586452, + 51.207937 + ], + [ + 4.4055136, + 51.207937 + ], + [ + 4.4055136, + 51.2135122 + ], + [ + 4.2586452, + 51.2135122 + ], + [ + 4.2586452, + 51.207937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T09:28:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 5, + "delete": 1, + "area": 0.000818820703679347, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 7, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 7, + "change_within_25m": 12, + "deletion:node/9669927624": "testing point" + }, + "id": 119776558 + } + }, + { + "id": 119774566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.3059891, + 48.1629981 + ], + [ + 16.3095993, + 48.1629981 + ], + [ + 16.3095993, + 48.1671306 + ], + [ + 16.3059891, + 48.1671306 + ], + [ + 16.3059891, + 48.1629981 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-16T08:12:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000014919151499978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 119774566 + } + }, + { + "id": 119773239, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.547778, + 52.4625154 + ], + [ + 10.5646937, + 52.4625154 + ], + [ + 10.5646937, + 52.474231 + ], + [ + 10.547778, + 52.474231 + ], + [ + 10.547778, + 52.4625154 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T07:08:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 79, + "delete": 0, + "area": 0.000198177574920041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 96, + "locale": "de", + "imagery": "osm" + }, + "id": 119773239 + } + }, + { + "id": 119772579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1797358, + 51.1386553 + ], + [ + 3.2049394, + 51.1386553 + ], + [ + 3.2049394, + 51.1571923 + ], + [ + 3.1797358, + 51.1571923 + ], + [ + 3.1797358, + 51.1386553 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-16T06:37:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000467199133199876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119772579 + } + }, + { + "id": 119768307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7076975, + 51.1640892 + ], + [ + 4.7249788, + 51.1640892 + ], + [ + 4.7249788, + 51.1674666 + ], + [ + 4.7076975, + 51.1674666 + ], + [ + 4.7076975, + 51.1640892 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T23:29:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 71, + "modify": 35, + "delete": 0, + "area": 0.0000583658626199637, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 32, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 119768307 + } + }, + { + "id": 119767559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7198373, + 51.1656654 + ], + [ + 4.7502163, + 51.1656654 + ], + [ + 4.7502163, + 51.1729279 + ], + [ + 4.7198373, + 51.1729279 + ], + [ + 4.7198373, + 51.1656654 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-143045733", + "osm_id": 143045733, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "building": "school" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T22:36:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 556, + "modify": 399, + "delete": 2, + "area": 0.000220627487499877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 337, + "theme": "grb", + "answer": 1, + "delete": 2, + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 102, + "change_over_5000m": 5 + }, + "id": 119767559 + } + }, + { + "id": 119767277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 17.6419213, + 49.0263376 + ], + [ + 17.6419213, + 49.0263376 + ], + [ + 17.6419213, + 49.0263376 + ], + [ + 17.6419213, + 49.0263376 + ], + [ + 17.6419213, + 49.0263376 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakub Trojan", + "uid": "273212", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T22:19:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119767277 + } + }, + { + "id": 119766859, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1985483, + 51.158377 + ], + [ + 3.1986221, + 51.158377 + ], + [ + 3.1986221, + 51.1584216 + ], + [ + 3.1985483, + 51.1584216 + ], + [ + 3.1985483, + 51.158377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T21:56:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 3.29147999966096e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "move:node/9669073980": "improve_accuracy" + }, + "id": 119766859 + } + }, + { + "id": 119766359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2485626, + -39.8417513 + ], + [ + -73.2296259, + -39.8417513 + ], + [ + -73.2296259, + -39.8052499 + ], + [ + -73.2485626, + -39.8052499 + ], + [ + -73.2485626, + -39.8417513 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T21:31:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000691216061379889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "id": 119766359 + } + }, + { + "id": 119765657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.7805196, + 55.5209906 + ], + [ + 12.188682, + 55.5209906 + ], + [ + 12.188682, + 55.6436729 + ], + [ + 9.7805196, + 55.6436729 + ], + [ + 9.7805196, + 55.5209906 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #dog", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T21:02:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.295438902005522, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "dog", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119765657 + } + }, + { + "id": 119765173, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1221492, + 51.110116 + ], + [ + 4.1586235, + 51.110116 + ], + [ + 4.1586235, + 51.137672 + ], + [ + 4.1221492, + 51.137672 + ], + [ + 4.1221492, + 51.110116 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T20:40:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9034, + "modify": 12, + "delete": 0, + "area": 0.00100508581080015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/themes/improvements/grb.html", + "move": 10, + "theme": "grb", + "import": 875, + "locale": "nl", + "imagery": "osm", + "conflation": 4, + "change_over_5000m": 799 + }, + "id": 119765173 + } + }, + { + "id": 119764245, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.0579059, + 42.3609712 + ], + [ + -71.0579059, + 42.3609712 + ], + [ + -71.0579059, + 42.3609712 + ], + [ + -71.0579059, + 42.3609712 + ], + [ + -71.0579059, + 42.3609712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "user_15591655", + "uid": "15591655", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T20:04:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 119764245 + } + }, + { + "id": 119759553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2242365, + 51.1986208 + ], + [ + 4.2242365, + 51.1986208 + ], + [ + 4.2242365, + 51.1986208 + ], + [ + 4.2242365, + 51.1986208 + ], + [ + 4.2242365, + 51.1986208 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T17:23:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 119759553 + } + }, + { + "id": 119758587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5798803, + 55.7062199 + ], + [ + 12.5798803, + 55.7062199 + ], + [ + 12.5798803, + 55.7062199 + ], + [ + 12.5798803, + 55.7062199 + ], + [ + 12.5798803, + 55.7062199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T16:52:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 119758587 + } + }, + { + "id": 119758052, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5148936, + 52.495316 + ], + [ + 10.5439925, + 52.495316 + ], + [ + 10.5439925, + 52.4982627 + ], + [ + 10.5148936, + 52.4982627 + ], + [ + 10.5148936, + 52.495316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T16:37:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000857457286298645, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 119758052 + } + }, + { + "id": 119756854, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1278812, + 51.1111797 + ], + [ + 4.2245519, + 51.1111797 + ], + [ + 4.2245519, + 51.1984078 + ], + [ + 4.1278812, + 51.1984078 + ], + [ + 4.1278812, + 51.1111797 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T16:00:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1099, + "modify": 9, + "delete": 0, + "area": 0.00843240148666972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 8, + "theme": "grb", + "import": 126, + "locale": "nl", + "imagery": "osm", + "conflation": 2, + "change_over_5000m": 126 + }, + "id": 119756854 + } + }, + { + "id": 119756629, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.223468, + 51.1984435 + ], + [ + 4.223468, + 51.1984435 + ], + [ + 4.223468, + 51.1984435 + ], + [ + 4.223468, + 51.1984435 + ], + [ + 4.223468, + 51.1984435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T15:51:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119756629 + } + }, + { + "id": 119756111, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.519889, + 44.866215 + ], + [ + -0.514541, + 44.866215 + ], + [ + -0.514541, + 44.8677669 + ], + [ + -0.519889, + 44.8677669 + ], + [ + -0.519889, + 44.866215 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T15:35:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 12, + "delete": 0, + "area": 0.00000829956120001396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 14, + "create": 10, + "locale": "fr", + "imagery": "osm", + "change_within_100m": 18, + "change_within_500m": 6 + }, + "id": 119756111 + } + }, + { + "id": 119754197, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.320909, + 50.8785212 + ], + [ + 5.329244, + 50.8785212 + ], + [ + 5.329244, + 50.8829639 + ], + [ + 5.320909, + 50.8829639 + ], + [ + 5.320909, + 50.8785212 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T14:41:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 319, + "modify": 677, + "delete": 12, + "area": 0.0000370299044999862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 610, + "theme": "grb", + "delete": 12, + "import": 49, + "locale": "nl", + "imagery": "osm", + "conflation": 148 + }, + "id": 119754197 + } + }, + { + "id": 119754070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1615036, + 51.1985939 + ], + [ + 4.2242365, + 51.1985939 + ], + [ + 4.2242365, + 51.230222 + ], + [ + 4.1615036, + 51.230222 + ], + [ + 4.1615036, + 51.1985939 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T14:37:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 7, + "delete": 0, + "area": 0.00198412243448994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 28, + "create": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 7, + "change_within_25m": 15, + "change_within_50m": 12, + "change_within_500m": 6, + "move:node/9668331034": "improve_accuracy" + }, + "id": 119754070 + } + }, + { + "id": 119753828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.8744183, + 50.4704806 + ], + [ + 10.8757394, + 50.4704806 + ], + [ + 10.8757394, + 50.4719517 + ], + [ + 10.8744183, + 50.4719517 + ], + [ + 10.8744183, + 50.4704806 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T14:30:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000194347020999536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119753828 + } + }, + { + "id": 119752319, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1307745, + 51.1120431 + ], + [ + 4.1339825, + 51.1120431 + ], + [ + 4.1339825, + 51.115701 + ], + [ + 4.1307745, + 51.115701 + ], + [ + 4.1307745, + 51.1120431 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T13:50:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 979, + "modify": 0, + "delete": 0, + "area": 0.0000117345432000006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 114, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 114 + }, + "id": 119752319 + } + }, + { + "id": 119750711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5316703, + 44.8372515 + ], + [ + -0.5316703, + 44.8372515 + ], + [ + -0.5316703, + 44.8372515 + ], + [ + -0.5316703, + 44.8372515 + ], + [ + -0.5316703, + 44.8372515 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T13:03:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 4 + }, + "id": 119750711 + } + }, + { + "id": 119750706, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.9041905, + 50.168696 + ], + [ + 18.9041905, + 50.168696 + ], + [ + 18.9041905, + 50.168696 + ], + [ + 18.9041905, + 50.168696 + ], + [ + 18.9041905, + 50.168696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "orlPL", + "uid": "15180064", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T13:02:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 9 + }, + "id": 119750706 + } + }, + { + "id": 119748620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5138288, + 50.313042 + ], + [ + 7.6016278, + 50.313042 + ], + [ + 7.6016278, + 50.3758444 + ], + [ + 7.5138288, + 50.3758444 + ], + [ + 7.5138288, + 50.313042 + ] + ] + ] + }, + "properties": { + "check_user": "exarkun", + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T12:02:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 428, + "delete": 0, + "area": 0.00551398791759962, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2022-04-26T20:43:45.341225Z", + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 606, + "locale": "de", + "imagery": "osm" + }, + "id": 119748620 + } + }, + { + "id": 119748440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.122735, + 51.1985746 + ], + [ + 4.122735, + 51.1985746 + ], + [ + 4.122735, + 51.1985746 + ], + [ + 4.122735, + 51.1985746 + ], + [ + 4.122735, + 51.1985746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T11:57:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119748440 + } + }, + { + "id": 119747468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1439123, + 51.1712705 + ], + [ + 4.1439123, + 51.1712705 + ], + [ + 4.1439123, + 51.1712705 + ], + [ + 4.1439123, + 51.1712705 + ], + [ + 4.1439123, + 51.1712705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9667957033", + "name": "Op Wielekes Sint-Niklaas", + "osm_id": 9667957033, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T11:31:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 119747468 + } + }, + { + "id": 119746884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1319488, + 51.1146636 + ], + [ + 4.1352916, + 51.1146636 + ], + [ + 4.1352916, + 51.1180071 + ], + [ + 4.1319488, + 51.1180071 + ], + [ + 4.1319488, + 51.1146636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T11:12:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 790, + "modify": 21, + "delete": 0, + "area": 0.0000111766518000005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 16, + "theme": "grb", + "answer": 1, + "import": 116, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "id": 119746884 + } + }, + { + "id": 119746849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1330121, + 51.1153374 + ], + [ + 4.1334316, + 51.1153374 + ], + [ + 4.1334316, + 51.1156349 + ], + [ + 4.1330121, + 51.1156349 + ], + [ + 4.1330121, + 51.1153374 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T11:11:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 10, + "delete": 0, + "area": 1.24801250000737e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119746849 + } + }, + { + "id": 119746405, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T10:57:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra", + "theme": "cycle_infra", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119746405 + } + }, + { + "id": 119746404, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T10:57:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra", + "theme": "bicycle_rental", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119746404 + } + }, + { + "id": 119746403, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T10:57:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra", + "theme": "artwork", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119746403 + } + }, + { + "id": 119746402, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T10:57:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra", + "theme": "cyclofix", + "answer": 21, + "create": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 7, + "change_over_5000m": 1 + }, + "id": 119746402 + } + }, + { + "id": 119746148, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1809669, + 50.7787365 + ], + [ + 3.1827166, + 50.7787365 + ], + [ + 3.1827166, + 50.7797555 + ], + [ + 3.1809669, + 50.7797555 + ], + [ + 3.1809669, + 50.7787365 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T10:50:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000178294429999898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra", + "theme": "cycle_infra", + "answer": 6, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_500m": 5, + "change_within_1000m": 1 + }, + "id": 119746148 + } + }, + { + "id": 119744321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4010892, + 51.0944163 + ], + [ + 5.5140987, + 51.0944163 + ], + [ + 5.5140987, + 51.1740445 + ], + [ + 5.4010892, + 51.1740445 + ], + [ + 5.4010892, + 51.0944163 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T09:59:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00899874306790018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119744321 + } + }, + { + "id": 119742174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.1460955, + 48.5316256 + ], + [ + 12.1521692, + 48.5316256 + ], + [ + 12.1521692, + 48.5388961 + ], + [ + 12.1460955, + 48.5388961 + ], + [ + 12.1460955, + 48.5316256 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T09:02:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000441588358500251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 119742174 + } + }, + { + "id": 119740781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4010892, + 51.0862557 + ], + [ + 5.5099949, + 51.0862557 + ], + [ + 5.5099949, + 51.1740445 + ], + [ + 5.4010892, + 51.1740445 + ], + [ + 5.4010892, + 51.0862557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StadPeer", + "uid": "15586828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T08:23:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 21, + "delete": 0, + "area": 0.00956070071615977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 19, + "create": 21, + "locale": "nl", + "imagery": "osm", + "add-image": 8, + "move:node/-15": "improve_accuracy", + "move:node/6426672573": "improve_accuracy", + "move:node/9667759813": "improve_accuracy" + }, + "id": 119740781 + } + }, + { + "id": 119740653, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9878598, + 48.4983848 + ], + [ + 8.9926444, + 48.4983848 + ], + [ + 8.9926444, + 48.5036577 + ], + [ + 8.9878598, + 48.5036577 + ], + [ + 8.9878598, + 48.4983848 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T08:20:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 10, + "delete": 0, + "area": 0.0000252287173400008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 25, + "create": 6, + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 6, + "change_within_25m": 14, + "change_within_50m": 6, + "change_within_100m": 5 + }, + "id": 119740653 + } + }, + { + "id": 119740127, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6217662, + 54.8657705 + ], + [ + -1.6155304, + 54.8657705 + ], + [ + -1.6155304, + 54.8674023 + ], + [ + -1.6217662, + 54.8674023 + ], + [ + -1.6217662, + 54.8657705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T08:02:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000101755784399901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "id": 119740127 + } + }, + { + "id": 119739832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9903854, + 48.4984013 + ], + [ + 8.9942808, + 48.4984013 + ], + [ + 8.9942808, + 48.5037445 + ], + [ + 8.9903854, + 48.5037445 + ], + [ + 8.9903854, + 48.4984013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T07:53:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 29, + "delete": 0, + "area": 0.0000208139012800284, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "split": 3, + "theme": "street_lighting", + "answer": 64, + "locale": "en", + "imagery": "osm", + "change_within_25m": 34, + "change_within_50m": 29, + "change_within_100m": 4 + }, + "id": 119739832 + } + }, + { + "id": 119739647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3058397, + 51.3464839 + ], + [ + 3.3247375, + 51.3464839 + ], + [ + 3.3247375, + 51.3589931 + ], + [ + 3.3058397, + 51.3589931 + ], + [ + 3.3058397, + 51.3464839 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T07:47:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2708, + "modify": 27, + "delete": 4, + "area": 0.000236396359759937, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 24, + "theme": "grb", + "delete": 4, + "import": 215, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 119739647 + } + }, + { + "id": 119735877, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5005351, + 52.4893702 + ], + [ + 10.5393854, + 52.4893702 + ], + [ + 10.5393854, + 52.5024273 + ], + [ + 10.5005351, + 52.5024273 + ], + [ + 10.5005351, + 52.4893702 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ibanez", + "uid": "30137", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-15T05:08:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 74, + "delete": 0, + "area": 0.000507272252129903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 102, + "locale": "de", + "imagery": "osm" + }, + "id": 119735877 + } + }, + { + "id": 119733370, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9943884, + 48.5005536 + ], + [ + 8.9947352, + 48.5005536 + ], + [ + 8.9947352, + 48.5009583 + ], + [ + 8.9943884, + 48.5009583 + ], + [ + 8.9943884, + 48.5005536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-15T01:24:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.40349959998644e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "id": 119733370 + } + }, + { + "id": 119731640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2326154, + -39.8436585 + ], + [ + -73.2326154, + -39.8436585 + ], + [ + -73.2326154, + -39.8436585 + ], + [ + -73.2326154, + -39.8436585 + ], + [ + -73.2326154, + -39.8436585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T22:44:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119731640 + } + }, + { + "id": 119727677, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3638029, + 51.353132 + ], + [ + 3.3639186, + 51.353132 + ], + [ + 3.3639186, + 51.353348 + ], + [ + 3.3638029, + 51.353348 + ], + [ + 3.3638029, + 51.353132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T20:01:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.4991199999346e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "id": 119727677 + } + }, + { + "id": 119725862, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3043203, + 50.8718504 + ], + [ + 5.32114, + 50.8718504 + ], + [ + 5.32114, + 50.8806261 + ], + [ + 5.3043203, + 50.8806261 + ], + [ + 5.3043203, + 50.8718504 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T19:03:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 188, + "modify": 238, + "delete": 0, + "area": 0.000147604641290019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 219, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 46 + }, + "id": 119725862 + } + }, + { + "id": 119723200, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3521372, + 50.8441952 + ], + [ + 4.3521372, + 50.8441952 + ], + [ + 4.3521372, + 50.8441952 + ], + [ + 4.3521372, + 50.8441952 + ], + [ + 4.3521372, + 50.8441952 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T17:43:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 119723200 + } + }, + { + "id": 119716905, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3034838, + 50.8671789 + ], + [ + 5.3108369, + 50.8671789 + ], + [ + 5.3108369, + 50.8735699 + ], + [ + 5.3034838, + 50.8735699 + ], + [ + 5.3034838, + 50.8671789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T14:50:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 306, + "modify": 1405, + "delete": 33, + "area": 0.0000469936621000023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1249, + "theme": "grb", + "delete": 33, + "import": 54, + "locale": "nl", + "imagery": "osm", + "conflation": 318 + }, + "id": 119716905 + } + }, + { + "id": 119716458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4356097, + 52.1095051 + ], + [ + 13.4356097, + 52.1095051 + ], + [ + 13.4356097, + 52.1095051 + ], + [ + 13.4356097, + 52.1095051 + ], + [ + 13.4356097, + 52.1095051 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T14:39:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119716458 + } + }, + { + "id": 119713449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2992639, + 50.8644386 + ], + [ + 5.3102231, + 50.8644386 + ], + [ + 5.3102231, + 50.8686799 + ], + [ + 5.2992639, + 50.8686799 + ], + [ + 5.2992639, + 50.8644386 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:21:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 359, + "modify": 891, + "delete": 5, + "area": 0.0000464812549599659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 799, + "theme": "grb", + "delete": 5, + "import": 62, + "locale": "nl", + "imagery": "osm", + "conflation": 198 + }, + "id": 119713449 + } + }, + { + "id": 119713077, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4510266, + 51.1225074 + ], + [ + 5.4963183, + 51.1225074 + ], + [ + 5.4963183, + 51.1728791 + ], + [ + 5.4510266, + 51.1728791 + ], + [ + 5.4510266, + 51.1225074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "veerle_aerts", + "uid": "15579266", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:11:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00228141992489002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 10, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 119713077 + } + }, + { + "id": 119713035, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3063056, + 50.8634199 + ], + [ + 5.3124519, + 50.8634199 + ], + [ + 5.3124519, + 50.8661889 + ], + [ + 5.3063056, + 50.8661889 + ], + [ + 5.3063056, + 50.8634199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:10:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 214, + "modify": 260, + "delete": 7, + "area": 0.0000170191047000047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 231, + "theme": "grb", + "delete": 7, + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 66 + }, + "id": 119713035 + } + }, + { + "id": 119712744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3059634, + 50.8618247 + ], + [ + 5.3119513, + 50.8618247 + ], + [ + 5.3119513, + 50.8654983 + ], + [ + 5.3059634, + 50.8654983 + ], + [ + 5.3059634, + 50.8618247 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T13:02:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 172, + "modify": 312, + "delete": 7, + "area": 0.0000219971494399913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 281, + "theme": "grb", + "delete": 7, + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 62 + }, + "id": 119712744 + } + }, + { + "id": 119710379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6275247, + 51.0003281 + ], + [ + 3.6275247, + 51.0003281 + ], + [ + 3.6275247, + 51.0003281 + ], + [ + 3.6275247, + 51.0003281 + ], + [ + 3.6275247, + 51.0003281 + ] + ] + ] + }, + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "donarreiskoffer", + "uid": "67294", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T12:03:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-04-16T06:43:00.544578Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119710379 + } + }, + { + "id": 119701067, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T08:35:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 119701067 + } + }, + { + "id": 119701000, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2652655, + 53.2099246 + ], + [ + 6.2652655, + 53.2099246 + ], + [ + 6.2652655, + 53.2099246 + ], + [ + 6.2652655, + 53.2099246 + ], + [ + 6.2652655, + 53.2099246 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T08:34:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/transit/transit.html", + "theme": "transit", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 119701000 + } + }, + { + "id": 119698240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1397271, + 50.9792405 + ], + [ + 5.188693, + 50.9792405 + ], + [ + 5.188693, + 51.0572591 + ], + [ + 5.1397271, + 51.0572591 + ], + [ + 5.1397271, + 50.9792405 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T07:33:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00382025096573999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 4, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 4, + "locale": "nl", + "imagery": "AGIV10cm", + "move:node/9665195509": "improve_accuracy", + "move:node/9665224256": "improve_accuracy", + "move:node/9665248255": "improve_accuracy", + "move:node/9665251660": "improve_accuracy", + "import:node/9665195509": "source: https://osm.org/note/3044132", + "import:node/9665224256": "source: https://osm.org/note/3044686", + "import:node/9665248255": "source: https://osm.org/note/3044520", + "import:node/9665251660": "source: https://osm.org/note/3044542" + }, + "id": 119698240 + } + }, + { + "id": 119698098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1585732, + 51.0556807 + ], + [ + 5.1614549, + 51.0556807 + ], + [ + 5.1614549, + 51.0564507 + ], + [ + 5.1585732, + 51.0564507 + ], + [ + 5.1585732, + 51.0556807 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T07:30:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.0000022189089999874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 31, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "id": 119698098 + } + }, + { + "id": 119695852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1571814, + 51.055433 + ], + [ + 5.165641, + 51.055433 + ], + [ + 5.165641, + 51.0588525 + ], + [ + 5.1571814, + 51.0588525 + ], + [ + 5.1571814, + 51.055433 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T06:28:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000289276021999978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 4, + "theme": "toerisme_vlaanderen", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "move:node/9665041837": "improve_accuracy", + "move:node/9665075703": "improve_accuracy", + "move:node/9665082494": "improve_accuracy", + "move:node/9665090024": "improve_accuracy", + "import:node/9665041837": "source: https://osm.org/note/3044480", + "import:node/9665075703": "source: https://osm.org/note/3044354", + "import:node/9665082494": "source: https://osm.org/note/3044514", + "import:node/9665090024": "source: https://osm.org/note/3044299" + }, + "id": 119695852 + } + }, + { + "id": 119692149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2514375, + -39.8132225 + ], + [ + -73.2286578, + -39.8132225 + ], + [ + -73.2286578, + -39.8051653 + ], + [ + -73.2514375, + -39.8051653 + ], + [ + -73.2514375, + -39.8132225 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-14T03:51:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000183540598840081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 5 + }, + "id": 119692149 + } + }, + { + "id": 119689652, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2534518, + -39.8054808 + ], + [ + -73.2530185, + -39.8054808 + ], + [ + -73.2530185, + -39.8050852 + ], + [ + -73.2534518, + -39.8050852 + ], + [ + -73.2534518, + -39.8054808 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-14T00:31:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.71413479997846e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 6, + "change_within_5000m": 2 + }, + "id": 119689652 + } + }, + { + "id": 119687669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.9282134, + 42.4327794 + ], + [ + 1.9282134, + 42.4327794 + ], + [ + 1.9282134, + 42.4327794 + ], + [ + 1.9282134, + 42.4327794 + ], + [ + 1.9282134, + 42.4327794 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T22:25:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 20, + "locale": "ca", + "imagery": "osm" + }, + "id": 119687669 + } + }, + { + "id": 119686715, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7188831, + 50.8878106 + ], + [ + 4.7222936, + 50.8878106 + ], + [ + 4.7222936, + 50.8898148 + ], + [ + 4.7188831, + 50.8898148 + ], + [ + 4.7188831, + 50.8878106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T21:39:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 354, + "modify": 32, + "delete": 0, + "area": 0.00000683532410000651, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 24, + "theme": "grb", + "answer": 2, + "import": 58, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "id": 119686715 + } + }, + { + "id": 119686659, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4493368, + 51.041663 + ], + [ + 3.4529807, + 51.041663 + ], + [ + 3.4529807, + 51.0421264 + ], + [ + 3.4493368, + 51.0421264 + ], + [ + 3.4493368, + 51.041663 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T21:36:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000168858326000351, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "id": 119686659 + } + }, + { + "id": 119685551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2138617, + 51.1987922 + ], + [ + 3.2138617, + 51.1987922 + ], + [ + 3.2138617, + 51.1987922 + ], + [ + 3.2138617, + 51.1987922 + ], + [ + 3.2138617, + 51.1987922 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T20:50:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "nl", + "imagery": "AGIV10cm", + "change_within_5000m": 1 + }, + "id": 119685551 + } + }, + { + "id": 119684675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4081112, + 52.5317671 + ], + [ + 13.4083671, + 52.5317671 + ], + [ + 13.4083671, + 52.5317846 + ], + [ + 13.4081112, + 52.5317846 + ], + [ + 13.4081112, + 52.5317671 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T20:22:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.47824999958721e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 119684675 + } + }, + { + "id": 119682710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2374124, + -39.8446026 + ], + [ + -73.2351373, + -39.8446026 + ], + [ + -73.2351373, + -39.8423576 + ], + [ + -73.2374124, + -39.8423576 + ], + [ + -73.2374124, + -39.8446026 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T19:22:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000510759949998542, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 12 + }, + "id": 119682710 + } + }, + { + "id": 119681275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.213625, + 51.1982355 + ], + [ + 3.213625, + 51.1982355 + ], + [ + 3.213625, + 51.1982355 + ], + [ + 3.213625, + 51.1982355 + ], + [ + 3.213625, + 51.1982355 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:39:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119681275 + } + }, + { + "id": 119681267, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:39:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 119681267 + } + }, + { + "id": 119681252, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:38:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 1 + }, + "id": 119681252 + } + }, + { + "id": 119681246, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:38:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 1 + }, + "id": 119681246 + } + }, + { + "id": 119681157, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2137102, + 51.1983401 + ], + [ + 3.2140267, + 51.1983401 + ], + [ + 3.2140267, + 51.1991679 + ], + [ + 3.2137102, + 51.1991679 + ], + [ + 3.2137102, + 51.1983401 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:36:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.61998699998644e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "id": 119681157 + } + }, + { + "id": 119681100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2138617, + 51.1987922 + ], + [ + 3.2139395, + 51.1987922 + ], + [ + 3.2139395, + 51.1989519 + ], + [ + 3.2138617, + 51.1989519 + ], + [ + 3.2138617, + 51.1987922 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:34:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.24246599998292e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 7, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_50m": 2 + }, + "id": 119681100 + } + }, + { + "id": 119681029, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2131751, + 51.1989477 + ], + [ + 3.2131751, + 51.1989477 + ], + [ + 3.2131751, + 51.1989477 + ], + [ + 3.2131751, + 51.1989477 + ], + [ + 3.2131751, + 51.1989477 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:32:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 119681029 + } + }, + { + "id": 119680703, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3044204, + 50.8639637 + ], + [ + 5.308018, + 50.8639637 + ], + [ + 5.308018, + 50.8651211 + ], + [ + 5.3044204, + 50.8651211 + ], + [ + 5.3044204, + 50.8639637 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:23:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 29, + "delete": 0, + "area": 0.00000416386224001387, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 26, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 119680703 + } + }, + { + "id": 119680635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3046151, + 50.8650384 + ], + [ + 5.306463, + 50.8650384 + ], + [ + 5.306463, + 50.8655213 + ], + [ + 5.3046151, + 50.8655213 + ], + [ + 5.3046151, + 50.8650384 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:21:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 98, + "delete": 1, + "area": 8.92350909989447e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 87, + "theme": "grb", + "delete": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "id": 119680635 + } + }, + { + "id": 119680628, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3068613, + 50.8652597 + ], + [ + 5.3071175, + 50.8652597 + ], + [ + 5.3071175, + 50.8654331 + ], + [ + 5.3068613, + 50.8654331 + ], + [ + 5.3068613, + 50.8652597 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:21:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 4.44250799986601e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119680628 + } + }, + { + "id": 119680626, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:21:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119680626 + } + }, + { + "id": 119680614, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3071611, + 50.8650228 + ], + [ + 5.3074475, + 50.8650228 + ], + [ + 5.3074475, + 50.8653079 + ], + [ + 5.3071611, + 50.8653079 + ], + [ + 5.3071611, + 50.8650228 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:20:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 9, + "delete": 0, + "area": 8.16526399998573e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 8, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119680614 + } + }, + { + "id": 119680611, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3069779, + 50.8648755 + ], + [ + 5.307284, + 50.8648755 + ], + [ + 5.307284, + 50.8650614 + ], + [ + 5.3069779, + 50.8650614 + ], + [ + 5.3069779, + 50.8648755 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:20:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 9, + "delete": 0, + "area": 5.69039900016974e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 8, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119680611 + } + }, + { + "id": 119680590, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3056357, + 50.8642664 + ], + [ + 5.3071654, + 50.8642664 + ], + [ + 5.3071654, + 50.8651317 + ], + [ + 5.3056357, + 50.8651317 + ], + [ + 5.3056357, + 50.8642664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:19:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 48, + "delete": 0, + "area": 0.00000132364941000134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 44, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "id": 119680590 + } + }, + { + "id": 119680587, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:19:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 119680587 + } + }, + { + "id": 119680580, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:19:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 119680580 + } + }, + { + "id": 119680546, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.304951, + 50.8640705 + ], + [ + 5.3077704, + 50.8640705 + ], + [ + 5.3077704, + 50.8649514 + ], + [ + 5.304951, + 50.8649514 + ], + [ + 5.304951, + 50.8640705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:18:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 24, + "modify": 19, + "delete": 0, + "area": 0.00000248360946001578, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 16, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 119680546 + } + }, + { + "id": 119680423, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2128476, + 51.2097787 + ], + [ + 3.2128536, + 51.2097787 + ], + [ + 3.2128536, + 51.209847 + ], + [ + 3.2128476, + 51.209847 + ], + [ + 3.2128476, + 51.2097787 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T18:13:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.09800000010734e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/trees.html", + "theme": "trees", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_within_25m": 8 + }, + "id": 119680423 + } + }, + { + "id": 119680364, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3037759, + 50.8625789 + ], + [ + 5.3075007, + 50.8625789 + ], + [ + 5.3075007, + 50.8649189 + ], + [ + 5.3037759, + 50.8649189 + ], + [ + 5.3037759, + 50.8625789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T18:12:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 56, + "modify": 331, + "delete": 0, + "area": 0.00000871603199998886, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 295, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 72 + }, + "id": 119680364 + } + }, + { + "id": 119672536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.479868, + 44.907715 + ], + [ + -0.472055, + 44.907715 + ], + [ + -0.472055, + 44.9180105 + ], + [ + -0.479868, + 44.9180105 + ], + [ + -0.479868, + 44.907715 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T14:55:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 16, + "delete": 0, + "area": 0.0000804387414999846, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 30, + "create": 12, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 13, + "change_within_50m": 20, + "change_within_100m": 5 + }, + "id": 119672536 + } + }, + { + "id": 119670473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4497523, + 51.0419544 + ], + [ + 3.4500179, + 51.0419544 + ], + [ + 3.4500179, + 51.0421264 + ], + [ + 3.4497523, + 51.0421264 + ], + [ + 3.4497523, + 51.0419544 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T14:12:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.56831999997954e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 119670473 + } + }, + { + "id": 119670301, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 103.8437628, + 1.304723 + ], + [ + 103.8620774, + 1.304723 + ], + [ + 103.8620774, + 1.3204058 + ], + [ + 103.8437628, + 1.3204058 + ], + [ + 103.8437628, + 1.304723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MapTheWalk", + "uid": "10499594", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T14:07:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000287224208880168, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "id": 119670301 + } + }, + { + "id": 119668956, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2961812, + 50.8551761 + ], + [ + 5.3060568, + 50.8551761 + ], + [ + 5.3060568, + 50.862735 + ], + [ + 5.2961812, + 50.862735 + ], + [ + 5.2961812, + 50.8551761 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T13:32:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 206, + "modify": 497, + "delete": 2, + "area": 0.0000746486728399936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 442, + "theme": "grb", + "delete": 2, + "import": 38, + "locale": "nl", + "imagery": "osm", + "conflation": 114 + }, + "id": 119668956 + } + }, + { + "id": 119666785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0722076, + 50.9754097 + ], + [ + 3.1258464, + 50.9754097 + ], + [ + 3.1258464, + 50.9974525 + ], + [ + 3.0722076, + 50.9974525 + ], + [ + 3.0722076, + 50.9754097 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Hooglede", + "uid": "15568930", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T12:39:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00118234934064006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 26, + "create": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119666785 + } + }, + { + "id": 119666496, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.081708, + 50.9784968 + ], + [ + 3.1264687, + 50.9784968 + ], + [ + 3.1264687, + 50.9974091 + ], + [ + 3.081708, + 50.9974091 + ], + [ + 3.081708, + 50.9784968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Hooglede", + "uid": "15568930", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T12:33:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 1, + "area": 0.000846527786609857, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9663219838": "testing point" + }, + "id": 119666496 + } + }, + { + "id": 119665390, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4488676, + 51.0398619 + ], + [ + 3.4488676, + 51.0398619 + ], + [ + 3.4488676, + 51.0398619 + ], + [ + 3.4488676, + 51.0398619 + ], + [ + 3.4488676, + 51.0398619 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T12:09:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 119665390 + } + }, + { + "id": 119664919, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T11:57:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119664919 + } + }, + { + "id": 119657968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5889171, + 53.2330257 + ], + [ + 6.6003098, + 53.2330257 + ], + [ + 6.6003098, + 53.2355562 + ], + [ + 6.5889171, + 53.2355562 + ], + [ + 6.5889171, + 53.2330257 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:23:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000288292273499873, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 24, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 24 + }, + "id": 119657968 + } + }, + { + "id": 119657572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.50992, + 44.856376 + ], + [ + -0.508942, + 44.856376 + ], + [ + -0.508942, + 44.856946 + ], + [ + -0.50992, + 44.856946 + ], + [ + -0.50992, + 44.856376 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:14:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 5.57460000003237e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 2, + "locale": "fr", + "imagery": "osm", + "change_within_50m": 2, + "change_within_100m": 3 + }, + "id": 119657572 + } + }, + { + "id": 119657286, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1768179, + 38.9686771 + ], + [ + -0.1759862, + 38.9686771 + ], + [ + -0.1759862, + 38.9690572 + ], + [ + -0.1768179, + 38.9690572 + ], + [ + -0.1768179, + 38.9686771 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:08:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.16129170000823e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "create": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 119657286 + } + }, + { + "id": 119657105, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5295709, + 53.2306949 + ], + [ + 6.5720641, + 53.2306949 + ], + [ + 6.5720641, + 53.2458111 + ], + [ + 6.5295709, + 53.2458111 + ], + [ + 6.5295709, + 53.2306949 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T09:04:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.000642335709839756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 59, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 8, + "change_within_1000m": 28, + "change_within_5000m": 19 + }, + "id": 119657105 + } + }, + { + "id": 119655084, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0420389, + 50.9380097 + ], + [ + 4.0420389, + 50.9380097 + ], + [ + 4.0420389, + 50.9380097 + ], + [ + 4.0420389, + 50.9380097 + ], + [ + 4.0420389, + 50.9380097 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Visit Leuven", + "uid": "15566671", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T08:20:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119655084 + } + }, + { + "id": 119652140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2343822, + 46.0637091 + ], + [ + 13.2355775, + 46.0637091 + ], + [ + 13.2355775, + 46.0649574 + ], + [ + 13.2343822, + 46.0649574 + ], + [ + 13.2343822, + 46.0637091 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Roccio", + "uid": "12443591", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T07:14:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000149209298999928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119652140 + } + }, + { + "id": 119651515, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0246982, + 51.0450219 + ], + [ + 5.0363418, + 51.0450219 + ], + [ + 5.0363418, + 51.0534375 + ], + [ + 5.0246982, + 51.0534375 + ], + [ + 5.0246982, + 51.0450219 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T06:59:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 25, + "modify": 65, + "delete": 8, + "area": 0.0000979878801599935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 56, + "theme": "grb", + "answer": 2, + "delete": 8, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "id": 119651515 + } + }, + { + "id": 119650401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9939917, + 48.4995029 + ], + [ + 8.9965179, + 48.4995029 + ], + [ + 8.9965179, + 48.5007234 + ], + [ + 8.9939917, + 48.5007234 + ], + [ + 8.9939917, + 48.4995029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T06:33:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.00000308322709998801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 35, + "locale": "en", + "imagery": "osm", + "change_within_25m": 13, + "change_within_50m": 22 + }, + "id": 119650401 + } + }, + { + "id": 119649554, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0359392, + 51.0521605 + ], + [ + 5.0814248, + 51.0521605 + ], + [ + 5.0814248, + 51.0763955 + ], + [ + 5.0359392, + 51.0763955 + ], + [ + 5.0359392, + 51.0521605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T06:08:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00110234351599988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 3, + "theme": "toerisme_vlaanderen", + "import": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "move:node/9662296771": "improve_accuracy", + "move:node/9662310336": "improve_accuracy", + "move:node/9662328457": "improve_accuracy", + "import:node/9662296771": "source: https://osm.org/note/3044361", + "import:node/9662310336": "source: https://osm.org/note/3044308", + "import:node/9662328457": "source: https://osm.org/note/3044422" + }, + "id": 119649554 + } + }, + { + "id": 119648939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9972418, + 51.1258921 + ], + [ + 5.0030687, + 51.1258921 + ], + [ + 5.0030687, + 51.1287996 + ], + [ + 4.9972418, + 51.1287996 + ], + [ + 4.9972418, + 51.1258921 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-13T05:48:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 45, + "modify": 94, + "delete": 0, + "area": 0.0000169417117499945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 83, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 22, + "change_within_500m": 3 + }, + "id": 119648939 + } + }, + { + "id": 119645881, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2373757, + -39.8445512 + ], + [ + -73.2327607, + -39.8445512 + ], + [ + -73.2327607, + -39.8431722 + ], + [ + -73.2373757, + -39.8431722 + ], + [ + -73.2373757, + -39.8445512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-13T03:24:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000636408500000167, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 3 + }, + "id": 119645881 + } + }, + { + "id": 119641675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.23689, + -39.8441981 + ], + [ + -73.23689, + -39.8441981 + ], + [ + -73.23689, + -39.8441981 + ], + [ + -73.23689, + -39.8441981 + ], + [ + -73.23689, + -39.8441981 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T22:53:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 119641675 + } + }, + { + "id": 119639476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2418559, + 51.2063532 + ], + [ + 3.2419009, + 51.2063532 + ], + [ + 3.2419009, + 51.2064893 + ], + [ + 3.2418559, + 51.2064893 + ], + [ + 3.2418559, + 51.2063532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T21:08:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 6.1244999999587e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119639476 + } + }, + { + "id": 119635939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2949911, + 50.8580471 + ], + [ + 5.2973232, + 50.8580471 + ], + [ + 5.2973232, + 50.8604908 + ], + [ + 5.2949911, + 50.8604908 + ], + [ + 5.2949911, + 50.8580471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T19:16:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 109, + "modify": 168, + "delete": 0, + "area": 0.0000056989527700021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 150, + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "id": 119635939 + } + }, + { + "id": 119632692, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1912963, + 51.180789 + ], + [ + 3.2099564, + 51.180789 + ], + [ + 3.2099564, + 51.188205 + ], + [ + 3.1912963, + 51.188205 + ], + [ + 3.1912963, + 51.180789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T17:53:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000138383301600117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "move:node/8191707622": "improve_accuracy" + }, + "id": 119632692 + } + }, + { + "id": 119632095, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.016935, + 38.8498119 + ], + [ + 0.0194242, + 38.8498119 + ], + [ + 0.0194242, + 38.8520633 + ], + [ + 0.016935, + 38.8520633 + ], + [ + 0.016935, + 38.8498119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T17:38:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00000560418487999672, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "PNOA-Spain", + "add-image": 3, + "change_over_5000m": 4, + "change_within_25m": 7 + }, + "id": 119632095 + } + }, + { + "id": 119629379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9949248, + 51.0863259 + ], + [ + 3.9949248, + 51.0863259 + ], + [ + 3.9949248, + 51.0863259 + ], + [ + 3.9949248, + 51.0863259 + ], + [ + 3.9949248, + 51.0863259 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Baloe$", + "uid": "15543890", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T16:27:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 119629379 + } + }, + { + "id": 119628266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2438797, + 51.208647 + ], + [ + 3.2445878, + 51.208647 + ], + [ + 3.2445878, + 51.2086865 + ], + [ + 3.2438797, + 51.2086865 + ], + [ + 3.2438797, + 51.208647 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T15:59:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 2.796994999983e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "id": 119628266 + } + }, + { + "id": 119625581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0214762, + 50.9421947 + ], + [ + 4.0214762, + 50.9421947 + ], + [ + 4.0214762, + 50.9421947 + ], + [ + 4.0214762, + 50.9421947 + ], + [ + 4.0214762, + 50.9421947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T14:55:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119625581 + } + }, + { + "id": 119623470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2941177, + 50.8597953 + ], + [ + 5.2968394, + 50.8597953 + ], + [ + 5.2968394, + 50.8611058 + ], + [ + 5.2941177, + 50.8611058 + ], + [ + 5.2941177, + 50.8597953 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T13:58:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 95, + "modify": 75, + "delete": 1, + "area": 0.00000356678784998662, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 68, + "theme": "grb", + "delete": 1, + "import": 17, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "id": 119623470 + } + }, + { + "id": 119622293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5846407, + 54.7770999 + ], + [ + -1.5841463, + 54.7770999 + ], + [ + -1.5841463, + 54.7775299 + ], + [ + -1.5846407, + 54.7775299 + ], + [ + -1.5846407, + 54.7770999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "phodgkin", + "uid": "7666952", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T13:25:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.12591999997224e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119622293 + } + }, + { + "id": 119621045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.1385235, + 48.1322796 + ], + [ + 15.1390062, + 48.1322796 + ], + [ + 15.1390062, + 48.1326004 + ], + [ + 15.1385235, + 48.1326004 + ], + [ + 15.1385235, + 48.1322796 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alxGS", + "uid": "13367754", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T12:49:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.54850160002398e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 119621045 + } + }, + { + "id": 119619153, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.938048, + 51.2365149 + ], + [ + 4.9395643, + 51.2365149 + ], + [ + 4.9395643, + 51.2371177 + ], + [ + 4.938048, + 51.2371177 + ], + [ + 4.938048, + 51.2365149 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-513645075", + "osm_id": 513645075, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "building": "yes" + } + } + ], + "user": "Martijn Van Loon", + "uid": "6058806", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T12:04:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.14025639993373e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "soft-delete": 1, + "soft-delete:way/513645075": "disused" + }, + "id": 119619153 + } + }, + { + "id": 119617103, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9948695, + 48.5008547 + ], + [ + 8.9967567, + 48.5008547 + ], + [ + 8.9967567, + 48.5014061 + ], + [ + 8.9948695, + 48.5014061 + ], + [ + 8.9948695, + 48.5008547 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T11:14:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.00000104060207999858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 19, + "create": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 17, + "change_within_50m": 2 + }, + "id": 119617103 + } + }, + { + "id": 119617024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ], + [ + 8.9965305, + 48.5015504 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T11:12:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 119617024 + } + }, + { + "id": 119616745, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9975176, + 48.5017081 + ], + [ + 8.9975733, + 48.5017081 + ], + [ + 8.9975733, + 48.5017125 + ], + [ + 8.9975176, + 48.5017125 + ], + [ + 8.9975176, + 48.5017081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T11:06:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.45079999701234e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 119616745 + } + }, + { + "id": 119616397, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9944631, + 48.5005823 + ], + [ + 8.9962732, + 48.5005823 + ], + [ + 8.9962732, + 48.5017461 + ], + [ + 8.9944631, + 48.5017461 + ], + [ + 8.9944631, + 48.5005823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T10:58:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.000002106594379999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "split": 2, + "theme": "street_lighting", + "answer": 20, + "locale": "en", + "imagery": "osm", + "change_within_25m": 21, + "change_within_50m": 1 + }, + "id": 119616397 + } + }, + { + "id": 119615302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.4447126, + 52.382584 + ], + [ + 6.4447126, + 52.382584 + ], + [ + 6.4447126, + 52.382584 + ], + [ + 6.4447126, + 52.382584 + ], + [ + 6.4447126, + 52.382584 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T10:33:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119615302 + } + }, + { + "id": 119610049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0041963, + 51.1238853 + ], + [ + 5.012899, + 51.1238853 + ], + [ + 5.012899, + 51.1279007 + ], + [ + 5.0041963, + 51.1279007 + ], + [ + 5.0041963, + 51.1238853 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T08:28:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 137, + "modify": 471, + "delete": 5, + "area": 0.0000349448215799999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 420, + "theme": "grb", + "answer": 1, + "delete": 5, + "import": 20, + "locale": "nl", + "imagery": "AGIV", + "conflation": 106, + "change_within_500m": 20, + "change_within_1000m": 1 + }, + "id": 119610049 + } + }, + { + "id": 119606815, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4645879, + 50.9828049 + ], + [ + 4.4645879, + 50.9828049 + ], + [ + 4.4645879, + 50.9828049 + ], + [ + 4.4645879, + 50.9828049 + ], + [ + 4.4645879, + 50.9828049 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9660103709", + "name": "Op Wielekes Zemst", + "osm_id": 9660103709, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T06:58:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119606815 + } + }, + { + "id": 119605449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0962408, + 51.0145942 + ], + [ + 4.190102, + 51.0145942 + ], + [ + 4.190102, + 51.058891 + ], + [ + 4.0962408, + 51.058891 + ], + [ + 4.0962408, + 51.0145942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenbeleid Dendermonde", + "uid": "15550372", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T06:21:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 9, + "delete": 0, + "area": 0.00415775080416048, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 28, + "create": 16, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 119605449 + } + }, + { + "id": 119603423, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 78.7290871, + 10.8275199 + ], + [ + 80.2664432, + 10.8275199 + ], + [ + 80.2664432, + 13.1173356 + ], + [ + 78.7290871, + 13.1173356 + ], + [ + 78.7290871, + 10.8275199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-12T05:05:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 40, + "delete": 0, + "area": 3.52026213427076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "id": 119603423 + } + }, + { + "id": 119601559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9663542, + 40.5809208 + ], + [ + -73.9661186, + 40.5809208 + ], + [ + -73.9661186, + 40.5810496 + ], + [ + -73.9663542, + 40.5810496 + ], + [ + -73.9663542, + 40.5809208 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-12T03:32:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.03452799992501e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 119601559 + } + }, + { + "id": 119598743, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8941363, + 50.22007 + ], + [ + 4.8947079, + 50.22007 + ], + [ + 4.8947079, + 50.2204804 + ], + [ + 4.8941363, + 50.2204804 + ], + [ + 4.8941363, + 50.22007 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T23:43:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 36, + "modify": 9, + "delete": 0, + "area": 2.34584639999803e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 8, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119598743 + } + }, + { + "id": 119594536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2926143, + 50.8612428 + ], + [ + 5.296003, + 50.8612428 + ], + [ + 5.296003, + 50.8638493 + ], + [ + 5.2926143, + 50.8638493 + ], + [ + 5.2926143, + 50.8612428 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T20:21:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 86, + "modify": 244, + "delete": 0, + "area": 0.0000088326465499947, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 217, + "theme": "grb", + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 62 + }, + "id": 119594536 + } + }, + { + "id": 119593806, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9240511, + 51.22586 + ], + [ + 2.9240511, + 51.22586 + ], + [ + 2.9240511, + 51.22586 + ], + [ + 2.9240511, + 51.22586 + ], + [ + 2.9240511, + 51.22586 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T19:56:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 3, + "create": 1, + "locale": "zh_Hans", + "imagery": "AGIVFlandersGRB" + }, + "id": 119593806 + } + }, + { + "id": 119593122, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.385181, + 51.1657828 + ], + [ + 4.385181, + 51.1657828 + ], + [ + 4.385181, + 51.1657828 + ], + [ + 4.385181, + 51.1657828 + ], + [ + 4.385181, + 51.1657828 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T19:33:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119593122 + } + }, + { + "id": 119591686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3808729, + 50.8777221 + ], + [ + 4.3808729, + 50.8777221 + ], + [ + 4.3808729, + 50.8777221 + ], + [ + 4.3808729, + 50.8777221 + ], + [ + 4.3808729, + 50.8777221 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T18:44:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119591686 + } + }, + { + "id": 119591205, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.284521, + 50.8652303 + ], + [ + 5.2921397, + 50.8652303 + ], + [ + 5.2921397, + 50.8714168 + ], + [ + 5.284521, + 50.8714168 + ], + [ + 5.284521, + 50.8652303 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T18:28:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 5, + "delete": 0, + "area": 0.0000471330875499877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 4, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119591205 + } + }, + { + "id": 119590906, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7456643, + 51.0366997 + ], + [ + 3.7456643, + 51.0366997 + ], + [ + 3.7456643, + 51.0366997 + ], + [ + 3.7456643, + 51.0366997 + ], + [ + 3.7456643, + 51.0366997 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T18:19:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119590906 + } + }, + { + "id": 119588669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7113601, + 51.1296495 + ], + [ + 4.7584182, + 51.1296495 + ], + [ + 4.7584182, + 51.1366606 + ], + [ + 4.7113601, + 51.1366606 + ], + [ + 4.7113601, + 51.1296495 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T17:14:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.000329929044909987, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 2, + "change_within_1000m": 2, + "change_within_5000m": 1 + }, + "id": 119588669 + } + }, + { + "id": 119586056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1138699, + 38.83279 + ], + [ + 0.1162782, + 38.83279 + ], + [ + 0.1162782, + 38.8344342 + ], + [ + 0.1138699, + 38.8344342 + ], + [ + 0.1138699, + 38.83279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T16:00:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.0000039597268599858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 48, + "locale": "ca", + "imagery": "osm", + "change_within_100m": 12, + "change_within_500m": 36 + }, + "id": 119586056 + } + }, + { + "id": 119585053, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T15:37:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/fritures.html", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119585053 + } + }, + { + "id": 119582922, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2823657, + 50.86748 + ], + [ + 5.2896913, + 50.86748 + ], + [ + 5.2896913, + 50.8707253 + ], + [ + 5.2823657, + 50.8707253 + ], + [ + 5.2823657, + 50.86748 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:49:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 28, + "delete": 4, + "area": 0.0000237737696799735, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 25, + "theme": "grb", + "delete": 4, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 119582922 + } + }, + { + "id": 119582888, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2827986, + 50.8674684 + ], + [ + 5.2844204, + 50.8674684 + ], + [ + 5.2844204, + 50.869507 + ], + [ + 5.2827986, + 50.869507 + ], + [ + 5.2827986, + 50.8674684 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:48:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 9, + "delete": 0, + "area": 0.00000330620147999917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 8, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119582888 + } + }, + { + "id": 119582223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2844537, + 50.86474 + ], + [ + 5.2940396, + 50.86474 + ], + [ + 5.2940396, + 50.871554 + ], + [ + 5.2844537, + 50.871554 + ], + [ + 5.2844537, + 50.86474 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:31:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 237, + "modify": 603, + "delete": 1, + "area": 0.0000653183226000499, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 542, + "theme": "grb", + "delete": 1, + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 140 + }, + "id": 119582223 + } + }, + { + "id": 119581578, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4136128, + 50.9597779 + ], + [ + 4.4912772, + 50.9597779 + ], + [ + 4.4912772, + 50.9918627 + ], + [ + 4.4136128, + 50.9918627 + ], + [ + 4.4136128, + 50.9597779 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OWZemst", + "uid": "1768434", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:14:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 10, + "delete": 0, + "area": 0.00249184674111998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 24, + "create": 5, + "import": 6, + "locale": "nl", + "imagery": "osm", + "import:node/-10": "source: https://osm.org/note/3090113", + "import:node/-11": "source: https://osm.org/note/3084033", + "import:node/9658663649": "source: https://osm.org/note/3090241", + "import:node/9658665418": "source: https://osm.org/note/3090210", + "import:node/9658665419": "source: https://osm.org/note/3090323", + "import:node/9658665420": "source: https://osm.org/note/3090221" + }, + "id": 119581578 + } + }, + { + "id": 119581369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9280025, + 43.6816227 + ], + [ + 3.9332874, + 43.6816227 + ], + [ + 3.9332874, + 43.6829818 + ], + [ + 3.9280025, + 43.6829818 + ], + [ + 3.9280025, + 43.6816227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zaizone", + "uid": "1122708", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:08:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000718270759001078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119581369 + } + }, + { + "id": 119581284, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1202371, + 38.8393697 + ], + [ + -0.1202371, + 38.8393697 + ], + [ + -0.1202371, + 38.8393697 + ], + [ + -0.1202371, + 38.8393697 + ], + [ + -0.1202371, + 38.8393697 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T14:06:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "id": 119581284 + } + }, + { + "id": 119581246, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0695253, + 51.0152877 + ], + [ + 4.1176522, + 51.0152877 + ], + [ + 4.1176522, + 51.03612 + ], + [ + 4.0695253, + 51.03612 + ], + [ + 4.0695253, + 51.0152877 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenbeleid Dendermonde", + "uid": "15550372", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T14:05:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 15, + "delete": 0, + "area": 0.00100259401886977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 28, + "create": 14, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 119581246 + } + }, + { + "id": 119581226, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1201149, + 38.8398445 + ], + [ + -0.1201149, + 38.8398445 + ], + [ + -0.1201149, + 38.8398445 + ], + [ + -0.1201149, + 38.8398445 + ], + [ + -0.1201149, + 38.8398445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T14:05:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 119581226 + } + }, + { + "id": 119579065, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.9934658, + 49.6469392 + ], + [ + 5.9934658, + 49.6469392 + ], + [ + 5.9934658, + 49.6469392 + ], + [ + 5.9934658, + 49.6469392 + ], + [ + 5.9934658, + 49.6469392 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T13:10:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119579065 + } + }, + { + "id": 119578751, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1197951, + 38.8398554 + ], + [ + -0.1193853, + 38.8398554 + ], + [ + -0.1193853, + 38.8404206 + ], + [ + -0.1197951, + 38.8404206 + ], + [ + -0.1197951, + 38.8398554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T13:02:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.31618960001657e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 119578751 + } + }, + { + "id": 119576853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2148413, + 50.9210164 + ], + [ + 3.2148647, + 50.9210164 + ], + [ + 3.2148647, + 50.9210409 + ], + [ + 3.2148413, + 50.9210409 + ], + [ + 3.2148413, + 50.9210164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T12:19:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 5.73300000057285e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 13, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "id": 119576853 + } + }, + { + "id": 119576397, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7337606, + 51.0365016 + ], + [ + 3.7337606, + 51.0365016 + ], + [ + 3.7337606, + 51.0365016 + ], + [ + 3.7337606, + 51.0365016 + ], + [ + 3.7337606, + 51.0365016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T12:10:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119576397 + } + }, + { + "id": 119574885, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7704845, + 50.8100128 + ], + [ + 2.7704845, + 50.8100128 + ], + [ + 2.7704845, + 50.8100128 + ], + [ + 2.7704845, + 50.8100128 + ], + [ + 2.7704845, + 50.8100128 + ] + ] + ] + }, + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T11:36:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-04-16T06:40:42.740637Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 119574885 + } + }, + { + "id": 119573280, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7336699, + 51.0349601 + ], + [ + 3.7337687, + 51.0349601 + ], + [ + 3.7337687, + 51.0365016 + ], + [ + 3.7336699, + 51.0365016 + ], + [ + 3.7336699, + 51.0349601 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T10:59:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 8, + "delete": 0, + "area": 1.52300200000114e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 18, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 18 + }, + "id": 119573280 + } + }, + { + "id": 119573026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ], + [ + 4.8959118, + 50.2220354 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T10:53:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/fritures.html", + "theme": "fritures", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 119573026 + } + }, + { + "id": 119568453, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7363124, + 49.8773645 + ], + [ + 4.7363124, + 49.8773645 + ], + [ + 4.7363124, + 49.8773645 + ], + [ + 4.7363124, + 49.8773645 + ], + [ + 4.7363124, + 49.8773645 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T09:12:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119568453 + } + }, + { + "id": 119567813, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8936555, + 50.2186741 + ], + [ + 4.8942912, + 50.2186741 + ], + [ + 4.8942912, + 50.2197605 + ], + [ + 4.8936555, + 50.2197605 + ], + [ + 4.8936555, + 50.2186741 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:58:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 6.90624479998143e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/nature.html", + "theme": "nature", + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 119567813 + } + }, + { + "id": 119567736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8942449, + 50.2201569 + ], + [ + 4.8942449, + 50.2201569 + ], + [ + 4.8942449, + 50.2201569 + ], + [ + 4.8942449, + 50.2201569 + ], + [ + 4.8942449, + 50.2201569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:56:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 119567736 + } + }, + { + "id": 119567260, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8941041, + 50.2201419 + ], + [ + 4.8941041, + 50.2201419 + ], + [ + 4.8941041, + 50.2201419 + ], + [ + 4.8941041, + 50.2201419 + ], + [ + 4.8941041, + 50.2201419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:46:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 119567260 + } + }, + { + "id": 119567207, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8945433, + 50.2198583 + ], + [ + 4.8945433, + 50.2198583 + ], + [ + 4.8945433, + 50.2198583 + ], + [ + 4.8945433, + 50.2198583 + ], + [ + 4.8945433, + 50.2198583 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:45:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119567207 + } + }, + { + "id": 119567148, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0828595, + 38.8327044 + ], + [ + 0.0840697, + 38.8327044 + ], + [ + 0.0840697, + 38.8334336 + ], + [ + 0.0828595, + 38.8334336 + ], + [ + 0.0828595, + 38.8327044 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:43:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.82477840002531e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 2 + }, + "id": 119567148 + } + }, + { + "id": 119566702, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1144462, + 38.8320974 + ], + [ + 0.1156352, + 38.8320974 + ], + [ + 0.1156352, + 38.8332359 + ], + [ + 0.1144462, + 38.8332359 + ], + [ + 0.1144462, + 38.8320974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:32:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000135367649999543, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "id": 119566702 + } + }, + { + "id": 119565968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0952385, + 38.8367029 + ], + [ + 0.1120003, + 38.8367029 + ], + [ + 0.1120003, + 38.8494225 + ], + [ + 0.0952385, + 38.8494225 + ], + [ + 0.0952385, + 38.8367029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-11T08:14:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000213203391280068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 12, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 7, + "change_within_5000m": 5 + }, + "id": 119565968 + } + }, + { + "id": 119563361, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.0266165, + 8.1735644 + ], + [ + 80.2547224, + 8.1735644 + ], + [ + 80.2547224, + 13.0283431 + ], + [ + 77.0266165, + 13.0283431 + ], + [ + 77.0266165, + 8.1735644 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T07:13:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 25, + "delete": 0, + "area": 15.6717397646643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 25, + "locale": "en", + "imagery": "osm" + }, + "id": 119563361 + } + }, + { + "id": 119563315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8823775, + 45.2346261 + ], + [ + 5.8823775, + 45.2346261 + ], + [ + 5.8823775, + 45.2346261 + ], + [ + 5.8823775, + 45.2346261 + ], + [ + 5.8823775, + 45.2346261 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "raspbeguy", + "uid": "3398417", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T07:12:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 119563315 + } + }, + { + "id": 119560743, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.170223, + 50.2323077 + ], + [ + 12.170223, + 50.2323077 + ], + [ + 12.170223, + 50.2323077 + ], + [ + 12.170223, + 50.2323077 + ], + [ + 12.170223, + 50.2323077 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wajrou", + "uid": "407828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T06:11:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "id": 119560743 + } + }, + { + "id": 119560603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.2047377, + 50.2310895 + ], + [ + 12.2047377, + 50.2310895 + ], + [ + 12.2047377, + 50.2310895 + ], + [ + 12.2047377, + 50.2310895 + ], + [ + 12.2047377, + 50.2310895 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wajrou", + "uid": "407828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T06:07:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119560603 + } + }, + { + "id": 119560167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.1865308, + 50.2201861 + ], + [ + 12.1982722, + 50.2201861 + ], + [ + 12.1982722, + 50.225503 + ], + [ + 12.1865308, + 50.225503 + ], + [ + 12.1865308, + 50.2201861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wajrou", + "uid": "407828", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-11T05:54:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.0000624278496600465, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 39, + "locale": "en", + "imagery": "osm" + }, + "id": 119560167 + } + }, + { + "id": 119553807, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2573914, + -39.8011021 + ], + [ + -73.2573914, + -39.8011021 + ], + [ + -73.2573914, + -39.8011021 + ], + [ + -73.2573914, + -39.8011021 + ], + [ + -73.2573914, + -39.8011021 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T23:29:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 119553807 + } + }, + { + "id": 119553226, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1029555, + 38.8332524 + ], + [ + 0.115443, + 38.8332524 + ], + [ + 0.115443, + 38.8386116 + ], + [ + 0.1029555, + 38.8386116 + ], + [ + 0.1029555, + 38.8332524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:47:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000669230100000112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3 + }, + "id": 119553226 + } + }, + { + "id": 119553204, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1078821, + 38.8383008 + ], + [ + 0.1112901, + 38.8383008 + ], + [ + 0.1112901, + 38.8401204 + ], + [ + 0.1078821, + 38.8401204 + ], + [ + 0.1078821, + 38.8383008 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:46:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000620119680001564, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 119553204 + } + }, + { + "id": 119553169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1111137, + 38.8434571 + ], + [ + -0.1109426, + 38.8434571 + ], + [ + -0.1109426, + 38.8440073 + ], + [ + -0.1111137, + 38.8440073 + ], + [ + -0.1111137, + 38.8434571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:44:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.41392199998731e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "id": 119553169 + } + }, + { + "id": 119552883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0633022, + 38.826029 + ], + [ + 0.1153903, + 38.826029 + ], + [ + 0.1153903, + 38.8333565 + ], + [ + 0.0633022, + 38.8333565 + ], + [ + 0.0633022, + 38.826029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000381675552750124, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 11, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 11 + }, + "id": 119552883 + } + }, + { + "id": 119552780, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0987596, + 38.8377582 + ], + [ + 0.1117505, + 38.8377582 + ], + [ + 0.1117505, + 38.8412364 + ], + [ + 0.0987596, + 38.8412364 + ], + [ + 0.0987596, + 38.8377582 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:26:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000451849483799537, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 10 + }, + "id": 119552780 + } + }, + { + "id": 119552767, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1131737, + 38.8416599 + ], + [ + 0.1131737, + 38.8416599 + ], + [ + 0.1131737, + 38.8416599 + ], + [ + 0.1131737, + 38.8416599 + ], + [ + 0.1131737, + 38.8416599 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T22:25:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 119552767 + } + }, + { + "id": 119550714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2576474, + -39.8013712 + ], + [ + -73.2573906, + -39.8013712 + ], + [ + -73.2573906, + -39.8007937 + ], + [ + -73.2576474, + -39.8007937 + ], + [ + -73.2576474, + -39.8013712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T20:46:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.48302000001075e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "Mapbox", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 2 + }, + "id": 119550714 + } + }, + { + "id": 119550404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6977556, + 50.8801027 + ], + [ + 4.6977556, + 50.8801027 + ], + [ + 4.6977556, + 50.8801027 + ], + [ + 4.6977556, + 50.8801027 + ], + [ + 4.6977556, + 50.8801027 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T20:35:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119550404 + } + }, + { + "id": 119547147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0534073, + 52.4003074 + ], + [ + 13.0645654, + 52.4003074 + ], + [ + 13.0645654, + 52.4066252 + ], + [ + 13.0534073, + 52.4066252 + ], + [ + 13.0534073, + 52.4003074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daniel46", + "uid": "9677", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T18:41:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000704946441799731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 119547147 + } + }, + { + "id": 119545232, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9584013, + 50.4820555 + ], + [ + 4.9584469, + 50.4820555 + ], + [ + 4.9584469, + 50.4820755 + ], + [ + 4.9584013, + 50.4820755 + ], + [ + 4.9584013, + 50.4820555 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T17:43:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.11999999965054e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "move": 3, + "theme": "climbing", + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3, + "move:node/9656156846": "improve_accuracy" + }, + "id": 119545232 + } + }, + { + "id": 119544175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9332728, + 50.4955426 + ], + [ + 4.9334784, + 50.4955426 + ], + [ + 4.9334784, + 50.495671 + ], + [ + 4.9332728, + 50.495671 + ], + [ + 4.9332728, + 50.4955426 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T17:11:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.63990400002748e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "id": 119544175 + } + }, + { + "id": 119542603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0134509, + 51.4659123 + ], + [ + -0.0117585, + 51.4659123 + ], + [ + -0.0117585, + 51.4668718 + ], + [ + -0.0134509, + 51.4668718 + ], + [ + -0.0134509, + 51.4659123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "w_morland", + "uid": "402620", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T16:25:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000162385780000076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "id": 119542603 + } + }, + { + "id": 119539594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7695202, + 51.1572893 + ], + [ + 4.7695202, + 51.1572893 + ], + [ + 4.7695202, + 51.1572893 + ], + [ + 4.7695202, + 51.1572893 + ], + [ + 4.7695202, + 51.1572893 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T15:07:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 119539594 + } + }, + { + "id": 119539545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7527531, + 50.8496424 + ], + [ + 3.752806, + 50.8496424 + ], + [ + 3.752806, + 50.8496618 + ], + [ + 3.7527531, + 50.8496618 + ], + [ + 3.7527531, + 50.8496424 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ikgeloofnooitdatdezeallemaalingebruikzijn", + "uid": "11581604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T15:05:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.02625999996534e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9654477465": "improve_accuracy" + }, + "id": 119539545 + } + }, + { + "id": 119538826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9580996, + 50.482047 + ], + [ + 4.95865, + 50.482047 + ], + [ + 4.95865, + 50.4823128 + ], + [ + 4.9580996, + 50.4823128 + ], + [ + 4.9580996, + 50.482047 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T14:47:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 10, + "delete": 0, + "area": 1.46296320000559e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 7, + "create": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 4, + "change_within_25m": 6, + "change_within_50m": 7 + }, + "id": 119538826 + } + }, + { + "id": 119537094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3491699, + 50.8476217 + ], + [ + 4.3491699, + 50.8476217 + ], + [ + 4.3491699, + 50.8476217 + ], + [ + 4.3491699, + 50.8476217 + ], + [ + 4.3491699, + 50.8476217 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T14:03:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 119537094 + } + }, + { + "id": 119536803, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4298688, + 52.1086174 + ], + [ + 13.4321943, + 52.1086174 + ], + [ + 13.4321943, + 52.1108561 + ], + [ + 13.4298688, + 52.1108561 + ], + [ + 13.4298688, + 52.1086174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:54:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000520609685000174, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119536803 + } + }, + { + "id": 119536461, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7659139, + 51.1493635 + ], + [ + 4.7666309, + 51.1493635 + ], + [ + 4.7666309, + 51.1513073 + ], + [ + 4.7659139, + 51.1513073 + ], + [ + 4.7659139, + 51.1493635 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:43:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000139370459999928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 4 + }, + "id": 119536461 + } + }, + { + "id": 119535790, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9994084, + 51.1216351 + ], + [ + 5.0021829, + 51.1216351 + ], + [ + 5.0021829, + 51.1347163 + ], + [ + 4.9994084, + 51.1347163 + ], + [ + 4.9994084, + 51.1216351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:25:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.0000362937894000072, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 17, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 20 + }, + "id": 119535790 + } + }, + { + "id": 119535021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8524612, + 48.8600775 + ], + [ + 8.8536313, + 48.8600775 + ], + [ + 8.8536313, + 48.8603342 + ], + [ + 8.8524612, + 48.8603342 + ], + [ + 8.8524612, + 48.8600775 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:04:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.00364669993117e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 119535021 + } + }, + { + "id": 119534937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8511422, + 48.8604445 + ], + [ + 8.852073, + 48.8604445 + ], + [ + 8.852073, + 48.8608627 + ], + [ + 8.8511422, + 48.8608627 + ], + [ + 8.8511422, + 48.8604445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:02:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 3.89260559999018e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 3, + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 3 + }, + "id": 119534937 + } + }, + { + "id": 119534886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8507484, + 48.8611351 + ], + [ + 8.8507484, + 48.8611351 + ], + [ + 8.8507484, + 48.8611351 + ], + [ + 8.8507484, + 48.8611351 + ], + [ + 8.8507484, + 48.8611351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "id": 119534886 + } + }, + { + "id": 119534861, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8531687, + 50.8788978 + ], + [ + 4.9339536, + 50.8788978 + ], + [ + 4.9339536, + 50.9067491 + ], + [ + 4.8531687, + 50.9067491 + ], + [ + 4.8531687, + 50.8788978 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T13:00:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00224996448537013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 4, + "change_within_25m": 5, + "import:node/9655911460": "source: https://osm.org/note/3090159" + }, + "id": 119534861 + } + }, + { + "id": 119534412, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8453872, + 48.8630763 + ], + [ + 8.8455959, + 48.8630763 + ], + [ + 8.8455959, + 48.8634051 + ], + [ + 8.8453872, + 48.8634051 + ], + [ + 8.8453872, + 48.8630763 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T12:48:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.862055999964e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_50m": 1, + "change_within_100m": 5 + }, + "id": 119534412 + } + }, + { + "id": 119534255, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "totera", + "uid": "123412", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T12:42:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119534255 + } + }, + { + "id": 119534077, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5253497, + 43.6158687 + ], + [ + 13.5253497, + 43.6158687 + ], + [ + 13.5253497, + 43.6158687 + ], + [ + 13.5253497, + 43.6158687 + ], + [ + 13.5253497, + 43.6158687 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "totera", + "uid": "123412", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T12:37:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "it", + "imagery": "osm" + }, + "id": 119534077 + } + }, + { + "id": 119533945, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5285429, + 43.6157189 + ], + [ + 13.5285429, + 43.6157189 + ], + [ + 13.5285429, + 43.6157189 + ], + [ + 13.5285429, + 43.6157189 + ], + [ + 13.5285429, + 43.6157189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "totera", + "uid": "123412", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T12:32:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119533945 + } + }, + { + "id": 119533781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ], + [ + 4.3419266, + 49.9889193 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T12:27:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 119533781 + } + }, + { + "id": 119533625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9585006, + 50.4821285 + ], + [ + 4.9585006, + 50.4821285 + ], + [ + 4.9585006, + 50.4821285 + ], + [ + 4.9585006, + 50.4821285 + ], + [ + 4.9585006, + 50.4821285 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T12:21:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119533625 + } + }, + { + "id": 119530600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9582592, + 50.4820858 + ], + [ + 4.9582592, + 50.4820858 + ], + [ + 4.9582592, + 50.4820858 + ], + [ + 4.9582592, + 50.4820858 + ], + [ + 4.9582592, + 50.4820858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T10:44:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 119530600 + } + }, + { + "id": 119530192, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4484924, + 51.096333 + ], + [ + 3.4484924, + 51.096333 + ], + [ + 3.4484924, + 51.096333 + ], + [ + 3.4484924, + 51.096333 + ], + [ + 3.4484924, + 51.096333 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T10:30:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 119530192 + } + }, + { + "id": 119528768, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9594474, + 50.4822206 + ], + [ + 4.9594474, + 50.4822206 + ], + [ + 4.9594474, + 50.4822206 + ], + [ + 4.9594474, + 50.4822206 + ], + [ + 4.9594474, + 50.4822206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T09:43:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 119528768 + } + }, + { + "id": 119528759, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7101174, + 51.127954 + ], + [ + 4.7128116, + 51.127954 + ], + [ + 4.7128116, + 51.1293816 + ], + [ + 4.7101174, + 51.1293816 + ], + [ + 4.7101174, + 51.127954 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T09:42:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000038462399199995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 119528759 + } + }, + { + "id": 119528731, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9597599, + 50.4819023 + ], + [ + 4.9597599, + 50.4819023 + ], + [ + 4.9597599, + 50.4819023 + ], + [ + 4.9597599, + 50.4819023 + ], + [ + 4.9597599, + 50.4819023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T09:41:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toilets.html", + "theme": "toilets", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 119528731 + } + }, + { + "id": 119526815, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6935282, + 51.1337233 + ], + [ + 4.6935282, + 51.1337233 + ], + [ + 4.6935282, + 51.1337233 + ], + [ + 4.6935282, + 51.1337233 + ], + [ + 4.6935282, + 51.1337233 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T08:40:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "id": 119526815 + } + }, + { + "id": 119526616, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.737123, + 50.8971984 + ], + [ + 4.7524719, + 50.8971984 + ], + [ + 4.7524719, + 50.904368 + ], + [ + 4.737123, + 50.904368 + ], + [ + 4.737123, + 50.8971984 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T08:32:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1125, + "modify": 759, + "delete": 4, + "area": 0.000110045473439956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 640, + "theme": "grb", + "answer": 3, + "delete": 4, + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 254 + }, + "id": 119526616 + } + }, + { + "id": 119526358, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7423999, + 51.0368176 + ], + [ + 3.7455823, + 51.0368176 + ], + [ + 3.7455823, + 51.0373388 + ], + [ + 3.7423999, + 51.0373388 + ], + [ + 3.7423999, + 51.0368176 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T08:21:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000165866688000461, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 119526358 + } + }, + { + "id": 119525875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7406374, + 50.8943012 + ], + [ + 4.7535233, + 50.8943012 + ], + [ + 4.7535233, + 50.9010711 + ], + [ + 4.7406374, + 50.9010711 + ], + [ + 4.7406374, + 50.8943012 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T08:03:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 227, + "modify": 144, + "delete": 2, + "area": 0.0000872362544100281, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 120, + "theme": "grb", + "answer": 6, + "delete": 2, + "import": 24, + "locale": "nl", + "imagery": "AGIV", + "conflation": 40, + "change_over_5000m": 28 + }, + "id": 119525875 + } + }, + { + "id": 119524687, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7040596, + 51.0524486 + ], + [ + 3.7043345, + 51.0524486 + ], + [ + 3.7043345, + 51.0526256 + ], + [ + 3.7040596, + 51.0526256 + ], + [ + 3.7040596, + 51.0524486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-10T07:04:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 4.8657300000203e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/facadegardens.html", + "theme": "facadegardens", + "answer": 13, + "create": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 4, + "change_within_25m": 17 + }, + "id": 119524687 + } + }, + { + "id": 119522430, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7957815, + -34.6488714 + ], + [ + -58.7957517, + -34.6488714 + ], + [ + -58.7957517, + -34.6487946 + ], + [ + -58.7957815, + -34.6487946 + ], + [ + -58.7957815, + -34.6488714 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-10T03:56:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.2886399998602e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 119522430 + } + }, + { + "id": 119519266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2946593, + 50.8329554 + ], + [ + 4.3419911, + 50.8329554 + ], + [ + 4.3419911, + 50.8670469 + ], + [ + 4.2946593, + 50.8670469 + ], + [ + 4.2946593, + 50.8329554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T22:23:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00161361205969979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 4 + }, + "id": 119519266 + } + }, + { + "id": 119516392, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 151.7025021, + -32.9324253 + ], + [ + 151.7850402, + -32.9324253 + ], + [ + 151.7850402, + -32.9089952 + ], + [ + 151.7025021, + -32.9089952 + ], + [ + 151.7025021, + -32.9324253 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Yourock17", + "uid": "3083720", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T19:59:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 36, + "delete": 0, + "area": 0.00193387593680975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 50, + "locale": "en", + "imagery": "osm" + }, + "id": 119516392 + } + }, + { + "id": 119515531, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.752806, + 50.8496424 + ], + [ + 3.8115484, + 50.8496424 + ], + [ + 3.8115484, + 50.86958 + ], + [ + 3.752806, + 50.86958 + ], + [ + 3.752806, + 50.8496424 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ikgeloofnooitdatdezeallemaalingebruikzijn", + "uid": "11581604", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T19:24:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 10, + "delete": 0, + "area": 0.00117118247423992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 5, + "locale": "nl", + "imagery": "osm", + "move:node/9654526750": "improve_accuracy", + "move:node/9654557569": "improve_accuracy" + }, + "id": 119515531 + } + }, + { + "id": 119514590, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3598453, + 50.9338912 + ], + [ + 5.3599467, + 50.9338912 + ], + [ + 5.3599467, + 50.934022 + ], + [ + 5.3598453, + 50.934022 + ], + [ + 5.3598453, + 50.9338912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T18:46:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.3263120000107e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119514590 + } + }, + { + "id": 119514113, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T18:29:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119514113 + } + }, + { + "id": 119512006, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.9058239, + 50.1712464 + ], + [ + 18.9058239, + 50.1712464 + ], + [ + 18.9058239, + 50.1712464 + ], + [ + 18.9058239, + 50.1712464 + ], + [ + 18.9058239, + 50.1712464 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "orlPL", + "uid": "15180064", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T17:19:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119512006 + } + }, + { + "id": 119509417, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 151.7486115, + -32.9176103 + ], + [ + 151.7486115, + -32.9176103 + ], + [ + 151.7486115, + -32.9176103 + ], + [ + 151.7486115, + -32.9176103 + ], + [ + 151.7486115, + -32.9176103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Yourock17", + "uid": "3083720", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:50:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 119509417 + } + }, + { + "id": 119508429, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:20:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119508429 + } + }, + { + "id": 119508428, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:20:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "shops", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119508428 + } + }, + { + "id": 119508427, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:20:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cyclofix", + "answer": 10, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5 + }, + "id": 119508427 + } + }, + { + "id": 119508248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4069011, + 52.5397044 + ], + [ + 13.4069011, + 52.5397044 + ], + [ + 13.4069011, + 52.5397044 + ], + [ + 13.4069011, + 52.5397044 + ], + [ + 13.4069011, + 52.5397044 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T15:15:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 119508248 + } + }, + { + "id": 119507324, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4398525, + 51.0800812 + ], + [ + 3.4398525, + 51.0800812 + ], + [ + 3.4398525, + 51.0800812 + ], + [ + 3.4398525, + 51.0800812 + ], + [ + 3.4398525, + 51.0800812 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T14:49:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119507324 + } + }, + { + "id": 119506761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.288089, + 50.8612421 + ], + [ + 5.2936153, + 50.8612421 + ], + [ + 5.2936153, + 50.8654851 + ], + [ + 5.288089, + 50.8654851 + ], + [ + 5.288089, + 50.8612421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T14:36:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 332, + "modify": 601, + "delete": 12, + "area": 0.000023448090900012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 539, + "theme": "grb", + "delete": 12, + "import": 49, + "locale": "nl", + "imagery": "osm", + "conflation": 138 + }, + "id": 119506761 + } + }, + { + "id": 119503350, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4056766, + 51.2266881 + ], + [ + 4.4189425, + 51.2266881 + ], + [ + 4.4189425, + 51.2282583 + ], + [ + 4.4056766, + 51.2282583 + ], + [ + 4.4056766, + 51.2266881 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T13:00:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000208301161800443, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 15, + "locale": "nl", + "imagery": "osm" + }, + "id": 119503350 + } + }, + { + "id": 119503191, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4379944, + 51.1931779 + ], + [ + 4.4379944, + 51.1931779 + ], + [ + 4.4379944, + 51.1931779 + ], + [ + 4.4379944, + 51.1931779 + ], + [ + 4.4379944, + 51.1931779 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T12:56:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119503191 + } + }, + { + "id": 119502644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4210523, + 51.1195174 + ], + [ + 4.8472854, + 51.1195174 + ], + [ + 4.8472854, + 51.2216243 + ], + [ + 4.4210523, + 51.2216243 + ], + [ + 4.4210523, + 51.1195174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T12:41:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.043521340518391, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 15, + "create": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 119502644 + } + }, + { + "id": 119502333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5365945, + 50.0332756 + ], + [ + 3.5368332, + 50.0332756 + ], + [ + 3.5368332, + 50.0342835 + ], + [ + 3.5365945, + 50.0342835 + ], + [ + 3.5365945, + 50.0332756 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T12:31:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 2.40585729999132e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "id": 119502333 + } + }, + { + "id": 119501415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7251733, + 51.0523044 + ], + [ + 3.7279858, + 51.0523044 + ], + [ + 3.7279858, + 51.0537177 + ], + [ + 3.7251733, + 51.0537177 + ], + [ + 3.7251733, + 51.0523044 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T12:01:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 20, + "delete": 0, + "area": 0.00000397490625000844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 44, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 38, + "change_within_50m": 8 + }, + "id": 119501415 + } + }, + { + "id": 119496856, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2235835, + 50.7330473 + ], + [ + 4.2536719, + 50.7330473 + ], + [ + 4.2536719, + 50.748181 + ], + [ + 4.2235835, + 50.748181 + ], + [ + 4.2235835, + 50.7330473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T09:40:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000455348819079986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "id": 119496856 + } + }, + { + "id": 119494606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2536719, + 50.748181 + ], + [ + 4.2536719, + 50.748181 + ], + [ + 4.2536719, + 50.748181 + ], + [ + 4.2536719, + 50.748181 + ], + [ + 4.2536719, + 50.748181 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T08:28:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 119494606 + } + }, + { + "id": 119493187, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7464269, + 50.8933623 + ], + [ + 4.754451, + 50.8933623 + ], + [ + 4.754451, + 50.8999475 + ], + [ + 4.7464269, + 50.8999475 + ], + [ + 4.7464269, + 50.8933623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T07:24:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 646, + "modify": 782, + "delete": 0, + "area": 0.0000528403033200288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 652, + "theme": "grb", + "answer": 33, + "import": 50, + "locale": "nl", + "imagery": "osm", + "conflation": 222 + }, + "id": 119493187 + } + }, + { + "id": 119492991, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0590262, + 51.2834938 + ], + [ + 4.0590262, + 51.2834938 + ], + [ + 4.0590262, + 51.2834938 + ], + [ + 4.0590262, + 51.2834938 + ], + [ + 4.0590262, + 51.2834938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-09T07:16:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119492991 + } + }, + { + "id": 119492600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7776349, + 50.904708 + ], + [ + 4.7883593, + 50.904708 + ], + [ + 4.7883593, + 50.9112334 + ], + [ + 4.7776349, + 50.9112334 + ], + [ + 4.7776349, + 50.904708 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T06:54:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1189, + "modify": 31, + "delete": 0, + "area": 0.0000699809997600107, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 24, + "theme": "grb", + "answer": 2, + "import": 105, + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "id": 119492600 + } + }, + { + "id": 119492544, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7705968, + 50.9029125 + ], + [ + 4.7723291, + 50.9029125 + ], + [ + 4.7723291, + 50.9038831 + ], + [ + 4.7705968, + 50.9038831 + ], + [ + 4.7705968, + 50.9029125 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T06:51:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 45, + "modify": 27, + "delete": 0, + "area": 0.00000168137038000437, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 22, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "id": 119492544 + } + }, + { + "id": 119492047, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7726687, + 50.9025659 + ], + [ + 4.781986, + 50.9025659 + ], + [ + 4.781986, + 50.9086424 + ], + [ + 4.7726687, + 50.9086424 + ], + [ + 4.7726687, + 50.9025659 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T06:20:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 567, + "modify": 358, + "delete": 0, + "area": 0.0000566165734499912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 306, + "theme": "grb", + "answer": 1, + "import": 26, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "id": 119492047 + } + }, + { + "id": 119491649, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7541332, + 50.8991685 + ], + [ + 4.7725766, + 50.8991685 + ], + [ + 4.7725766, + 50.9075852 + ], + [ + 4.7541332, + 50.9075852 + ], + [ + 4.7541332, + 50.8991685 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T05:50:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1175, + "modify": 218, + "delete": 0, + "area": 0.00015523256477996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 180, + "theme": "grb", + "answer": 13, + "import": 153, + "locale": "nl", + "imagery": "osm", + "conflation": 54 + }, + "id": 119491649 + } + }, + { + "id": 119491576, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7541444, + 50.8986462 + ], + [ + 4.7582493, + 50.8986462 + ], + [ + 4.7582493, + 50.8999082 + ], + [ + 4.7541444, + 50.8999082 + ], + [ + 4.7541444, + 50.8986462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T05:45:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 72, + "modify": 110, + "delete": 0, + "area": 0.00000518038379998731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 94, + "theme": "grb", + "answer": 1, + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "id": 119491576 + } + }, + { + "id": 119491456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7576254, + 50.8991728 + ], + [ + 4.7612734, + 50.8991728 + ], + [ + 4.7612734, + 50.9021703 + ], + [ + 4.7576254, + 50.9021703 + ], + [ + 4.7576254, + 50.8991728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-09T05:32:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 372, + "modify": 48, + "delete": 0, + "area": 0.0000109348799999978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 38, + "theme": "grb", + "answer": 4, + "import": 43, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "id": 119491456 + } + }, + { + "id": 119484313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3355315, + 48.820712 + ], + [ + 2.4118853, + 48.820712 + ], + [ + 2.4118853, + 48.8926843 + ], + [ + 2.3355315, + 48.8926843 + ], + [ + 2.3355315, + 48.820712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paulrbr", + "uid": "12447319", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T20:22:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 10, + "delete": 0, + "area": 0.00549535859973988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 25, + "create": 7, + "locale": "en", + "imagery": "fr.ign.bdortho" + }, + "id": 119484313 + } + }, + { + "id": 119483946, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1461241, + 51.4821824 + ], + [ + -0.1461241, + 51.4821824 + ], + [ + -0.1461241, + 51.4821824 + ], + [ + -0.1461241, + 51.4821824 + ], + [ + -0.1461241, + 51.4821824 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nicknz", + "uid": "4735682", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T20:07:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119483946 + } + }, + { + "id": 119481914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2831042, + 50.8602682 + ], + [ + 5.2887427, + 50.8602682 + ], + [ + 5.2887427, + 50.8629986 + ], + [ + 5.2831042, + 50.8629986 + ], + [ + 5.2831042, + 50.8602682 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T18:54:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 171, + "modify": 468, + "delete": 5, + "area": 0.0000153953603999841, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 417, + "theme": "grb", + "delete": 5, + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 114 + }, + "id": 119481914 + } + }, + { + "id": 119479657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2935642, + 51.3545361 + ], + [ + 3.2935642, + 51.3545361 + ], + [ + 3.2935642, + 51.3545361 + ], + [ + 3.2935642, + 51.3545361 + ], + [ + 3.2935642, + 51.3545361 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T17:35:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 119479657 + } + }, + { + "id": 119475833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1040428, + 38.8346599 + ], + [ + 0.1040428, + 38.8346599 + ], + [ + 0.1040428, + 38.8346599 + ], + [ + 0.1040428, + 38.8346599 + ], + [ + 0.1040428, + 38.8346599 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.18.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T15:35:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 14, + "locale": "ca", + "imagery": "osm", + "change_within_50m": 6 + }, + "id": 119475833 + } + }, + { + "id": 119473867, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2066573, + 51.2267317 + ], + [ + 3.2066573, + 51.2267317 + ], + [ + 3.2066573, + 51.2267317 + ], + [ + 3.2066573, + 51.2267317 + ], + [ + 3.2066573, + 51.2267317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T14:31:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 119473867 + } + }, + { + "id": 119473535, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2798058, + 50.8545852 + ], + [ + 5.284799, + 50.8545852 + ], + [ + 5.284799, + 50.8626665 + ], + [ + 5.2798058, + 50.8626665 + ], + [ + 5.2798058, + 50.8545852 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T14:21:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 225, + "modify": 544, + "delete": 10, + "area": 0.0000403515471599989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 489, + "theme": "grb", + "answer": 1, + "delete": 10, + "import": 32, + "locale": "nl", + "imagery": "osm", + "conflation": 116 + }, + "id": 119473535 + } + }, + { + "id": 119471869, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2708744, + 50.8573089 + ], + [ + 5.282522, + 50.8573089 + ], + [ + 5.282522, + 50.86379 + ], + [ + 5.2708744, + 50.86379 + ], + [ + 5.2708744, + 50.8573089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T13:32:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 890, + "modify": 607, + "delete": 6, + "area": 0.0000754892603600226, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 543, + "theme": "grb", + "delete": 6, + "import": 124, + "locale": "nl", + "imagery": "osm", + "conflation": 140 + }, + "id": 119471869 + } + }, + { + "id": 119471853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2616792, + 50.8498349 + ], + [ + 4.2616792, + 50.8498349 + ], + [ + 4.2616792, + 50.8498349 + ], + [ + 4.2616792, + 50.8498349 + ], + [ + 4.2616792, + 50.8498349 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T13:31:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "id": 119471853 + } + }, + { + "id": 119471653, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2066788, + 51.2267678 + ], + [ + 3.2067458, + 51.2267678 + ], + [ + 3.2067458, + 51.2267712 + ], + [ + 3.2066788, + 51.2267712 + ], + [ + 3.2066788, + 51.2267678 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T13:25:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.27800000281908e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "move": 1, + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5, + "move:node/9651816644": "improve_accuracy" + }, + "id": 119471653 + } + }, + { + "id": 119471538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7205216, + 51.0569778 + ], + [ + 3.7205216, + 51.0569778 + ], + [ + 3.7205216, + 51.0569778 + ], + [ + 3.7205216, + 51.0569778 + ], + [ + 3.7205216, + 51.0569778 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T13:22:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 119471538 + } + }, + { + "id": 119469101, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1625605, + 45.649321 + ], + [ + 0.1625605, + 45.649321 + ], + [ + 0.1625605, + 45.649321 + ], + [ + 0.1625605, + 45.649321 + ], + [ + 0.1625605, + 45.649321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T12:18:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 119469101 + } + }, + { + "id": 119469051, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2534819, + 50.840133 + ], + [ + 5.2796029, + 50.840133 + ], + [ + 5.2796029, + 50.8633521 + ], + [ + 5.2534819, + 50.8633521 + ], + [ + 5.2534819, + 50.840133 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T12:17:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2076, + "modify": 2233, + "delete": 39, + "area": 0.00060650611109998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 2010, + "theme": "grb", + "delete": 39, + "import": 312, + "locale": "nl", + "imagery": "osm", + "conflation": 466 + }, + "id": 119469051 + } + }, + { + "id": 119467704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3735719, + 52.4683114 + ], + [ + 13.3735719, + 52.4683114 + ], + [ + 13.3735719, + 52.4683114 + ], + [ + 13.3735719, + 52.4683114 + ], + [ + 13.3735719, + 52.4683114 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T11:44:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119467704 + } + }, + { + "id": 119463786, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2568963, + 50.8589306 + ], + [ + 5.2668719, + 50.8589306 + ], + [ + 5.2668719, + 50.8687482 + ], + [ + 5.2568963, + 50.8687482 + ], + [ + 5.2568963, + 50.8589306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-1050237447", + "osm_id": 1050237447, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "building": "nutspaal type windturbine" + } + }, + { + "url": "way-1050237446", + "osm_id": 1050237446, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "building": "nutspaal type windturbine" + } + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T10:05:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 491, + "modify": 392, + "delete": 1, + "area": 0.0000979364505599785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 353, + "theme": "grb", + "delete": 1, + "import": 62, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "id": 119463786 + } + }, + { + "id": 119461562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9136991, + 51.8263286 + ], + [ + 3.9136991, + 51.8263286 + ], + [ + 3.9136991, + 51.8263286 + ], + [ + 3.9136991, + 51.8263286 + ], + [ + 3.9136991, + 51.8263286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-08T09:28:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 119461562 + } + }, + { + "id": 119458775, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2080829, + 51.0356836 + ], + [ + 3.2278984, + 51.0356836 + ], + [ + 3.2278984, + 51.0510968 + ], + [ + 3.2080829, + 51.0510968 + ], + [ + 3.2080829, + 51.0356836 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijndebuck", + "uid": "15353406", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T08:27:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.000305420264600092, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed", + "theme": "aed", + "answer": 17, + "create": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 119458775 + } + }, + { + "id": 119455492, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3338219, + 50.9985129 + ], + [ + 3.3441179, + 50.9985129 + ], + [ + 3.3441179, + 50.9986848 + ], + [ + 3.3338219, + 50.9986848 + ], + [ + 3.3338219, + 50.9985129 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T07:00:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000017698823999795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/399875080": "duplicate" + }, + "id": 119455492 + } + }, + { + "id": 119447375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6085963, + 51.0929291 + ], + [ + 3.6088263, + 51.0929291 + ], + [ + 3.6088263, + 51.09512 + ], + [ + 3.6085963, + 51.09512 + ], + [ + 3.6085963, + 51.0929291 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T00:15:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 1, + "delete": 0, + "area": 5.03907000000892e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "grb", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119447375 + } + }, + { + "id": 119447300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6076746, + 51.0945016 + ], + [ + 3.6112506, + 51.0945016 + ], + [ + 3.6112506, + 51.096695 + ], + [ + 3.6076746, + 51.096695 + ], + [ + 3.6076746, + 51.0945016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-08T00:10:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 457, + "modify": 0, + "delete": 0, + "area": 0.00000784359839998492, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/theme.html", + "theme": "grb", + "import": 57, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 119447300 + } + }, + { + "id": 119446246, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2199436, + 51.1821307 + ], + [ + 3.235192, + 51.1821307 + ], + [ + 3.235192, + 51.2195 + ], + [ + 3.2199436, + 51.2195 + ], + [ + 3.2199436, + 51.1821307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arx - 83", + "uid": "9282195", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T22:45:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000569822034119916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 119446246 + } + }, + { + "id": 119443981, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2355769, + -39.8450748 + ], + [ + -73.2311757, + -39.8450748 + ], + [ + -73.2311757, + -39.8439782 + ], + [ + -73.2355769, + -39.8439782 + ], + [ + -73.2355769, + -39.8450748 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T20:54:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00000482635591998998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 16, + "change_within_25m": 9 + }, + "id": 119443981 + } + }, + { + "id": 119441307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2635077, + 50.8655093 + ], + [ + 5.2801483, + 50.8655093 + ], + [ + 5.2801483, + 50.8767464 + ], + [ + 5.2635077, + 50.8767464 + ], + [ + 5.2635077, + 50.8655093 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T19:17:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 56, + "modify": 0, + "delete": 0, + "area": 0.000186992086260037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm" + }, + "id": 119441307 + } + }, + { + "id": 119440333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.051496, + 51.1636119 + ], + [ + 5.2275857, + 51.1636119 + ], + [ + 5.2275857, + 51.1883473 + ], + [ + 5.051496, + 51.1883473 + ], + [ + 5.051496, + 51.1636119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T18:37:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00435564916537951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 119440333 + } + }, + { + "id": 119440040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.050928, + 51.1193744 + ], + [ + 5.0640191, + 51.1193744 + ], + [ + 5.0640191, + 51.1273164 + ], + [ + 5.050928, + 51.1273164 + ], + [ + 5.050928, + 51.1193744 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T18:25:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 223, + "modify": 434, + "delete": 4, + "area": 0.000103969516200002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 393, + "theme": "grb", + "answer": 3, + "delete": 4, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 86 + }, + "id": 119440040 + } + }, + { + "id": 119435148, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1503664, + 41.388647 + ], + [ + 2.1510504, + 41.388647 + ], + [ + 2.1510504, + 41.389303 + ], + [ + 2.1503664, + 41.389303 + ], + [ + 2.1503664, + 41.388647 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T15:36:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.48703999999622e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119435148 + } + }, + { + "id": 119434186, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5915347, + 51.1010142 + ], + [ + 3.5953779, + 51.1010142 + ], + [ + 3.5953779, + 51.1028582 + ], + [ + 3.5915347, + 51.1028582 + ], + [ + 3.5915347, + 51.1010142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T15:10:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 100, + "modify": 0, + "delete": 0, + "area": 0.00000708686079999374, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1, + "change_within_500m": 9 + }, + "id": 119434186 + } + }, + { + "id": 119434092, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9142049, + 51.824733 + ], + [ + 3.9177101, + 51.824733 + ], + [ + 3.9177101, + 51.8252979 + ], + [ + 3.9142049, + 51.8252979 + ], + [ + 3.9142049, + 51.824733 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T15:08:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000198008748000174, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_1000m": 3 + }, + "id": 119434092 + } + }, + { + "id": 119433950, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9030908, + 51.8245357 + ], + [ + 3.9181285, + 51.8245357 + ], + [ + 3.9181285, + 51.8251536 + ], + [ + 3.9030908, + 51.8251536 + ], + [ + 3.9030908, + 51.8245357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T15:03:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 22, + "delete": 0, + "area": 0.00000929179483002577, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 19, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 9, + "change_over_5000m": 2, + "change_within_500m": 4, + "change_within_1000m": 18 + }, + "id": 119433950 + } + }, + { + "id": 119433382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8112342, + 50.7866521 + ], + [ + 3.8113475, + 50.7866521 + ], + [ + 3.8113475, + 50.7867156 + ], + [ + 3.8112342, + 50.7867156 + ], + [ + 3.8112342, + 50.7866521 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T14:46:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.19455000036455e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "import:node/9649224070": "source: https://osm.org/note/3099182", + "import:node/9649252497": "source: https://osm.org/note/3099198" + }, + "id": 119433382 + } + }, + { + "id": 119431455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2615636, + 50.8639458 + ], + [ + 5.2797518, + 50.8639458 + ], + [ + 5.2797518, + 50.8766938 + ], + [ + 5.2615636, + 50.8766938 + ], + [ + 5.2615636, + 50.8639458 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T13:57:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2635, + "modify": 1935, + "delete": 6, + "area": 0.000231863173599907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1686, + "theme": "grb", + "delete": 6, + "import": 346, + "locale": "nl", + "imagery": "osm", + "conflation": 520 + }, + "id": 119431455 + } + }, + { + "id": 119429413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2762501, + 50.8719188 + ], + [ + 5.2806105, + 50.8719188 + ], + [ + 5.2806105, + 50.8728419 + ], + [ + 5.2762501, + 50.8728419 + ], + [ + 5.2762501, + 50.8719188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:58:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 139, + "modify": 180, + "delete": 1, + "area": 0.00000402508523997464, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 164, + "theme": "grb", + "delete": 1, + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 40 + }, + "id": 119429413 + } + }, + { + "id": 119429240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2246267, + 51.2185636 + ], + [ + 3.2246267, + 51.2185636 + ], + [ + 3.2246267, + 51.2185636 + ], + [ + 3.2246267, + 51.2185636 + ], + [ + 3.2246267, + 51.2185636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T12:54:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 119429240 + } + }, + { + "id": 119428605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2688362, + 50.8712438 + ], + [ + 5.2780905, + 50.8712438 + ], + [ + 5.2780905, + 50.8740357 + ], + [ + 5.2688362, + 50.8740357 + ], + [ + 5.2688362, + 50.8712438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:34:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 918, + "modify": 551, + "delete": 4, + "area": 0.000025837080169985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 475, + "theme": "grb", + "delete": 4, + "import": 100, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "id": 119428605 + } + }, + { + "id": 119428442, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5939707, + 51.093896 + ], + [ + 3.61465, + 51.093896 + ], + [ + 3.61465, + 51.1010626 + ], + [ + 3.5939707, + 51.1010626 + ], + [ + 3.5939707, + 51.093896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T12:29:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6652, + "modify": 0, + "delete": 0, + "area": 0.000148200271379959, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 827, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 119428442 + } + }, + { + "id": 119427854, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4892776, + 51.1826486 + ], + [ + 4.4892776, + 51.1826486 + ], + [ + 4.4892776, + 51.1826486 + ], + [ + 4.4892776, + 51.1826486 + ], + [ + 4.4892776, + 51.1826486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "boogscheut", + "uid": "2290210", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:13:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119427854 + } + }, + { + "id": 119427709, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.571524, + 50.9204892 + ], + [ + 5.5743478, + 50.9204892 + ], + [ + 5.5743478, + 50.9224433 + ], + [ + 5.571524, + 50.9224433 + ], + [ + 5.571524, + 50.9204892 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T12:10:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00000551798757999671, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 35, + "create": 3, + "import": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9648851052": "improve_accuracy", + "move:node/9648909892": "improve_accuracy", + "move:node/9648909893": "improve_accuracy", + "import:node/9648921722": "source: https://osm.org/note/3044449" + }, + "id": 119427709 + } + }, + { + "id": 119426696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7022343, + 51.050972 + ], + [ + 3.7022343, + 51.050972 + ], + [ + 3.7022343, + 51.050972 + ], + [ + 3.7022343, + 51.050972 + ], + [ + 3.7022343, + 51.050972 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8024991201", + "name": "Blazers en Blazers", + "osm_id": 8024991201, + "reasons": [ + 43 + ], + "version": 12, + "primary_tags": { + "shop": "brass_instruments" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T11:44:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 119426696 + } + }, + { + "id": 119425364, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.0647357, + 52.0955902 + ], + [ + -1.0647357, + 52.0955902 + ], + [ + -1.0647357, + 52.0955902 + ], + [ + -1.0647357, + 52.0955902 + ], + [ + -1.0647357, + 52.0955902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChisomoL", + "uid": "15333258", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T11:19:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119425364 + } + }, + { + "id": 119424619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5742969, + 50.9224285 + ], + [ + 5.5742969, + 50.9224285 + ], + [ + 5.5742969, + 50.9224285 + ], + [ + 5.5742969, + 50.9224285 + ], + [ + 5.5742969, + 50.9224285 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T11:04:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119424619 + } + }, + { + "id": 119422988, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2713796, + 50.8725964 + ], + [ + 5.2811124, + 50.8725964 + ], + [ + 5.2811124, + 50.8760078 + ], + [ + 5.2713796, + 50.8760078 + ], + [ + 5.2713796, + 50.8725964 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:24:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 744, + "modify": 510, + "delete": 0, + "area": 0.000033202473919972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 443, + "theme": "grb", + "import": 101, + "locale": "nl", + "imagery": "osm", + "conflation": 138 + }, + "id": 119422988 + } + }, + { + "id": 119422904, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.274189, + 50.8757292 + ], + [ + 5.2763479, + 50.8757292 + ], + [ + 5.2763479, + 50.8769951 + ], + [ + 5.274189, + 50.8769951 + ], + [ + 5.274189, + 50.8757292 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:22:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 95, + "modify": 38, + "delete": 1, + "area": 0.00000273295151000037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 33, + "theme": "grb", + "delete": 1, + "import": 12, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "id": 119422904 + } + }, + { + "id": 119422889, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2738136, + 50.8767281 + ], + [ + 5.2743058, + 50.8767281 + ], + [ + 5.2743058, + 50.8769936 + ], + [ + 5.2738136, + 50.8769936 + ], + [ + 5.2738136, + 50.8767281 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:21:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 14, + "delete": 0, + "area": 1.30679099998591e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "id": 119422889 + } + }, + { + "id": 119422568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.271219, + 50.8757914 + ], + [ + 5.2748599, + 50.8757914 + ], + [ + 5.2748599, + 50.8782373 + ], + [ + 5.271219, + 50.8782373 + ], + [ + 5.271219, + 50.8757914 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:13:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 199, + "modify": 156, + "delete": 0, + "area": 0.00000890527731001752, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 126, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "id": 119422568 + } + }, + { + "id": 119422251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2744502, + 50.8723739 + ], + [ + 5.2854787, + 50.8723739 + ], + [ + 5.2854787, + 50.8795756 + ], + [ + 5.2744502, + 50.8795756 + ], + [ + 5.2744502, + 50.8723739 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T10:04:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 646, + "modify": 0, + "delete": 0, + "area": 0.0000794239484500284, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 75, + "locale": "_context", + "imagery": "osm" + }, + "id": 119422251 + } + }, + { + "id": 119420330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5701517, + 50.9214374 + ], + [ + 5.5742969, + 50.9214374 + ], + [ + 5.5742969, + 50.9224285 + ], + [ + 5.5701517, + 50.9224285 + ], + [ + 5.5701517, + 50.9214374 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T09:17:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000410830772000097, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119420330 + } + }, + { + "id": 119419335, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8767801, + 51.0069886 + ], + [ + 3.881255, + 51.0069886 + ], + [ + 3.881255, + 51.0082174 + ], + [ + 3.8767801, + 51.0082174 + ], + [ + 3.8767801, + 51.0069886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T08:48:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000549875711999908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "sidewalks", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 119419335 + } + }, + { + "id": 119418312, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0035342, + 51.3276014 + ], + [ + 5.0035342, + 51.3276014 + ], + [ + 5.0035342, + 51.3276014 + ], + [ + 5.0035342, + 51.3276014 + ], + [ + 5.0035342, + 51.3276014 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-07T08:20:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119418312 + } + }, + { + "id": 119417091, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0052138, + 51.2093538 + ], + [ + 3.0056967, + 51.2093538 + ], + [ + 3.0056967, + 51.2094969 + ], + [ + 3.0052138, + 51.2094969 + ], + [ + 3.0052138, + 51.2093538 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Velle", + "uid": "6196862", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T07:48:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 1, + "delete": 2, + "area": 6.91029899978035e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "change_over_5000m": 6, + "change_within_25m": 5, + "change_within_50m": 1, + "deletion:node/9647908884": "testing point", + "deletion:node/9647922799": "testing point" + }, + "id": 119417091 + } + }, + { + "id": 119414564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9949596, + 48.4999611 + ], + [ + 8.9966318, + 48.4999611 + ], + [ + 8.9966318, + 48.5004053 + ], + [ + 8.9949596, + 48.5004053 + ], + [ + 8.9949596, + 48.4999611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-07T06:44:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 10, + "delete": 0, + "area": 7.42791239994718e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 18, + "create": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 15, + "change_within_50m": 3 + }, + "id": 119414564 + } + }, + { + "id": 119406477, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2212297, + 51.2153672 + ], + [ + 3.2212297, + 51.2153672 + ], + [ + 3.2212297, + 51.2153672 + ], + [ + 3.2212297, + 51.2153672 + ], + [ + 3.2212297, + 51.2153672 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T23:44:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/transit/transit.html", + "theme": "transit", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 119406477 + } + }, + { + "id": 119405504, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9793169, + 51.2466353 + ], + [ + 4.9793504, + 51.2466353 + ], + [ + 4.9793504, + 51.2466616 + ], + [ + 4.9793169, + 51.2466616 + ], + [ + 4.9793169, + 51.2466353 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Den Heikanter", + "uid": "15507557", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T22:38:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 11, + "delete": 0, + "area": 8.81050000078704e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 19, + "create": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119405504 + } + }, + { + "id": 119404196, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9146419, + 51.4530129 + ], + [ + 4.9146419, + 51.4530129 + ], + [ + 4.9146419, + 51.4530129 + ], + [ + 4.9146419, + 51.4530129 + ], + [ + 4.9146419, + 51.4530129 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9636183925", + "name": "Enclave Tours", + "osm_id": 9636183925, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "bicycle_rental" + } + } + ], + "user": "Enclave Tours", + "uid": "15506540", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T21:31:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 119404196 + } + }, + { + "id": 119402986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7291647, + 41.2208619 + ], + [ + 1.7300092, + 41.2208619 + ], + [ + 1.7300092, + 41.2222419 + ], + [ + 1.7291647, + 41.2222419 + ], + [ + 1.7291647, + 41.2208619 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "node-4439612463", + "osm_id": 4439612463, + "reasons": [ + 489 + ], + "version": 9 + } + ], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T20:38:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00000116540999999777, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 30, + "locale": "ca", + "imagery": "osm" + }, + "id": 119402986 + } + }, + { + "id": 119401323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.286613, + 50.871161 + ], + [ + 5.2883283, + 50.871161 + ], + [ + 5.2883283, + 50.8728882 + ], + [ + 5.286613, + 50.8728882 + ], + [ + 5.286613, + 50.871161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:44:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 71, + "modify": 111, + "delete": 1, + "area": 0.00000296266615999583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 99, + "theme": "grb", + "delete": 1, + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 24 + }, + "id": 119401323 + } + }, + { + "id": 119401138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2837457, + 50.8719298 + ], + [ + 5.2879345, + 50.8719298 + ], + [ + 5.2879345, + 50.8736891 + ], + [ + 5.2837457, + 50.8736891 + ], + [ + 5.2837457, + 50.8719298 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:38:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 107, + "modify": 140, + "delete": 0, + "area": 0.000007369355840015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 126, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "id": 119401138 + } + }, + { + "id": 119400908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2830822, + 50.8722091 + ], + [ + 5.2865016, + 50.8722091 + ], + [ + 5.2865016, + 50.8741413 + ], + [ + 5.2830822, + 50.8741413 + ], + [ + 5.2830822, + 50.8722091 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:30:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 189, + "modify": 223, + "delete": 0, + "area": 0.00000660696467999657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 201, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 44 + }, + "id": 119400908 + } + }, + { + "id": 119400021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.398237, + 51.1754533 + ], + [ + 3.3983187, + 51.1754533 + ], + [ + 3.3983187, + 51.1754941 + ], + [ + 3.398237, + 51.1754941 + ], + [ + 3.398237, + 51.1754533 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T19:00:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.33336000005804e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119400021 + } + }, + { + "id": 119399406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7294477, + 41.2208619 + ], + [ + 1.7296802, + 41.2208619 + ], + [ + 1.7296802, + 41.2210198 + ], + [ + 1.7294477, + 41.2210198 + ], + [ + 1.7294477, + 41.2208619 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T18:40:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.67117499995066e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 7, + "locale": "ca", + "imagery": "osm" + }, + "id": 119399406 + } + }, + { + "id": 119397966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2789208, + 50.3326713 + ], + [ + 4.2789208, + 50.3326713 + ], + [ + 4.2789208, + 50.3326713 + ], + [ + 4.2789208, + 50.3326713 + ], + [ + 4.2789208, + 50.3326713 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T17:58:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119397966 + } + }, + { + "id": 119393686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0686177, + 51.1681563 + ], + [ + 3.9823519, + 51.1681563 + ], + [ + 3.9823519, + 51.8372542 + ], + [ + 3.0686177, + 51.8372542 + ], + [ + 3.0686177, + 51.1681563 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9644980902", + "osm_id": 9644980902, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "barrier": "wicket_gate" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T15:51:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.611377634378177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 2, + "change_within_5000m": 5 + }, + "id": 119393686 + } + }, + { + "id": 119388139, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5701517, + 50.9214374 + ], + [ + 5.572608, + 50.9214374 + ], + [ + 5.572608, + 50.9221082 + ], + [ + 5.5701517, + 50.9221082 + ], + [ + 5.5701517, + 50.9214374 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezoekerscentrum Lieteberg", + "uid": "15504016", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:38:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000164768603998652, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119388139 + } + }, + { + "id": 119387781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2806102, + 50.8736419 + ], + [ + 5.3015726, + 50.8736419 + ], + [ + 5.3015726, + 50.8970472 + ], + [ + 5.2806102, + 50.8970472 + ], + [ + 5.2806102, + 50.8736419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:29:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1312, + "modify": 1073, + "delete": 24, + "area": 0.00049063126072001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 971, + "theme": "grb", + "delete": 24, + "import": 205, + "locale": "nl", + "imagery": "osm", + "conflation": 230 + }, + "id": 119387781 + } + }, + { + "id": 119387711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8224595, + 50.7401743 + ], + [ + 5.8224595, + 50.7401743 + ], + [ + 5.8224595, + 50.7401743 + ], + [ + 5.8224595, + 50.7401743 + ], + [ + 5.8224595, + 50.7401743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T13:27:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9645639172": "source: https://osm.org/note/3044224" + }, + "id": 119387711 + } + }, + { + "id": 119387271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8477342, + 50.7372896 + ], + [ + 5.8477342, + 50.7372896 + ], + [ + 5.8477342, + 50.7372896 + ], + [ + 5.8477342, + 50.7372896 + ], + [ + 5.8477342, + 50.7372896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T13:17:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches", + "theme": "benches", + "answer": 3, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 4, + "import:node/9645625081": "source: https://osm.org/note/3044682" + }, + "id": 119387271 + } + }, + { + "id": 119386583, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2721597, + 50.8789965 + ], + [ + 5.281896, + 50.8789965 + ], + [ + 5.281896, + 50.8851145 + ], + [ + 5.2721597, + 50.8851145 + ], + [ + 5.2721597, + 50.8789965 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:00:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 348, + "modify": 348, + "delete": 12, + "area": 0.000059566683400008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 316, + "theme": "grb", + "delete": 12, + "import": 55, + "locale": "nl", + "imagery": "osm", + "conflation": 64 + }, + "id": 119386583 + } + }, + { + "id": 119386576, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T13:00:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119386576 + } + }, + { + "id": 119386120, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3370245, + 50.8672187 + ], + [ + 4.3370245, + 50.8672187 + ], + [ + 4.3370245, + 50.8672187 + ], + [ + 4.3370245, + 50.8672187 + ], + [ + 4.3370245, + 50.8672187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:49:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119386120 + } + }, + { + "id": 119385630, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3526805, + 50.8558007 + ], + [ + 4.3526805, + 50.8558007 + ], + [ + 4.3526805, + 50.8558007 + ], + [ + 4.3526805, + 50.8558007 + ], + [ + 4.3526805, + 50.8558007 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:37:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119385630 + } + }, + { + "id": 119384835, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2648288, + 50.8751699 + ], + [ + 5.2740192, + 50.8751699 + ], + [ + 5.2740192, + 50.8808079 + ], + [ + 5.2648288, + 50.8808079 + ], + [ + 5.2648288, + 50.8751699 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:17:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 893, + "modify": 446, + "delete": 0, + "area": 0.0000518154751999756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 401, + "theme": "grb", + "import": 110, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "id": 119384835 + } + }, + { + "id": 119384375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2508493, + 50.865365 + ], + [ + 5.2660366, + 50.865365 + ], + [ + 5.2660366, + 50.8756702 + ], + [ + 5.2508493, + 50.8756702 + ], + [ + 5.2508493, + 50.865365 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T12:06:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 431, + "modify": 337, + "delete": 3, + "area": 0.000156508163960073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 303, + "theme": "grb", + "delete": 3, + "import": 50, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "id": 119384375 + } + }, + { + "id": 119379270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9061527, + 51.822271 + ], + [ + 3.9061527, + 51.822271 + ], + [ + 3.9061527, + 51.822271 + ], + [ + 3.9061527, + 51.822271 + ], + [ + 3.9061527, + 51.822271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T10:14:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119379270 + } + }, + { + "id": 119377136, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2536476, + 50.867154 + ], + [ + 5.2596407, + 50.867154 + ], + [ + 5.2596407, + 50.8713076 + ], + [ + 5.2536476, + 50.8713076 + ], + [ + 5.2536476, + 50.867154 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T09:29:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 347, + "modify": 292, + "delete": 0, + "area": 0.0000248929401600149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 257, + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm", + "conflation": 78 + }, + "id": 119377136 + } + }, + { + "id": 119377132, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T09:29:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 4, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119377132 + } + }, + { + "id": 119374888, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.239103, + 50.8569231 + ], + [ + 5.2534286, + 50.8569231 + ], + [ + 5.2534286, + 50.8678193 + ], + [ + 5.239103, + 50.8678193 + ], + [ + 5.239103, + 50.8569231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T08:30:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 585, + "modify": 149, + "delete": 2, + "area": 0.00015609460271997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 126, + "theme": "grb", + "delete": 2, + "import": 67, + "locale": "nl", + "imagery": "osm", + "conflation": 50 + }, + "id": 119374888 + } + }, + { + "id": 119370272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.0237567, + 37.3113032 + ], + [ + -122.023756, + 37.3113032 + ], + [ + -122.023756, + 37.3113032 + ], + [ + -122.0237567, + 37.3113032 + ], + [ + -122.0237567, + 37.3113032 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "drklee3", + "uid": "12569239", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-06T06:21:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 10, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 10 + }, + "id": 119370272 + } + }, + { + "id": 119369056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3914071, + 50.8517137 + ], + [ + 4.3967582, + 50.8517137 + ], + [ + 4.3967582, + 50.8631197 + ], + [ + 4.3914071, + 50.8631197 + ], + [ + 4.3914071, + 50.8517137 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-06T05:43:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000610346465999992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "create": 2, + "locale": "en", + "imagery": "UrbISOrtho", + "add-image": 2 + }, + "id": 119369056 + } + }, + { + "id": 119357797, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2421276, + 50.858356 + ], + [ + 5.2469938, + 50.858356 + ], + [ + 5.2469938, + 50.8615918 + ], + [ + 5.2421276, + 50.8615918 + ], + [ + 5.2421276, + 50.858356 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T19:46:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 193, + "modify": 138, + "delete": 2, + "area": 0.0000157460499599953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 120, + "theme": "grb", + "delete": 2, + "import": 25, + "locale": "nl", + "imagery": "osm", + "conflation": 40 + }, + "id": 119357797 + } + }, + { + "id": 119356641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8698758, + 51.302913 + ], + [ + 4.8774972, + 51.302913 + ], + [ + 4.8774972, + 51.3074363 + ], + [ + 4.8698758, + 51.3074363 + ], + [ + 4.8698758, + 51.302913 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Philippe Winant", + "uid": "6354026", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T19:06:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 24, + "delete": 0, + "area": 0.0000344738786200172, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 27, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 15 + }, + "id": 119356641 + } + }, + { + "id": 119356571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2766393, + 47.7982321 + ], + [ + -4.2758729, + 47.7982321 + ], + [ + -4.2758729, + 47.7987611 + ], + [ + -4.2766393, + 47.7987611 + ], + [ + -4.2766393, + 47.7982321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T19:03:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.05425600000084e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite", + "theme": "campersite", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "id": 119356571 + } + }, + { + "id": 119356252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8594882, + 51.1413923 + ], + [ + 4.8695345, + 51.1413923 + ], + [ + 4.8695345, + 51.1464471 + ], + [ + 4.8594882, + 51.1464471 + ], + [ + 4.8594882, + 51.1413923 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:52:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 504, + "modify": 476, + "delete": 1, + "area": 0.0000507820372400346, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 397, + "theme": "grb", + "answer": 1, + "delete": 1, + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "id": 119356252 + } + }, + { + "id": 119356245, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.867321, + 51.1449678 + ], + [ + 4.8682469, + 51.1449678 + ], + [ + 4.8682469, + 51.1452413 + ], + [ + 4.867321, + 51.1452413 + ], + [ + 4.867321, + 51.1449678 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:51:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 18, + "delete": 0, + "area": 2.53233649998902e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "id": 119356245 + } + }, + { + "id": 119355457, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2822625, + 47.79469 + ], + [ + -4.281062, + 47.79469 + ], + [ + -4.281062, + 47.796009 + ], + [ + -4.2822625, + 47.796009 + ], + [ + -4.2822625, + 47.79469 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:26:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.00000158345949999355, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 5, + "create": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 11 + }, + "id": 119355457 + } + }, + { + "id": 119355151, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9685248, + 51.8368678 + ], + [ + 3.9921277, + 51.8368678 + ], + [ + 3.9921277, + 51.8411878 + ], + [ + 3.9685248, + 51.8411878 + ], + [ + 3.9685248, + 51.8368678 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:15:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.000101964527999998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 6, + "change_over_5000m": 4, + "change_within_5000m": 14 + }, + "id": 119355151 + } + }, + { + "id": 119355072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9683804, + 51.8365693 + ], + [ + 3.9822331, + 51.8365693 + ], + [ + 3.9822331, + 51.8372793 + ], + [ + 3.9683804, + 51.8372793 + ], + [ + 3.9683804, + 51.8365693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:12:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000983541699997227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 2 + }, + "id": 119355072 + } + }, + { + "id": 119355028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9685441, + 51.8360472 + ], + [ + 3.982795, + 51.8360472 + ], + [ + 3.982795, + 51.8370128 + ], + [ + 3.9685441, + 51.8370128 + ], + [ + 3.9685441, + 51.8360472 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T18:10:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000137606690399083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 119355028 + } + }, + { + "id": 119352776, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.944824, + 50.2206975 + ], + [ + 4.944824, + 50.2206975 + ], + [ + 4.944824, + 50.2206975 + ], + [ + 4.944824, + 50.2206975 + ], + [ + 4.944824, + 50.2206975 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T16:54:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing", + "theme": "climbing", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 119352776 + } + }, + { + "id": 119351555, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T16:22:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119351555 + } + }, + { + "id": 119347199, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9823809, + 51.8368842 + ], + [ + 3.9823809, + 51.8368842 + ], + [ + 3.9823809, + 51.8368842 + ], + [ + 3.9823809, + 51.8368842 + ], + [ + 3.9823809, + 51.8368842 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T14:29:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 119347199 + } + }, + { + "id": 119346822, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ], + [ + 3.9817695, + 51.8372649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T14:20:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 4 + }, + "id": 119346822 + } + }, + { + "id": 119345884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2338597, + 50.8548283 + ], + [ + 5.2446597, + 50.8548283 + ], + [ + 5.2446597, + 50.8590859 + ], + [ + 5.2338597, + 50.8590859 + ], + [ + 5.2338597, + 50.8548283 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T13:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 335, + "modify": 322, + "delete": 6, + "area": 0.0000459820799999493, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 288, + "theme": "grb", + "delete": 6, + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 70 + }, + "id": 119345884 + } + }, + { + "id": 119345798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2362568, + 50.8570936 + ], + [ + 5.2406638, + 50.8570936 + ], + [ + 5.2406638, + 50.8579964 + ], + [ + 5.2362568, + 50.8579964 + ], + [ + 5.2362568, + 50.8570936 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T13:52:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 23, + "modify": 20, + "delete": 0, + "area": 0.00000397863959999449, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 16, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "id": 119345798 + } + }, + { + "id": 119345235, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2394462, + 50.8443136 + ], + [ + 5.2562163, + 50.8443136 + ], + [ + 5.2562163, + 50.8572157 + ], + [ + 5.2394462, + 50.8572157 + ], + [ + 5.2394462, + 50.8443136 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T13:39:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 486, + "modify": 468, + "delete": 3, + "area": 0.000216369507209973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 421, + "theme": "grb", + "delete": 3, + "import": 71, + "locale": "nl", + "imagery": "osm", + "conflation": 106 + }, + "id": 119345235 + } + }, + { + "id": 119343636, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.250633, + 50.8351898 + ], + [ + 5.260058, + 50.8351898 + ], + [ + 5.260058, + 50.8468007 + ], + [ + 5.250633, + 50.8468007 + ], + [ + 5.250633, + 50.8351898 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:58:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1021, + "modify": 1540, + "delete": 10, + "area": 0.000109432732500011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1379, + "theme": "grb", + "delete": 10, + "import": 176, + "locale": "nl", + "imagery": "osm", + "conflation": 318 + }, + "id": 119343636 + } + }, + { + "id": 119343609, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:57:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119343609 + } + }, + { + "id": 119343192, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9922164, + 51.8412684 + ], + [ + 3.9922164, + 51.8412684 + ], + [ + 3.9922164, + 51.8412684 + ], + [ + 3.9922164, + 51.8412684 + ], + [ + 3.9922164, + 51.8412684 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T12:48:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 119343192 + } + }, + { + "id": 119341741, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2515055, + 50.8314254 + ], + [ + 5.2570114, + 50.8314254 + ], + [ + 5.2570114, + 50.8356394 + ], + [ + 5.2515055, + 50.8356394 + ], + [ + 5.2515055, + 50.8314254 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:16:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 931, + "modify": 979, + "delete": 22, + "area": 0.0000232018625999832, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 874, + "theme": "grb", + "delete": 22, + "import": 176, + "locale": "nl", + "imagery": "osm", + "conflation": 222 + }, + "id": 119341741 + } + }, + { + "id": 119341177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2524173, + 50.8312116 + ], + [ + 5.2566551, + 50.8312116 + ], + [ + 5.2566551, + 50.8341732 + ], + [ + 5.2524173, + 50.8341732 + ], + [ + 5.2524173, + 50.8312116 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T12:03:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 85, + "modify": 557, + "delete": 14, + "area": 0.000012550668479994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 502, + "theme": "grb", + "delete": 14, + "import": 21, + "locale": "nl", + "imagery": "osm", + "conflation": 138 + }, + "id": 119341177 + } + }, + { + "id": 119337024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2383795, + 50.8152351 + ], + [ + 5.2599539, + 50.8152351 + ], + [ + 5.2599539, + 50.8285766 + ], + [ + 5.2383795, + 50.8285766 + ], + [ + 5.2383795, + 50.8152351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T10:18:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 276, + "modify": 664, + "delete": 2, + "area": 0.000287834857599913, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 590, + "theme": "grb", + "delete": 2, + "import": 42, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "id": 119337024 + } + }, + { + "id": 119336812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4715524, + 51.3734347 + ], + [ + 4.4715524, + 51.3734347 + ], + [ + 4.4715524, + 51.3734347 + ], + [ + 4.4715524, + 51.3734347 + ], + [ + 4.4715524, + 51.3734347 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T10:13:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119336812 + } + }, + { + "id": 119335338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4284639, + 48.2561256 + ], + [ + 11.431913, + 48.2561256 + ], + [ + 11.431913, + 48.2565518 + ], + [ + 11.4284639, + 48.2565518 + ], + [ + 11.4284639, + 48.2561256 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T09:37:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000147000641999866, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 119335338 + } + }, + { + "id": 119332474, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3018421, + 50.8262034 + ], + [ + 5.3514361, + 50.8262034 + ], + [ + 5.3514361, + 50.8516016 + ], + [ + 5.3018421, + 50.8516016 + ], + [ + 5.3018421, + 50.8262034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "proudtobeevi", + "uid": "15491391", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T08:25:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 2, + "delete": 1, + "area": 0.00125959833080025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 2, + "import": 4, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "move:node/4639723285": "improve_accuracy", + "move:node/4639723286": "improve_accuracy", + "import:node/9642595560": "source: https://osm.org/note/3044026", + "import:node/9642605521": "source: https://osm.org/note/3044068", + "import:node/9642605793": "source: https://osm.org/note/3044033", + "import:node/9642609026": "source: https://osm.org/note/3044010", + "deletion:node/6124967530": "is een picknickbank" + }, + "id": 119332474 + } + }, + { + "id": 119329440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8085673, + 51.1322707 + ], + [ + 5.8085673, + 51.1322707 + ], + [ + 5.8085673, + 51.1322707 + ], + [ + 5.8085673, + 51.1322707 + ], + [ + 5.8085673, + 51.1322707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Café ´t Orgelhuys", + "uid": "15491052", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T07:08:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 119329440 + } + }, + { + "id": 119328552, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8744428, + 51.2041577 + ], + [ + 5.0231284, + 51.2041577 + ], + [ + 5.0231284, + 51.2673912 + ], + [ + 4.8744428, + 51.2673912 + ], + [ + 4.8744428, + 51.2041577 + ] + ] + ] + }, + "properties": { + "check_user": "jospyck", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Kasterlee", + "uid": "15445529", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-05T06:43:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 64, + "modify": 0, + "delete": 2, + "area": 0.00940191088759935, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-04-05T10:10:20.318983Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 64, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "deletion:node/9642446796": "testing point", + "deletion:node/9642701084": "duplicate" + }, + "id": 119328552 + } + }, + { + "id": 119327176, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9085143, + 51.8247942 + ], + [ + 3.9085143, + 51.8247942 + ], + [ + 3.9085143, + 51.8247942 + ], + [ + 3.9085143, + 51.8247942 + ], + [ + 3.9085143, + 51.8247942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T06:01:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 119327176 + } + }, + { + "id": 119327140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.907216, + 51.8241695 + ], + [ + 3.907216, + 51.8241695 + ], + [ + 3.907216, + 51.8241695 + ], + [ + 3.907216, + 51.8241695 + ], + [ + 3.907216, + 51.8241695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-05T06:00:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 119327140 + } + }, + { + "id": 119319951, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3579941, + 50.8481811 + ], + [ + 4.3579941, + 50.8481811 + ], + [ + 4.3579941, + 50.8481811 + ], + [ + 4.3579941, + 50.8481811 + ], + [ + 4.3579941, + 50.8481811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T22:23:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119319951 + } + }, + { + "id": 119319572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.316851, + 50.8352168 + ], + [ + 4.3704821, + 50.8352168 + ], + [ + 4.3704821, + 50.8617143 + ], + [ + 4.316851, + 50.8617143 + ], + [ + 4.316851, + 50.8352168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T22:02:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00142109007225028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 119319572 + } + }, + { + "id": 119319527, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3224426, + 50.841712 + ], + [ + 4.3224426, + 50.841712 + ], + [ + 4.3224426, + 50.841712 + ], + [ + 4.3224426, + 50.841712 + ], + [ + 4.3224426, + 50.841712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jhowie_Nitnek", + "uid": "10209781", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T22:00:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hackerspaces", + "theme": "hackerspaces", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119319527 + } + }, + { + "id": 119318536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8057798, + 60.4570974 + ], + [ + 24.824118, + 60.4570974 + ], + [ + 24.824118, + 60.4638483 + ], + [ + 24.8057798, + 60.4638483 + ], + [ + 24.8057798, + 60.4570974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NearCry", + "uid": "2373957", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T21:13:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 28, + "delete": 0, + "area": 0.000123799354379994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed", + "theme": "aed", + "answer": 39, + "create": 7, + "locale": "en", + "imagery": "hri-orto" + }, + "id": 119318536 + } + }, + { + "id": 119318448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T21:10:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 119318448 + } + }, + { + "id": 119316196, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2279679, + 50.8127515 + ], + [ + 5.2351002, + 50.8127515 + ], + [ + 5.2351002, + 50.8137786 + ], + [ + 5.2279679, + 50.8137786 + ], + [ + 5.2279679, + 50.8127515 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T19:56:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0000073255853300117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 6, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119316196 + } + }, + { + "id": 119315943, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2265942, + 50.8127342 + ], + [ + 5.2295143, + 50.8127342 + ], + [ + 5.2295143, + 50.8152405 + ], + [ + 5.2265942, + 50.8152405 + ], + [ + 5.2265942, + 50.8127342 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T19:48:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 180, + "modify": 277, + "delete": 0, + "area": 0.00000731864663000053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 243, + "theme": "grb", + "import": 25, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "id": 119315943 + } + }, + { + "id": 119314812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2931984, + 47.7964505 + ], + [ + -4.2931984, + 47.7964505 + ], + [ + -4.2931984, + 47.7964505 + ], + [ + -4.2931984, + 47.7964505 + ], + [ + -4.2931984, + 47.7964505 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T19:10:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119314812 + } + }, + { + "id": 119313585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2268944, + 50.8136875 + ], + [ + 5.2271602, + 50.8136875 + ], + [ + 5.2271602, + 50.813831 + ], + [ + 5.2268944, + 50.813831 + ], + [ + 5.2268944, + 50.8136875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T18:28:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 9, + "delete": 0, + "area": 3.81423000000491e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 8, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119313585 + } + }, + { + "id": 119312922, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4320979, + 48.2561016 + ], + [ + 11.4421168, + 48.2561016 + ], + [ + 11.4421168, + 48.2579453 + ], + [ + 11.4320979, + 48.2579453 + ], + [ + 11.4320979, + 48.2561016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T18:09:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000184718459300208, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "id": 119312922 + } + }, + { + "id": 119312657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4230135, + 48.2445681 + ], + [ + 11.4471826, + 48.2445681 + ], + [ + 11.4471826, + 48.2576631 + ], + [ + 11.4230135, + 48.2576631 + ], + [ + 11.4230135, + 48.2445681 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T18:01:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000316494364499996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 11, + "locale": "de", + "imagery": "osm" + }, + "id": 119312657 + } + }, + { + "id": 119311890, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4345631, + 48.2423666 + ], + [ + 11.4465686, + 48.2423666 + ], + [ + 11.4465686, + 48.2561397 + ], + [ + 11.4345631, + 48.2561397 + ], + [ + 11.4345631, + 48.2423666 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T17:39:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000165352952050031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 41, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 119311890 + } + }, + { + "id": 119311701, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4333385, + 48.2560376 + ], + [ + 11.43401, + 48.2560376 + ], + [ + 11.43401, + 48.2565516 + ], + [ + 11.4333385, + 48.2565516 + ], + [ + 11.4333385, + 48.2560376 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T17:33:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 3.45151000002262e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 119311701 + } + }, + { + "id": 119311575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.907216, + 51.8241695 + ], + [ + 3.9086492, + 51.8241695 + ], + [ + 3.9086492, + 51.8247463 + ], + [ + 3.907216, + 51.8247463 + ], + [ + 3.907216, + 51.8241695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T17:29:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.26669759996481e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 5 + }, + "id": 119311575 + } + }, + { + "id": 119311075, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4239548, + 48.2431163 + ], + [ + 11.446654, + 48.2431163 + ], + [ + 11.446654, + 48.2562704 + ], + [ + 11.4239548, + 48.2562704 + ], + [ + 11.4239548, + 48.2431163 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T17:16:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000298587546720028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 17, + "locale": "de", + "imagery": "osm" + }, + "id": 119311075 + } + }, + { + "id": 119310359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4330302, + 48.2540645 + ], + [ + 11.4435876, + 48.2540645 + ], + [ + 11.4435876, + 48.255929 + ], + [ + 11.4330302, + 48.255929 + ], + [ + 11.4330302, + 48.2540645 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "el_eco_stef", + "uid": "12795645", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T16:54:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000196842723000396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 16, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 119310359 + } + }, + { + "id": 119307611, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9994362, + 48.5046399 + ], + [ + 8.9994362, + 48.5046399 + ], + [ + 8.9994362, + 48.5046399 + ], + [ + 8.9994362, + 48.5046399 + ], + [ + 8.9994362, + 48.5046399 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T15:38:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119307611 + } + }, + { + "id": 119307381, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ], + [ + 3.2327132, + 51.2095932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T15:31:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 119307381 + } + }, + { + "id": 119306762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.5365638, + 41.6590322 + ], + [ + -88.464607, + 41.6590322 + ], + [ + -88.464607, + 41.664035 + ], + [ + -88.5365638, + 41.664035 + ], + [ + -88.5365638, + 41.6590322 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jdcarls2", + "uid": "5778126", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T15:13:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000359985479039958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119306762 + } + }, + { + "id": 119304057, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2284427, + 50.8129971 + ], + [ + 5.2387413, + 50.8129971 + ], + [ + 5.2387413, + 50.8152329 + ], + [ + 5.2284427, + 50.8152329 + ], + [ + 5.2284427, + 50.8129971 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T13:47:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 233, + "modify": 347, + "delete": 0, + "area": 0.0000230256098800106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 305, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "id": 119304057 + } + }, + { + "id": 119303225, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2381236, + -39.8438829 + ], + [ + -73.2377638, + -39.8438829 + ], + [ + -73.2377638, + -39.8436361 + ], + [ + -73.2381236, + -39.8436361 + ], + [ + -73.2381236, + -39.8438829 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T13:20:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.87986399993241e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 4 + }, + "id": 119303225 + } + }, + { + "id": 119302063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2194887, + 50.7786356 + ], + [ + 5.241889, + 50.7786356 + ], + [ + 5.241889, + 50.8164531 + ], + [ + 5.2194887, + 50.8164531 + ], + [ + 5.2194887, + 50.7786356 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T12:49:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1001, + "modify": 1748, + "delete": 26, + "area": 0.000847123345249874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1547, + "theme": "grb", + "delete": 26, + "import": 142, + "locale": "nl", + "imagery": "osm", + "conflation": 412 + }, + "id": 119302063 + } + }, + { + "id": 119301118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8444569, + 50.8132139 + ], + [ + 4.8478022, + 50.8132139 + ], + [ + 4.8478022, + 50.8310862 + ], + [ + 4.8444569, + 50.8310862 + ], + [ + 4.8444569, + 50.8132139 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T12:23:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 1, + "area": 0.0000597882051900076, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 15, + "deletion:node/9570775619": "duplicate" + }, + "id": 119301118 + } + }, + { + "id": 119298597, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8748669, + 50.8018524 + ], + [ + 4.9114901, + 50.8018524 + ], + [ + 4.9114901, + 50.8031202 + ], + [ + 4.8748669, + 50.8031202 + ], + [ + 4.8748669, + 50.8018524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T11:12:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.0000464308929600302, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 9, + "change_within_5000m": 5 + }, + "id": 119298597 + } + }, + { + "id": 119297722, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3621716, + 50.8571793 + ], + [ + 4.3621716, + 50.8571793 + ], + [ + 4.3621716, + 50.8571793 + ], + [ + 4.3621716, + 50.8571793 + ], + [ + 4.3621716, + 50.8571793 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T10:48:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119297722 + } + }, + { + "id": 119296121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0379825, + 50.9401108 + ], + [ + 4.0468526, + 50.9401108 + ], + [ + 4.0468526, + 50.9467138 + ], + [ + 4.0379825, + 50.9467138 + ], + [ + 4.0379825, + 50.9401108 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T10:03:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 12, + "delete": 0, + "area": 0.0000585692702999869, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 18, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "id": 119296121 + } + }, + { + "id": 119294511, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2118362, + 50.7902943 + ], + [ + 5.2260819, + 50.7902943 + ], + [ + 5.2260819, + 50.7946439 + ], + [ + 5.2118362, + 50.7946439 + ], + [ + 5.2118362, + 50.7902943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T09:23:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 433, + "modify": 290, + "delete": 0, + "area": 0.0000619630967199662, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 247, + "theme": "grb", + "import": 53, + "locale": "nl", + "imagery": "osm", + "conflation": 90 + }, + "id": 119294511 + } + }, + { + "id": 119292927, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0251183, + 50.7607228 + ], + [ + 4.1222311, + 50.7607228 + ], + [ + 4.1222311, + 50.8181921 + ], + [ + 4.0251183, + 50.8181921 + ], + [ + 4.0251183, + 50.7607228 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-04T08:45:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00558100463703939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "import:node/9635164567": "source: https://osm.org/note/3090273", + "import:node/9635167220": "source: https://osm.org/note/3090151" + }, + "id": 119292927 + } + }, + { + "id": 119292620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2013584, + 50.795162 + ], + [ + 5.2171225, + 50.795162 + ], + [ + 5.2171225, + 50.8098113 + ], + [ + 5.2013584, + 50.8098113 + ], + [ + 5.2013584, + 50.795162 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T08:38:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1690, + "modify": 939, + "delete": 4, + "area": 0.000230933030130035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 821, + "theme": "grb", + "delete": 4, + "import": 172, + "locale": "nl", + "imagery": "osm", + "conflation": 244 + }, + "id": 119292620 + } + }, + { + "id": 119291626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2151501, + 50.8047894 + ], + [ + 5.2220316, + 50.8047894 + ], + [ + 5.2220316, + 50.8101323 + ], + [ + 5.2151501, + 50.8101323 + ], + [ + 5.2151501, + 50.8047894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T08:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 584, + "modify": 850, + "delete": 8, + "area": 0.0000367671663500178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 754, + "theme": "grb", + "delete": 8, + "import": 74, + "locale": "nl", + "imagery": "osm", + "conflation": 204 + }, + "id": 119291626 + } + }, + { + "id": 119291302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2139737, + 50.8031158 + ], + [ + 5.2234925, + 50.8031158 + ], + [ + 5.2234925, + 50.8077069 + ], + [ + 5.2139737, + 50.8077069 + ], + [ + 5.2139737, + 50.8031158 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-04T08:05:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 124, + "modify": 290, + "delete": 1, + "area": 0.0000437017626799878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 253, + "theme": "grb", + "delete": 1, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 74 + }, + "id": 119291302 + } + }, + { + "id": 119280195, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1335548, + 50.8318295 + ], + [ + -0.1335548, + 50.8318295 + ], + [ + -0.1335548, + 50.8318295 + ], + [ + -0.1335548, + 50.8318295 + ], + [ + -0.1335548, + 50.8318295 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joethUK", + "uid": "13966463", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T22:23:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119280195 + } + }, + { + "id": 119278252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9947918, + 51.1770658 + ], + [ + 4.9947918, + 51.1770658 + ], + [ + 4.9947918, + 51.1770658 + ], + [ + 4.9947918, + 51.1770658 + ], + [ + 4.9947918, + 51.1770658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T20:42:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 119278252 + } + }, + { + "id": 119278248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3324542, + 50.8781366 + ], + [ + 4.3325238, + 50.8781366 + ], + [ + 4.3325238, + 50.8781954 + ], + [ + 4.3324542, + 50.8781954 + ], + [ + 4.3324542, + 50.8781366 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T20:41:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.09248000033662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "id": 119278248 + } + }, + { + "id": 119276975, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.239645, + 51.223322 + ], + [ + 3.239645, + 51.223322 + ], + [ + 3.239645, + 51.223322 + ], + [ + 3.239645, + 51.223322 + ], + [ + 3.239645, + 51.223322 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T19:51:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 119276975 + } + }, + { + "id": 119275875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3840286, + 50.8708091 + ], + [ + 4.3840286, + 50.8708091 + ], + [ + 4.3840286, + 50.8708091 + ], + [ + 4.3840286, + 50.8708091 + ], + [ + 4.3840286, + 50.8708091 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T19:09:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119275875 + } + }, + { + "id": 119275455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.5005252, + 59.9353348 + ], + [ + 30.502005, + 59.9353348 + ], + [ + 30.502005, + 59.9354003 + ], + [ + 30.5005252, + 59.9354003 + ], + [ + 30.5005252, + 59.9353348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TrickyFoxy", + "uid": "11528195", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T18:53:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.69268999972521e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 7, + "locale": "ru", + "imagery": "Mapbox" + }, + "id": 119275455 + } + }, + { + "id": 119275032, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.212575, + 50.801533 + ], + [ + 5.2162104, + 50.801533 + ], + [ + 5.2162104, + 50.8035373 + ], + [ + 5.212575, + 50.8035373 + ], + [ + 5.212575, + 50.801533 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T18:37:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 132, + "modify": 122, + "delete": 0, + "area": 0.00000728643222000955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 110, + "theme": "grb", + "import": 11, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "id": 119275032 + } + }, + { + "id": 119274514, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1264086, + 50.7422539 + ], + [ + 4.2471239, + 50.7422539 + ], + [ + 4.2471239, + 51.534583 + ], + [ + -0.1264086, + 51.534583 + ], + [ + -0.1264086, + 50.7422539 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T18:21:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 3.46527706954573, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "id": 119274514 + } + }, + { + "id": 119273643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1942513, + 50.9106537 + ], + [ + 4.1942513, + 50.9106537 + ], + [ + 4.1942513, + 50.9106537 + ], + [ + 4.1942513, + 50.9106537 + ], + [ + 4.1942513, + 50.9106537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T17:52:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 119273643 + } + }, + { + "id": 119273465, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1942513, + 50.9106537 + ], + [ + 4.2017951, + 50.9106537 + ], + [ + 4.2017951, + 50.9112915 + ], + [ + 4.1942513, + 50.9112915 + ], + [ + 4.1942513, + 50.9106537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T17:46:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000481143563999827, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_1000m": 7 + }, + "id": 119273465 + } + }, + { + "id": 119273403, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T17:44:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "move:node/-1": "improve_accuracy", + "change_within_25m": 1 + }, + "id": 119273403 + } + }, + { + "id": 119273300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1941332, + 50.9105421 + ], + [ + 4.1941332, + 50.9105421 + ], + [ + 4.1941332, + 50.9105421 + ], + [ + 4.1941332, + 50.9105421 + ], + [ + 4.1941332, + 50.9105421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T17:42:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 119273300 + } + }, + { + "id": 119270696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9859003, + 51.1605061 + ], + [ + 4.9859003, + 51.1605061 + ], + [ + 4.9859003, + 51.1605061 + ], + [ + 4.9859003, + 51.1605061 + ], + [ + 4.9859003, + 51.1605061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T16:22:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 119270696 + } + }, + { + "id": 119265626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.98723, + 51.1612471 + ], + [ + 4.98723, + 51.1612471 + ], + [ + 4.98723, + 51.1612471 + ], + [ + 4.98723, + 51.1612471 + ], + [ + 4.98723, + 51.1612471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T13:56:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 7 + }, + "id": 119265626 + } + }, + { + "id": 119264066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9375176, + 51.209782 + ], + [ + 4.9380132, + 51.209782 + ], + [ + 4.9380132, + 51.210366 + ], + [ + 4.9375176, + 51.210366 + ], + [ + 4.9375176, + 51.209782 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ark van Noë", + "uid": "15477463", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T13:10:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 13, + "delete": 0, + "area": 2.89430400002133e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 4, + "theme": "toerisme_vlaanderen", + "answer": 24, + "create": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "move:node/9633278314": "improve_accuracy", + "move:node/9633344313": "improve_accuracy", + "move:node/9633374752": "improve_accuracy" + }, + "id": 119264066 + } + }, + { + "id": 119263733, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2110364, + 50.7944924 + ], + [ + 5.2234481, + 50.7944924 + ], + [ + 5.2234481, + 50.8064842 + ], + [ + 5.2110364, + 50.8064842 + ], + [ + 5.2110364, + 50.7944924 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T12:57:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 855, + "modify": 739, + "delete": 1, + "area": 0.000148838624059956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 637, + "theme": "grb", + "delete": 1, + "import": 79, + "locale": "nl", + "imagery": "osm", + "conflation": 220 + }, + "id": 119263733 + } + }, + { + "id": 119263646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8831073, + 51.1476149 + ], + [ + 3.8831073, + 51.1476149 + ], + [ + 3.8831073, + 51.1476149 + ], + [ + 3.8831073, + 51.1476149 + ], + [ + 3.8831073, + 51.1476149 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T12:55:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 119263646 + } + }, + { + "id": 119261895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0677361, + 49.4912512 + ], + [ + 6.0677361, + 49.4912512 + ], + [ + 6.0677361, + 49.4912512 + ], + [ + 6.0677361, + 49.4912512 + ], + [ + 6.0677361, + 49.4912512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T11:56:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119261895 + } + }, + { + "id": 119261814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8075721, + 49.620419 + ], + [ + 3.8125992, + 49.620419 + ], + [ + 3.8125992, + 49.621618 + ], + [ + 3.8075721, + 49.621618 + ], + [ + 3.8075721, + 49.620419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T11:54:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00000602749289999911, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 10, + "create": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 10 + }, + "id": 119261814 + } + }, + { + "id": 119260406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2171321, + 50.7982507 + ], + [ + 5.2325134, + 50.7982507 + ], + [ + 5.2325134, + 50.8049962 + ], + [ + 5.2171321, + 50.8049962 + ], + [ + 5.2171321, + 50.7982507 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T11:05:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1935, + "modify": 1516, + "delete": 9, + "area": 0.000103754559150018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1341, + "theme": "grb", + "delete": 9, + "import": 234, + "locale": "nl", + "imagery": "osm", + "conflation": 380 + }, + "id": 119260406 + } + }, + { + "id": 119258074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2212939, + 50.801737 + ], + [ + 5.2307157, + 50.801737 + ], + [ + 5.2307157, + 50.8064842 + ], + [ + 5.2212939, + 50.8064842 + ], + [ + 5.2212939, + 50.801737 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T09:43:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 692, + "modify": 773, + "delete": 10, + "area": 0.000044727168959973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 687, + "theme": "grb", + "delete": 10, + "import": 93, + "locale": "nl", + "imagery": "osm", + "conflation": 176 + }, + "id": 119258074 + } + }, + { + "id": 119257676, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4244446, + 50.8914764 + ], + [ + 3.4279919, + 50.8914764 + ], + [ + 3.4279919, + 50.8954137 + ], + [ + 3.4244446, + 50.8954137 + ], + [ + 3.4244446, + 50.8914764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "thierydem", + "uid": "13422761", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T09:28:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000139667842899879, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 119257676 + } + }, + { + "id": 119257256, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8636521, + 51.14461 + ], + [ + 4.8687573, + 51.14461 + ], + [ + 4.8687573, + 51.146047 + ], + [ + 4.8636521, + 51.146047 + ], + [ + 4.8636521, + 51.14461 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:12:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 207, + "modify": 195, + "delete": 0, + "area": 0.00000733617240001433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 168, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 64 + }, + "id": 119257256 + } + }, + { + "id": 119257224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9903775, + 48.5020777 + ], + [ + 8.9912575, + 48.5020777 + ], + [ + 8.9912575, + 48.503013 + ], + [ + 8.9903775, + 48.503013 + ], + [ + 8.9903775, + 48.5020777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:11:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 8.23064000002044e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm", + "change_within_25m": 20, + "change_within_50m": 3 + }, + "id": 119257224 + } + }, + { + "id": 119257102, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904254, + 48.5027916 + ], + [ + 8.9906084, + 48.5027916 + ], + [ + 8.9906084, + 48.5028094 + ], + [ + 8.9904254, + 48.5028094 + ], + [ + 8.9904254, + 48.5027916 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:08:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.25739999905433e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 119257102 + } + }, + { + "id": 119257038, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904642, + 48.5026557 + ], + [ + 8.9904992, + 48.5026557 + ], + [ + 8.9904992, + 48.5026907 + ], + [ + 8.9904642, + 48.5026907 + ], + [ + 8.9904642, + 48.5026557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:06:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.22500000015594e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 119257038 + } + }, + { + "id": 119256997, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9905112, + 48.5027794 + ], + [ + 8.9905235, + 48.5027794 + ], + [ + 8.9905235, + 48.5027874 + ], + [ + 8.9905112, + 48.5027874 + ], + [ + 8.9905112, + 48.5027794 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:05:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.84000000125869e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 6 + }, + "id": 119256997 + } + }, + { + "id": 119256882, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9903874, + 48.5025287 + ], + [ + 8.9908217, + 48.5025287 + ], + [ + 8.9908217, + 48.5028332 + ], + [ + 8.9903874, + 48.5028332 + ], + [ + 8.9903874, + 48.5025287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T09:01:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.32244349999458e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_50m": 2 + }, + "id": 119256882 + } + }, + { + "id": 119256354, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T08:37:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119256354 + } + }, + { + "id": 119256307, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T08:36:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119256307 + } + }, + { + "id": 119256303, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T08:35:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119256303 + } + }, + { + "id": 119256297, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T08:35:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119256297 + } + }, + { + "id": 119256295, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T08:35:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119256295 + } + }, + { + "id": 119255378, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2232193, + 50.8018187 + ], + [ + 5.5231479, + 50.8018187 + ], + [ + 5.5231479, + 50.8478437 + ], + [ + 5.2232193, + 50.8478437 + ], + [ + 5.2232193, + 50.8018187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T07:52:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1739, + "modify": 1322, + "delete": 24, + "area": 0.013804213815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1177, + "theme": "grb", + "delete": 24, + "import": 192, + "locale": "nl", + "imagery": "osm", + "conflation": 310 + }, + "id": 119255378 + } + }, + { + "id": 119255168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6540665, + 50.9177858 + ], + [ + 3.8724956, + 50.9177858 + ], + [ + 3.8724956, + 50.9627769 + ], + [ + 3.6540665, + 50.9627769 + ], + [ + 3.6540665, + 50.9177858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T07:41:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 78, + "delete": 0, + "area": 0.00982736548101095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 103, + "create": 16, + "locale": "nl", + "imagery": "osm", + "add-image": 24 + }, + "id": 119255168 + } + }, + { + "id": 119255028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8724715, + 50.9421357 + ], + [ + 3.9520741, + 50.9421357 + ], + [ + 3.9520741, + 50.9464248 + ], + [ + 3.8724715, + 50.9464248 + ], + [ + 3.8724715, + 50.9421357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-03T07:35:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.000341423511660091, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 119255028 + } + }, + { + "id": 119254211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3974314, + 51.041181 + ], + [ + 3.3974314, + 51.041181 + ], + [ + 3.3974314, + 51.041181 + ], + [ + 3.3974314, + 51.041181 + ], + [ + 3.3974314, + 51.041181 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T06:52:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119254211 + } + }, + { + "id": 119254072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1966065, + 49.7214385 + ], + [ + 4.3401092, + 49.7214385 + ], + [ + 4.3401092, + 49.7986342 + ], + [ + 4.1966065, + 49.7986342 + ], + [ + 4.1966065, + 49.7214385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-03T06:44:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 3, + "delete": 1, + "area": 0.0110777913783906, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 12, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 4, + "change_within_50m": 8 + }, + "id": 119254072 + } + }, + { + "id": 119250358, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0956819, + 14.639055 + ], + [ + 121.0956819, + 14.639055 + ], + [ + 121.0956819, + 14.639055 + ], + [ + 121.0956819, + 14.639055 + ], + [ + 121.0956819, + 14.639055 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T23:49:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119250358 + } + }, + { + "id": 119249777, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.1563365, + 46.7970635 + ], + [ + 7.1563365, + 46.7970635 + ], + [ + 7.1563365, + 46.7970635 + ], + [ + 7.1563365, + 46.7970635 + ], + [ + 7.1563365, + 46.7970635 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T23:13:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119249777 + } + }, + { + "id": 119249675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.8442962, + 43.8241425 + ], + [ + 17.0102495, + 43.8241425 + ], + [ + 17.0102495, + 44.0463182 + ], + [ + 16.8442962, + 44.0463182 + ], + [ + 16.8442962, + 43.8241425 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T23:06:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0368707905948106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 13, + "locale": "en", + "imagery": "osm" + }, + "id": 119249675 + } + }, + { + "id": 119249553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 17.0034483, + 43.8276037 + ], + [ + 17.0034483, + 43.8276037 + ], + [ + 17.0034483, + 43.8276037 + ], + [ + 17.0034483, + 43.8276037 + ], + [ + 17.0034483, + 43.8276037 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T22:59:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119249553 + } + }, + { + "id": 119249116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.3259043, + 47.8167695 + ], + [ + -4.3259043, + 47.8167695 + ], + [ + -4.3259043, + 47.8167695 + ], + [ + -4.3259043, + 47.8167695 + ], + [ + -4.3259043, + 47.8167695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T22:32:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite", + "theme": "campersite", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "id": 119249116 + } + }, + { + "id": 119247280, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9890687, + 51.1614999 + ], + [ + 4.9900664, + 51.1614999 + ], + [ + 4.9900664, + 51.1620612 + ], + [ + 4.9890687, + 51.1620612 + ], + [ + 4.9890687, + 51.1614999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T21:01:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.60009009994062e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 119247280 + } + }, + { + "id": 119245874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2295857, + -39.815686 + ], + [ + -73.2280275, + -39.815686 + ], + [ + -73.2280275, + -39.814217 + ], + [ + -73.2295857, + -39.814217 + ], + [ + -73.2295857, + -39.815686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T19:56:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000228899580000785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 10 + }, + "id": 119245874 + } + }, + { + "id": 119241481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2930617, + 47.7921969 + ], + [ + -4.278724, + 47.7921969 + ], + [ + -4.278724, + 47.7960233 + ], + [ + -4.2930617, + 47.7960233 + ], + [ + -4.2930617, + 47.7921969 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T17:13:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000054861775280016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 33, + "locale": "en", + "imagery": "osm" + }, + "id": 119241481 + } + }, + { + "id": 119239322, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7843661, + 49.8610092 + ], + [ + 4.7862401, + 49.8610092 + ], + [ + 4.7862401, + 49.8734081 + ], + [ + 4.7843661, + 49.8734081 + ], + [ + 4.7843661, + 49.8610092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T15:58:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 1, + "delete": 0, + "area": 0.0000232355386000008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 10, + "change_within_25m": 5, + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "id": 119239322 + } + }, + { + "id": 119239087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3484879, + 50.7904179 + ], + [ + 5.3484879, + 50.7904179 + ], + [ + 5.3484879, + 50.7904179 + ], + [ + 5.3484879, + 50.7904179 + ], + [ + 5.3484879, + 50.7904179 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T15:50:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 119239087 + } + }, + { + "id": 119238876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.8027161, + 43.2074565 + ], + [ + -2.8027161, + 43.2074565 + ], + [ + -2.8027161, + 43.2074565 + ], + [ + -2.8027161, + 43.2074565 + ], + [ + -2.8027161, + 43.2074565 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T15:42:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water", + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 119238876 + } + }, + { + "id": 119238736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.2382694, + 38.8977298 + ], + [ + -77.2382694, + 38.8977298 + ], + [ + -77.2382694, + 38.8977298 + ], + [ + -77.2382694, + 38.8977298 + ], + [ + -77.2382694, + 38.8977298 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "geocruizer", + "uid": "1050248", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T15:37:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 119238736 + } + }, + { + "id": 119237714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1755398, + 39.744082 + ], + [ + -0.1615763, + 39.744082 + ], + [ + -0.1615763, + 39.7600285 + ], + [ + -0.1755398, + 39.7600285 + ], + [ + -0.1755398, + 39.744082 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Agustin", + "uid": "30004", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T15:05:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000222668952749976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "move": 1, + "theme": "drinking_water", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "PNOA-Spain-TMS", + "add-image": 1, + "change_over_5000m": 2, + "change_within_100m": 3, + "change_within_5000m": 1, + "move:node/9631507959": "improve_accuracy" + }, + "id": 119237714 + } + }, + { + "id": 119232826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9969494, + 51.5875087 + ], + [ + -2.9881686, + 51.5875087 + ], + [ + -2.9881686, + 51.5896113 + ], + [ + -2.9969494, + 51.5896113 + ], + [ + -2.9969494, + 51.5875087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ZenPhil", + "uid": "10208656", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T12:07:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 32, + "delete": 0, + "area": 0.000018462510080006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets", + "theme": "toilets", + "answer": 48, + "create": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 119232826 + } + }, + { + "id": 119232288, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4414721, + 51.0815267 + ], + [ + 3.4414721, + 51.0815267 + ], + [ + 3.4414721, + 51.0815267 + ], + [ + 3.4414721, + 51.0815267 + ], + [ + 3.4414721, + 51.0815267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T11:51:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 119232288 + } + }, + { + "id": 119230832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8479477, + 50.1510933 + ], + [ + 5.8514352, + 50.1510933 + ], + [ + 5.8514352, + 50.1585152 + ], + [ + 5.8479477, + 50.1585152 + ], + [ + 5.8479477, + 50.1510933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T11:01:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000258838762499922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4, + "change_within_500m": 4 + }, + "id": 119230832 + } + }, + { + "id": 119227026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4403616, + 52.2099574 + ], + [ + 13.4403616, + 52.2099574 + ], + [ + 13.4403616, + 52.2099574 + ], + [ + 13.4403616, + 52.2099574 + ], + [ + 13.4403616, + 52.2099574 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T08:47:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 119227026 + } + }, + { + "id": 119226740, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8978482, + 50.7654811 + ], + [ + 2.8978516, + 50.7654811 + ], + [ + 2.8978516, + 50.7654868 + ], + [ + 2.8978482, + 50.7654868 + ], + [ + 2.8978482, + 50.7654811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T08:35:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.93799999860821e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 119226740 + } + }, + { + "id": 119226064, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8953336, + 51.0877123 + ], + [ + 4.9162307, + 51.0877123 + ], + [ + 4.9162307, + 51.171122 + ], + [ + 4.8953336, + 51.171122 + ], + [ + 4.8953336, + 51.0877123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T08:00:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 126, + "modify": 226, + "delete": 22, + "area": 0.00174302084186994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 215, + "theme": "grb", + "answer": 2, + "delete": 22, + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 34, + "change_over_5000m": 1 + }, + "id": 119226064 + } + }, + { + "id": 119225896, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.7542109, + 43.4169029 + ], + [ + -4.7542109, + 43.4169029 + ], + [ + -4.7542109, + 43.4169029 + ], + [ + -4.7542109, + 43.4169029 + ], + [ + -4.7542109, + 43.4169029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-02T07:50:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 119225896 + } + }, + { + "id": 119224678, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8913261, + 50.759508 + ], + [ + 2.8983872, + 50.759508 + ], + [ + 2.8983872, + 50.765416 + ], + [ + 2.8913261, + 50.765416 + ], + [ + 2.8913261, + 50.759508 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-02T06:39:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0000417169788000365, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 119224678 + } + }, + { + "id": 119218560, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2454005, + 41.4446509 + ], + [ + 2.2454005, + 41.4446509 + ], + [ + 2.2454005, + 41.4446509 + ], + [ + 2.2454005, + 41.4446509 + ], + [ + 2.2454005, + 41.4446509 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807870540", + "osm_id": 8807870540, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-01T21:53:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 1, + "locale": "ca", + "imagery": "HDM_HOT", + "change_within_25m": 1 + }, + "id": 119218560 + } + }, + { + "id": 119216700, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3552569, + 50.8495343 + ], + [ + 4.356956, + 50.8495343 + ], + [ + 4.356956, + 50.8499239 + ], + [ + 4.3552569, + 50.8499239 + ], + [ + 4.3552569, + 50.8495343 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T20:29:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.61969359997395e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119216700 + } + }, + { + "id": 119216390, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3508551, + 50.799146 + ], + [ + 4.3927599, + 50.799146 + ], + [ + 4.3927599, + 50.8659617 + ], + [ + 4.3508551, + 50.8659617 + ], + [ + 4.3508551, + 50.799146 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T20:14:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00279989854535993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 14, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 119216390 + } + }, + { + "id": 119216024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T20:01:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 119216024 + } + }, + { + "id": 119213901, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.502623, + 50.8459638 + ], + [ + 5.5049977, + 50.8459638 + ], + [ + 5.5049977, + 50.8473437 + ], + [ + 5.502623, + 50.8473437 + ], + [ + 5.502623, + 50.8459638 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T18:44:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 298, + "modify": 7, + "delete": 0, + "area": 0.00000327684853000793, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 6, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 119213901 + } + }, + { + "id": 119213892, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T18:44:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119213892 + } + }, + { + "id": 119213891, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T18:44:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119213891 + } + }, + { + "id": 119213840, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5000409, + 50.846222 + ], + [ + 5.502382, + 50.846222 + ], + [ + 5.502382, + 50.8479245 + ], + [ + 5.5000409, + 50.8479245 + ], + [ + 5.5000409, + 50.846222 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T18:42:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 216, + "modify": 0, + "delete": 0, + "area": 0.0000039857227500005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "osm" + }, + "id": 119213840 + } + }, + { + "id": 119210331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3612799, + 50.4143694 + ], + [ + 6.3613404, + 50.4143694 + ], + [ + 6.3613404, + 50.4144631 + ], + [ + 6.3612799, + 50.4144631 + ], + [ + 6.3612799, + 50.4143694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-04-01T16:57:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 5.66884999996401e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 119210331 + } + }, + { + "id": 119204588, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4916222, + 50.8433827 + ], + [ + 5.5009778, + 50.8433827 + ], + [ + 5.5009778, + 50.8493156 + ], + [ + 5.4916222, + 50.8493156 + ], + [ + 5.4916222, + 50.8433827 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T14:20:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1033, + "modify": 23, + "delete": 0, + "area": 0.0000555058392399791, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 20, + "theme": "grb", + "import": 132, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 119204588 + } + }, + { + "id": 119202793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4897326, + 50.8442249 + ], + [ + 5.4996717, + 50.8442249 + ], + [ + 5.4996717, + 50.8519019 + ], + [ + 5.4897326, + 50.8519019 + ], + [ + 5.4897326, + 50.8442249 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T13:29:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 876, + "modify": 42, + "delete": 0, + "area": 0.0000763024707000136, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 36, + "theme": "grb", + "import": 110, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "id": 119202793 + } + }, + { + "id": 119202792, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T13:29:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119202792 + } + }, + { + "id": 119202786, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T13:29:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119202786 + } + }, + { + "id": 119202783, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T13:29:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119202783 + } + }, + { + "id": 119201367, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4884256, + 50.845188 + ], + [ + 5.4944867, + 50.845188 + ], + [ + 5.4944867, + 50.8506173 + ], + [ + 5.4884256, + 50.8506173 + ], + [ + 5.4884256, + 50.845188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:49:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 780, + "modify": 0, + "delete": 0, + "area": 0.0000329075302300188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 80, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201367 + } + }, + { + "id": 119201258, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4901097, + 50.8485132 + ], + [ + 5.4923288, + 50.8485132 + ], + [ + 5.4923288, + 50.8497515 + ], + [ + 5.4901097, + 50.8497515 + ], + [ + 5.4901097, + 50.8485132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:46:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 258, + "modify": 0, + "delete": 0, + "area": 0.00000274791153001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 25, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201258 + } + }, + { + "id": 119201255, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:46:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201255 + } + }, + { + "id": 119201254, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:46:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201254 + } + }, + { + "id": 119201252, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:46:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201252 + } + }, + { + "id": 119201250, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:46:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201250 + } + }, + { + "id": 119201247, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:46:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119201247 + } + }, + { + "id": 119200851, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4885086, + 50.8455812 + ], + [ + 5.493227, + 50.8455812 + ], + [ + 5.493227, + 50.8497403 + ], + [ + 5.4885086, + 50.8497403 + ], + [ + 5.4885086, + 50.8455812 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T12:35:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1170, + "modify": 0, + "delete": 0, + "area": 0.000019624297440011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 136, + "locale": "nl", + "imagery": "osm" + }, + "id": 119200851 + } + }, + { + "id": 119195383, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8288357, + 51.1340284 + ], + [ + 4.8289088, + 51.1340284 + ], + [ + 4.8289088, + 51.1340591 + ], + [ + 4.8288357, + 51.1340591 + ], + [ + 4.8288357, + 51.1340284 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Domein de Schuur - camping", + "uid": "15461684", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T10:14:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 2, + "area": 2.24417000024991e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "deletion:node/9628654220": "verkeerd geselecteerd", + "deletion:node/9628655540": "duplicate" + }, + "id": 119195383 + } + }, + { + "id": 119194336, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4839199, + 50.8467785 + ], + [ + 5.4893729, + 50.8467785 + ], + [ + 5.4893729, + 50.8489175 + ], + [ + 5.4839199, + 50.8489175 + ], + [ + 5.4839199, + 50.8467785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T09:48:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 800, + "modify": 0, + "delete": 0, + "area": 0.0000116639669999985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 91, + "locale": "nl", + "imagery": "osm" + }, + "id": 119194336 + } + }, + { + "id": 119193900, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4791352, + 50.8464167 + ], + [ + 5.4851198, + 50.8464167 + ], + [ + 5.4851198, + 50.8488818 + ], + [ + 5.4791352, + 50.8488818 + ], + [ + 5.4791352, + 50.8464167 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T09:37:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 727, + "modify": 0, + "delete": 0, + "area": 0.0000147526374600111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 88, + "locale": "nl", + "imagery": "osm" + }, + "id": 119193900 + } + }, + { + "id": 119193052, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.478334, + 50.8444206 + ], + [ + 5.4839446, + 50.8444206 + ], + [ + 5.4839446, + 50.8471065 + ], + [ + 5.478334, + 50.8471065 + ], + [ + 5.478334, + 50.8444206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T09:18:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 620, + "modify": 0, + "delete": 0, + "area": 0.0000150695105400164, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 94, + "locale": "nl", + "imagery": "osm" + }, + "id": 119193052 + } + }, + { + "id": 119193048, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T09:18:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 119193048 + } + }, + { + "id": 119192273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4777949, + 50.8421188 + ], + [ + 5.4834746, + 50.8421188 + ], + [ + 5.4834746, + 50.84618 + ], + [ + 5.4777949, + 50.84618 + ], + [ + 5.4777949, + 50.8421188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T08:57:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 464, + "modify": 0, + "delete": 0, + "area": 0.0000230663976399733, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 80, + "locale": "nl", + "imagery": "osm" + }, + "id": 119192273 + } + }, + { + "id": 119191159, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.39488, + 51.0346984 + ], + [ + 3.4073317, + 51.0346984 + ], + [ + 3.4073317, + 51.0477522 + ], + [ + 3.39488, + 51.0477522 + ], + [ + 3.39488, + 51.0346984 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T08:26:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000162542001459927, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sidewalks", + "theme": "sidewalks", + "answer": 38, + "locale": "en", + "imagery": "osm" + }, + "id": 119191159 + } + }, + { + "id": 119191059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3879443, + 51.0363999 + ], + [ + 3.4012289, + 51.0363999 + ], + [ + 3.4012289, + 51.0446882 + ], + [ + 3.3879443, + 51.0446882 + ], + [ + 3.3879443, + 51.0363999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T08:23:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00011010675018005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sidewalks", + "theme": "sidewalks", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "id": 119191059 + } + }, + { + "id": 119188141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4178208, + 50.7966789 + ], + [ + 4.419229, + 50.7966789 + ], + [ + 4.419229, + 50.7980694 + ], + [ + 4.4178208, + 50.7980694 + ], + [ + 4.4178208, + 50.7966789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T06:57:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000019581020999982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 119188141 + } + }, + { + "id": 119188081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4076558, + 50.7952296 + ], + [ + 4.4076558, + 50.7952296 + ], + [ + 4.4076558, + 50.7952296 + ], + [ + 4.4076558, + 50.7952296 + ], + [ + 4.4076558, + 50.7952296 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-04-01T06:55:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 119188081 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-01.json b/Docs/Tools/stats/stats.2022-5-01.json new file mode 100644 index 0000000000..e64746bd7b --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-01.json @@ -0,0 +1,4337 @@ +{ + "features": [ + { + "id": 120438348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6673598, + -33.4410698 + ], + [ + -70.6652543, + -33.4410698 + ], + [ + -70.6652543, + -33.440087 + ], + [ + -70.6673598, + -33.440087 + ], + [ + -70.6673598, + -33.4410698 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:29:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00000206928540000474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 4, + "locale": "es", + "imagery": "osm", + "add-image": 22 + }, + "id": 120438348 + } + }, + { + "id": 120438248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2306751, + 50.7311554 + ], + [ + 4.2306751, + 50.7311554 + ], + [ + 4.2306751, + 50.7311554 + ], + [ + 4.2306751, + 50.7311554 + ], + [ + 4.2306751, + 50.7311554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:23:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120438248 + } + }, + { + "id": 120437961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2434343, + -39.8443795 + ], + [ + -73.2434343, + -39.8443795 + ], + [ + -73.2434343, + -39.8443795 + ], + [ + -73.2434343, + -39.8443795 + ], + [ + -73.2434343, + -39.8443795 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:05:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "id": 120437961 + } + }, + { + "id": 120437894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2363391, + 50.7359919 + ], + [ + 4.2363391, + 50.7359919 + ], + [ + 4.2363391, + 50.7359919 + ], + [ + 4.2363391, + 50.7359919 + ], + [ + 4.2363391, + 50.7359919 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T23:01:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120437894 + } + }, + { + "id": 120437837, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2372774, + 50.7363464 + ], + [ + 4.2375441, + 50.7363464 + ], + [ + 4.2375441, + 50.7364649 + ], + [ + 4.2372774, + 50.7364649 + ], + [ + 4.2372774, + 50.7363464 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T22:57:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.1603949999806e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120437837 + } + }, + { + "id": 120437719, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.2464055, + 48.1720387 + ], + [ + 16.2464055, + 48.1720387 + ], + [ + 16.2464055, + 48.1720387 + ], + [ + 16.2464055, + 48.1720387 + ], + [ + 16.2464055, + 48.1720387 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fdemmer", + "uid": "58402", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T22:49:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120437719 + } + }, + { + "id": 120437536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1008504, + 38.8359848 + ], + [ + 0.1117319, + 38.8359848 + ], + [ + 0.1117319, + 38.8446147 + ], + [ + 0.1008504, + 38.8446147 + ], + [ + 0.1008504, + 38.8359848 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T22:38:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000939062568500273, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 8, + "create": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 2, + "change_within_500m": 2, + "change_within_1000m": 2, + "change_within_5000m": 2 + }, + "id": 120437536 + } + }, + { + "id": 120436845, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6653398, + -33.4406897 + ], + [ + -70.6653371, + -33.4406897 + ], + [ + -70.6653371, + -33.4405987 + ], + [ + -70.6653398, + -33.4405987 + ], + [ + -70.6653398, + -33.4406897 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T22:01:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.45699999631881e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "id": 120436845 + } + }, + { + "id": 120436686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.463826, + 51.2107516 + ], + [ + 4.6327999, + 51.2107516 + ], + [ + 4.6327999, + 51.3016163 + ], + [ + 4.463826, + 51.3016163 + ], + [ + 4.463826, + 51.2107516 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:53:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 29, + "delete": 0, + "area": 0.0153537627313296, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 101, + "create": 20, + "locale": "nl", + "imagery": "osm" + }, + "id": 120436686 + } + }, + { + "id": 120436644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2132048, + 48.6774541 + ], + [ + 9.2266079, + 48.6774541 + ], + [ + 9.2266079, + 48.6835223 + ], + [ + 9.2132048, + 48.6835223 + ], + [ + 9.2132048, + 48.6774541 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T21:51:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000813326914200169, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 4, + "locale": "es", + "imagery": "osm" + }, + "id": 120436644 + } + }, + { + "id": 120436249, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2298265, + 50.7328247 + ], + [ + 4.2428372, + 50.7328247 + ], + [ + 4.2428372, + 50.7450711 + ], + [ + 4.2298265, + 50.7450711 + ], + [ + 4.2298265, + 50.7328247 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:32:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000159334236479944, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120436249 + } + }, + { + "id": 120436236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7031792, + 50.8070678 + ], + [ + 3.3012769, + 50.8070678 + ], + [ + 3.3012769, + 50.9461705 + ], + [ + 2.7031792, + 50.9461705 + ], + [ + 2.7031792, + 50.8070678 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:31:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 26, + "modify": 0, + "delete": 0, + "area": 0.0831970049337913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 11, + "import": 15, + "locale": "nl", + "imagery": "AGIV", + "import:node/-11": "source: https://osm.org/note/3156284", + "import:node/-13": "source: https://osm.org/note/3156315", + "import:node/-14": "source: https://osm.org/note/3156490", + "import:node/-19": "source: https://osm.org/note/3156293", + "import:node/-20": "source: https://osm.org/note/3156286", + "import:node/9707990388": "source: https://osm.org/note/3156422", + "import:node/9707990622": "source: https://osm.org/note/3156323", + "import:node/9707990624": "source: https://osm.org/note/3156540", + "import:node/9707991563": "source: https://osm.org/note/3156272", + "import:node/9707992409": "source: https://osm.org/note/3156565", + "import:node/9708004477": "source: https://osm.org/note/3156577", + "import:node/9708028315": "source: https://osm.org/note/3156372", + "import:node/9708037355": "source: https://osm.org/note/3156566", + "import:node/9708038737": "source: https://osm.org/note/3156419", + "import:node/9708062212": "source: https://osm.org/note/3156440" + }, + "id": 120436236 + } + }, + { + "id": 120435857, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.90446, + 50.9400964 + ], + [ + 4.9118485, + 50.9400964 + ], + [ + 4.9118485, + 50.9435598 + ], + [ + 4.90446, + 50.9435598 + ], + [ + 4.90446, + 50.9400964 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T21:15:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 999, + "modify": 41, + "delete": 0, + "area": 0.000025589330900006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 40, + "theme": "grb", + "answer": 3, + "import": 128, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "id": 120435857 + } + }, + { + "id": 120435697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2360756, + 50.7420359 + ], + [ + 4.2360756, + 50.7420359 + ], + [ + 4.2360756, + 50.7420359 + ], + [ + 4.2360756, + 50.7420359 + ], + [ + 4.2360756, + 50.7420359 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:09:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 120435697 + } + }, + { + "id": 120435581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2360543, + 50.7420493 + ], + [ + 4.2360543, + 50.7420493 + ], + [ + 4.2360543, + 50.7420493 + ], + [ + 4.2360543, + 50.7420493 + ], + [ + 4.2360543, + 50.7420493 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T21:04:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120435581 + } + }, + { + "id": 120434675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T20:29:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 120434675 + } + }, + { + "id": 120434623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2432939, + -39.8456976 + ], + [ + -73.2406114, + -39.8456976 + ], + [ + -73.2406114, + -39.8440261 + ], + [ + -73.2432939, + -39.8440261 + ], + [ + -73.2432939, + -39.8456976 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T20:27:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000448379874998746, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 9 + }, + "id": 120434623 + } + }, + { + "id": 120431749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7013349, + 50.8236765 + ], + [ + 4.7013349, + 50.8236765 + ], + [ + 4.7013349, + 50.8236765 + ], + [ + 4.7013349, + 50.8236765 + ], + [ + 4.7013349, + 50.8236765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T18:32:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9707636079": "source: https://osm.org/note/3091110" + }, + "id": 120431749 + } + }, + { + "id": 120431345, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6452299, + 47.3085121 + ], + [ + 9.6452299, + 47.3085121 + ], + [ + 9.6452299, + 47.3085121 + ], + [ + 9.6452299, + 47.3085121 + ], + [ + 9.6452299, + 47.3085121 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T18:20:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120431345 + } + }, + { + "id": 120430720, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4270633, + 51.2075569 + ], + [ + 4.4270633, + 51.2075569 + ], + [ + 4.4270633, + 51.2075569 + ], + [ + 4.4270633, + 51.2075569 + ], + [ + 4.4270633, + 51.2075569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:59:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120430720 + } + }, + { + "id": 120429835, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0296295, + 53.5984078 + ], + [ + 10.0342637, + 53.5984078 + ], + [ + 10.0342637, + 53.605418 + ], + [ + 10.0296295, + 53.605418 + ], + [ + 10.0296295, + 53.5984078 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "G4rden3r", + "uid": "12091530", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:32:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000324866688400152, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "id": 120429835 + } + }, + { + "id": 120429660, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2385025, + 48.6809452 + ], + [ + 9.2385025, + 48.6809452 + ], + [ + 9.2385025, + 48.6809452 + ], + [ + 9.2385025, + 48.6809452 + ], + [ + 9.2385025, + 48.6809452 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:27:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 120429660 + } + }, + { + "id": 120429589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2410774, + -39.8449373 + ], + [ + -73.2405418, + -39.8449373 + ], + [ + -73.2405418, + -39.8442109 + ], + [ + -73.2410774, + -39.8442109 + ], + [ + -73.2410774, + -39.8449373 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T17:25:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.89059839993071e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "Mapbox", + "add-image": 9, + "change_within_50m": 2, + "change_within_100m": 8 + }, + "id": 120429589 + } + }, + { + "id": 120429453, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2462667, + 50.7381899 + ], + [ + 4.2469314, + 50.7381899 + ], + [ + 4.2469314, + 50.7386614 + ], + [ + 4.2462667, + 50.7386614 + ], + [ + 4.2462667, + 50.7381899 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:21:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.13406049997759e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120429453 + } + }, + { + "id": 120428848, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "troNpo", + "uid": "12221867", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T17:03:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 120428848 + } + }, + { + "id": 120427592, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2357063, + 48.6728272 + ], + [ + 9.2357063, + 48.6728272 + ], + [ + 9.2357063, + 48.6728272 + ], + [ + 9.2357063, + 48.6728272 + ], + [ + 9.2357063, + 48.6728272 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T16:31:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120427592 + } + }, + { + "id": 120425940, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5707875, + 53.0199278 + ], + [ + 6.5707875, + 53.0199278 + ], + [ + 6.5707875, + 53.0199278 + ], + [ + 6.5707875, + 53.0199278 + ], + [ + 6.5707875, + 53.0199278 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T15:48:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_50m": 3 + }, + "id": 120425940 + } + }, + { + "id": 120425621, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.238187, + 48.6735524 + ], + [ + 9.2384746, + 48.6735524 + ], + [ + 9.2384746, + 48.6737084 + ], + [ + 9.238187, + 48.6737084 + ], + [ + 9.238187, + 48.6735524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-135256863", + "osm_id": 135256863, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T15:40:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.48656000011709e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/135256863": "Jetzt Baustelle" + }, + "id": 120425621 + } + }, + { + "id": 120425539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2091881, + 51.1878525 + ], + [ + 3.2091881, + 51.1878525 + ], + [ + 3.2091881, + 51.1878525 + ], + [ + 3.2091881, + 51.1878525 + ], + [ + 3.2091881, + 51.1878525 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T15:38:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120425539 + } + }, + { + "id": 120424028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2385793, + 48.6738891 + ], + [ + 9.2387138, + 48.6738891 + ], + [ + 9.2387138, + 48.6739392 + ], + [ + 9.2385793, + 48.6739392 + ], + [ + 9.2385793, + 48.6738891 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T14:59:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.73845000036561e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "move": 1, + "theme": "aed", + "answer": 5, + "locale": "de", + "imagery": "osm", + "move:node/4904755373": "improve_accuracy" + }, + "id": 120424028 + } + }, + { + "id": 120422433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4442755, + 50.8560931 + ], + [ + 4.4442755, + 50.8560931 + ], + [ + 4.4442755, + 50.8560931 + ], + [ + 4.4442755, + 50.8560931 + ], + [ + 4.4442755, + 50.8560931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T14:15:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/9707232815": "testing point" + }, + "id": 120422433 + } + }, + { + "id": 120422325, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2386327, + 48.6738431 + ], + [ + 9.2398428, + 48.6738431 + ], + [ + 9.2398428, + 48.6762441 + ], + [ + 9.2386327, + 48.6762441 + ], + [ + 9.2386327, + 48.6738431 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T14:12:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000290545009999822, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 7, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 120422325 + } + }, + { + "id": 120421867, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2392099, + 48.6758102 + ], + [ + 9.2398089, + 48.6758102 + ], + [ + 9.2398089, + 48.6758835 + ], + [ + 9.2392099, + 48.6758835 + ], + [ + 9.2392099, + 48.6758102 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T14:02:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.39066999980561e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120421867 + } + }, + { + "id": 120421449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2378186, + 48.6735655 + ], + [ + 9.2395519, + 48.6735655 + ], + [ + 9.2395519, + 48.6762878 + ], + [ + 9.2378186, + 48.6762878 + ], + [ + 9.2378186, + 48.6735655 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:51:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.00000471856258999049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 2, + "theme": "benches", + "answer": 59, + "locale": "de", + "imagery": "osm", + "move:node/8025925983": "improve_accuracy", + "move:node/8025926154": "improve_accuracy" + }, + "id": 120421449 + } + }, + { + "id": 120420872, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0111765, + 51.0989975 + ], + [ + 5.0318158, + 51.0989975 + ], + [ + 5.0318158, + 51.1053475 + ], + [ + 5.0111765, + 51.1053475 + ], + [ + 5.0111765, + 51.0989975 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T13:35:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000131059554999951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 15, + "change_within_50m": 1, + "move:node/9677061317": "improve_accuracy" + }, + "id": 120420872 + } + }, + { + "id": 120420748, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2378941, + 48.6774924 + ], + [ + 9.2386222, + 48.6774924 + ], + [ + 9.2386222, + 48.6778077 + ], + [ + 9.2378941, + 48.6778077 + ], + [ + 9.2378941, + 48.6774924 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:31:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.29569930002891e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 120420748 + } + }, + { + "id": 120420672, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.238722, + 48.6775696 + ], + [ + 9.238722, + 48.6775696 + ], + [ + 9.238722, + 48.6775696 + ], + [ + 9.238722, + 48.6775696 + ], + [ + 9.238722, + 48.6775696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:29:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120420672 + } + }, + { + "id": 120420090, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2419503, + 48.6810474 + ], + [ + 9.2419503, + 48.6810474 + ], + [ + 9.2419503, + 48.6810474 + ], + [ + 9.2419503, + 48.6810474 + ], + [ + 9.2419503, + 48.6810474 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T13:14:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 120420090 + } + }, + { + "id": 120419624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2452814, + 50.7431813 + ], + [ + 4.2452814, + 50.7431813 + ], + [ + 4.2452814, + 50.7431813 + ], + [ + 4.2452814, + 50.7431813 + ], + [ + 4.2452814, + 50.7431813 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T13:04:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 8 + }, + "id": 120419624 + } + }, + { + "id": 120419354, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5682043, + 50.8657848 + ], + [ + 4.5816479, + 50.8657848 + ], + [ + 4.5816479, + 50.883099 + ], + [ + 4.5682043, + 50.883099 + ], + [ + 4.5682043, + 50.8657848 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T12:57:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.000232765179120025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_50m": 9, + "import:node/9706977587": "source: https://osm.org/note/3090274" + }, + "id": 120419354 + } + }, + { + "id": 120419300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2422658, + 48.6809251 + ], + [ + 9.2422658, + 48.6809251 + ], + [ + 9.2422658, + 48.6809251 + ], + [ + 9.2422658, + 48.6809251 + ], + [ + 9.2422658, + 48.6809251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:56:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 120419300 + } + }, + { + "id": 120419175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2385625, + 48.6810127 + ], + [ + 9.2385625, + 48.6810127 + ], + [ + 9.2385625, + 48.6810127 + ], + [ + 9.2385625, + 48.6810127 + ], + [ + 9.2385625, + 48.6810127 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:53:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 120419175 + } + }, + { + "id": 120418946, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2420343, + 48.6812409 + ], + [ + 9.2423052, + 48.6812409 + ], + [ + 9.2423052, + 48.6817007 + ], + [ + 9.2420343, + 48.6817007 + ], + [ + 9.2420343, + 48.6812409 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:47:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.2455982000056e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "id": 120418946 + } + }, + { + "id": 120418641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.244389, + 48.9715622 + ], + [ + 2.2840539, + 48.9715622 + ], + [ + 2.2840539, + 48.9942507 + ], + [ + 2.244389, + 48.9942507 + ], + [ + 2.244389, + 48.9715622 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:40:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.00089993708365004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 129, + "locale": "fr", + "imagery": "osm" + }, + "id": 120418641 + } + }, + { + "id": 120418326, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2385025, + 48.6809245 + ], + [ + 9.2407485, + 48.6809245 + ], + [ + 9.2407485, + 48.6813051 + ], + [ + 9.2385025, + 48.6813051 + ], + [ + 9.2385025, + 48.6809245 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:31:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.54827599999892e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 3 + }, + "id": 120418326 + } + }, + { + "id": 120418178, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0834258, + 51.043625 + ], + [ + 4.0834258, + 51.043625 + ], + [ + 4.0834258, + 51.043625 + ], + [ + 4.0834258, + 51.043625 + ], + [ + 4.0834258, + 51.043625 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T12:27:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9706914055": "source: https://osm.org/note/3099195" + }, + "id": 120418178 + } + }, + { + "id": 120417910, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0946715, + 50.943853 + ], + [ + 3.0979674, + 50.943853 + ], + [ + 3.0979674, + 50.9460748 + ], + [ + 3.0946715, + 50.9460748 + ], + [ + 3.0946715, + 50.943853 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T12:19:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000732283062000289, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 120417910 + } + }, + { + "id": 120417902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4779751, + 51.2488613 + ], + [ + 4.5875614, + 51.2488613 + ], + [ + 4.5875614, + 51.3318286 + ], + [ + 4.4779751, + 51.3318286 + ], + [ + 4.4779751, + 51.2488613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T12:19:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00909207942799001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_5000m": 2 + }, + "id": 120417902 + } + }, + { + "id": 120416758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9874303, + 50.7672638 + ], + [ + 3.3955029, + 50.7672638 + ], + [ + 3.3955029, + 50.8700958 + ], + [ + 2.9874303, + 50.8700958 + ], + [ + 2.9874303, + 50.7672638 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T11:46:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0419629216031997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 2, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "import:node/9706889984": "source: https://osm.org/note/3156502", + "import:node/9706920630": "source: https://osm.org/note/3156340" + }, + "id": 120416758 + } + }, + { + "id": 120416741, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8980468, + 50.9390204 + ], + [ + 4.9044069, + 50.9390204 + ], + [ + 4.9044069, + 50.9443289 + ], + [ + 4.8980468, + 50.9443289 + ], + [ + 4.8980468, + 50.9390204 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T11:46:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 837, + "modify": 93, + "delete": 4, + "area": 0.0000337625908500299, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 80, + "theme": "grb", + "delete": 4, + "import": 87, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 120416741 + } + }, + { + "id": 120415669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9432985, + 50.7558599 + ], + [ + 3.9433777, + 50.7558599 + ], + [ + 3.9433777, + 50.7558625 + ], + [ + 3.9432985, + 50.7558625 + ], + [ + 3.9432985, + 50.7558599 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T11:17:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.0592000015555e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "move:node/9706809949": "improve_accuracy" + }, + "id": 120415669 + } + }, + { + "id": 120413938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2122983, + 48.6828035 + ], + [ + 9.2122983, + 48.6828035 + ], + [ + 9.2122983, + 48.6828035 + ], + [ + 9.2122983, + 48.6828035 + ], + [ + 9.2122983, + 48.6828035 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T10:23:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120413938 + } + }, + { + "id": 120413920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.4600413, + 47.6617312 + ], + [ + -2.4492391, + 47.6617312 + ], + [ + -2.4492391, + 47.6789309 + ], + [ + -2.4600413, + 47.6789309 + ], + [ + -2.4600413, + 47.6617312 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H@mlet", + "uid": "691314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T10:23:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000185794599339991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7 + }, + "id": 120413920 + } + }, + { + "id": 120411586, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7176882, + 50.9577485 + ], + [ + 4.0057888, + 50.9577485 + ], + [ + 4.0057888, + 51.037658 + ], + [ + 3.7176882, + 51.037658 + ], + [ + 3.7176882, + 50.9577485 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T09:04:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 71, + "delete": 0, + "area": 0.0230219748956999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 99, + "create": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 24 + }, + "id": 120411586 + } + }, + { + "id": 120411425, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7353376, + 51.1719823 + ], + [ + 4.7408563, + 51.1719823 + ], + [ + 4.7408563, + 51.1772328 + ], + [ + 4.7353376, + 51.1772328 + ], + [ + 4.7353376, + 51.1719823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T08:57:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 940, + "modify": 208, + "delete": 0, + "area": 0.0000289759343499727, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 170, + "theme": "grb", + "import": 107, + "locale": "nl", + "imagery": "osm", + "conflation": 76 + }, + "id": 120411425 + } + }, + { + "id": 120410928, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2122983, + 48.6761841 + ], + [ + 9.239748, + 48.6761841 + ], + [ + 9.239748, + 48.6834244 + ], + [ + 9.2122983, + 48.6834244 + ], + [ + 9.2122983, + 48.6761841 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T08:39:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000198744062909984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 27, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 120410928 + } + }, + { + "id": 120410291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4080583, + 50.7952135 + ], + [ + 4.4254536, + 50.7952135 + ], + [ + 4.4254536, + 50.8437794 + ], + [ + 4.4080583, + 50.8437794 + ], + [ + 4.4080583, + 50.7952135 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T08:16:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000844818400269976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "id": 120410291 + } + }, + { + "id": 120409983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7357989, + 51.1748172 + ], + [ + 4.7422808, + 51.1748172 + ], + [ + 4.7422808, + 51.1778473 + ], + [ + 4.7357989, + 51.1778473 + ], + [ + 4.7357989, + 51.1748172 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T08:04:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 794, + "modify": 308, + "delete": 0, + "area": 0.0000196408051900234, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 253, + "theme": "grb", + "answer": 1, + "import": 90, + "locale": "nl", + "imagery": "osm", + "conflation": 108 + }, + "id": 120409983 + } + }, + { + "id": 120409507, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.012859, + 50.9765188 + ], + [ + 3.0129556, + 50.9765188 + ], + [ + 3.0129556, + 50.9765842 + ], + [ + 3.012859, + 50.9765842 + ], + [ + 3.012859, + 50.9765188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T07:49:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.3176399996992e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9706561948": "source: https://osm.org/note/3156264" + }, + "id": 120409507 + } + }, + { + "id": 120408533, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2331038, + 50.7309361 + ], + [ + 4.2433405, + 50.7309361 + ], + [ + 4.2433405, + 50.7339554 + ], + [ + 4.2331038, + 50.7339554 + ], + [ + 4.2331038, + 50.7309361 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T07:09:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000309076683099827, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 12, + "create": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 14 + }, + "id": 120408533 + } + }, + { + "id": 120408040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2055036, + 48.6563703 + ], + [ + 9.2055036, + 48.6563703 + ], + [ + 9.2055036, + 48.6563703 + ], + [ + 9.2055036, + 48.6563703 + ], + [ + 9.2055036, + 48.6563703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T06:47:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120408040 + } + }, + { + "id": 120406971, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1909126, + 50.8622147 + ], + [ + 5.2039267, + 50.8622147 + ], + [ + 5.2039267, + 50.8687037 + ], + [ + 5.1909126, + 50.8687037 + ], + [ + 5.1909126, + 50.8622147 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T05:54:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 747, + "modify": 501, + "delete": 3, + "area": 0.0000844484948999354, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 417, + "theme": "grb", + "answer": 24, + "delete": 3, + "import": 96, + "locale": "nl", + "imagery": "AGIV", + "conflation": 142 + }, + "id": 120406971 + } + }, + { + "id": 120404611, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4171031, + 50.7981103 + ], + [ + 4.4171031, + 50.7981103 + ], + [ + 4.4171031, + 50.7981103 + ], + [ + 4.4171031, + 50.7981103 + ], + [ + 4.4171031, + 50.7981103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T03:02:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 5 + }, + "id": 120404611 + } + }, + { + "id": 120404558, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4167801, + 50.7982234 + ], + [ + 4.4168372, + 50.7982234 + ], + [ + 4.4168372, + 50.7982311 + ], + [ + 4.4167801, + 50.7982311 + ], + [ + 4.4167801, + 50.7982234 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-01T02:57:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.39670000264506e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "move": 1, + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_1000m": 6, + "move:node/3308451568": "improve_accuracy" + }, + "id": 120404558 + } + }, + { + "id": 120404239, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6659081, + -33.4407675 + ], + [ + -70.6659081, + -33.4407675 + ], + [ + -70.6659081, + -33.4407675 + ], + [ + -70.6659081, + -33.4407675 + ], + [ + -70.6659081, + -33.4407675 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T02:26:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT" + }, + "id": 120404239 + } + }, + { + "id": 120403766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5205387, + 51.2270719 + ], + [ + 4.5205387, + 51.2270719 + ], + [ + 4.5205387, + 51.2270719 + ], + [ + 4.5205387, + 51.2270719 + ], + [ + 4.5205387, + 51.2270719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-01T01:36:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120403766 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-02.json b/Docs/Tools/stats/stats.2022-5-02.json new file mode 100644 index 0000000000..3b2d122d97 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-02.json @@ -0,0 +1,4366 @@ +{ + "features": [ + { + "id": 120478509, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3256202, + 50.7789661 + ], + [ + 4.3299893, + 50.7789661 + ], + [ + 4.3299893, + 50.787137 + ], + [ + 4.3256202, + 50.787137 + ], + [ + 4.3256202, + 50.7789661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:55:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000356994791900132, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120478509 + } + }, + { + "id": 120478392, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3298297, + 50.7875223 + ], + [ + 4.3298297, + 50.7875223 + ], + [ + 4.3298297, + 50.7875223 + ], + [ + 4.3298297, + 50.7875223 + ], + [ + 4.3298297, + 50.7875223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:52:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120478392 + } + }, + { + "id": 120478345, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5313747, + 48.0608649 + ], + [ + 8.5641918, + 48.0608649 + ], + [ + 8.5641918, + 48.0636013 + ], + [ + 8.5313747, + 48.0636013 + ], + [ + 8.5313747, + 48.0608649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobim91", + "uid": "3233303", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:51:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000898007124401094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "id": 120478345 + } + }, + { + "id": 120478059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3255998, + 50.7786471 + ], + [ + 4.3300597, + 50.7786471 + ], + [ + 4.3300597, + 50.787856 + ], + [ + 4.3255998, + 50.787856 + ], + [ + 4.3255998, + 50.7786471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:44:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000410707731099845, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 7, + "create": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 120478059 + } + }, + { + "id": 120477903, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3294458, + 50.7863791 + ], + [ + 4.3298322, + 50.7863791 + ], + [ + 4.3298322, + 50.787422 + ], + [ + 4.3294458, + 50.787422 + ], + [ + 4.3294458, + 50.7863791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:40:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 4.02976560000636e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120477903 + } + }, + { + "id": 120477868, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0107477, + 51.1028928 + ], + [ + 5.029456, + 51.1028928 + ], + [ + 5.029456, + 51.1084592 + ], + [ + 5.0107477, + 51.1084592 + ], + [ + 5.0107477, + 51.1028928 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T20:38:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 68, + "modify": 61, + "delete": 0, + "area": 0.000104137881119988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 50, + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "id": 120477868 + } + }, + { + "id": 120477782, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0307002, + 51.1028164 + ], + [ + 5.0310269, + 51.1028164 + ], + [ + 5.0310269, + 51.1029209 + ], + [ + 5.0307002, + 51.1029209 + ], + [ + 5.0307002, + 51.1028164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:35:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 3.41401499996491e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 120477782 + } + }, + { + "id": 120477639, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0143203, + 51.079469 + ], + [ + 5.0302621, + 51.079469 + ], + [ + 5.0302621, + 51.1047995 + ], + [ + 5.0143203, + 51.1047995 + ], + [ + 5.0143203, + 51.079469 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-135989691", + "name": "Pastorie", + "osm_id": 135989691, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "building": "presbytery" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T20:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 146, + "delete": 1, + "area": 0.000403813764899934, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 130, + "theme": "grb", + "delete": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 32 + }, + "id": 120477639 + } + }, + { + "id": 120477439, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.8474551, + 44.0417584 + ], + [ + 16.8474551, + 44.0417584 + ], + [ + 16.8474551, + 44.0417584 + ], + [ + 16.8474551, + 44.0417584 + ], + [ + 16.8474551, + 44.0417584 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivanż", + "uid": "511916", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:23:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120477439 + } + }, + { + "id": 120477312, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2434987, + 48.9431543 + ], + [ + 2.2919109, + 48.9431543 + ], + [ + 2.2919109, + 48.9766646 + ], + [ + 2.2434987, + 48.9766646 + ], + [ + 2.2434987, + 48.9431543 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-70182559", + "name": "Groupe Scolaire Pasteur", + "osm_id": 70182559, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "landuse": "education" + } + } + ], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:20:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 115, + "delete": 0, + "area": 0.00162230734565981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 154, + "locale": "fr", + "imagery": "osm" + }, + "id": 120477312 + } + }, + { + "id": 120476975, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.001541, + 50.9425233 + ], + [ + 7.0463188, + 50.9425233 + ], + [ + 7.0463188, + 50.9670325 + ], + [ + 7.001541, + 50.9670325 + ], + [ + 7.001541, + 50.9425233 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rubecula", + "uid": "9278757", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T20:10:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0010974680557602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 11, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 120476975 + } + }, + { + "id": 120476241, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2156856, + 48.6729882 + ], + [ + 9.21575, + 48.6729882 + ], + [ + 9.21575, + 48.6730357 + ], + [ + 9.2156856, + 48.6730357 + ], + [ + 9.2156856, + 48.6729882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T19:48:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05900000002773e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 1, + "locale": "es", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 120476241 + } + }, + { + "id": 120475916, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.238405, + 50.739197 + ], + [ + 4.238405, + 50.739197 + ], + [ + 4.238405, + 50.739197 + ], + [ + 4.238405, + 50.739197 + ], + [ + 4.238405, + 50.739197 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T19:37:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 120475916 + } + }, + { + "id": 120475791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2384712, + 50.7359349 + ], + [ + 4.2405459, + 50.7359349 + ], + [ + 4.2405459, + 50.7392796 + ], + [ + 4.2384712, + 50.7392796 + ], + [ + 4.2384712, + 50.7359349 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T19:34:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000693924909001261, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120475791 + } + }, + { + "id": 120475680, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2396372, + 50.7347273 + ], + [ + 4.2396372, + 50.7347273 + ], + [ + 4.2396372, + 50.7347273 + ], + [ + 4.2396372, + 50.7347273 + ], + [ + 4.2396372, + 50.7347273 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T19:30:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120475680 + } + }, + { + "id": 120474378, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0403236, + 51.1091326 + ], + [ + 5.0403236, + 51.1091326 + ], + [ + 5.0403236, + 51.1091326 + ], + [ + 5.0403236, + 51.1091326 + ], + [ + 5.0403236, + 51.1091326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T18:49:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 120474378 + } + }, + { + "id": 120474342, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5122688, + 51.3115194 + ], + [ + 4.5122688, + 51.3115194 + ], + [ + 4.5122688, + 51.3115194 + ], + [ + 4.5122688, + 51.3115194 + ], + [ + 4.5122688, + 51.3115194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T18:48:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120474342 + } + }, + { + "id": 120473564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1952284, + 51.0611584 + ], + [ + 4.221328, + 51.0611584 + ], + [ + 4.221328, + 51.125822 + ], + [ + 4.1952284, + 51.125822 + ], + [ + 4.1952284, + 51.0611584 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T18:25:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 2, + "area": 0.00168769409456003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "change_over_5000m": 4, + "deletion:node/9709108800": "duplicate", + "deletion:node/9709265935": "duplicate" + }, + "id": 120473564 + } + }, + { + "id": 120472653, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2171282, + 51.1939797 + ], + [ + 3.2171282, + 51.1939797 + ], + [ + 3.2171282, + 51.1939797 + ], + [ + 3.2171282, + 51.1939797 + ], + [ + 3.2171282, + 51.1939797 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T18:02:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 120472653 + } + }, + { + "id": 120471685, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2291806, + 50.7466404 + ], + [ + 4.2291806, + 50.7466404 + ], + [ + 4.2291806, + 50.7466404 + ], + [ + 4.2291806, + 50.7466404 + ], + [ + 4.2291806, + 50.7466404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T17:34:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120471685 + } + }, + { + "id": 120471039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2345466, + 50.7328247 + ], + [ + 4.2372476, + 50.7328247 + ], + [ + 4.2372476, + 50.7356502 + ], + [ + 4.2345466, + 50.7356502 + ], + [ + 4.2345466, + 50.7328247 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T17:14:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000763167550000058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120471039 + } + }, + { + "id": 120470296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.223733, + 48.6768307 + ], + [ + 9.223733, + 48.6768307 + ], + [ + 9.223733, + 48.6768307 + ], + [ + 9.223733, + 48.6768307 + ], + [ + 9.223733, + 48.6768307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T16:55:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120470296 + } + }, + { + "id": 120468833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2175514, + 48.6765426 + ], + [ + 9.2175514, + 48.6765426 + ], + [ + 9.2175514, + 48.6765426 + ], + [ + 9.2175514, + 48.6765426 + ], + [ + 9.2175514, + 48.6765426 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T16:19:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 120468833 + } + }, + { + "id": 120468255, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2169458, + 48.6758801 + ], + [ + 9.2171939, + 48.6758801 + ], + [ + 9.2171939, + 48.6765968 + ], + [ + 9.2169458, + 48.6765968 + ], + [ + 9.2169458, + 48.6758801 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T16:07:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.77813269999755e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 3 + }, + "id": 120468255 + } + }, + { + "id": 120467836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2191086, + 48.6731093 + ], + [ + 9.221129, + 48.6731093 + ], + [ + 9.221129, + 48.67611 + ], + [ + 9.2191086, + 48.67611 + ], + [ + 9.2191086, + 48.6731093 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T15:58:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000606261428000017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_100m": 2 + }, + "id": 120467836 + } + }, + { + "id": 120467216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.23891, + 50.7334017 + ], + [ + 4.23891, + 50.7334017 + ], + [ + 4.23891, + 50.7334017 + ], + [ + 4.23891, + 50.7334017 + ], + [ + 4.23891, + 50.7334017 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9709464531", + "name": "Veronique’s Gourmet Huisje", + "osm_id": 9709464531, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "shop": "Gourmet store" + } + } + ], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T15:46:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120467216 + } + }, + { + "id": 120466835, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.239778, + 50.7367458 + ], + [ + 4.239778, + 50.7367458 + ], + [ + 4.239778, + 50.7367458 + ], + [ + 4.239778, + 50.7367458 + ], + [ + 4.239778, + 50.7367458 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T15:38:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120466835 + } + }, + { + "id": 120466733, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2157373, + 48.6728021 + ], + [ + 9.2159175, + 48.6728021 + ], + [ + 9.2159175, + 48.673011 + ], + [ + 9.2157373, + 48.673011 + ], + [ + 9.2157373, + 48.6728021 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T15:36:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.76437800005392e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "es", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120466733 + } + }, + { + "id": 120463498, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2168093, + 48.6724061 + ], + [ + 9.2168093, + 48.6724061 + ], + [ + 9.2168093, + 48.6724061 + ], + [ + 9.2168093, + 48.6724061 + ], + [ + 9.2168093, + 48.6724061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T14:15:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120463498 + } + }, + { + "id": 120463444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2351066, + 50.7339769 + ], + [ + 4.2389209, + 50.7339769 + ], + [ + 4.2389209, + 50.7373888 + ], + [ + 4.2351066, + 50.7373888 + ], + [ + 4.2351066, + 50.7339769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T14:13:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000130140101699858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 9, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 10 + }, + "id": 120463444 + } + }, + { + "id": 120462015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2236792, + 48.6737297 + ], + [ + 9.2243846, + 48.6737297 + ], + [ + 9.2243846, + 48.6738756 + ], + [ + 9.2236792, + 48.6738756 + ], + [ + 9.2236792, + 48.6737297 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T13:39:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.02917859999945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 8 + }, + "id": 120462015 + } + }, + { + "id": 120460538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3260735, + 43.361255 + ], + [ + 5.3260735, + 43.361255 + ], + [ + 5.3260735, + 43.361255 + ], + [ + 5.3260735, + 43.361255 + ], + [ + 5.3260735, + 43.361255 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "croustille", + "uid": "15455805", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T13:00:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120460538 + } + }, + { + "id": 120460119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8524032, + 43.3686043 + ], + [ + -3.8524032, + 43.3686043 + ], + [ + -3.8524032, + 43.3686043 + ], + [ + -3.8524032, + 43.3686043 + ], + [ + -3.8524032, + 43.3686043 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:48:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 120460119 + } + }, + { + "id": 120459805, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2098638, + 51.158909 + ], + [ + 5.2098638, + 51.158909 + ], + [ + 5.2098638, + 51.158909 + ], + [ + 5.2098638, + 51.158909 + ], + [ + 5.2098638, + 51.158909 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "syerval", + "uid": "15398849", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T12:40:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120459805 + } + }, + { + "id": 120459600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2144573, + 48.6692571 + ], + [ + 9.2282797, + 48.6692571 + ], + [ + 9.2282797, + 48.6766509 + ], + [ + 9.2144573, + 48.6766509 + ], + [ + 9.2144573, + 48.6692571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:35:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.000102200061119942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 113, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 114 + }, + "id": 120459600 + } + }, + { + "id": 120459240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1890771, + 51.060159 + ], + [ + 4.221356, + 51.060159 + ], + [ + 4.221356, + 51.126293 + ], + [ + 4.1890771, + 51.126293 + ], + [ + 4.1890771, + 51.060159 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:27:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 16, + "delete": 0, + "area": 0.00213473277259992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 23, + "create": 3, + "import": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 6, + "change_within_25m": 25, + "change_within_50m": 1, + "change_within_100m": 2, + "move:node/9709265935": "improve_accuracy", + "import:node/9709101155": "source: https://osm.org/note/3143418", + "import:node/9709108800": "source: https://osm.org/note/3143418", + "import:node/9709265935": "source: https://osm.org/note/3161446" + }, + "id": 120459240 + } + }, + { + "id": 120459030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2265176, + 48.6774975 + ], + [ + 9.2266079, + 48.6774975 + ], + [ + 9.2266079, + 48.677591 + ], + [ + 9.2265176, + 48.677591 + ], + [ + 9.2265176, + 48.6774975 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:21:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.44304999986603e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 4, + "locale": "es", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 120459030 + } + }, + { + "id": 120458904, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2272324, + 48.6761841 + ], + [ + 9.2276912, + 48.6761841 + ], + [ + 9.2276912, + 48.6776754 + ], + [ + 9.2272324, + 48.6776754 + ], + [ + 9.2272324, + 48.6761841 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:18:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.8420843999982e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 120458904 + } + }, + { + "id": 120458772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6784055, + 51.2951339 + ], + [ + 4.7474141, + 51.2951339 + ], + [ + 4.7474141, + 51.3112784 + ], + [ + 4.6784055, + 51.3112784 + ], + [ + 4.6784055, + 51.2951339 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T12:15:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 1, + "delete": 0, + "area": 0.00111410934269971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 120458772 + } + }, + { + "id": 120458698, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7403907, + 51.3047643 + ], + [ + 4.7403907, + 51.3047643 + ], + [ + 4.7403907, + 51.3047643 + ], + [ + 4.7403907, + 51.3047643 + ], + [ + 4.7403907, + 51.3047643 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T12:13:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 120458698 + } + }, + { + "id": 120458298, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2148703, + 48.6698561 + ], + [ + 9.2283665, + 48.6698561 + ], + [ + 9.2283665, + 48.6805507 + ], + [ + 9.2148703, + 48.6805507 + ], + [ + 9.2148703, + 48.6698561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T12:04:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.000144336460520016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 30, + "locale": "de", + "imagery": "osm", + "add-image": 10, + "change_within_25m": 40 + }, + "id": 120458298 + } + }, + { + "id": 120457061, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2170368, + 48.6768061 + ], + [ + 9.2171265, + 48.6768061 + ], + [ + 9.2171265, + 48.6768747 + ], + [ + 9.2170368, + 48.6768747 + ], + [ + 9.2170368, + 48.6768061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T11:35:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.15341999977948e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 120457061 + } + }, + { + "id": 120456588, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7286941, + 51.2958291 + ], + [ + 4.7528348, + 51.2958291 + ], + [ + 4.7528348, + 51.3101643 + ], + [ + 4.7286941, + 51.3101643 + ], + [ + 4.7286941, + 51.2958291 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T11:23:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 3, + "delete": 1, + "area": 0.00034606176263994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9709091288": "testing point" + }, + "id": 120456588 + } + }, + { + "id": 120455542, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.174613, + 48.6904902 + ], + [ + 9.1923304, + 48.6904902 + ], + [ + 9.1923304, + 48.6947207 + ], + [ + 9.174613, + 48.6947207 + ], + [ + 9.174613, + 48.6904902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:57:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000749534606999673, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 21, + "locale": "es", + "imagery": "osm" + }, + "id": 120455542 + } + }, + { + "id": 120454894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1527818, + 48.6204135 + ], + [ + 9.2110545, + 48.6204135 + ], + [ + 9.2110545, + 48.6703406 + ], + [ + 9.1527818, + 48.6703406 + ], + [ + 9.1527818, + 48.6204135 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:39:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00290938692017028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 10, + "locale": "de", + "imagery": "osm" + }, + "id": 120454894 + } + }, + { + "id": 120454548, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0499244, + 38.6036182 + ], + [ + -0.0495954, + 38.6036182 + ], + [ + -0.0495954, + 38.6038795 + ], + [ + -0.0499244, + 38.6038795 + ], + [ + -0.0499244, + 38.6036182 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:28:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.59676999994229e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120454548 + } + }, + { + "id": 120454260, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3631942, + 50.7547658 + ], + [ + 3.3631942, + 50.7547658 + ], + [ + 3.3631942, + 50.7547658 + ], + [ + 3.3631942, + 50.7547658 + ], + [ + 3.3631942, + 50.7547658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pieter T", + "uid": "15807133", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T10:21:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120454260 + } + }, + { + "id": 120453428, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1934126, + 48.6679825 + ], + [ + 9.2392962, + 48.6679825 + ], + [ + 9.2392962, + 48.6916236 + ], + [ + 9.1934126, + 48.6916236 + ], + [ + 9.1934126, + 48.6679825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T10:00:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00108473877595995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 27, + "locale": "de", + "imagery": "osm" + }, + "id": 120453428 + } + }, + { + "id": 120450875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0289559, + 53.5970258 + ], + [ + 10.0350486, + 53.5970258 + ], + [ + 10.0350486, + 53.6067367 + ], + [ + 10.0289559, + 53.6067367 + ], + [ + 10.0289559, + 53.5970258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "G4rden3r", + "uid": "12091530", + "editor": "iD 2.20.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Hamburg 20cm (HH LGV DOP20 2021)", + "date": "2022-05-02T08:56:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0000591656004300101, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://www.openstreetmap.org/edit", + "locale": "de", + "hashtags": "#MapComplete;#trees", + "changesets_count": 1306 + }, + "id": 120450875 + } + }, + { + "id": 120445862, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1478811, + 48.6256623 + ], + [ + 9.3377545, + 48.6256623 + ], + [ + 9.3377545, + 48.6944895 + ], + [ + 9.1478811, + 48.6944895 + ], + [ + 9.1478811, + 48.6256623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:42:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 40, + "delete": 0, + "area": 0.0130684544764803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 56, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 11 + }, + "id": 120445862 + } + }, + { + "id": 120445717, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ], + [ + 4.2390228, + 50.7348475 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:38:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120445717 + } + }, + { + "id": 120445606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2236122, + 48.6803889 + ], + [ + 9.2291035, + 48.6803889 + ], + [ + 9.2291035, + 48.6824181 + ], + [ + 9.2236122, + 48.6824181 + ], + [ + 9.2236122, + 48.6803889 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:35:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000111429459600164, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 120445606 + } + }, + { + "id": 120445045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.218023, + 48.6766707 + ], + [ + 9.2281884, + 48.6766707 + ], + [ + 9.2281884, + 48.6777774 + ], + [ + 9.218023, + 48.6777774 + ], + [ + 9.218023, + 48.6766707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:17:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000112500481799392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 11, + "locale": "de", + "imagery": "osm" + }, + "id": 120445045 + } + }, + { + "id": 120444933, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2212877, + 48.6789038 + ], + [ + 9.2212877, + 48.6789038 + ], + [ + 9.2212877, + 48.6789038 + ], + [ + 9.2212877, + 48.6789038 + ], + [ + 9.2212877, + 48.6789038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T06:14:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 120444933 + } + }, + { + "id": 120444206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2174127, + 48.6780155 + ], + [ + 9.2270169, + 48.6780155 + ], + [ + 9.2270169, + 48.6863972 + ], + [ + 9.2174127, + 48.6863972 + ], + [ + 9.2174127, + 48.6780155 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T05:52:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000804995231400106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 19, + "locale": "de", + "imagery": "osm" + }, + "id": 120444206 + } + }, + { + "id": 120443946, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6200804, + 47.3111615 + ], + [ + 9.6200804, + 47.3111615 + ], + [ + 9.6200804, + 47.3111615 + ], + [ + 9.6200804, + 47.3111615 + ], + [ + 9.6200804, + 47.3111615 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T05:43:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120443946 + } + }, + { + "id": 120443909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ], + [ + -5.858835, + 37.1915893 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "troNpo", + "uid": "12221867", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T05:42:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 6, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 120443909 + } + }, + { + "id": 120443807, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2122983, + 48.6768307 + ], + [ + 9.223733, + 48.6768307 + ], + [ + 9.223733, + 48.6834244 + ], + [ + 9.2122983, + 48.6834244 + ], + [ + 9.2122983, + 48.6768307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T05:39:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000753969813900306, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 7, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120443807 + } + }, + { + "id": 120443700, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0577061, + 49.6103535 + ], + [ + 6.0577061, + 49.6103535 + ], + [ + 6.0577061, + 49.6103535 + ], + [ + 6.0577061, + 49.6103535 + ], + [ + 6.0577061, + 49.6103535 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gloda", + "uid": "646144", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T05:35:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120443700 + } + }, + { + "id": 120442602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2185703, + 48.6794693 + ], + [ + 9.2185703, + 48.6794693 + ], + [ + 9.2185703, + 48.6794693 + ], + [ + 9.2185703, + 48.6794693 + ], + [ + 9.2185703, + 48.6794693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T04:48:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 2 + }, + "id": 120442602 + } + }, + { + "id": 120442418, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2200813, + 48.6789862 + ], + [ + 9.220769, + 48.6789862 + ], + [ + 9.220769, + 48.6794094 + ], + [ + 9.2200813, + 48.6794094 + ], + [ + 9.2200813, + 48.6789862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-02T04:41:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.91034640000246e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "de", + "imagery": "HDM_HOT", + "change_within_1000m": 1 + }, + "id": 120442418 + } + }, + { + "id": 120441621, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.3319844, + 38.8883134 + ], + [ + -99.3099697, + 38.8883134 + ], + [ + -99.3099697, + 38.8939179 + ], + [ + -99.3319844, + 38.8939179 + ], + [ + -99.3319844, + 38.8883134 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:54:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00012338138614993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 120441621 + } + }, + { + "id": 120441439, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.332838, + 38.860141 + ], + [ + -99.2980167, + 38.860141 + ], + [ + -99.2980167, + 38.8961513 + ], + [ + -99.332838, + 38.8961513 + ], + [ + -99.332838, + 38.860141 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:43:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.00125392545938968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 42, + "locale": "en", + "imagery": "osm" + }, + "id": 120441439 + } + }, + { + "id": 120441410, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.320608, + 38.9038277 + ], + [ + -99.320608, + 38.9038277 + ], + [ + -99.320608, + 38.9038277 + ], + [ + -99.320608, + 38.9038277 + ], + [ + -99.320608, + 38.9038277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:41:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120441410 + } + }, + { + "id": 120441063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -123.0185163, + 49.2362183 + ], + [ + -123.018516, + 49.2362183 + ], + [ + -123.018516, + 49.2362183 + ], + [ + -123.0185163, + 49.2362183 + ], + [ + -123.0185163, + 49.2362183 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joel56dt", + "uid": "3794090", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T03:14:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120441063 + } + }, + { + "id": 120440508, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rynmas", + "uid": "13191473", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-02T02:08:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120440508 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-03.json b/Docs/Tools/stats/stats.2022-5-03.json new file mode 100644 index 0000000000..eaedacc3d4 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-03.json @@ -0,0 +1,1966 @@ +{ + "features": [ + { + "id": 120518764, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2514172, + -39.8274328 + ], + [ + -73.2514172, + -39.8274328 + ], + [ + -73.2514172, + -39.8274328 + ], + [ + -73.2514172, + -39.8274328 + ], + [ + -73.2514172, + -39.8274328 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T23:00:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 120518764 + } + }, + { + "id": 120516444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2388022, + 50.7381198 + ], + [ + 4.2394009, + 50.7381198 + ], + [ + 4.2394009, + 50.7385603 + ], + [ + 4.2388022, + 50.7385603 + ], + [ + 4.2388022, + 50.7381198 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T21:07:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.63727350001768e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120516444 + } + }, + { + "id": 120513831, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5749924, + 52.4220891 + ], + [ + 13.5750179, + 52.4220891 + ], + [ + 13.5750179, + 52.4221012 + ], + [ + 13.5749924, + 52.4221012 + ], + [ + 13.5749924, + 52.4220891 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex030", + "uid": "418040", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #berlin_emergency_water_pumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T19:40:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.08549999998239e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "move": 1, + "theme": "berlin_emergency_water_pumps", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/6341152124": "improve_accuracy" + }, + "id": 120513831 + } + }, + { + "id": 120512036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2514373, + -39.8304826 + ], + [ + -73.2104217, + -39.8304826 + ], + [ + -73.2104217, + -39.8273568 + ], + [ + -73.2514373, + -39.8273568 + ], + [ + -73.2514373, + -39.8304826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T18:47:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.000128206562480294, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 3, + "locale": "es", + "imagery": "Mapbox", + "add-image": 10 + }, + "id": 120512036 + } + }, + { + "id": 120511193, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -74.1017807, + 4.6151786 + ], + [ + -74.1017807, + 4.6151786 + ], + [ + -74.1017807, + 4.6151786 + ], + [ + -74.1017807, + 4.6151786 + ], + [ + -74.1017807, + 4.6151786 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AngocA", + "uid": "89128", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T18:22:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 120511193 + } + }, + { + "id": 120510783, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.079343, + 51.130916 + ], + [ + 5.0796568, + 51.130916 + ], + [ + 5.0796568, + 51.1309655 + ], + [ + 5.079343, + 51.1309655 + ], + [ + 5.079343, + 51.130916 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T18:11:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.55331000009515e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "move:node/9711906584": "improve_accuracy", + "import:node/9711906584": "source: https://osm.org/note/3143423" + }, + "id": 120510783 + } + }, + { + "id": 120508724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7483983, + 51.1183001 + ], + [ + 3.1981245, + 51.1183001 + ], + [ + 3.1981245, + 51.2188482 + ], + [ + 2.7483983, + 51.2188482 + ], + [ + 2.7483983, + 51.1183001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T17:13:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 0, + "delete": 0, + "area": 0.0452191149302189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 2, + "import": 12, + "locale": "nl", + "imagery": "AGIV", + "import:node/-10": "source: https://osm.org/note/3156537", + "import:node/-11": "source: https://osm.org/note/3156375", + "change_over_5000m": 2, + "import:node/9711809276": "source: https://osm.org/note/3156258", + "import:node/9711903959": "source: https://osm.org/note/3156551", + "import:node/9711903960": "source: https://osm.org/note/3156508", + "import:node/9711903961": "source: https://osm.org/note/3156308", + "import:node/9711927991": "source: https://osm.org/note/3156438", + "import:node/9711993532": "source: https://osm.org/note/3156587", + "import:node/9711993533": "source: https://osm.org/note/3156472", + "import:node/9712020471": "source: https://osm.org/note/3156435", + "import:node/9712059289": "source: https://osm.org/note/3156495", + "import:node/9712076568": "source: https://osm.org/note/3156481" + }, + "id": 120508724 + } + }, + { + "id": 120502162, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2082483, + 51.1867515 + ], + [ + 3.2082483, + 51.1867515 + ], + [ + 3.2082483, + 51.1867515 + ], + [ + 3.2082483, + 51.1867515 + ], + [ + 3.2082483, + 51.1867515 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T14:20:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 8 + }, + "id": 120502162 + } + }, + { + "id": 120501481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7398313, + 51.1661571 + ], + [ + 4.7449172, + 51.1661571 + ], + [ + 4.7449172, + 51.1674388 + ], + [ + 4.7398313, + 51.1674388 + ], + [ + 4.7398313, + 51.1661571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T14:02:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 207, + "modify": 108, + "delete": 0, + "area": 0.00000651859802999925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 86, + "theme": "grb", + "answer": 1, + "import": 21, + "locale": "nl", + "imagery": "osm", + "conflation": 42 + }, + "id": 120501481 + } + }, + { + "id": 120500559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1791827, + 48.6458973 + ], + [ + 9.237814, + 48.6458973 + ], + [ + 9.237814, + 48.6806064 + ], + [ + 9.1791827, + 48.6806064 + ], + [ + 9.1791827, + 48.6458973 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T13:34:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00203503965483004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 61, + "locale": "de", + "imagery": "osm", + "move:node/4623986807": "improve_accuracy" + }, + "id": 120500559 + } + }, + { + "id": 120499964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7391889, + 51.1664022 + ], + [ + 4.7438065, + 51.1664022 + ], + [ + 4.7438065, + 51.1691418 + ], + [ + 4.7391889, + 51.1691418 + ], + [ + 4.7391889, + 51.1664022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T13:18:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 470, + "modify": 267, + "delete": 1, + "area": 0.0000126503769599904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 221, + "theme": "grb", + "delete": 1, + "import": 65, + "locale": "nl", + "imagery": "osm", + "conflation": 94 + }, + "id": 120499964 + } + }, + { + "id": 120499907, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7415832, + 51.1683476 + ], + [ + 4.7426917, + 51.1683476 + ], + [ + 4.7426917, + 51.1695227 + ], + [ + 4.7415832, + 51.1695227 + ], + [ + 4.7415832, + 51.1683476 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T13:16:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 51, + "modify": 32, + "delete": 3, + "area": 0.0000013025983500051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 28, + "theme": "grb", + "delete": 3, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "id": 120499907 + } + }, + { + "id": 120498599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6157676, + 39.3248413 + ], + [ + -76.6157596, + 39.3248413 + ], + [ + -76.6157596, + 39.3248953 + ], + [ + -76.6157676, + 39.3248953 + ], + [ + -76.6157676, + 39.3248413 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T12:43:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.31999999666021e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3 + }, + "id": 120498599 + } + }, + { + "id": 120497985, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7779292, + 39.6482209 + ], + [ + 2.7784652, + 39.6482209 + ], + [ + 2.7784652, + 39.6494624 + ], + [ + 2.7779292, + 39.6494624 + ], + [ + 2.7779292, + 39.6482209 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T12:26:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.65443999999306e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 4, + "locale": "es", + "imagery": "osm" + }, + "id": 120497985 + } + }, + { + "id": 120497207, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5160122, + 48.0627835 + ], + [ + 8.5279045, + 48.0627835 + ], + [ + 8.5279045, + 48.0705602 + ], + [ + 8.5160122, + 48.0705602 + ], + [ + 8.5160122, + 48.0627835 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T12:05:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000924828494100065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 120497207 + } + }, + { + "id": 120494500, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7405689, + 51.1674871 + ], + [ + 4.7432654, + 51.1674871 + ], + [ + 4.7432654, + 51.1696224 + ], + [ + 4.7405689, + 51.1696224 + ], + [ + 4.7405689, + 51.1674871 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T10:36:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 133, + "modify": 87, + "delete": 0, + "area": 0.00000575783644999722, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 70, + "theme": "grb", + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "id": 120494500 + } + }, + { + "id": 120494468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.741542, + 51.1683476 + ], + [ + 4.7438175, + 51.1683476 + ], + [ + 4.7438175, + 51.1690799 + ], + [ + 4.741542, + 51.1690799 + ], + [ + 4.741542, + 51.1683476 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T10:36:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 36, + "modify": 33, + "delete": 0, + "area": 0.0000016663486500061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 28, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "id": 120494468 + } + }, + { + "id": 120494167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1797877, + 48.646532 + ], + [ + 9.1804639, + 48.646532 + ], + [ + 9.1804639, + 48.6475514 + ], + [ + 9.1797877, + 48.6475514 + ], + [ + 9.1797877, + 48.646532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T10:27:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.89318279997086e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4, + "change_within_500m": 4 + }, + "id": 120494167 + } + }, + { + "id": 120493185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7387032, + 51.1677636 + ], + [ + 4.7452885, + 51.1677636 + ], + [ + 4.7452885, + 51.169651 + ], + [ + 4.7387032, + 51.169651 + ], + [ + 4.7387032, + 51.1677636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T09:54:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 813, + "modify": 359, + "delete": 0, + "area": 0.0000124290952200077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 292, + "theme": "grb", + "import": 101, + "locale": "nl", + "imagery": "osm", + "conflation": 134 + }, + "id": 120493185 + } + }, + { + "id": 120493171, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7391909, + 51.1689335 + ], + [ + 4.7393609, + 51.1689335 + ], + [ + 4.7393609, + 51.1690162 + ], + [ + 4.7391909, + 51.1690162 + ], + [ + 4.7391909, + 51.1689335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T09:53:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 0, + "delete": 0, + "area": 1.40590000000727e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120493171 + } + }, + { + "id": 120491373, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.542118, + 45.1773589 + ], + [ + 5.6468371, + 45.1773589 + ], + [ + 5.6468371, + 45.1885791 + ], + [ + 5.542118, + 45.1885791 + ], + [ + 5.542118, + 45.1773589 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tsv38170", + "uid": "13047590", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:52:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00117496924581966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite", + "theme": "campersite", + "answer": 6, + "locale": "fr", + "imagery": "osm" + }, + "id": 120491373 + } + }, + { + "id": 120490512, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7363164, + 51.1684459 + ], + [ + 4.7439133, + 51.1684459 + ], + [ + 4.7439133, + 51.1721709 + ], + [ + 4.7363164, + 51.1721709 + ], + [ + 4.7363164, + 51.1684459 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:22:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1395, + "modify": 326, + "delete": 0, + "area": 0.0000282984524999687, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 266, + "theme": "grb", + "import": 172, + "locale": "nl", + "imagery": "osm", + "conflation": 120 + }, + "id": 120490512 + } + }, + { + "id": 120490508, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:22:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120490508 + } + }, + { + "id": 120490316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0037235, + 51.0877442 + ], + [ + 5.0590713, + 51.0877442 + ], + [ + 5.0590713, + 51.1010986 + ], + [ + 5.0037235, + 51.1010986 + ], + [ + 5.0037235, + 51.0877442 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nathaliesmolders", + "uid": "15820052", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:14:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000739136660319844, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 120490316 + } + }, + { + "id": 120490223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7385412, + 51.1705271 + ], + [ + 4.7437394, + 51.1705271 + ], + [ + 4.7437394, + 51.1722871 + ], + [ + 4.7385412, + 51.1722871 + ], + [ + 4.7385412, + 51.1705271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:10:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 292, + "modify": 233, + "delete": 0, + "area": 0.00000914883199998555, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 194, + "theme": "grb", + "import": 36, + "locale": "nl", + "imagery": "osm", + "conflation": 82 + }, + "id": 120490223 + } + }, + { + "id": 120489955, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.737904, + 51.1704873 + ], + [ + 4.7411633, + 51.1704873 + ], + [ + 4.7411633, + 51.1741746 + ], + [ + 4.737904, + 51.1741746 + ], + [ + 4.737904, + 51.1704873 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T08:00:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 268, + "modify": 125, + "delete": 2, + "area": 0.0000120180168900087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 96, + "theme": "grb", + "delete": 2, + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 44 + }, + "id": 120489955 + } + }, + { + "id": 120489853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7657256, + 51.029265 + ], + [ + 3.4996564, + 51.029265 + ], + [ + 3.4996564, + 51.2251788 + ], + [ + 2.7657256, + 51.2251788 + ], + [ + 2.7657256, + 51.029265 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-03T07:57:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.14378717196504, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 12, + "locale": "nl", + "imagery": "AGIV10cm", + "import:node/9710745614": "source: https://osm.org/note/3156554", + "import:node/9710798957": "source: https://osm.org/note/3156318", + "import:node/9710801395": "source: https://osm.org/note/3156478", + "import:node/9710840585": "source: https://osm.org/note/3156430", + "import:node/9710852265": "source: https://osm.org/note/3156329", + "import:node/9710864939": "source: https://osm.org/note/3156333", + "import:node/9710874299": "source: https://osm.org/note/3156300", + "import:node/9710877722": "source: https://osm.org/note/3156427", + "import:node/9710882904": "source: https://osm.org/note/3156573", + "import:node/9710916162": "source: https://osm.org/note/3156518", + "import:node/9710945340": "source: https://osm.org/note/3099177", + "import:node/9710961828": "source: https://osm.org/note/3156571" + }, + "id": 120489853 + } + }, + { + "id": 120488931, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5107035, + 44.8455246 + ], + [ + -0.5107035, + 44.8455246 + ], + [ + -0.5107035, + 44.8455246 + ], + [ + -0.5107035, + 44.8455246 + ], + [ + -0.5107035, + 44.8455246 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T07:25:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 5 + }, + "id": 120488931 + } + }, + { + "id": 120488156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2130707, + 51.2349833 + ], + [ + 3.2130707, + 51.2349833 + ], + [ + 3.2130707, + 51.2349833 + ], + [ + 3.2130707, + 51.2349833 + ], + [ + 3.2130707, + 51.2349833 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "peeweeke", + "uid": "494726", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T06:58:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 120488156 + } + }, + { + "id": 120488035, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1895214, + 51.2203728 + ], + [ + 3.2178978, + 51.2203728 + ], + [ + 3.2178978, + 51.2419601 + ], + [ + 3.1895214, + 51.2419601 + ], + [ + 3.1895214, + 51.2203728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "peeweeke", + "uid": "494726", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-03T06:53:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 124, + "delete": 0, + "area": 0.000612569859720005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 166, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 2, + "change_within_100m": 2, + "change_within_500m": 28, + "change_within_1000m": 28, + "change_within_5000m": 94 + }, + "id": 120488035 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-04.json b/Docs/Tools/stats/stats.2022-5-04.json new file mode 100644 index 0000000000..84096c242d --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-04.json @@ -0,0 +1,2080 @@ +{ + "features": [ + { + "id": 120560570, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.4151952, + 37.8526553 + ], + [ + -1.4151952, + 37.8526553 + ], + [ + -1.4151952, + 37.8526553 + ], + [ + -1.4151952, + 37.8526553 + ], + [ + -1.4151952, + 37.8526553 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lololailo", + "uid": "8621270", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:44:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 5, + "create": 1, + "locale": "es", + "imagery": "PNOA-Spain-TMS" + }, + "id": 120560570 + } + }, + { + "id": 120560434, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4255955, + 51.1655832 + ], + [ + 3.4340244, + 51.1655832 + ], + [ + 3.4340244, + 51.170124 + ], + [ + 3.4255955, + 51.170124 + ], + [ + 3.4255955, + 51.1655832 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9715990648", + "osm_id": 9715990648, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "barrier": "barbed_wire" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000382739491200084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "answer": 3, + "locale": "en", + "imagery": "AGIV", + "add-image": 3 + }, + "id": 120560434 + } + }, + { + "id": 120560382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.439457, + 51.1649224 + ], + [ + 3.439457, + 51.1649224 + ], + [ + 3.439457, + 51.1649224 + ], + [ + 3.439457, + 51.1649224 + ], + [ + 3.439457, + 51.1649224 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:35:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120560382 + } + }, + { + "id": 120560317, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4340456, + 51.1649157 + ], + [ + 3.4396997, + 51.1649157 + ], + [ + 3.4396997, + 51.1721292 + ], + [ + 3.4340456, + 51.1721292 + ], + [ + 3.4340456, + 51.1649157 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T20:34:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000407858503499912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "answer": 10, + "locale": "en", + "imagery": "AGIV", + "add-image": 7 + }, + "id": 120560317 + } + }, + { + "id": 120559509, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0541637, + 48.500025 + ], + [ + 9.054705, + 48.500025 + ], + [ + 9.054705, + 48.5006799 + ], + [ + 9.0541637, + 48.5006799 + ], + [ + 9.0541637, + 48.500025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T20:02:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 16, + "delete": 0, + "area": 3.54497370000419e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 26, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 120559509 + } + }, + { + "id": 120559355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T19:56:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_50m": 3 + }, + "id": 120559355 + } + }, + { + "id": 120558476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4349729, + 50.8366833 + ], + [ + 4.4349729, + 50.8366833 + ], + [ + 4.4349729, + 50.8366833 + ], + [ + 4.4349729, + 50.8366833 + ], + [ + 4.4349729, + 50.8366833 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T19:27:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120558476 + } + }, + { + "id": 120557427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0539719, + 48.5000329 + ], + [ + 9.0546159, + 48.5000329 + ], + [ + 9.0546159, + 48.500719 + ], + [ + 9.0539719, + 48.500719 + ], + [ + 9.0539719, + 48.5000329 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T18:57:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 12, + "delete": 4, + "area": 4.41848399996902e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 21, + "create": 4, + "locale": "de", + "imagery": "Mapbox", + "deletion": 4, + "change_over_5000m": 4, + "change_within_25m": 13, + "change_within_50m": 12, + "deletion:node/2027958333": "not found", + "deletion:node/2027971406": "not found", + "deletion:node/4514143512": "not found", + "deletion:node/4514143513": "not found" + }, + "id": 120557427 + } + }, + { + "id": 120557380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0539793, + 48.5005222 + ], + [ + 9.0540265, + 48.5005222 + ], + [ + 9.0540265, + 48.5005737 + ], + [ + 9.0539793, + 48.5005737 + ], + [ + 9.0539793, + 48.5005222 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T18:55:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.43079999994662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 10, + "locale": "de", + "imagery": "osm", + "change_within_25m": 10 + }, + "id": 120557380 + } + }, + { + "id": 120557265, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0537702, + 48.5002081 + ], + [ + 9.0543784, + 48.5002081 + ], + [ + 9.0543784, + 48.5006799 + ], + [ + 9.0537702, + 48.5006799 + ], + [ + 9.0537702, + 48.5002081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T18:51:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 18, + "delete": 0, + "area": 2.86948759999105e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 35, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 27, + "change_within_50m": 8 + }, + "id": 120557265 + } + }, + { + "id": 120553977, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.47227, + 51.0336225 + ], + [ + 4.47227, + 51.0336225 + ], + [ + 4.47227, + 51.0336225 + ], + [ + 4.47227, + 51.0336225 + ], + [ + 4.47227, + 51.0336225 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T17:15:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 120553977 + } + }, + { + "id": 120550119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2318099, + 50.7344625 + ], + [ + 4.2329831, + 50.7344625 + ], + [ + 4.2329831, + 50.7348727 + ], + [ + 4.2318099, + 50.7348727 + ], + [ + 4.2318099, + 50.7344625 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T15:31:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.81246639997121e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "AGIV", + "change_within_5000m": 10 + }, + "id": 120550119 + } + }, + { + "id": 120549997, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ], + [ + 4.2328535, + 50.7346111 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T15:28:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120549997 + } + }, + { + "id": 120546504, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7289973, + 51.165103 + ], + [ + 4.7323348, + 51.165103 + ], + [ + 4.7323348, + 51.1662165 + ], + [ + 4.7289973, + 51.1662165 + ], + [ + 4.7289973, + 51.165103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T14:07:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 70, + "modify": 0, + "delete": 0, + "area": 0.00000371630624998514, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm" + }, + "id": 120546504 + } + }, + { + "id": 120544176, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8180481, + 50.8429421 + ], + [ + 3.8204044, + 50.8429421 + ], + [ + 3.8204044, + 50.8606305 + ], + [ + 3.8180481, + 50.8606305 + ], + [ + 3.8180481, + 50.8429421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "llstan", + "uid": "15836405", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T13:11:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000416791769199971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 120544176 + } + }, + { + "id": 120543550, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2318099, + 50.7330979 + ], + [ + 4.2376247, + 50.7330979 + ], + [ + 4.2376247, + 50.7354099 + ], + [ + 4.2318099, + 50.7354099 + ], + [ + 4.2318099, + 50.7330979 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T12:55:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000134438176000189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5, + "change_over_5000m": 1, + "change_within_25m": 10, + "change_within_50m": 1 + }, + "id": 120543550 + } + }, + { + "id": 120542459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -74.2603935, + 45.445525 + ], + [ + -74.2603935, + 45.445525 + ], + [ + -74.2603935, + 45.445525 + ], + [ + -74.2603935, + 45.445525 + ], + [ + -74.2603935, + 45.445525 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Avotien", + "uid": "7853020", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T12:30:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120542459 + } + }, + { + "id": 120542276, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6307528, + 39.3448328 + ], + [ + -76.6304679, + 39.3448328 + ], + [ + -76.6304679, + 39.3449371 + ], + [ + -76.6307528, + 39.3449371 + ], + [ + -76.6307528, + 39.3448328 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T12:26:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.97150700007708e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 120542276 + } + }, + { + "id": 120541236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -74.265727, + 45.4462087 + ], + [ + -74.257873, + 45.4462087 + ], + [ + -74.257873, + 45.4568736 + ], + [ + -74.265727, + 45.4568736 + ], + [ + -74.265727, + 45.4462087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Avotien", + "uid": "7853020", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T12:05:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000837621245999581, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 120541236 + } + }, + { + "id": 120538294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2392962, + 48.6758826 + ], + [ + 9.2392962, + 48.6758826 + ], + [ + 9.2392962, + 48.6758826 + ], + [ + 9.2392962, + 48.6758826 + ], + [ + 9.2392962, + 48.6758826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T11:04:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120538294 + } + }, + { + "id": 120535775, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8670692, + 45.7847685 + ], + [ + 4.8670692, + 45.7847685 + ], + [ + 4.8670692, + 45.7847685 + ], + [ + 4.8670692, + 45.7847685 + ], + [ + 4.8670692, + 45.7847685 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T10:10:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 1 + }, + "id": 120535775 + } + }, + { + "id": 120534638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7274152, + 51.1647221 + ], + [ + 4.7326643, + 51.1647221 + ], + [ + 4.7326643, + 51.167629 + ], + [ + 4.7274152, + 51.167629 + ], + [ + 4.7274152, + 51.1647221 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:47:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 680, + "modify": 286, + "delete": 0, + "area": 0.0000152586087899946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 238, + "theme": "grb", + "import": 102, + "locale": "nl", + "imagery": "osm", + "conflation": 96 + }, + "id": 120534638 + } + }, + { + "id": 120534598, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:46:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120534598 + } + }, + { + "id": 120534166, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0792906, + 51.2275585 + ], + [ + 5.0867583, + 51.2275585 + ], + [ + 5.0867583, + 51.2312694 + ], + [ + 5.0792906, + 51.2312694 + ], + [ + 5.0792906, + 51.2275585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Simonvhoudt", + "uid": "15823493", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:37:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 11, + "delete": 1, + "area": 0.0000277118879300091, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 5, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 12, + "move:node/9612554619": "improve_accuracy", + "deletion:node/9713477809": "duplicate" + }, + "id": 120534166 + } + }, + { + "id": 120532992, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1268333, + 51.1437114 + ], + [ + 5.1324177, + 51.1437114 + ], + [ + 5.1324177, + 51.1446924 + ], + [ + 5.1268333, + 51.1446924 + ], + [ + 5.1268333, + 51.1437114 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "syerval", + "uid": "15398849", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T09:15:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000547829639997716, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120532992 + } + }, + { + "id": 120532675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2361198, + 50.7341351 + ], + [ + 4.2361198, + 50.7341351 + ], + [ + 4.2361198, + 50.7341351 + ], + [ + 4.2361198, + 50.7341351 + ], + [ + 4.2361198, + 50.7341351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T09:08:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120532675 + } + }, + { + "id": 120532602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5678399, + 52.9867308 + ], + [ + 6.5975897, + 52.9867308 + ], + [ + 6.5975897, + 53.008786 + ], + [ + 6.5678399, + 53.008786 + ], + [ + 6.5678399, + 52.9867308 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T09:06:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 64, + "delete": 0, + "area": 0.000656137788960126, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 77, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 77 + }, + "id": 120532602 + } + }, + { + "id": 120531772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7283337, + 51.1646294 + ], + [ + 4.7444916, + 51.1646294 + ], + [ + 4.7444916, + 51.1687738 + ], + [ + 4.7283337, + 51.1687738 + ], + [ + 4.7283337, + 51.1646294 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T08:48:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1328, + "modify": 717, + "delete": 0, + "area": 0.0000669648007599041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 601, + "theme": "grb", + "import": 160, + "locale": "nl", + "imagery": "osm", + "conflation": 236 + }, + "id": 120531772 + } + }, + { + "id": 120527949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9950765, + 51.1519384 + ], + [ + 4.9950765, + 51.1519384 + ], + [ + 4.9950765, + 51.1519384 + ], + [ + 4.9950765, + 51.1519384 + ], + [ + 4.9950765, + 51.1519384 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T07:17:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 120527949 + } + }, + { + "id": 120527634, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -74.2891847, + 39.9976617 + ], + [ + -74.2891847, + 39.9976617 + ], + [ + -74.2891847, + 39.9976617 + ], + [ + -74.2891847, + 39.9976617 + ], + [ + -74.2891847, + 39.9976617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CurlingMan13", + "uid": "6641970", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-04T07:10:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 3 + }, + "id": 120527634 + } + }, + { + "id": 120527094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9598693, + 51.2474714 + ], + [ + 2.9598693, + 51.2474714 + ], + [ + 2.9598693, + 51.2474714 + ], + [ + 2.9598693, + 51.2474714 + ], + [ + 2.9598693, + 51.2474714 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T06:54:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9713145157": "source: https://osm.org/note/3156276" + }, + "id": 120527094 + } + }, + { + "id": 120526758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0792906, + 51.2275585 + ], + [ + 5.0883176, + 51.2275585 + ], + [ + 5.0883176, + 51.2306469 + ], + [ + 5.0792906, + 51.2306469 + ], + [ + 5.0792906, + 51.2275585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Simonvhoudt", + "uid": "15823493", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-04T06:44:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000027878986800025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2 + }, + "id": 120526758 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-05.json b/Docs/Tools/stats/stats.2022-5-05.json new file mode 100644 index 0000000000..8201370c13 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-05.json @@ -0,0 +1,2247 @@ +{ + "features": [ + { + "id": 120606872, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2431734, + -39.844192 + ], + [ + -73.2431734, + -39.844192 + ], + [ + -73.2431734, + -39.844192 + ], + [ + -73.2431734, + -39.844192 + ], + [ + -73.2431734, + -39.844192 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T21:52:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT" + }, + "id": 120606872 + } + }, + { + "id": 120606521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2807782, + 51.261063 + ], + [ + 3.3078336, + 51.261063 + ], + [ + 3.3078336, + 51.2771339 + ], + [ + 3.2807782, + 51.2771339 + ], + [ + 3.2807782, + 51.261063 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T21:35:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00043480462786007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "import:node/9719107136": "source: https://osm.org/note/3156288", + "import:node/9719133684": "source: https://osm.org/note/3156252", + "import:node/9719156752": "source: https://osm.org/note/3156401" + }, + "id": 120606521 + } + }, + { + "id": 120606231, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2327436, + -39.8448739 + ], + [ + -73.2327112, + -39.8448739 + ], + [ + -73.2327112, + -39.8445809 + ], + [ + -73.2327436, + -39.8445809 + ], + [ + -73.2327436, + -39.8448739 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T21:20:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.49320000288481e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 6, + "change_within_25m": 7 + }, + "id": 120606231 + } + }, + { + "id": 120605528, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2833178, + 48.9517792 + ], + [ + 2.3013679, + 48.9517792 + ], + [ + 2.3013679, + 48.9590527 + ], + [ + 2.2833178, + 48.9590527 + ], + [ + 2.2833178, + 48.9517792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T20:53:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000131287402350067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 42, + "locale": "fr", + "imagery": "osm" + }, + "id": 120605528 + } + }, + { + "id": 120604624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.580711, + 50.928574 + ], + [ + 13.4132515, + 50.928574 + ], + [ + 13.4132515, + 52.4171836 + ], + [ + 11.580711, + 52.4171836 + ], + [ + 11.580711, + 50.928574 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "xriss", + "uid": "191264", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T20:20:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 1, + "area": 2.7279373806888, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 17, + "create": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "move:node/8726017928": "improve_accuracy", + "deletion:node/8516353946": "duplicate" + }, + "id": 120604624 + } + }, + { + "id": 120602770, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2432911, + -39.8445014 + ], + [ + -73.2429488, + -39.8445014 + ], + [ + -73.2429488, + -39.8441009 + ], + [ + -73.2432911, + -39.8441009 + ], + [ + -73.2432911, + -39.8445014 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T19:16:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.37091149999167e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "locale": "es", + "imagery": "HDM_HOT" + }, + "id": 120602770 + } + }, + { + "id": 120602328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9904559, + 51.7733537 + ], + [ + 13.9923763, + 51.7733537 + ], + [ + 13.9923763, + 51.7789001 + ], + [ + 13.9904559, + 51.7789001 + ], + [ + 13.9904559, + 51.7733537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T19:02:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.0000106513065599973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 120602328 + } + }, + { + "id": 120598978, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2552468, + 51.0275679 + ], + [ + 5.2552468, + 51.0275679 + ], + [ + 5.2552468, + 51.0275679 + ], + [ + 5.2552468, + 51.0275679 + ], + [ + 5.2552468, + 51.0275679 + ] + ] + ] + }, + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T17:23:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-05-06T07:23:05.055668Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120598978 + } + }, + { + "id": 120598018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2434273, + -39.8443777 + ], + [ + -73.2429639, + -39.8443777 + ], + [ + -73.2429639, + -39.8442638 + ], + [ + -73.2434273, + -39.8442638 + ], + [ + -73.2434273, + -39.8443777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T16:51:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.2781259999576e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 3 + }, + "id": 120598018 + } + }, + { + "id": 120595899, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2111014, + 51.2313241 + ], + [ + 3.2111014, + 51.2313241 + ], + [ + 3.2111014, + 51.2313241 + ], + [ + 3.2111014, + 51.2313241 + ], + [ + 3.2111014, + 51.2313241 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:59:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 120595899 + } + }, + { + "id": 120595079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2321727, + 51.2185007 + ], + [ + 3.2323645, + 51.2185007 + ], + [ + 3.2323645, + 51.2186443 + ], + [ + 3.2321727, + 51.2186443 + ], + [ + 3.2321727, + 51.2185007 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:39:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.75424800002492e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 120595079 + } + }, + { + "id": 120594996, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.232375, + 51.2186546 + ], + [ + 3.232375, + 51.2186546 + ], + [ + 3.232375, + 51.2186546 + ], + [ + 3.232375, + 51.2186546 + ], + [ + 3.232375, + 51.2186546 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:37:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 3, + "import": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3, + "import:node/9718431092": "source: https://osm.org/note/3151816" + }, + "id": 120594996 + } + }, + { + "id": 120594879, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.2695594, + 48.933132 + ], + [ + 8.2695594, + 48.933132 + ], + [ + 8.2695594, + 48.933132 + ], + [ + 8.2695594, + 48.933132 + ], + [ + 8.2695594, + 48.933132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T15:34:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120594879 + } + }, + { + "id": 120594599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.6025908, + -38.7368662 + ], + [ + -72.6025908, + -38.7368662 + ], + [ + -72.6025908, + -38.7368662 + ], + [ + -72.6025908, + -38.7368662 + ], + [ + -72.6025908, + -38.7368662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T15:28:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120594599 + } + }, + { + "id": 120594476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1123683, + 51.1460229 + ], + [ + 3.1124736, + 51.1460229 + ], + [ + 3.1124736, + 51.146052 + ], + [ + 3.1123683, + 51.146052 + ], + [ + 3.1123683, + 51.1460229 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T15:26:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.06422999989449e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9718388986": "source: https://osm.org/note/3156437" + }, + "id": 120594476 + } + }, + { + "id": 120592313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5974148, + 51.1412343 + ], + [ + 5.5974148, + 51.1412343 + ], + [ + 5.5974148, + 51.1412343 + ], + [ + 5.5974148, + 51.1412343 + ], + [ + 5.5974148, + 51.1412343 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "landersav", + "uid": "15850223", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T14:36:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 120592313 + } + }, + { + "id": 120591217, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5722989, + 53.0101026 + ], + [ + 6.5722989, + 53.0101026 + ], + [ + 6.5722989, + 53.0101026 + ], + [ + 6.5722989, + 53.0101026 + ], + [ + 6.5722989, + 53.0101026 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T14:09:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 120591217 + } + }, + { + "id": 120591093, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.2734067, + 48.9381886 + ], + [ + 8.2734067, + 48.9381886 + ], + [ + 8.2734067, + 48.9381886 + ], + [ + 8.2734067, + 48.9381886 + ], + [ + 8.2734067, + 48.9381886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T14:06:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 120591093 + } + }, + { + "id": 120590640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.281699, + 51.03833 + ], + [ + 5.281699, + 51.03833 + ], + [ + 5.281699, + 51.03833 + ], + [ + 5.281699, + 51.03833 + ], + [ + 5.281699, + 51.03833 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:55:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9718193747": "source: https://osm.org/note/3161422" + }, + "id": 120590640 + } + }, + { + "id": 120590526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.2729904, + 48.9377849 + ], + [ + 8.2729904, + 48.9377849 + ], + [ + 8.2729904, + 48.9377849 + ], + [ + 8.2729904, + 48.9377849 + ], + [ + 8.2729904, + 48.9377849 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T13:52:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 120590526 + } + }, + { + "id": 120590282, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7310218, + 51.1671905 + ], + [ + 4.7531692, + 51.1671905 + ], + [ + 4.7531692, + 51.1730015 + ], + [ + 4.7310218, + 51.1730015 + ], + [ + 4.7310218, + 51.1671905 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:46:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 346, + "modify": 17, + "delete": 0, + "area": 0.000128698541400033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 14, + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 120590282 + } + }, + { + "id": 120589743, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1675713, + 50.9095843 + ], + [ + 4.1952208, + 50.9095843 + ], + [ + 4.1952208, + 50.9453211 + ], + [ + 4.1675713, + 50.9453211 + ], + [ + 4.1675713, + 50.9095843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:33:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000988104651600089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 120589743 + } + }, + { + "id": 120589368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1708545, + 50.9096646 + ], + [ + 4.2003246, + 50.9096646 + ], + [ + 4.2003246, + 50.9206731 + ], + [ + 4.1708545, + 50.9206731 + ], + [ + 4.1708545, + 50.9096646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T13:24:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 1, + "area": 0.00032442159585008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 6, + "create": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "deletion": 1, + "deletion:node/1594721367": "shop_closed" + }, + "id": 120589368 + } + }, + { + "id": 120587275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5369007, + 50.6332234 + ], + [ + 4.5830855, + 50.6332234 + ], + [ + 4.5830855, + 50.6575168 + ], + [ + 4.5369007, + 50.6575168 + ], + [ + 4.5369007, + 50.6332234 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MartGr", + "uid": "14891328", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T12:31:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00112198582032022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 4, + "locale": "en", + "imagery": "SPW_PICC" + }, + "id": 120587275 + } + }, + { + "id": 120587272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5142367, + 52.9980654 + ], + [ + 6.5189882, + 52.9980654 + ], + [ + 6.5189882, + 52.9999261 + ], + [ + 6.5142367, + 52.9999261 + ], + [ + 6.5142367, + 52.9980654 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T12:31:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000884111605000859, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/post-partner/postboxes.html", + "theme": "postboxes", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 7 + }, + "id": 120587272 + } + }, + { + "id": 120586363, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.255115, + 51.0275679 + ], + [ + 5.2552468, + 51.0275679 + ], + [ + 5.2552468, + 51.0275824 + ], + [ + 5.255115, + 51.0275824 + ], + [ + 5.255115, + 51.0275679 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T12:09:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.91109999985924e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 2 + }, + "id": 120586363 + } + }, + { + "id": 120584886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6911995, + 48.3229676 + ], + [ + 13.6911995, + 48.3229676 + ], + [ + 13.6911995, + 48.3229676 + ], + [ + 13.6911995, + 48.3229676 + ], + [ + 13.6911995, + 48.3229676 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T11:37:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds", + "theme": "playgrounds", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 120584886 + } + }, + { + "id": 120584205, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6034179, + 50.8426029 + ], + [ + 3.6049017, + 50.8426029 + ], + [ + 3.6049017, + 50.8446447 + ], + [ + 3.6034179, + 50.8446447 + ], + [ + 3.6034179, + 50.8426029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T11:22:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000302962284000081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets", + "theme": "cyclestreets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120584205 + } + }, + { + "id": 120580400, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.768952, + 49.4469453 + ], + [ + 7.768952, + 49.4469453 + ], + [ + 7.768952, + 49.4469453 + ], + [ + 7.768952, + 49.4469453 + ], + [ + 7.768952, + 49.4469453 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Justine Dam", + "uid": "12308921", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-05T09:59:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 120580400 + } + }, + { + "id": 120578005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7280272, + 51.165404 + ], + [ + 4.7416693, + 51.165404 + ], + [ + 4.7416693, + 51.170943 + ], + [ + 4.7280272, + 51.170943 + ], + [ + 4.7280272, + 51.165404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T09:10:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1699, + "modify": 901, + "delete": 8, + "area": 0.0000755635918999855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 747, + "theme": "grb", + "answer": 1, + "delete": 8, + "import": 193, + "locale": "nl", + "imagery": "osm", + "conflation": 306 + }, + "id": 120578005 + } + }, + { + "id": 120575806, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9169244, + 51.1044402 + ], + [ + 4.9199934, + 51.1044402 + ], + [ + 4.9199934, + 51.106052 + ], + [ + 4.9169244, + 51.106052 + ], + [ + 4.9169244, + 51.1044402 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T08:20:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000494661419999741, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "AGIV", + "move:node/7417535073": "improve_accuracy" + }, + "id": 120575806 + } + }, + { + "id": 120573548, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2376678, + 41.4647463 + ], + [ + 2.2378707, + 41.4647463 + ], + [ + 2.2378707, + 41.4648502 + ], + [ + 2.2376678, + 41.4648502 + ], + [ + 2.2376678, + 41.4647463 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9192874267", + "osm_id": 9192874267, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9192717866", + "osm_id": 9192717866, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T07:26:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.10813099998412e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 6, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "id": 120573548 + } + }, + { + "id": 120573094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6034735, + 50.6229554 + ], + [ + 4.6481245, + 50.6229554 + ], + [ + 4.6481245, + 50.6676659 + ], + [ + 4.6034735, + 50.6676659 + ], + [ + 4.6034735, + 50.6229554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BarbaraSting97", + "uid": "13789029", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T07:16:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 32, + "delete": 0, + "area": 0.00199636853550003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 59, + "create": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120573094 + } + }, + { + "id": 120573012, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BarbaraSting97", + "uid": "13789029", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-05T07:13:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120573012 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-06.json b/Docs/Tools/stats/stats.2022-5-06.json new file mode 100644 index 0000000000..881813996a --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-06.json @@ -0,0 +1,3361 @@ +{ + "features": [ + { + "id": 120647295, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4119851, + 50.7474743 + ], + [ + 3.4119851, + 50.7474743 + ], + [ + 3.4119851, + 50.7474743 + ], + [ + 3.4119851, + 50.7474743 + ], + [ + 3.4119851, + 50.7474743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T21:08:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9721518740": "source: https://osm.org/note/3156418" + }, + "id": 120647295 + } + }, + { + "id": 120647202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1991708, + 56.1564945 + ], + [ + 10.2103489, + 56.1564945 + ], + [ + 10.2103489, + 56.1627823 + ], + [ + 10.1991708, + 56.1627823 + ], + [ + 10.1991708, + 56.1564945 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T21:04:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000702856571800319, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120647202 + } + }, + { + "id": 120647108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.2031899, + 56.1517963 + ], + [ + 10.2122801, + 56.1517963 + ], + [ + 10.2122801, + 56.1702455 + ], + [ + 10.2031899, + 56.1702455 + ], + [ + 10.2031899, + 56.1517963 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T21:00:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.000167706917839979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 3, + "deletion:node/817854687": "disused", + "deletion:node/1241055925": "shop_closed", + "deletion:node/1241055928": "disused" + }, + "id": 120647108 + } + }, + { + "id": 120647063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0412545, + 48.5120565 + ], + [ + 9.0584958, + 48.5120565 + ], + [ + 9.0584958, + 48.5173959 + ], + [ + 9.0412545, + 48.5173959 + ], + [ + 9.0412545, + 48.5120565 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T20:58:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000920581972199381, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 120647063 + } + }, + { + "id": 120645792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9350847, + 51.3252623 + ], + [ + 4.9352586, + 51.3252623 + ], + [ + 4.9352586, + 51.3253396 + ], + [ + 4.9350847, + 51.3253396 + ], + [ + 4.9350847, + 51.3252623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T20:12:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.34424700001692e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120645792 + } + }, + { + "id": 120644874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -55.8857903, + -27.4348316 + ], + [ + -55.8857903, + -27.4348316 + ], + [ + -55.8857903, + -27.4348316 + ], + [ + -55.8857903, + -27.4348316 + ], + [ + -55.8857903, + -27.4348316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T19:41:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "es", + "imagery": "ign-orthophotos-mosaic" + }, + "id": 120644874 + } + }, + { + "id": 120644701, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -55.9808743, + -27.4587838 + ], + [ + -55.8499153, + -27.4587838 + ], + [ + -55.8499153, + -27.3835305 + ], + [ + -55.9808743, + -27.3835305 + ], + [ + -55.9808743, + -27.4587838 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Carlos Brys", + "uid": "189520", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T19:36:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00985509691470032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 8, + "locale": "es", + "imagery": "HDM_HOT", + "change_over_5000m": 6, + "change_within_5000m": 2 + }, + "id": 120644701 + } + }, + { + "id": 120644359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3448063, + 50.8241078 + ], + [ + 4.3448063, + 50.8241078 + ], + [ + 4.3448063, + 50.8241078 + ], + [ + 4.3448063, + 50.8241078 + ], + [ + 4.3448063, + 50.8241078 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T19:24:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120644359 + } + }, + { + "id": 120643628, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T19:00:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/buurtnatuur.html", + "theme": "buurtnatuur", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 120643628 + } + }, + { + "id": 120643618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2931376, + 50.7041174 + ], + [ + 4.2931376, + 50.7041174 + ], + [ + 4.2931376, + 50.7041174 + ], + [ + 4.2931376, + 50.7041174 + ], + [ + 4.2931376, + 50.7041174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T19:00:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 120643618 + } + }, + { + "id": 120642884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.897134, + 56.9513084 + ], + [ + 9.897134, + 56.9513084 + ], + [ + 9.897134, + 56.9513084 + ], + [ + 9.897134, + 56.9513084 + ], + [ + 9.897134, + 56.9513084 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andersdc23", + "uid": "15865930", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T18:36:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water", + "theme": "drinking_water", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120642884 + } + }, + { + "id": 120641863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0903469, + 49.4374832 + ], + [ + 11.0903469, + 49.4374832 + ], + [ + 11.0903469, + 49.4374832 + ], + [ + 11.0903469, + 49.4374832 + ], + [ + 11.0903469, + 49.4374832 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mrey", + "uid": "6089796", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T18:04:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 120641863 + } + }, + { + "id": 120639716, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.70252, + 51.0482564 + ], + [ + 3.70252, + 51.0482564 + ], + [ + 3.70252, + 51.0482564 + ], + [ + 3.70252, + 51.0482564 + ], + [ + 3.70252, + 51.0482564 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T17:04:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 120639716 + } + }, + { + "id": 120638753, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ], + [ + 3.7026393, + 51.0488104 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "node-9721059917", + "osm_id": 9721059917, + "reasons": [ + 57 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T16:41:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/buurtnatuur.html", + "theme": "buurtnatuur", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120638753 + } + }, + { + "id": 120637448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.477723, + 50.9648505 + ], + [ + 5.4778033, + 50.9648505 + ], + [ + 5.4778033, + 50.9648602 + ], + [ + 5.477723, + 50.9648602 + ], + [ + 5.477723, + 50.9648505 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T16:05:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 7.78909999969379e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 8, + "move:node/9720945660": "improve_accuracy" + }, + "id": 120637448 + } + }, + { + "id": 120636854, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3391644, + 50.8290049 + ], + [ + 4.3391899, + 50.8290049 + ], + [ + 4.3391899, + 50.8290279 + ], + [ + 4.3391644, + 50.8290279 + ], + [ + 4.3391644, + 50.8290049 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T15:49:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.86499999979218e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 9, + "move:node/8146611471": "improve_accuracy" + }, + "id": 120636854 + } + }, + { + "id": 120635686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1581552, + 50.6057757 + ], + [ + 6.1625275, + 50.6057757 + ], + [ + 6.1625275, + 50.6274703 + ], + [ + 6.1581552, + 50.6274703 + ], + [ + 6.1581552, + 50.6057757 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T15:21:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000948552995799844, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 120635686 + } + }, + { + "id": 120634455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3223806, + 50.8398741 + ], + [ + 3.3223806, + 50.8398741 + ], + [ + 3.3223806, + 50.8398741 + ], + [ + 3.3223806, + 50.8398741 + ], + [ + 3.3223806, + 50.8398741 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9720793314", + "osm_id": 9720793314, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T14:50:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120634455 + } + }, + { + "id": 120633771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3220265, + 50.8020428 + ], + [ + 3.3913656, + 50.8020428 + ], + [ + 3.3913656, + 50.908414 + ], + [ + 3.3220265, + 50.908414 + ], + [ + 3.3220265, + 50.8020428 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T14:33:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00737568327391983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "import:node/9720761314": "source: https://osm.org/note/3156275", + "import:node/9720784414": "source: https://osm.org/note/3156460", + "import:node/9720784415": "source: https://osm.org/note/3156278", + "import:node/9720839567": "source: https://osm.org/note/3156302", + "import:node/9720841418": "source: https://osm.org/note/3156310", + "import:node/9720878250": "source: https://osm.org/note/3156408" + }, + "id": 120633771 + } + }, + { + "id": 120633327, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9964643, + 48.5012345 + ], + [ + 8.9964643, + 48.5012345 + ], + [ + 8.9964643, + 48.5012345 + ], + [ + 8.9964643, + 48.5012345 + ], + [ + 8.9964643, + 48.5012345 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:19:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "de", + "imagery": "Mapbox", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120633327 + } + }, + { + "id": 120632983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9914767, + 48.4991729 + ], + [ + 8.9962071, + 48.4991729 + ], + [ + 8.9962071, + 48.501436 + ], + [ + 8.9914767, + 48.501436 + ], + [ + 8.9914767, + 48.4991729 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:07:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000107053682400012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 2, + "change_within_500m": 1 + }, + "id": 120632983 + } + }, + { + "id": 120632938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9911564, + 48.4984246 + ], + [ + 8.9927379, + 48.4984246 + ], + [ + 8.9927379, + 48.4992465 + ], + [ + 8.9911564, + 48.4992465 + ], + [ + 8.9911564, + 48.4984246 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:06:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000129983484999754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_50m": 1, + "change_within_100m": 2 + }, + "id": 120632938 + } + }, + { + "id": 120632872, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9914223, + 48.4988938 + ], + [ + 8.9914223, + 48.4988938 + ], + [ + 8.9914223, + 48.4988938 + ], + [ + 8.9914223, + 48.4988938 + ], + [ + 8.9914223, + 48.4988938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T14:05:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120632872 + } + }, + { + "id": 120632689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3827569, + 50.9454827 + ], + [ + 5.3827569, + 50.9454827 + ], + [ + 5.3827569, + 50.9454827 + ], + [ + 5.3827569, + 50.9454827 + ], + [ + 5.3827569, + 50.9454827 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T13:58:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 120632689 + } + }, + { + "id": 120632442, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2199749, + 48.6763154 + ], + [ + 9.2377389, + 48.6763154 + ], + [ + 9.2377389, + 48.6813245 + ], + [ + 9.2199749, + 48.6813245 + ], + [ + 9.2199749, + 48.6763154 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T13:51:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 69, + "delete": 0, + "area": 0.0000889816524000396, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 69, + "locale": "de", + "imagery": "osm" + }, + "id": 120632442 + } + }, + { + "id": 120630861, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904591, + 48.4983517 + ], + [ + 8.9910499, + 48.4983517 + ], + [ + 8.9910499, + 48.4984035 + ], + [ + 8.9904591, + 48.4984035 + ], + [ + 8.9904591, + 48.4983517 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T13:06:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.06034400007858e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_within_25m": 3, + "change_within_50m": 3 + }, + "id": 120630861 + } + }, + { + "id": 120630718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4418442, + 50.9237717 + ], + [ + 5.459931, + 50.9237717 + ], + [ + 5.459931, + 50.9324827 + ], + [ + 5.4418442, + 50.9324827 + ], + [ + 5.4418442, + 50.9237717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T13:03:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 290, + "modify": 1146, + "delete": 13, + "area": 0.000157554114799965, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1000, + "theme": "grb", + "delete": 13, + "import": 52, + "locale": "nl", + "imagery": "osm", + "conflation": 330 + }, + "id": 120630718 + } + }, + { + "id": 120630711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9901357, + 48.4990642 + ], + [ + 9.0538308, + 48.4990642 + ], + [ + 9.0538308, + 48.5006078 + ], + [ + 8.9901357, + 48.5006078 + ], + [ + 8.9901357, + 48.4990642 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T13:03:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000983197563598718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 1, + "change_within_100m": 2 + }, + "id": 120630711 + } + }, + { + "id": 120630482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1373254, + 51.0220977 + ], + [ + 3.1375886, + 51.0220977 + ], + [ + 3.1375886, + 51.0223857 + ], + [ + 3.1373254, + 51.0223857 + ], + [ + 3.1373254, + 51.0220977 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lichtervelde", + "uid": "15862569", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T12:58:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 7.580159999938e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 120630482 + } + }, + { + "id": 120629569, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4807557, + 50.9725908 + ], + [ + 5.4807557, + 50.9725908 + ], + [ + 5.4807557, + 50.9725908 + ], + [ + 5.4807557, + 50.9725908 + ], + [ + 5.4807557, + 50.9725908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T12:33:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "id": 120629569 + } + }, + { + "id": 120629362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4811205, + 50.9722244 + ], + [ + 5.4811205, + 50.9722244 + ], + [ + 5.4811205, + 50.9722244 + ], + [ + 5.4811205, + 50.9722244 + ], + [ + 5.4811205, + 50.9722244 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T12:28:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 120629362 + } + }, + { + "id": 120627571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4777787, + 50.9648107 + ], + [ + 5.4807956, + 50.9648107 + ], + [ + 5.4807956, + 50.9726734 + ], + [ + 5.4777787, + 50.9726734 + ], + [ + 5.4777787, + 50.9648107 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T11:47:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 18, + "delete": 0, + "area": 0.000023720979629994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 35, + "create": 7, + "locale": "nl", + "imagery": "AGIV", + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 35, + "change_within_50m": 7, + "move:node/9720472771": "improve_accuracy" + }, + "id": 120627571 + } + }, + { + "id": 120624070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4434885, + 50.9196534 + ], + [ + 5.4486137, + 50.9196534 + ], + [ + 5.4486137, + 50.9238793 + ], + [ + 5.4434885, + 50.9238793 + ], + [ + 5.4434885, + 50.9196534 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T10:36:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 96, + "modify": 287, + "delete": 8, + "area": 0.0000216585826800087, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 251, + "theme": "grb", + "delete": 8, + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 76 + }, + "id": 120624070 + } + }, + { + "id": 120623643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -38.4616678, + -12.9908319 + ], + [ + -38.4615178, + -12.9908319 + ], + [ + -38.4615178, + -12.9901154 + ], + [ + -38.4616678, + -12.9901154 + ], + [ + -38.4616678, + -12.9908319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wille", + "uid": "360183", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T10:24:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.07474999998378e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 120623643 + } + }, + { + "id": 120621898, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -55.8919391, + -27.3746668 + ], + [ + -55.8919391, + -27.3746668 + ], + [ + -55.8919391, + -27.3746668 + ], + [ + -55.8919391, + -27.3746668 + ], + [ + -55.8919391, + -27.3746668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Carlos Brys", + "uid": "189520", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T09:41:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 3, + "locale": "es", + "imagery": "HDM_HOT" + }, + "id": 120621898 + } + }, + { + "id": 120621508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3458431, + 51.3581455 + ], + [ + 3.348246, + 51.3581455 + ], + [ + 3.348246, + 51.3588587 + ], + [ + 3.3458431, + 51.3588587 + ], + [ + 3.3458431, + 51.3581455 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T09:31:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.00000171374827999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 14, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 13, + "change_within_50m": 4 + }, + "id": 120621508 + } + }, + { + "id": 120621316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0224508, + 51.0435685 + ], + [ + 5.0298044, + 51.0435685 + ], + [ + 5.0298044, + 51.0455935 + ], + [ + 5.0224508, + 51.0455935 + ], + [ + 5.0224508, + 51.0435685 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T09:26:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000148910400000242, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2, + "import:node/9720062362": "source: https://osm.org/note/3143433", + "import:node/9720109934": "source: https://osm.org/note/3044210" + }, + "id": 120621316 + } + }, + { + "id": 120620789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4850681, + 51.288569 + ], + [ + 4.4850681, + 51.288569 + ], + [ + 4.4850681, + 51.288569 + ], + [ + 4.4850681, + 51.288569 + ], + [ + 4.4850681, + 51.288569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T09:11:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120620789 + } + }, + { + "id": 120620079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3455743, + 50.8473414 + ], + [ + 3.3483594, + 50.8473414 + ], + [ + 3.3483594, + 50.8486191 + ], + [ + 3.3455743, + 50.8486191 + ], + [ + 3.3455743, + 50.8473414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GISDeerlijk", + "uid": "12302378", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T08:52:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.00000355852227000799, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 4, + "theme": "benches", + "answer": 14, + "create": 5, + "locale": "en", + "imagery": "AGIV", + "move:node/9720013463": "improve_accuracy", + "move:node/9720030838": "improve_accuracy", + "move:node/9720042057": "improve_accuracy", + "move:node/9720066282": "improve_accuracy" + }, + "id": 120620079 + } + }, + { + "id": 120619387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4220802, + 50.7905194 + ], + [ + 4.4220802, + 50.7905194 + ], + [ + 4.4220802, + 50.7905194 + ], + [ + 4.4220802, + 50.7905194 + ], + [ + 4.4220802, + 50.7905194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:35:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120619387 + } + }, + { + "id": 120619267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4179983, + 50.786502 + ], + [ + 4.4247148, + 50.786502 + ], + [ + 4.4247148, + 50.7987457 + ], + [ + 4.4179983, + 50.7987457 + ], + [ + 4.4179983, + 50.786502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:31:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0000822348110499994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 10 + }, + "id": 120619267 + } + }, + { + "id": 120618567, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4862145, + 51.2876144 + ], + [ + 4.4862145, + 51.2876144 + ], + [ + 4.4862145, + 51.2876144 + ], + [ + 4.4862145, + 51.2876144 + ], + [ + 4.4862145, + 51.2876144 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Vlaanderen - Pin je punt", + "uid": "15015689", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:12:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9719954423": "source: https://osm.org/note/3022998" + }, + "id": 120618567 + } + }, + { + "id": 120618351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.350815, + 51.358426 + ], + [ + 3.3509022, + 51.358426 + ], + [ + 3.3509022, + 51.3584554 + ], + [ + 3.350815, + 51.3584554 + ], + [ + 3.350815, + 51.358426 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:06:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 1, + "area": 2.56367999960778e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 1, + "change_within_25m": 7, + "deletion:node/7091762084": "duplicate" + }, + "id": 120618351 + } + }, + { + "id": 120618344, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:06:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 2 + }, + "id": 120618344 + } + }, + { + "id": 120618337, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:06:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 1 + }, + "id": 120618337 + } + }, + { + "id": 120618331, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:06:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 1 + }, + "id": 120618331 + } + }, + { + "id": 120618327, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:06:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 120618327 + } + }, + { + "id": 120618231, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.350815, + 51.358426 + ], + [ + 3.3508784, + 51.358426 + ], + [ + 3.3508784, + 51.3588151 + ], + [ + 3.350815, + 51.3588151 + ], + [ + 3.350815, + 51.358426 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T08:03:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.46689400000352e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_50m": 2 + }, + "id": 120618231 + } + }, + { + "id": 120616111, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4474947, + 52.4726501 + ], + [ + 13.4474947, + 52.4726501 + ], + [ + 13.4474947, + 52.4726501 + ], + [ + 13.4474947, + 52.4726501 + ], + [ + 13.4474947, + 52.4726501 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-06T07:02:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 120616111 + } + }, + { + "id": 120615594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2323875, + -39.8446045 + ], + [ + -73.2323875, + -39.8446045 + ], + [ + -73.2323875, + -39.8446045 + ], + [ + -73.2323875, + -39.8446045 + ], + [ + -73.2323875, + -39.8446045 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T06:47:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 120615594 + } + }, + { + "id": 120609426, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2329395, + -39.8446682 + ], + [ + -73.2329395, + -39.8446682 + ], + [ + -73.2329395, + -39.8446682 + ], + [ + -73.2329395, + -39.8446682 + ], + [ + -73.2329395, + -39.8446682 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T01:16:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "es", + "imagery": "Mapbox", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 3 + }, + "id": 120609426 + } + }, + { + "id": 120609266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2329395, + -39.8448822 + ], + [ + -73.2324048, + -39.8448822 + ], + [ + -73.2324048, + -39.8445611 + ], + [ + -73.2329395, + -39.8445611 + ], + [ + -73.2329395, + -39.8448822 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-06T01:02:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 1.71692170001322e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "create": 1, + "locale": "es", + "imagery": "Mapbox", + "add-image": 6, + "change_over_5000m": 1, + "change_within_500m": 7 + }, + "id": 120609266 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-07.json b/Docs/Tools/stats/stats.2022-5-07.json new file mode 100644 index 0000000000..21514b0666 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-07.json @@ -0,0 +1,2874 @@ +{ + "features": [ + { + "id": 120684303, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2401775, + -39.8281995 + ], + [ + -73.2401775, + -39.8281995 + ], + [ + -73.2401775, + -39.8281995 + ], + [ + -73.2401775, + -39.8281995 + ], + [ + -73.2401775, + -39.8281995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T22:12:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120684303 + } + }, + { + "id": 120682165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.130819, + 50.9333265 + ], + [ + 3.1592933, + 50.9333265 + ], + [ + 3.1592933, + 50.9553156 + ], + [ + 3.130819, + 50.9553156 + ], + [ + 3.130819, + 50.9333265 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:34:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 41, + "modify": 67, + "delete": 0, + "area": 0.000626124230129973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 55, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 24 + }, + "id": 120682165 + } + }, + { + "id": 120682158, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:34:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120682158 + } + }, + { + "id": 120682156, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:34:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120682156 + } + }, + { + "id": 120681851, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1569376, + 50.9551387 + ], + [ + 3.1681128, + 50.9551387 + ], + [ + 3.1681128, + 50.974726 + ], + [ + 3.1569376, + 50.974726 + ], + [ + 3.1569376, + 50.9551387 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:25:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 210, + "modify": 88, + "delete": 0, + "area": 0.000218891994959972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 81, + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 120681851 + } + }, + { + "id": 120681568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.2668175, + 39.1787364 + ], + [ + -77.2668175, + 39.1787364 + ], + [ + -77.2668175, + 39.1787364 + ], + [ + -77.2668175, + 39.1787364 + ], + [ + -77.2668175, + 39.1787364 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "romeoz5", + "uid": "15864993", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T20:18:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120681568 + } + }, + { + "id": 120681098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1079998, + 51.2966146 + ], + [ + 3.1079998, + 51.2966146 + ], + [ + 3.1079998, + 51.2966146 + ], + [ + 3.1079998, + 51.2966146 + ], + [ + 3.1079998, + 51.2966146 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T20:00:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 120681098 + } + }, + { + "id": 120681024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1017358, + 51.2763968 + ], + [ + 3.1360711, + 51.2763968 + ], + [ + 3.1360711, + 51.309092 + ], + [ + 3.1017358, + 51.309092 + ], + [ + 3.1017358, + 51.2763968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:58:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00112259950055997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "add-image": 5 + }, + "id": 120681024 + } + }, + { + "id": 120680961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1014387, + 51.3093986 + ], + [ + 3.1014387, + 51.3093986 + ], + [ + 3.1014387, + 51.3093986 + ], + [ + 3.1014387, + 51.3093986 + ], + [ + 3.1014387, + 51.3093986 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:56:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 120680961 + } + }, + { + "id": 120680908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4402821, + 50.8408255 + ], + [ + 4.4425554, + 50.8408255 + ], + [ + 4.4425554, + 50.8417756 + ], + [ + 4.4402821, + 50.8417756 + ], + [ + 4.4402821, + 50.8408255 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T19:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000021598623299933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120680908 + } + }, + { + "id": 120680141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.008036, + 49.7258516 + ], + [ + 8.031097, + 49.7258516 + ], + [ + 8.031097, + 49.7319904 + ], + [ + 8.008036, + 49.7319904 + ], + [ + 8.008036, + 49.7258516 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tanzbärli", + "uid": "11052582", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:26:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000141566866800053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 120680141 + } + }, + { + "id": 120679817, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8666259, + 49.8323861 + ], + [ + 9.8912049, + 49.8323861 + ], + [ + 9.8912049, + 49.8364344 + ], + [ + 9.8666259, + 49.8364344 + ], + [ + 9.8666259, + 49.8323861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T19:17:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000995031657000189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 14, + "locale": "de", + "imagery": "osm" + }, + "id": 120679817 + } + }, + { + "id": 120677798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4205778, + 50.9048594 + ], + [ + 5.4335164, + 50.9048594 + ], + [ + 5.4335164, + 50.9203777 + ], + [ + 5.4205778, + 50.9203777 + ], + [ + 5.4205778, + 50.9048594 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T18:06:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 488, + "modify": 958, + "delete": 7, + "area": 0.000200785076380048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 874, + "theme": "grb", + "delete": 7, + "import": 84, + "locale": "nl", + "imagery": "osm", + "conflation": 196 + }, + "id": 120677798 + } + }, + { + "id": 120677770, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T18:06:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120677770 + } + }, + { + "id": 120677698, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5747986, + 51.1809193 + ], + [ + 3.5747986, + 51.1809193 + ], + [ + 3.5747986, + 51.1809193 + ], + [ + 3.5747986, + 51.1809193 + ], + [ + 3.5747986, + 51.1809193 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0-alpha", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T18:04:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/feature/nearby-images/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "import": 1, + "locale": "en", + "imagery": "osm", + "link-image": 1, + "import:node/9723403079": "source: https://osm.org/note/3161416" + }, + "id": 120677698 + } + }, + { + "id": 120676556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2182202, + 48.6849492 + ], + [ + 9.2187768, + 48.6849492 + ], + [ + 9.2187768, + 48.685245 + ], + [ + 9.2182202, + 48.685245 + ], + [ + 9.2182202, + 48.6849492 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T17:25:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.6464228000232e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120676556 + } + }, + { + "id": 120676429, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2428538, + 41.4676286 + ], + [ + 2.2430851, + 41.4676286 + ], + [ + 2.2430851, + 41.4677444 + ], + [ + 2.2428538, + 41.4677444 + ], + [ + 2.2428538, + 41.4676286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8852917075", + "osm_id": 8852917075, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T17:19:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 2.67845400007755e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 9, + "locale": "ca", + "imagery": "HDM_HOT", + "add-image": 6 + }, + "id": 120676429 + } + }, + { + "id": 120676244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8320958, + 45.7594272 + ], + [ + 4.8323616, + 45.7594272 + ], + [ + 4.8323616, + 45.7595794 + ], + [ + 4.8320958, + 45.7595794 + ], + [ + 4.8320958, + 45.7594272 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T17:14:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.04547600004986e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 6 + }, + "id": 120676244 + } + }, + { + "id": 120675455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9877866, + 51.001608 + ], + [ + 4.9877866, + 51.001608 + ], + [ + 4.9877866, + 51.001608 + ], + [ + 4.9877866, + 51.001608 + ], + [ + 4.9877866, + 51.001608 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T16:49:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120675455 + } + }, + { + "id": 120675053, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8573921, + 43.3704372 + ], + [ + -3.8573921, + 43.3704372 + ], + [ + -3.8573921, + 43.3704372 + ], + [ + -3.8573921, + 43.3704372 + ], + [ + -3.8573921, + 43.3704372 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T16:36:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 120675053 + } + }, + { + "id": 120674927, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4270381, + 50.9167386 + ], + [ + 5.4600746, + 50.9167386 + ], + [ + 5.4600746, + 50.9331312 + ], + [ + 5.4270381, + 50.9331312 + ], + [ + 5.4270381, + 50.9167386 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:32:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 668, + "modify": 1134, + "delete": 24, + "area": 0.000541554129899866, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1010, + "theme": "grb", + "delete": 24, + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 276 + }, + "id": 120674927 + } + }, + { + "id": 120674531, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8616163, + 49.8044188 + ], + [ + 9.8768929, + 49.8044188 + ], + [ + 9.8768929, + 49.8207593 + ], + [ + 9.8616163, + 49.8207593 + ], + [ + 9.8616163, + 49.8044188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.000249627282299974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 47, + "locale": "de", + "imagery": "osm" + }, + "id": 120674531 + } + }, + { + "id": 120674222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2182632, + 48.68478 + ], + [ + 9.2182632, + 48.68478 + ], + [ + 9.2182632, + 48.68478 + ], + [ + 9.2182632, + 48.68478 + ], + [ + 9.2182632, + 48.68478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T16:12:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 120674222 + } + }, + { + "id": 120674125, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8662441, + 49.8062011 + ], + [ + 9.874645, + 49.8062011 + ], + [ + 9.874645, + 49.8360699 + ], + [ + 9.8662441, + 49.8360699 + ], + [ + 9.8662441, + 49.8062011 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-332106881", + "name": "Aksar Döner", + "osm_id": 332106881, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:08:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 1, + "area": 0.000250924801919958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 22, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "soft-delete": 1, + "deletion:node/299464546": "shop_closed", + "soft-delete:node/332106881": "shop_closed" + }, + "id": 120674125 + } + }, + { + "id": 120674119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.130606, + 50.9494475 + ], + [ + 3.130606, + 50.9494475 + ], + [ + 3.130606, + 50.9494475 + ], + [ + 3.130606, + 50.9494475 + ], + [ + 3.130606, + 50.9494475 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:08:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "import": 1, + "locale": "en", + "imagery": "osm", + "import:node/9722978227": "source: https://osm.org/note/3161472" + }, + "id": 120674119 + } + }, + { + "id": 120674112, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6174714, + 48.1022486 + ], + [ + 11.6174714, + 48.1022486 + ], + [ + 11.6174714, + 48.1022486 + ], + [ + 11.6174714, + 48.1022486 + ], + [ + 11.6174714, + 48.1022486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Strubbl", + "uid": "536583", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T16:08:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 120674112 + } + }, + { + "id": 120673388, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8714298, + 49.8134198 + ], + [ + 9.8714298, + 49.8134198 + ], + [ + 9.8714298, + 49.8134198 + ], + [ + 9.8714298, + 49.8134198 + ], + [ + 9.8714298, + 49.8134198 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T15:44:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 120673388 + } + }, + { + "id": 120673123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6549322, + 51.0474268 + ], + [ + 3.6549322, + 51.0474268 + ], + [ + 3.6549322, + 51.0474268 + ], + [ + 3.6549322, + 51.0474268 + ], + [ + 3.6549322, + 51.0474268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T15:35:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "bicycle_rental", + "answer": 5, + "import": 1, + "locale": "en", + "imagery": "osm", + "import:node/9722758036": "source: https://osm.org/note/3161450" + }, + "id": 120673123 + } + }, + { + "id": 120672492, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.977433, + 50.9806263 + ], + [ + 4.9842051, + 50.9806263 + ], + [ + 4.9842051, + 51.0020256 + ], + [ + 4.977433, + 51.0020256 + ], + [ + 4.977433, + 50.9806263 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:20:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.000144918199530022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 21, + "move:node/9722709204": "improve_accuracy" + }, + "id": 120672492 + } + }, + { + "id": 120672483, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:20:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120672483 + } + }, + { + "id": 120672479, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:19:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120672479 + } + }, + { + "id": 120672472, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:19:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 120672472 + } + }, + { + "id": 120672396, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9783488, + 50.9806499 + ], + [ + 4.9784346, + 50.9806499 + ], + [ + 4.9784346, + 50.9807968 + ], + [ + 4.9783488, + 50.9807968 + ], + [ + 4.9783488, + 50.9806499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:18:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.26040199997449e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 120672396 + } + }, + { + "id": 120672325, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9794125, + 50.9808605 + ], + [ + 4.9794125, + 50.9808605 + ], + [ + 4.9794125, + 50.9808605 + ], + [ + 4.9794125, + 50.9808605 + ], + [ + 4.9794125, + 50.9808605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T15:16:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 120672325 + } + }, + { + "id": 120672270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8714252, + 49.8133754 + ], + [ + 9.8714612, + 49.8133754 + ], + [ + 9.8714612, + 49.8134328 + ], + [ + 9.8714252, + 49.8134328 + ], + [ + 9.8714252, + 49.8133754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T15:14:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.0664000001883e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "move": 1, + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "move:node/7556696949": "improve_accuracy" + }, + "id": 120672270 + } + }, + { + "id": 120671491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1337294, + 51.3118862 + ], + [ + 3.1337294, + 51.3118862 + ], + [ + 3.1337294, + 51.3118862 + ], + [ + 3.1337294, + 51.3118862 + ], + [ + 3.1337294, + 51.3118862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T14:51:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9722635408": "source: https://osm.org/note/3161433" + }, + "id": 120671491 + } + }, + { + "id": 120667519, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T12:57:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 3 + }, + "id": 120667519 + } + }, + { + "id": 120664615, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2788489, + 51.075126 + ], + [ + 5.3193839, + 51.075126 + ], + [ + 5.3193839, + 51.0851676 + ], + [ + 5.2788489, + 51.0851676 + ], + [ + 5.2788489, + 51.075126 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T11:34:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000407036256000042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 2, + "change_within_50m": 1, + "import:node/9722396748": "source: https://osm.org/note/3044563", + "import:node/9722435310": "source: https://osm.org/note/3044366", + "import:node/9722441185": "source: https://osm.org/note/3044384" + }, + "id": 120664615 + } + }, + { + "id": 120660825, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0475248, + 48.5402997 + ], + [ + 9.0493505, + 48.5402997 + ], + [ + 9.0493505, + 48.54198 + ], + [ + 9.0475248, + 48.54198 + ], + [ + 9.0475248, + 48.5402997 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T10:01:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000306772371000617, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 120660825 + } + }, + { + "id": 120660359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.256017, + 50.7163962 + ], + [ + 4.256017, + 50.7163962 + ], + [ + 4.256017, + 50.7163962 + ], + [ + 4.256017, + 50.7163962 + ], + [ + 4.256017, + 50.7163962 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T09:48:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 120660359 + } + }, + { + "id": 120660298, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3479591, + 51.3581455 + ], + [ + 3.348246, + 51.3581455 + ], + [ + 3.348246, + 51.3583067 + ], + [ + 3.3479591, + 51.3583067 + ], + [ + 3.3479591, + 51.3581455 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T09:46:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.62482800002256e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120660298 + } + }, + { + "id": 120658982, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 151.1473677, + -33.8140484 + ], + [ + 151.1473677, + -33.8140484 + ], + [ + 151.1473677, + -33.8140484 + ], + [ + 151.1473677, + -33.8140484 + ], + [ + 151.1473677, + -33.8140484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ssarzen", + "uid": "10198216", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T09:09:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120658982 + } + }, + { + "id": 120655486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4795532, + 50.9718663 + ], + [ + 5.4833068, + 50.9718663 + ], + [ + 5.4833068, + 50.973395 + ], + [ + 5.4795532, + 50.973395 + ], + [ + 5.4795532, + 50.9718663 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T06:48:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 153, + "modify": 97, + "delete": 0, + "area": 0.00000573812831997965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 93, + "theme": "grb", + "answer": 1, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 8, + "change_over_5000m": 6 + }, + "id": 120655486 + } + }, + { + "id": 120655411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2327139, + -39.8448461 + ], + [ + -73.2326088, + -39.8448461 + ], + [ + -73.2326088, + -39.8446683 + ], + [ + -73.2327139, + -39.8446683 + ], + [ + -73.2327139, + -39.8448461 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T06:45:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.86867799993857e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "id": 120655411 + } + }, + { + "id": 120654285, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.016939, + 14.7406765 + ], + [ + 121.0186261, + 14.7406765 + ], + [ + 121.0186261, + 14.741641 + ], + [ + 121.016939, + 14.741641 + ], + [ + 121.016939, + 14.7406765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Legitimater", + "uid": "15335201", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-07T05:37:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00000162720795001226, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 4, + "create": 6, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "id": 120654285 + } + }, + { + "id": 120653983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4473522, + 50.9383009 + ], + [ + 5.4783701, + 50.9383009 + ], + [ + 5.4783701, + 50.9512205 + ], + [ + 5.4473522, + 50.9512205 + ], + [ + 5.4473522, + 50.9383009 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-07T05:17:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 191, + "modify": 209, + "delete": 6, + "area": 0.000400738860839893, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 188, + "theme": "grb", + "answer": 6, + "delete": 6, + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "id": 120653983 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-08.json b/Docs/Tools/stats/stats.2022-5-08.json new file mode 100644 index 0000000000..acf1ca44aa --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-08.json @@ -0,0 +1,2842 @@ +{ + "features": [ + { + "id": 120721622, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2323793, + -39.8453414 + ], + [ + -73.2279485, + -39.8453414 + ], + [ + -73.2279485, + -39.8443341 + ], + [ + -73.2323793, + -39.8443341 + ], + [ + -73.2323793, + -39.8453414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T23:19:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00000446314484003003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 18 + }, + "id": 120721622 + } + }, + { + "id": 120720725, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3770763, + 52.5695488 + ], + [ + 13.3770763, + 52.5695488 + ], + [ + 13.3770763, + 52.5695488 + ], + [ + 13.3770763, + 52.5695488 + ], + [ + 13.3770763, + 52.5695488 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T22:16:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 120720725 + } + }, + { + "id": 120720277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.1843697, + 19.3139412 + ], + [ + -99.1842831, + 19.3139412 + ], + [ + -99.1842831, + 19.3140273 + ], + [ + -99.1843697, + 19.3140273 + ], + [ + -99.1843697, + 19.3139412 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T21:52:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 3, + "delete": 0, + "area": 7.45626000032759e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 6, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "id": 120720277 + } + }, + { + "id": 120720180, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.1848184, + 19.313955 + ], + [ + -99.1845059, + 19.313955 + ], + [ + -99.1845059, + 19.3139929 + ], + [ + -99.1848184, + 19.3139929 + ], + [ + -99.1848184, + 19.313955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T21:48:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 4, + "delete": 0, + "area": 1.18437499993493e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 6, + "create": 6, + "locale": "es", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6, + "change_within_25m": 7 + }, + "id": 120720180 + } + }, + { + "id": 120720053, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2305079, + -39.8448463 + ], + [ + -73.2305079, + -39.8448463 + ], + [ + -73.2305079, + -39.8448463 + ], + [ + -73.2305079, + -39.8448463 + ], + [ + -73.2305079, + -39.8448463 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T21:41:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120720053 + } + }, + { + "id": 120719103, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3215353, + 50.863263 + ], + [ + 5.1930214, + 50.863263 + ], + [ + 5.1930214, + 51.0440947 + ], + [ + 4.3215353, + 51.0440947 + ], + [ + 4.3215353, + 50.863263 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:57:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 138, + "modify": 224, + "delete": 8, + "area": 0.157592312989369, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 197, + "theme": "grb", + "answer": 4, + "delete": 8, + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46, + "change_over_5000m": 13 + }, + "id": 120719103 + } + }, + { + "id": 120719054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.560662, + 53.0158088 + ], + [ + 6.5707432, + 53.0158088 + ], + [ + 6.5707432, + 53.0199009 + ], + [ + 6.560662, + 53.0199009 + ], + [ + 6.560662, + 53.0158088 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:54:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 33, + "delete": 0, + "area": 0.0000412532785200121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 37, + "create": 22, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 32, + "change_within_1000m": 1 + }, + "id": 120719054 + } + }, + { + "id": 120718072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3978439, + 50.8588811 + ], + [ + 4.3978439, + 50.8588811 + ], + [ + 4.3978439, + 50.8588811 + ], + [ + 4.3978439, + 50.8588811 + ], + [ + 4.3978439, + 50.8588811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:18:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120718072 + } + }, + { + "id": 120717998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3973717, + 50.8592935 + ], + [ + 4.3973717, + 50.8592935 + ], + [ + 4.3973717, + 50.8592935 + ], + [ + 4.3973717, + 50.8592935 + ], + [ + 4.3973717, + 50.8592935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T20:15:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120717998 + } + }, + { + "id": 120715827, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5111952, + 44.8465782 + ], + [ + -0.5111952, + 44.8465782 + ], + [ + -0.5111952, + 44.8465782 + ], + [ + -0.5111952, + 44.8465782 + ], + [ + -0.5111952, + 44.8465782 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T19:04:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 5, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 6 + }, + "id": 120715827 + } + }, + { + "id": 120714938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3720864, + 50.8614537 + ], + [ + 4.3776622, + 50.8614537 + ], + [ + 4.3776622, + 50.8629491 + ], + [ + 4.3720864, + 50.8629491 + ], + [ + 4.3720864, + 50.8614537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:41:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000833805132001739, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120714938 + } + }, + { + "id": 120714230, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5678458, + 53.0189554 + ], + [ + 6.5707432, + 53.0189554 + ], + [ + 6.5707432, + 53.0213535 + ], + [ + 6.5678458, + 53.0213535 + ], + [ + 6.5678458, + 53.0189554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:29:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 44, + "delete": 0, + "area": 0.00000694825493998161, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 46, + "create": 31, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 25, + "change_within_1000m": 39 + }, + "id": 120714230 + } + }, + { + "id": 120714216, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:29:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 120714216 + } + }, + { + "id": 120713748, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3731347, + 50.8635293 + ], + [ + 4.3731463, + 50.8635293 + ], + [ + 4.3731463, + 50.8635367 + ], + [ + 4.3731347, + 50.8635367 + ], + [ + 4.3731347, + 50.8635293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:20:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.58399999357477e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 120713748 + } + }, + { + "id": 120713017, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5545349, + 53.0169293 + ], + [ + 6.570089, + 53.0169293 + ], + [ + 6.570089, + 53.0202106 + ], + [ + 6.5545349, + 53.0202106 + ], + [ + 6.5545349, + 53.0169293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T18:03:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 31, + "delete": 0, + "area": 0.0000510376683299631, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 35, + "create": 26, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 35, + "change_within_1000m": 18 + }, + "id": 120713017 + } + }, + { + "id": 120711721, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3715287, + 50.8609774 + ], + [ + 4.373096, + 50.8609774 + ], + [ + 4.373096, + 50.8638307 + ], + [ + 4.3715287, + 50.8638307 + ], + [ + 4.3715287, + 50.8609774 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9725152321", + "name": "Be Mobile Shop", + "osm_id": 9725152321, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "telecommunication" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:33:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000447197708999854, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 20 + }, + "id": 120711721 + } + }, + { + "id": 120711558, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3716089, + 50.8611078 + ], + [ + 4.3716089, + 50.8611078 + ], + [ + 4.3716089, + 50.8611078 + ], + [ + 4.3716089, + 50.8611078 + ], + [ + 4.3716089, + 50.8611078 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:29:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 120711558 + } + }, + { + "id": 120710998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3729978, + 50.8632563 + ], + [ + 4.3729978, + 50.8632563 + ], + [ + 4.3729978, + 50.8632563 + ], + [ + 4.3729978, + 50.8632563 + ], + [ + 4.3729978, + 50.8632563 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:13:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120710998 + } + }, + { + "id": 120710874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3726625, + 50.8626237 + ], + [ + 4.3728941, + 50.8626237 + ], + [ + 4.3728941, + 50.8632873 + ], + [ + 4.3726625, + 50.8632873 + ], + [ + 4.3726625, + 50.8626237 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T17:08:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.53689760000812e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 120710874 + } + }, + { + "id": 120709286, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2057596, + 41.5336634 + ], + [ + 2.2222761, + 41.5336634 + ], + [ + 2.2222761, + 41.5493551 + ], + [ + 2.2057596, + 41.5493551 + ], + [ + 2.2057596, + 41.5336634 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T16:19:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000259171963049969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "id": 120709286 + } + }, + { + "id": 120708939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2647166, + 53.2058247 + ], + [ + 6.2663684, + 53.2058247 + ], + [ + 6.2663684, + 53.211493 + ], + [ + 6.2647166, + 53.211493 + ], + [ + 6.2647166, + 53.2058247 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:08:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000936289793999584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 120708939 + } + }, + { + "id": 120708901, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2876617, + 50.71165 + ], + [ + 4.2876617, + 50.71165 + ], + [ + 4.2876617, + 50.71165 + ], + [ + 4.2876617, + 50.71165 + ], + [ + 4.2876617, + 50.71165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:08:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 120708901 + } + }, + { + "id": 120708849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2767103, + 53.2134036 + ], + [ + 6.2767103, + 53.2134036 + ], + [ + 6.2767103, + 53.2134036 + ], + [ + 6.2767103, + 53.2134036 + ], + [ + 6.2767103, + 53.2134036 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:07:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "id": 120708849 + } + }, + { + "id": 120708810, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2682003, + 53.2106725 + ], + [ + 6.2682003, + 53.2106725 + ], + [ + 6.2682003, + 53.2106725 + ], + [ + 6.2682003, + 53.2106725 + ], + [ + 6.2682003, + 53.2106725 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:06:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 120708810 + } + }, + { + "id": 120708774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2760951, + 53.2164172 + ], + [ + 6.2760951, + 53.2164172 + ], + [ + 6.2760951, + 53.2164172 + ], + [ + 6.2760951, + 53.2164172 + ], + [ + 6.2760951, + 53.2164172 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:05:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 2 + }, + "id": 120708774 + } + }, + { + "id": 120708693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2642372, + 53.2098303 + ], + [ + 6.2773318, + 53.2098303 + ], + [ + 6.2773318, + 53.2134429 + ], + [ + 6.2642372, + 53.2134429 + ], + [ + 6.2642372, + 53.2098303 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T16:02:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000047305551959956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1, + "change_within_1000m": 1 + }, + "id": 120708693 + } + }, + { + "id": 120708578, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2589364, + 53.2039524 + ], + [ + 6.260171, + 53.2039524 + ], + [ + 6.260171, + 53.2048651 + ], + [ + 6.2589364, + 53.2048651 + ], + [ + 6.2589364, + 53.2039524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T15:58:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000112681942000089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 6 + }, + "id": 120708578 + } + }, + { + "id": 120702754, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1045262, + 38.8347373 + ], + [ + 0.1119218, + 38.8347373 + ], + [ + 0.1119218, + 38.8381897 + ], + [ + 0.1045262, + 38.8381897 + ], + [ + 0.1045262, + 38.8347373 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T13:30:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000255325694400035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120702754 + } + }, + { + "id": 120702220, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3735711, + 50.8643453 + ], + [ + 4.3735711, + 50.8643453 + ], + [ + 4.3735711, + 50.8643453 + ], + [ + 4.3735711, + 50.8643453 + ], + [ + 4.3735711, + 50.8643453 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T13:14:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 120702220 + } + }, + { + "id": 120699297, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0660409, + 49.9762415 + ], + [ + 8.0660409, + 49.9762415 + ], + [ + 8.0660409, + 49.9762415 + ], + [ + 8.0660409, + 49.9762415 + ], + [ + 8.0660409, + 49.9762415 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "self", + "uid": "34921", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T11:53:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120699297 + } + }, + { + "id": 120698684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5869583, + 50.7710205 + ], + [ + 4.6032562, + 50.7710205 + ], + [ + 4.6032562, + 50.7836911 + ], + [ + 4.5869583, + 50.7836911 + ], + [ + 4.5869583, + 50.7710205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T11:30:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.000206504171739993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 2 + }, + "id": 120698684 + } + }, + { + "id": 120698370, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.9655381, + 60.3156939 + ], + [ + 24.9675847, + 60.3156939 + ], + [ + 24.9675847, + 60.3173939 + ], + [ + 24.9655381, + 60.3173939 + ], + [ + 24.9655381, + 60.3156939 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T11:20:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000347921999999899, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120698370 + } + }, + { + "id": 120698157, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.9679602, + 60.3176059 + ], + [ + 24.9684751, + 60.3176059 + ], + [ + 24.9684751, + 60.3178822 + ], + [ + 24.9679602, + 60.3178822 + ], + [ + 24.9679602, + 60.3176059 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T11:14:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.42266870001236e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 120698157 + } + }, + { + "id": 120697709, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4609352, + 50.8944885 + ], + [ + 5.4668353, + 50.8944885 + ], + [ + 5.4668353, + 50.896624 + ], + [ + 5.4609352, + 50.896624 + ], + [ + 5.4609352, + 50.8944885 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T10:59:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 298, + "delete": 0, + "area": 0.0000125996635500079, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 261, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 74 + }, + "id": 120697709 + } + }, + { + "id": 120697581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3792697, + 50.8449872 + ], + [ + 4.3792697, + 50.8449872 + ], + [ + 4.3792697, + 50.8449872 + ], + [ + 4.3792697, + 50.8449872 + ], + [ + 4.3792697, + 50.8449872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T10:53:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 120697581 + } + }, + { + "id": 120696126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8772687, + 51.0602847 + ], + [ + 4.8807864, + 51.0602847 + ], + [ + 4.8807864, + 51.0613724 + ], + [ + 4.8772687, + 51.0613724 + ], + [ + 4.8772687, + 51.0602847 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T10:10:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000382620229002245, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120696126 + } + }, + { + "id": 120695033, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4479748, + 50.8888955 + ], + [ + 5.4689231, + 50.8888955 + ], + [ + 5.4689231, + 50.9040192 + ], + [ + 5.4479748, + 50.9040192 + ], + [ + 5.4479748, + 50.8888955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T09:41:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 477, + "modify": 2221, + "delete": 22, + "area": 0.000316815804710074, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1980, + "theme": "grb", + "answer": 1, + "delete": 22, + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 534 + }, + "id": 120695033 + } + }, + { + "id": 120695001, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T09:41:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 120695001 + } + }, + { + "id": 120694660, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4292086, + 50.8971185 + ], + [ + 5.45585, + 50.8971185 + ], + [ + 5.45585, + 50.9057653 + ], + [ + 5.4292086, + 50.9057653 + ], + [ + 5.4292086, + 50.8971185 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T09:31:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 195, + "modify": 382, + "delete": 14, + "area": 0.000230362857520028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 336, + "theme": "grb", + "delete": 14, + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "id": 120694660 + } + }, + { + "id": 120691778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2376047, + 41.4652271 + ], + [ + 2.2384688, + 41.4652271 + ], + [ + 2.2384688, + 41.466306 + ], + [ + 2.2376047, + 41.466306 + ], + [ + 2.2376047, + 41.4652271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8853143449", + "osm_id": 8853143449, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T07:44:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.32277490002957e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 8, + "locale": "ca", + "imagery": "HDM_HOT", + "add-image": 6 + }, + "id": 120691778 + } + }, + { + "id": 120691575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2387445, + 50.7363996 + ], + [ + 4.2387445, + 50.7363996 + ], + [ + 4.2387445, + 50.7363996 + ], + [ + 4.2387445, + 50.7363996 + ], + [ + 4.2387445, + 50.7363996 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T07:34:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 7 + }, + "id": 120691575 + } + }, + { + "id": 120691024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4855543, + 48.0827774 + ], + [ + 11.4855543, + 48.0827774 + ], + [ + 11.4855543, + 48.0827774 + ], + [ + 11.4855543, + 48.0827774 + ], + [ + 11.4855543, + 48.0827774 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "muc-osm", + "uid": "17011", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T07:14:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 120691024 + } + }, + { + "id": 120689653, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2383659, + 50.7391702 + ], + [ + 4.2383659, + 50.7391702 + ], + [ + 4.2383659, + 50.7391702 + ], + [ + 4.2383659, + 50.7391702 + ], + [ + 4.2383659, + 50.7391702 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-08T06:06:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1 + }, + "id": 120689653 + } + }, + { + "id": 120688598, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1360711, + 51.2913161 + ], + [ + 3.1360711, + 51.2913161 + ], + [ + 3.1360711, + 51.2913161 + ], + [ + 3.1360711, + 51.2913161 + ], + [ + 3.1360711, + 51.2913161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-08T04:42:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120688598 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-09.json b/Docs/Tools/stats/stats.2022-5-09.json new file mode 100644 index 0000000000..9d5bb20e80 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-09.json @@ -0,0 +1,2518 @@ +{ + "features": [ + { + "id": 120768556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3607558, + 52.5712482 + ], + [ + 13.3607558, + 52.5712482 + ], + [ + 13.3607558, + 52.5712482 + ], + [ + 13.3607558, + 52.5712482 + ], + [ + 13.3607558, + 52.5712482 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T23:39:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 120768556 + } + }, + { + "id": 120766323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1968203, + 48.6545271 + ], + [ + 9.1970581, + 48.6545271 + ], + [ + 9.1970581, + 48.6548064 + ], + [ + 9.1968203, + 48.6548064 + ], + [ + 9.1968203, + 48.6545271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T21:27:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.64175399986216e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 120766323 + } + }, + { + "id": 120766214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1929478, + 48.6532462 + ], + [ + 9.1929478, + 48.6532462 + ], + [ + 9.1929478, + 48.6532462 + ], + [ + 9.1929478, + 48.6532462 + ], + [ + 9.1929478, + 48.6532462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T21:22:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 120766214 + } + }, + { + "id": 120765560, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3484364, + 52.5757559 + ], + [ + 13.3484364, + 52.5757559 + ], + [ + 13.3484364, + 52.5757559 + ], + [ + 13.3484364, + 52.5757559 + ], + [ + 13.3484364, + 52.5757559 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T20:57:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 2 + }, + "id": 120765560 + } + }, + { + "id": 120762668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9935585, + 48.4989174 + ], + [ + 8.9965179, + 48.4989174 + ], + [ + 8.9965179, + 48.5009311 + ], + [ + 8.9935585, + 48.5009311 + ], + [ + 8.9935585, + 48.4989174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T19:18:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000595934377999728, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 18, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 6, + "change_within_100m": 8, + "change_within_500m": 2 + }, + "id": 120762668 + } + }, + { + "id": 120762570, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1876579, + 48.6532462 + ], + [ + 9.1929478, + 48.6532462 + ], + [ + 9.1929478, + 48.6543386 + ], + [ + 9.1876579, + 48.6543386 + ], + [ + 9.1876579, + 48.6532462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T19:14:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000577868676002521, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 4 + }, + "id": 120762570 + } + }, + { + "id": 120761878, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7024508, + 51.0412119 + ], + [ + 3.7024508, + 51.0412119 + ], + [ + 3.7024508, + 51.0412119 + ], + [ + 3.7024508, + 51.0412119 + ], + [ + 3.7024508, + 51.0412119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T18:51:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 7 + }, + "id": 120761878 + } + }, + { + "id": 120761758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7029086, + 51.0385771 + ], + [ + 3.7034347, + 51.0385771 + ], + [ + 3.7034347, + 51.0396271 + ], + [ + 3.7029086, + 51.0396271 + ], + [ + 3.7029086, + 51.0385771 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T18:47:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.5240499999927e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "id": 120761758 + } + }, + { + "id": 120759277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6156557, + 39.324963 + ], + [ + -76.6156557, + 39.324963 + ], + [ + -76.6156557, + 39.324963 + ], + [ + -76.6156557, + 39.324963 + ], + [ + -76.6156557, + 39.324963 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:38:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120759277 + } + }, + { + "id": 120759206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1047871, + 38.8400339 + ], + [ + 0.1051384, + 38.8400339 + ], + [ + 0.1051384, + 38.8403364 + ], + [ + 0.1047871, + 38.8403364 + ], + [ + 0.1047871, + 38.8400339 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:35:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.06268249998789e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 9, + "locale": "ca", + "imagery": "osm", + "change_within_25m": 9 + }, + "id": 120759206 + } + }, + { + "id": 120758932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3505254, + 52.575432 + ], + [ + 13.3505254, + 52.575432 + ], + [ + 13.3505254, + 52.575432 + ], + [ + 13.3505254, + 52.575432 + ], + [ + 13.3505254, + 52.575432 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:28:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120758932 + } + }, + { + "id": 120758801, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:25:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120758801 + } + }, + { + "id": 120758754, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6970783, + 47.8288567 + ], + [ + -0.6970783, + 47.8288567 + ], + [ + -0.6970783, + 47.8288567 + ], + [ + -0.6970783, + 47.8288567 + ], + [ + -0.6970783, + 47.8288567 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ayack", + "uid": "32476", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T17:24:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 120758754 + } + }, + { + "id": 120758706, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3521541, + 52.5747559 + ], + [ + 13.3521541, + 52.5747559 + ], + [ + 13.3521541, + 52.5747559 + ], + [ + 13.3521541, + 52.5747559 + ], + [ + 13.3521541, + 52.5747559 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T17:23:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120758706 + } + }, + { + "id": 120757633, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4168042, + 46.9354753 + ], + [ + 7.4168042, + 46.9354753 + ], + [ + 7.4168042, + 46.9354753 + ], + [ + 7.4168042, + 46.9354753 + ], + [ + 7.4168042, + 46.9354753 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T16:53:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 3 + }, + "id": 120757633 + } + }, + { + "id": 120757174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1962937, + 48.6546664 + ], + [ + 9.1967073, + 48.6546664 + ], + [ + 9.1967073, + 48.6548059 + ], + [ + 9.1962937, + 48.6548059 + ], + [ + 9.1962937, + 48.6546664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T16:39:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.76971999983165e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120757174 + } + }, + { + "id": 120756962, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.6266143, + 45.0558845 + ], + [ + 7.6975242, + 45.0558845 + ], + [ + 7.6975242, + 45.0881672 + ], + [ + 7.6266143, + 45.0881672 + ], + [ + 7.6266143, + 45.0558845 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "madbob", + "uid": "734100", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T16:34:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 218, + "delete": 0, + "area": 0.00228916302873023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 357, + "locale": "en", + "imagery": "osm" + }, + "id": 120756962 + } + }, + { + "id": 120756175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ], + [ + -73.2300796, + -39.8441085 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nw520", + "uid": "6895624", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T16:14:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120756175 + } + }, + { + "id": 120755140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2505394, + -39.8309026 + ], + [ + -73.2497998, + -39.8309026 + ], + [ + -73.2497998, + -39.8278991 + ], + [ + -73.2505394, + -39.8278991 + ], + [ + -73.2505394, + -39.8309026 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T15:54:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000222138859996465, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "es", + "imagery": "Mapbox", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 120755140 + } + }, + { + "id": 120751998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2370224, + 50.7345462 + ], + [ + 4.2407221, + 50.7345462 + ], + [ + 4.2407221, + 50.7369132 + ], + [ + 4.2370224, + 50.7369132 + ], + [ + 4.2370224, + 50.7345462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T14:37:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000875718989999911, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 1, + "theme": "waste", + "answer": 3, + "create": 3, + "locale": "en", + "imagery": "osm", + "move:node/9727037575": "improve_accuracy" + }, + "id": 120751998 + } + }, + { + "id": 120751761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.238831, + 50.7384493 + ], + [ + 4.238831, + 50.7384493 + ], + [ + 4.238831, + 50.7384493 + ], + [ + 4.238831, + 50.7384493 + ], + [ + 4.238831, + 50.7384493 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T14:30:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120751761 + } + }, + { + "id": 120750374, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T13:54:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 1 + }, + "id": 120750374 + } + }, + { + "id": 120745628, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.872528, + 50.770528 + ], + [ + 4.0261788, + 50.770528 + ], + [ + 4.0261788, + 50.839306 + ], + [ + 3.872528, + 50.839306 + ], + [ + 3.872528, + 50.770528 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T12:02:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0105677947224003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 2, + "locale": "nl", + "imagery": "osm", + "move:node/9726748950": "improve_accuracy", + "import:node/9726748950": "source: https://osm.org/note/3161435", + "import:node/9726749177": "source: https://osm.org/note/3161448" + }, + "id": 120745628 + } + }, + { + "id": 120744338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4527137, + 50.9126693 + ], + [ + 5.4683992, + 50.9126693 + ], + [ + 5.4683992, + 50.9195245 + ], + [ + 5.4527137, + 50.9195245 + ], + [ + 5.4527137, + 50.9126693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T11:36:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 147, + "modify": 726, + "delete": 27, + "area": 0.000107527239600062, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 637, + "theme": "grb", + "delete": 27, + "import": 24, + "locale": "nl", + "imagery": "osm", + "conflation": 182 + }, + "id": 120744338 + } + }, + { + "id": 120743540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0987596, + 38.8290415 + ], + [ + 0.1156732, + 38.8290415 + ], + [ + 0.1156732, + 38.8484067 + ], + [ + 0.0987596, + 38.8484067 + ], + [ + 0.0987596, + 38.8290415 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T11:18:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000327535246719928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 11, + "locale": "ca", + "imagery": "CartoDB.Voyager" + }, + "id": 120743540 + } + }, + { + "id": 120743062, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7731392, + 50.9032585 + ], + [ + 4.7808377, + 50.9032585 + ], + [ + 4.7808377, + 50.9075759 + ], + [ + 4.7731392, + 50.9075759 + ], + [ + 4.7731392, + 50.9032585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T11:08:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 403, + "modify": 10, + "delete": 0, + "area": 0.0000332375038999842, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 8, + "theme": "grb", + "answer": 1, + "import": 41, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 120743062 + } + }, + { + "id": 120742166, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1001702, + 38.8322347 + ], + [ + 0.1023056, + 38.8322347 + ], + [ + 0.1023056, + 38.8372991 + ], + [ + 0.1001702, + 38.8372991 + ], + [ + 0.1001702, + 38.8322347 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T10:49:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000108145197600042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 8, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 8 + }, + "id": 120742166 + } + }, + { + "id": 120740918, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4581651, + 50.9130981 + ], + [ + 5.4669901, + 50.9130981 + ], + [ + 5.4669901, + 50.9168946 + ], + [ + 5.4581651, + 50.9168946 + ], + [ + 5.4581651, + 50.9130981 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T10:22:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 55, + "modify": 1191, + "delete": 19, + "area": 0.0000335041124999993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1040, + "theme": "grb", + "answer": 1, + "delete": 19, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 318 + }, + "id": 120740918 + } + }, + { + "id": 120739482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4567301, + 50.9118103 + ], + [ + 5.4637586, + 50.9118103 + ], + [ + 5.4637586, + 50.9164323 + ], + [ + 5.4567301, + 50.9164323 + ], + [ + 5.4567301, + 50.9118103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:54:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 55, + "modify": 980, + "delete": 0, + "area": 0.0000324857269999863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 848, + "theme": "grb", + "answer": 1, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 264 + }, + "id": 120739482 + } + }, + { + "id": 120739435, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2375953, + 50.8060686 + ], + [ + 3.2375953, + 50.8060686 + ], + [ + 3.2375953, + 50.8060686 + ], + [ + 3.2375953, + 50.8060686 + ], + [ + 3.2375953, + 50.8060686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:53:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9726460006": "source: https://osm.org/note/3156313" + }, + "id": 120739435 + } + }, + { + "id": 120738436, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4424134, + 50.9156642 + ], + [ + 5.45748, + 50.9156642 + ], + [ + 5.45748, + 50.919109 + ], + [ + 5.4424134, + 50.919109 + ], + [ + 5.4424134, + 50.9156642 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:34:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 214, + "modify": 694, + "delete": 6, + "area": 0.0000519014236799533, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 611, + "theme": "grb", + "delete": 6, + "import": 24, + "locale": "nl", + "imagery": "osm", + "conflation": 172 + }, + "id": 120738436 + } + }, + { + "id": 120738248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4451765, + 50.917189 + ], + [ + 5.4511777, + 50.917189 + ], + [ + 5.4511777, + 50.918946 + ], + [ + 5.4451765, + 50.918946 + ], + [ + 5.4451765, + 50.917189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:29:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 67, + "modify": 199, + "delete": 3, + "area": 0.0000105441083999868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 182, + "theme": "grb", + "delete": 3, + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "id": 120738248 + } + }, + { + "id": 120738068, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4488631, + 50.9180905 + ], + [ + 5.4529536, + 50.9180905 + ], + [ + 5.4529536, + 50.922793 + ], + [ + 5.4488631, + 50.922793 + ], + [ + 5.4488631, + 50.9180905 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T09:25:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 268, + "delete": 10, + "area": 0.0000192355762500031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 231, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 52 + }, + "id": 120738068 + } + }, + { + "id": 120736209, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.988477, + 43.3452759 + ], + [ + -3.988477, + 43.3452759 + ], + [ + -3.988477, + 43.3452759 + ], + [ + -3.988477, + 43.3452759 + ], + [ + -3.988477, + 43.3452759 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T08:49:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 120736209 + } + }, + { + "id": 120735970, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.641443, + 47.3225692 + ], + [ + 9.641443, + 47.3225692 + ], + [ + 9.641443, + 47.3225692 + ], + [ + 9.641443, + 47.3225692 + ], + [ + 9.641443, + 47.3225692 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-09T08:44:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "id": 120735970 + } + }, + { + "id": 120733149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2117132, + 41.5458995 + ], + [ + 2.2132922, + 41.5458995 + ], + [ + 2.2132922, + 41.5468769 + ], + [ + 2.2117132, + 41.5468769 + ], + [ + 2.2117132, + 41.5458995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T07:36:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000154331460000563, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 120733149 + } + }, + { + "id": 120724011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.2564001, + 43.7845398 + ], + [ + -72.2564001, + 43.7845398 + ], + [ + -72.2564001, + 43.7845398 + ], + [ + -72.2564001, + 43.7845398 + ], + [ + -72.2564001, + 43.7845398 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "A Hall", + "uid": "936117", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T02:28:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120724011 + } + }, + { + "id": 120722796, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.1715486, + 19.4255156 + ], + [ + -99.1715486, + 19.4255156 + ], + [ + -99.1715486, + 19.4255156 + ], + [ + -99.1715486, + 19.4255156 + ], + [ + -99.1715486, + 19.4255156 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T00:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 120722796 + } + }, + { + "id": 120722214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2319315, + -39.8446606 + ], + [ + -73.2318704, + -39.8446606 + ], + [ + -73.2318704, + -39.8445775 + ], + [ + -73.2319315, + -39.8445775 + ], + [ + -73.2319315, + -39.8446606 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-09T00:04:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.07740999955625e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 4 + }, + "id": 120722214 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-10.json b/Docs/Tools/stats/stats.2022-5-10.json new file mode 100644 index 0000000000..397fac6a52 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-10.json @@ -0,0 +1,3082 @@ +{ + "features": [ + { + "id": 120813715, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.851323, + 50.7976572 + ], + [ + 3.3590464, + 50.7976572 + ], + [ + 3.3590464, + 51.0309932 + ], + [ + 2.851323, + 51.0309932 + ], + [ + 2.851323, + 50.7976572 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T23:25:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.118470147262397, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 2, + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "import:node/9731220089": "source: https://osm.org/note/3156351", + "import:node/9731264405": "source: https://osm.org/note/3156441", + "import:node/9731265898": "source: https://osm.org/note/3156445", + "import:node/9731265924": "source: https://osm.org/note/3156363", + "import:node/9731266648": "source: https://osm.org/note/3156348", + "import:node/9731266948": "source: https://osm.org/note/3156514", + "import:node/9731266949": "source: https://osm.org/note/3156462" + }, + "id": 120813715 + } + }, + { + "id": 120812691, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1067251, + 38.8455358 + ], + [ + 0.1067251, + 38.8455358 + ], + [ + 0.1067251, + 38.8455358 + ], + [ + 0.1067251, + 38.8455358 + ], + [ + 0.1067251, + 38.8455358 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T22:17:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "id": 120812691 + } + }, + { + "id": 120809532, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7359211, + 48.3298646 + ], + [ + 11.7359211, + 48.3298646 + ], + [ + 11.7359211, + 48.3298646 + ], + [ + 11.7359211, + 48.3298646 + ], + [ + 11.7359211, + 48.3298646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T20:05:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "id": 120809532 + } + }, + { + "id": 120807384, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7317664, + 51.0552688 + ], + [ + 3.7335813, + 51.0552688 + ], + [ + 3.7335813, + 51.0557186 + ], + [ + 3.7317664, + 51.0557186 + ], + [ + 3.7317664, + 51.0552688 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mietcls", + "uid": "15913740", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T18:58:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 8.16342019997007e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120807384 + } + }, + { + "id": 120806190, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2971361, + 50.7863165 + ], + [ + 4.2971361, + 50.7863165 + ], + [ + 4.2971361, + 50.7863165 + ], + [ + 4.2971361, + 50.7863165 + ], + [ + 4.2971361, + 50.7863165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T18:24:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "id": 120806190 + } + }, + { + "id": 120805867, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7104171, + 51.0373003 + ], + [ + 3.7104171, + 51.0373003 + ], + [ + 3.7104171, + 51.0373003 + ], + [ + 3.7104171, + 51.0373003 + ], + [ + 3.7104171, + 51.0373003 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T18:16:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_50m": 6 + }, + "id": 120805867 + } + }, + { + "id": 120805157, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T17:57:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 120805157 + } + }, + { + "id": 120804994, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.25102, + -39.8320848 + ], + [ + -73.2505177, + -39.8320848 + ], + [ + -73.2505177, + -39.8273032 + ], + [ + -73.25102, + -39.8273032 + ], + [ + -73.25102, + -39.8320848 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:51:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000240179767996707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 5, + "change_within_5000m": 5 + }, + "id": 120804994 + } + }, + { + "id": 120804027, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.58691, + 50.7708847 + ], + [ + 4.603364, + 50.7708847 + ], + [ + 4.603364, + 50.7836911 + ], + [ + 4.58691, + 50.7836911 + ], + [ + 4.58691, + 50.7708847 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:22:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 12, + "delete": 0, + "area": 0.000210716505599927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 29, + "move:node/9724554639": "improve_accuracy" + }, + "id": 120804027 + } + }, + { + "id": 120803919, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2322005, + 50.7313691 + ], + [ + 4.2322005, + 50.7313691 + ], + [ + 4.2322005, + 50.7313691 + ], + [ + 4.2322005, + 50.7313691 + ], + [ + 4.2322005, + 50.7313691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:19:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 7 + }, + "id": 120803919 + } + }, + { + "id": 120803744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2343521, + 50.7327383 + ], + [ + 4.3390365, + 50.7327383 + ], + [ + 4.3390365, + 50.7415725 + ], + [ + 4.2343521, + 50.7415725 + ], + [ + 4.2343521, + 50.7327383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T17:14:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000924802926479525, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 17, + "change_within_5000m": 1 + }, + "id": 120803744 + } + }, + { + "id": 120799823, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2657101, + 50.7551109 + ], + [ + 4.2663037, + 50.7551109 + ], + [ + 4.2663037, + 50.7555304 + ], + [ + 4.2657101, + 50.7555304 + ], + [ + 4.2657101, + 50.7551109 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T15:42:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.49015199999828e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 4, + "change_within_25m": 9, + "change_within_50m": 1 + }, + "id": 120799823 + } + }, + { + "id": 120799030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -9.2873619, + 38.8185745 + ], + [ + -9.2872238, + 38.8185745 + ], + [ + -9.2872238, + 38.818609 + ], + [ + -9.2873619, + 38.818609 + ], + [ + -9.2873619, + 38.8185745 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Luice Marion", + "uid": "9490064", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T15:20:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.76445000075897e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 7, + "create": 2, + "locale": "en", + "imagery": "ORTOS_DGT_2018_WMS", + "change_over_5000m": 2, + "change_within_500m": 7 + }, + "id": 120799030 + } + }, + { + "id": 120796607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2496558, + -39.830912 + ], + [ + -73.2496558, + -39.830912 + ], + [ + -73.2496558, + -39.830912 + ], + [ + -73.2496558, + -39.830912 + ], + [ + -73.2496558, + -39.830912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T14:16:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120796607 + } + }, + { + "id": 120796593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.149222, + 37.9797166 + ], + [ + -1.1153529, + 37.9797166 + ], + [ + -1.1153529, + 38.0068996 + ], + [ + -1.149222, + 38.0068996 + ], + [ + -1.149222, + 37.9797166 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 530, + "name": "Mapbox: Incorrect mapping" + } + ], + "tags": [], + "features": [ + { + "url": "way-306587199", + "osm_id": 306587199, + "reasons": [ + 530 + ], + "version": 5 + } + ], + "user": "lololailo", + "uid": "8621270", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T14:15:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.000920663745299788, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "move": 1, + "theme": "aed", + "answer": 12, + "create": 3, + "locale": "es", + "imagery": "osm", + "move:node/9730192543": "improve_accuracy" + }, + "id": 120796593 + } + }, + { + "id": 120795016, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4647473, + 50.9170618 + ], + [ + 5.4679428, + 50.9170618 + ], + [ + 5.4679428, + 50.9208428 + ], + [ + 5.4647473, + 50.9208428 + ], + [ + 5.4647473, + 50.9170618 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:40:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 61, + "modify": 527, + "delete": 4, + "area": 0.0000120821855000128, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 468, + "theme": "grb", + "delete": 4, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 122 + }, + "id": 120795016 + } + }, + { + "id": 120794993, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:40:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 5, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 120794993 + } + }, + { + "id": 120793810, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4822592, + 51.0173869 + ], + [ + 4.4822592, + 51.0173869 + ], + [ + 4.4822592, + 51.0173869 + ], + [ + 4.4822592, + 51.0173869 + ], + [ + 4.4822592, + 51.0173869 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T13:15:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120793810 + } + }, + { + "id": 120793653, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.466185, + 50.9172081 + ], + [ + 5.4723473, + 50.9172081 + ], + [ + 5.4723473, + 50.9200736 + ], + [ + 5.466185, + 50.9200736 + ], + [ + 5.466185, + 50.9172081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:12:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 137, + "modify": 1013, + "delete": 43, + "area": 0.0000176580706499908, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 893, + "theme": "grb", + "delete": 43, + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 270 + }, + "id": 120793653 + } + }, + { + "id": 120793603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4686946, + 50.9165438 + ], + [ + 5.4702712, + 50.9165438 + ], + [ + 5.4702712, + 50.9175513 + ], + [ + 5.4686946, + 50.9175513 + ], + [ + 5.4686946, + 50.9165438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T13:11:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 44, + "delete": 2, + "area": 0.00000158842450000001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 39, + "theme": "grb", + "delete": 2, + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "id": 120793603 + } + }, + { + "id": 120792734, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2767473, + 53.213969 + ], + [ + 6.2767647, + 53.213969 + ], + [ + 6.2767647, + 53.2140205 + ], + [ + 6.2767473, + 53.2140205 + ], + [ + 6.2767473, + 53.213969 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T12:51:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 8.96099999960165e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 8 + }, + "id": 120792734 + } + }, + { + "id": 120792405, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.457712, + -34.6252336 + ], + [ + -58.4576878, + -34.6252336 + ], + [ + -58.4576878, + -34.625199 + ], + [ + -58.457712, + -34.625199 + ], + [ + -58.457712, + -34.6252336 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T12:44:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.37319999934868e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 14, + "locale": "en", + "imagery": "osm", + "change_within_25m": 14 + }, + "id": 120792405 + } + }, + { + "id": 120791664, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4608569, + 50.914801 + ], + [ + 5.4701171, + 50.914801 + ], + [ + 5.4701171, + 50.9192174 + ], + [ + 5.4608569, + 50.9192174 + ], + [ + 5.4608569, + 50.914801 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T12:28:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 68, + "modify": 986, + "delete": 9, + "area": 0.0000408967472800385, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 853, + "theme": "grb", + "delete": 9, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 266 + }, + "id": 120791664 + } + }, + { + "id": 120791305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3390365, + 50.7415725 + ], + [ + 4.3390365, + 50.7415725 + ], + [ + 4.3390365, + 50.7415725 + ], + [ + 4.3390365, + 50.7415725 + ], + [ + 4.3390365, + 50.7415725 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T12:19:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5, + "import:node/9729925596": "source: https://osm.org/note/3091099" + }, + "id": 120791305 + } + }, + { + "id": 120789321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5720681, + 50.8041532 + ], + [ + 4.5720681, + 50.8041532 + ], + [ + 4.5720681, + 50.8041532 + ], + [ + 4.5720681, + 50.8041532 + ], + [ + 4.5720681, + 50.8041532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Turfje65", + "uid": "15863882", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T11:38:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "id": 120789321 + } + }, + { + "id": 120786710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4302831, + 51.1785656 + ], + [ + 4.4303451, + 51.1785656 + ], + [ + 4.4303451, + 51.1785974 + ], + [ + 4.4302831, + 51.1785974 + ], + [ + 4.4302831, + 51.1785656 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:31:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.9716000001538e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/surveillance.html", + "theme": "surveillance", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 120786710 + } + }, + { + "id": 120786267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9631704, + 53.4058384 + ], + [ + -2.9631704, + 53.4058384 + ], + [ + -2.9631704, + 53.4058384 + ], + [ + -2.9631704, + 53.4058384 + ], + [ + -2.9631704, + 53.4058384 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Adrian McEwen", + "uid": "55910", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120786267 + } + }, + { + "id": 120785757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7876863, + 53.0245418 + ], + [ + 11.7876863, + 53.0245418 + ], + [ + 11.7876863, + 53.0245418 + ], + [ + 11.7876863, + 53.0245418 + ], + [ + 11.7876863, + 53.0245418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "micjoe", + "uid": "15079427", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:07:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 120785757 + } + }, + { + "id": 120785535, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4617076, + 50.9185465 + ], + [ + 5.4626992, + 50.9185465 + ], + [ + 5.4626992, + 50.9191469 + ], + [ + 5.4617076, + 50.9191469 + ], + [ + 5.4617076, + 50.9185465 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T10:02:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 45, + "delete": 1, + "area": 5.95356640003171e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 37, + "theme": "grb", + "delete": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "id": 120785535 + } + }, + { + "id": 120785470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3984362, + 50.7928975 + ], + [ + 5.4015032, + 50.7928975 + ], + [ + 5.4015032, + 50.794697 + ], + [ + 5.3984362, + 50.794697 + ], + [ + 5.3984362, + 50.7928975 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T10:00:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 263, + "modify": 11, + "delete": 0, + "area": 0.00000551906649999048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 10, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 120785470 + } + }, + { + "id": 120785272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.459126, + 50.9188829 + ], + [ + 5.4617471, + 50.9188829 + ], + [ + 5.4617471, + 50.9200934 + ], + [ + 5.459126, + 50.9200934 + ], + [ + 5.459126, + 50.9188829 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T09:56:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 250, + "delete": 0, + "area": 0.00000317284154999746, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 220, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "id": 120785272 + } + }, + { + "id": 120783116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0178013, + 38.7931732 + ], + [ + 0.104075, + 38.7931732 + ], + [ + 0.104075, + 38.8393526 + ], + [ + 0.0178013, + 38.8393526 + ], + [ + 0.0178013, + 38.7931732 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9729432901", + "osm_id": 9729432901, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T09:09:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 17, + "delete": 0, + "area": 0.00398406770177998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 27, + "create": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5, + "change_within_1000m": 9, + "change_within_5000m": 14 + }, + "id": 120783116 + } + }, + { + "id": 120783030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1070147, + 38.8346457 + ], + [ + 0.1121244, + 38.8346457 + ], + [ + 0.1121244, + 38.8377795 + ], + [ + 0.1070147, + 38.8377795 + ], + [ + 0.1070147, + 38.8346457 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T09:07:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000160127778600026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 3, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1, + "change_within_1000m": 2 + }, + "id": 120783030 + } + }, + { + "id": 120782971, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0952426, + 38.8392283 + ], + [ + 0.0954281, + 38.8392283 + ], + [ + 0.0954281, + 38.8394722 + ], + [ + 0.0952426, + 38.8394722 + ], + [ + 0.0952426, + 38.8392283 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T09:05:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.52434500001798e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_within_5000m": 2 + }, + "id": 120782971 + } + }, + { + "id": 120781401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9872829, + 51.7605874 + ], + [ + 13.9880902, + 51.7605874 + ], + [ + 13.9880902, + 51.7608638 + ], + [ + 13.9872829, + 51.7608638 + ], + [ + 13.9872829, + 51.7605874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T08:27:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.23137720003357e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 120781401 + } + }, + { + "id": 120779320, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8810921, + 43.259159 + ], + [ + -3.8037264, + 43.259159 + ], + [ + -3.8037264, + 43.3043428 + ], + [ + -3.8810921, + 43.3043428 + ], + [ + -3.8810921, + 43.259159 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T07:42:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0034956763156603, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 14, + "create": 6, + "locale": "en", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 6, + "change_within_25m": 20 + }, + "id": 120779320 + } + }, + { + "id": 120777821, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4531617, + 50.9185925 + ], + [ + 5.4668404, + 50.9185925 + ], + [ + 5.4668404, + 50.9229729 + ], + [ + 5.4531617, + 50.9229729 + ], + [ + 5.4531617, + 50.9185925 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T07:09:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 199, + "modify": 1588, + "delete": 40, + "area": 0.0000599181774799332, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1387, + "theme": "grb", + "delete": 40, + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 406 + }, + "id": 120777821 + } + }, + { + "id": 120775456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.995714, + 48.499319 + ], + [ + 8.9962585, + 48.499319 + ], + [ + 8.9962585, + 48.499606 + ], + [ + 8.995714, + 48.499606 + ], + [ + 8.995714, + 48.499319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T06:12:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.56271500000129e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "locale": "de", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 120775456 + } + }, + { + "id": 120775452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2499418, + -39.8319456 + ], + [ + -73.2491687, + -39.8319456 + ], + [ + -73.2491687, + -39.8308828 + ], + [ + -73.2499418, + -39.8308828 + ], + [ + -73.2499418, + -39.8319456 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T06:12:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 8.21650680003511e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "Mapbox", + "add-image": 6 + }, + "id": 120775452 + } + }, + { + "id": 120775243, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2498144, + -39.8314675 + ], + [ + -73.249475, + -39.8314675 + ], + [ + -73.249475, + -39.8310599 + ], + [ + -73.2498144, + -39.8310599 + ], + [ + -73.2498144, + -39.8314675 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T06:06:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.38339440001472e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "id": 120775243 + } + }, + { + "id": 120774724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2504649, + -39.8308524 + ], + [ + -73.2496427, + -39.8308524 + ], + [ + -73.2496427, + -39.8304546 + ], + [ + -73.2504649, + -39.8304546 + ], + [ + -73.2504649, + -39.8308524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:53:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.27071159996326e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 10 + }, + "id": 120774724 + } + }, + { + "id": 120774333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2507963, + -39.8305903 + ], + [ + -73.2501681, + -39.8305903 + ], + [ + -73.2501681, + -39.8296324 + ], + [ + -73.2507963, + -39.8296324 + ], + [ + -73.2507963, + -39.8305903 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:42:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.01752780005513e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 6 + }, + "id": 120774333 + } + }, + { + "id": 120774012, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.250695, + -39.8295367 + ], + [ + -73.2506879, + -39.8295367 + ], + [ + -73.2506879, + -39.829493 + ], + [ + -73.250695, + -39.829493 + ], + [ + -73.250695, + -39.8295367 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:32:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.10269999582803e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 120774012 + } + }, + { + "id": 120773568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.250679, + -39.8294574 + ], + [ + -73.2505855, + -39.8294574 + ], + [ + -73.2505855, + -39.8287155 + ], + [ + -73.250679, + -39.8287155 + ], + [ + -73.250679, + -39.8294574 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:14:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 6.93676500042161e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 8 + }, + "id": 120773568 + } + }, + { + "id": 120773337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2506134, + -39.8290211 + ], + [ + -73.2506134, + -39.8290211 + ], + [ + -73.2506134, + -39.8290211 + ], + [ + -73.2506134, + -39.8290211 + ], + [ + -73.2506134, + -39.8290211 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T05:06:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 120773337 + } + }, + { + "id": 120769135, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.379049, + 52.5696113 + ], + [ + 13.379049, + 52.5696113 + ], + [ + 13.379049, + 52.5696113 + ], + [ + 13.379049, + 52.5696113 + ], + [ + 13.379049, + 52.5696113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-10T00:18:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 120769135 + } + }, + { + "id": 120768965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.250758, + -39.8286203 + ], + [ + -73.250758, + -39.8286203 + ], + [ + -73.250758, + -39.8286203 + ], + [ + -73.250758, + -39.8286203 + ], + [ + -73.250758, + -39.8286203 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-10T00:06:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "EsriWorldImageryClarity", + "add-image": 1 + }, + "id": 120768965 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-11.json b/Docs/Tools/stats/stats.2022-5-11.json new file mode 100644 index 0000000000..8c6ccf1785 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-11.json @@ -0,0 +1,1677 @@ +{ + "features": [ + { + "id": 120860730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4672495, + 50.8422286 + ], + [ + 4.4693218, + 50.8422286 + ], + [ + 4.4693218, + 50.8486457 + ], + [ + 4.4672495, + 50.8486457 + ], + [ + 4.4672495, + 50.8422286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T22:35:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000132981563300005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 120860730 + } + }, + { + "id": 120856013, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3991943, + 50.9064113 + ], + [ + 3.4023339, + 50.9064113 + ], + [ + 3.4023339, + 50.9074445 + ], + [ + 3.3991943, + 50.9074445 + ], + [ + 3.3991943, + 50.9064113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T19:47:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000324383471998374, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 2 + }, + "id": 120856013 + } + }, + { + "id": 120855468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4026061, + 50.9072629 + ], + [ + 3.4027708, + 50.9072629 + ], + [ + 3.4027708, + 50.9073262 + ], + [ + 3.4026061, + 50.9073262 + ], + [ + 3.4026061, + 50.9072629 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T19:30:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.04255100001272e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120855468 + } + }, + { + "id": 120855389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3972841, + 50.9057477 + ], + [ + 3.4050942, + 50.9057477 + ], + [ + 3.4050942, + 50.9090516 + ], + [ + 3.3972841, + 50.9090516 + ], + [ + 3.3972841, + 50.9057477 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T19:27:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000258037893899919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 2 + }, + "id": 120855389 + } + }, + { + "id": 120854963, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8463995, + 49.4199836 + ], + [ + 6.8463995, + 49.4199836 + ], + [ + 6.8463995, + 49.4199836 + ], + [ + 6.8463995, + 49.4199836 + ], + [ + 6.8463995, + 49.4199836 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "derFred", + "uid": "331548", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T19:16:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120854963 + } + }, + { + "id": 120854842, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.392292, + 50.848837 + ], + [ + 4.4007981, + 50.848837 + ], + [ + 4.4007981, + 50.8558079 + ], + [ + 4.392292, + 50.8558079 + ], + [ + 4.392292, + 50.848837 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T19:12:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000592951724899903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 6 + }, + "id": 120854842 + } + }, + { + "id": 120849677, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2526657, + 50.7102411 + ], + [ + 4.2526657, + 50.7102411 + ], + [ + 4.2526657, + 50.7102411 + ], + [ + 4.2526657, + 50.7102411 + ], + [ + 4.2526657, + 50.7102411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T16:38:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 120849677 + } + }, + { + "id": 120848795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4402821, + 50.8408255 + ], + [ + 4.4425554, + 50.8408255 + ], + [ + 4.4425554, + 50.8417756 + ], + [ + 4.4402821, + 50.8417756 + ], + [ + 4.4402821, + 50.8408255 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T16:18:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000021598623299933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 120848795 + } + }, + { + "id": 120848590, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5816479, + 50.883099 + ], + [ + 4.5816479, + 50.883099 + ], + [ + 4.5816479, + 50.883099 + ], + [ + 4.5816479, + 50.883099 + ], + [ + 4.5816479, + 50.883099 + ] + ] + ] + }, + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T16:12:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-05-15T15:38:35.526745Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120848590 + } + }, + { + "id": 120845688, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4717551, + 50.9121989 + ], + [ + 4.4723659, + 50.9121989 + ], + [ + 4.4723659, + 50.9126307 + ], + [ + 4.4717551, + 50.9126307 + ], + [ + 4.4717551, + 50.9121989 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T15:02:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.63743440000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3 + }, + "id": 120845688 + } + }, + { + "id": 120845664, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1898322, + 50.9119775 + ], + [ + 3.1952258, + 50.9119775 + ], + [ + 3.1952258, + 50.9148808 + ], + [ + 3.1898322, + 50.9148808 + ], + [ + 3.1898322, + 50.9119775 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T15:02:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 315, + "modify": 0, + "delete": 0, + "area": 0.0000156592388799981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 48, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 120845664 + } + }, + { + "id": 120845653, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T15:01:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 120845653 + } + }, + { + "id": 120845493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1892911, + 50.9126946 + ], + [ + 3.1906945, + 50.9126946 + ], + [ + 3.1906945, + 50.9148603 + ], + [ + 3.1892911, + 50.9148603 + ], + [ + 3.1892911, + 50.9126946 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T14:58:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 160, + "modify": 0, + "delete": 0, + "area": 0.00000303934337999878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 120845493 + } + }, + { + "id": 120842166, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.721699, + 51.0268317 + ], + [ + 3.7218979, + 51.0268317 + ], + [ + 3.7218979, + 51.0269374 + ], + [ + 3.721699, + 51.0269374 + ], + [ + 3.721699, + 51.0268317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T13:49:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.10237299997767e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "id": 120842166 + } + }, + { + "id": 120840202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4862677, + 50.8541587 + ], + [ + 4.4869415, + 50.8541587 + ], + [ + 4.4869415, + 50.8545056 + ], + [ + 4.4862677, + 50.8545056 + ], + [ + 4.4862677, + 50.8541587 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T13:07:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.33741220002705e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_within_25m": 11 + }, + "id": 120840202 + } + }, + { + "id": 120834121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3142972, + 50.8431942 + ], + [ + 3.3157257, + 50.8431942 + ], + [ + 3.3157257, + 50.8440835 + ], + [ + 3.3142972, + 50.8440835 + ], + [ + 3.3142972, + 50.8431942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T11:01:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00000127036505000641, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 4, + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 7, + "change_within_25m": 6, + "change_within_50m": 1, + "import:node/9732382301": "source: https://osm.org/note/3156439", + "import:node/9732406100": "source: https://osm.org/note/3156465", + "import:node/9732421985": "source: https://osm.org/note/3156339" + }, + "id": 120834121 + } + }, + { + "id": 120833514, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8406551, + 43.2991622 + ], + [ + -3.8406551, + 43.2991622 + ], + [ + -3.8406551, + 43.2991622 + ], + [ + -3.8406551, + 43.2991622 + ], + [ + -3.8406551, + 43.2991622 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T10:48:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 120833514 + } + }, + { + "id": 120831510, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3052056, + 51.075126 + ], + [ + 5.3052056, + 51.075126 + ], + [ + 5.3052056, + 51.075126 + ], + [ + 5.3052056, + 51.075126 + ], + [ + 5.3052056, + 51.075126 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T10:02:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 1, + "import:node/9732245715": "source: https://osm.org/note/3044384" + }, + "id": 120831510 + } + }, + { + "id": 120830059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3972841, + 50.9057477 + ], + [ + 3.3972841, + 50.9057477 + ], + [ + 3.3972841, + 50.9057477 + ], + [ + 3.3972841, + 50.9057477 + ], + [ + 3.3972841, + 50.9057477 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T09:30:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 1, + "import:node/9732140863": "source: https://osm.org/note/3156487" + }, + "id": 120830059 + } + }, + { + "id": 120825038, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2802489, + 53.2143405 + ], + [ + 6.2802489, + 53.2143405 + ], + [ + 6.2802489, + 53.2143405 + ], + [ + 6.2802489, + 53.2143405 + ], + [ + 6.2802489, + 53.2143405 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T07:37:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120825038 + } + }, + { + "id": 120823176, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.7752068, + 59.9263529 + ], + [ + 10.7752068, + 59.9263529 + ], + [ + 10.7752068, + 59.9263529 + ], + [ + 10.7752068, + 59.9263529 + ], + [ + 10.7752068, + 59.9263529 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Krissmed", + "uid": "14675238", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T06:51:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 10, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120823176 + } + }, + { + "id": 120822976, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7182149, + 50.8940287 + ], + [ + 4.7186369, + 50.8940287 + ], + [ + 4.7186369, + 50.8949163 + ], + [ + 4.7182149, + 50.8949163 + ], + [ + 4.7182149, + 50.8940287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Els Brouwers", + "uid": "15461605", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T06:46:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.7456719999897e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 120822976 + } + }, + { + "id": 120821197, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5396399, + 47.3762817 + ], + [ + 8.5396399, + 47.3762817 + ], + [ + 8.5396399, + 47.3762817 + ], + [ + 8.5396399, + 47.3762817 + ], + [ + 8.5396399, + 47.3762817 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mottiger", + "uid": "7504544", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-11T06:00:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120821197 + } + }, + { + "id": 120817078, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0828364, + 49.4364575 + ], + [ + 11.0908071, + 49.4364575 + ], + [ + 11.0908071, + 49.4373176 + ], + [ + 11.0828364, + 49.4373176 + ], + [ + 11.0828364, + 49.4364575 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mrey", + "uid": "6089796", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T03:28:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000685559906997596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_500m": 5 + }, + "id": 120817078 + } + }, + { + "id": 120817047, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0878667, + 49.4367579 + ], + [ + 11.0883751, + 49.4367579 + ], + [ + 11.0883751, + 49.4369486 + ], + [ + 11.0878667, + 49.4369486 + ], + [ + 11.0878667, + 49.4367579 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mrey", + "uid": "6089796", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T03:25:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.69518799989007e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4, + "change_within_50m": 2 + }, + "id": 120817047 + } + }, + { + "id": 120816626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -74.0220629, + 40.5763899 + ], + [ + -73.941154, + 40.5763899 + ], + [ + -73.941154, + 40.6191994 + ], + [ + -74.0220629, + 40.6191994 + ], + [ + -74.0220629, + 40.5763899 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-11T02:55:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00346366955454964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 25, + "locale": "en", + "imagery": "osm", + "soft-delete": 1, + "change_over_5000m": 3, + "change_within_500m": 2, + "change_within_1000m": 7, + "change_within_5000m": 9, + "soft-delete:way/249728013": "shop_closed" + }, + "id": 120816626 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-12.json b/Docs/Tools/stats/stats.2022-5-12.json new file mode 100644 index 0000000000..ca5c23c70d --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-12.json @@ -0,0 +1,1178 @@ +{ + "features": [ + { + "id": 120908885, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2158167, + -39.8332752 + ], + [ + -73.2151554, + -39.8332752 + ], + [ + -73.2151554, + -39.8330683 + ], + [ + -73.2158167, + -39.8330683 + ], + [ + -73.2158167, + -39.8332752 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T23:29:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.36822970002242e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "Mapbox", + "add-image": 3 + }, + "id": 120908885 + } + }, + { + "id": 120904993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4661208, + 51.1448664 + ], + [ + 4.466192, + 51.1448664 + ], + [ + 4.466192, + 51.144912 + ], + [ + 4.4661208, + 51.144912 + ], + [ + 4.4661208, + 51.1448664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "orchi_osm", + "uid": "8887512", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T20:11:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.24672000003111e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120904993 + } + }, + { + "id": 120903647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7087877, + 50.9218351 + ], + [ + 3.3333267, + 50.9218351 + ], + [ + 3.3333267, + 51.0482345 + ], + [ + 2.7087877, + 51.0482345 + ], + [ + 2.7087877, + 50.9218351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T19:27:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0789413548765981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "import:node/9735723114": "source: https://osm.org/note/3156516", + "import:node/9735740989": "source: https://osm.org/note/3156464", + "import:node/9735741235": "source: https://osm.org/note/3156496", + "import:node/9735743220": "source: https://osm.org/note/3156560", + "import:node/9735763502": "source: https://osm.org/note/3156377", + "import:node/9735779631": "source: https://osm.org/note/3156384", + "import:node/9735833261": "source: https://osm.org/note/3156257" + }, + "id": 120903647 + } + }, + { + "id": 120902380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3843428, + 50.866721 + ], + [ + 4.3843428, + 50.866721 + ], + [ + 4.3843428, + 50.866721 + ], + [ + 4.3843428, + 50.866721 + ], + [ + 4.3843428, + 50.866721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T18:52:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 120902380 + } + }, + { + "id": 120901632, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.1506663, + -26.6682613 + ], + [ + -57.1506663, + -26.6682613 + ], + [ + -57.1506663, + -26.6682613 + ], + [ + -57.1506663, + -26.6682613 + ], + [ + -57.1506663, + -26.6682613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ToMaps_py", + "uid": "5731101", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T18:28:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120901632 + } + }, + { + "id": 120898574, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1056933, + 38.8279555 + ], + [ + 0.1068975, + 38.8279555 + ], + [ + 0.1068975, + 38.8281408 + ], + [ + 0.1056933, + 38.8281408 + ], + [ + 0.1056933, + 38.8279555 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T16:59:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.23138259997927e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 4, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 120898574 + } + }, + { + "id": 120896876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4275114, + 50.8212686 + ], + [ + 4.4275114, + 50.8212686 + ], + [ + 4.4275114, + 50.8212686 + ], + [ + 4.4275114, + 50.8212686 + ], + [ + 4.4275114, + 50.8212686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T16:09:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 120896876 + } + }, + { + "id": 120896714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.6347075, + 45.0408326 + ], + [ + 7.7047034, + 45.0408326 + ], + [ + 7.7047034, + 45.0868281 + ], + [ + 7.6347075, + 45.0868281 + ], + [ + 7.6347075, + 45.0408326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "madbob", + "uid": "734100", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T16:04:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 132, + "delete": 0, + "area": 0.00321949641844973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 188, + "locale": "en", + "imagery": "osm" + }, + "id": 120896714 + } + }, + { + "id": 120896533, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.9538498, + 51.6130531 + ], + [ + -3.9532171, + 51.6130531 + ], + [ + -3.9532171, + 51.6133691 + ], + [ + -3.9538498, + 51.6133691 + ], + [ + -3.9538498, + 51.6130531 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gerrit Niezen", + "uid": "11595943", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T16:00:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.99933199998773e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/97752096": "disused" + }, + "id": 120896533 + } + }, + { + "id": 120896012, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2775745, + 53.2135691 + ], + [ + 6.2775745, + 53.2135691 + ], + [ + 6.2775745, + 53.2135691 + ], + [ + 6.2775745, + 53.2135691 + ], + [ + 6.2775745, + 53.2135691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T15:46:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed_brugge.html", + "theme": "aed_brugge", + "answer": 5, + "locale": "nl", + "imagery": "HDM_HOT", + "change_within_1000m": 5 + }, + "id": 120896012 + } + }, + { + "id": 120895072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2550518, + 53.2224191 + ], + [ + 6.2854626, + 53.2224191 + ], + [ + 6.2854626, + 53.2371394 + ], + [ + 6.2550518, + 53.2371394 + ], + [ + 6.2550518, + 53.2224191 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T15:28:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000447656099239789, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 27, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 27 + }, + "id": 120895072 + } + }, + { + "id": 120874163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1813416, + 50.915569 + ], + [ + 3.1866062, + 50.915569 + ], + [ + 3.1866062, + 50.9175136 + ], + [ + 3.1813416, + 50.9175136 + ], + [ + 3.1813416, + 50.915569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T08:05:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 380, + "modify": 13, + "delete": 2, + "area": 0.0000102375411600083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 9, + "theme": "grb", + "answer": 3, + "delete": 2, + "import": 53, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "id": 120874163 + } + }, + { + "id": 120871292, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.4220119, + 36.9028378 + ], + [ + -3.4220119, + 36.9028378 + ], + [ + -3.4220119, + 36.9028378 + ], + [ + -3.4220119, + 36.9028378 + ], + [ + -3.4220119, + 36.9028378 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vokki", + "uid": "15931327", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T06:57:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "id": 120871292 + } + }, + { + "id": 120869985, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4027252, + 50.9068627 + ], + [ + 3.4030804, + 50.9068627 + ], + [ + 3.4030804, + 50.907125 + ], + [ + 3.4027252, + 50.907125 + ], + [ + 3.4027252, + 50.9068627 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T06:26:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.31689600010031e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 120869985 + } + }, + { + "id": 120867651, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 26.3317877, + 42.6832951 + ], + [ + 26.3317877, + 42.6832951 + ], + [ + 26.3317877, + 42.6832951 + ], + [ + 26.3317877, + 42.6832951 + ], + [ + 26.3317877, + 42.6832951 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vangarov", + "uid": "15880565", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-12T05:18:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "EsriWorldImagery" + }, + "id": 120867651 + } + }, + { + "id": 120862800, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0184631, + 38.8498922 + ], + [ + 0.0212768, + 38.8498922 + ], + [ + 0.0212768, + 38.8518963 + ], + [ + 0.0184631, + 38.8518963 + ], + [ + 0.0184631, + 38.8498922 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T00:42:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000563893617000174, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5 + }, + "id": 120862800 + } + }, + { + "id": 120862757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0977057, + 38.8355696 + ], + [ + 0.104868, + 38.8355696 + ], + [ + 0.104868, + 38.8393853 + ], + [ + 0.0977057, + 38.8393853 + ], + [ + 0.0977057, + 38.8355696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T00:40:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000273291881099784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 9, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 9 + }, + "id": 120862757 + } + }, + { + "id": 120862749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1124729, + 38.837982 + ], + [ + 0.1124729, + 38.837982 + ], + [ + 0.1124729, + 38.837982 + ], + [ + 0.1124729, + 38.837982 + ], + [ + 0.1124729, + 38.837982 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-12T00:39:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120862749 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-13.json b/Docs/Tools/stats/stats.2022-5-13.json new file mode 100644 index 0000000000..924cceab13 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-13.json @@ -0,0 +1,1288 @@ +{ + "features": [ + { + "id": 120955711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T21:31:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 120955711 + } + }, + { + "id": 120953796, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2328835, + 50.7346822 + ], + [ + 4.2329675, + 50.7346822 + ], + [ + 4.2329675, + 50.7348092 + ], + [ + 4.2328835, + 50.7348092 + ], + [ + 4.2328835, + 50.7346822 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T20:27:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.06679999999492e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_50m": 3 + }, + "id": 120953796 + } + }, + { + "id": 120953793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3066018, + 52.5180571 + ], + [ + 13.4185865, + 52.5180571 + ], + [ + 13.4185865, + 52.5812635 + ], + [ + 13.3066018, + 52.5812635 + ], + [ + 13.3066018, + 52.5180571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-237716417", + "name": "Golda-Meir-Steg", + "osm_id": 237716417, + "reasons": [ + 87 + ], + "version": 16, + "primary_tags": { + "highway": "footway" + } + } + ], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T20:27:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 90, + "delete": 0, + "area": 0.00707814974207988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 102, + "locale": "de", + "imagery": "osm" + }, + "id": 120953793 + } + }, + { + "id": 120949998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2202923, + 50.748141 + ], + [ + 4.2202923, + 50.748141 + ], + [ + 4.2202923, + 50.748141 + ], + [ + 4.2202923, + 50.748141 + ], + [ + 4.2202923, + 50.748141 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9042426135", + "name": "Fietsbieb Halle", + "osm_id": 9042426135, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T18:42:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "id": 120949998 + } + }, + { + "id": 120949018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ], + [ + 3.7273613, + 51.0427599 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T18:14:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 120949018 + } + }, + { + "id": 120946554, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2354423, + 50.7343554 + ], + [ + 4.2354423, + 50.7343554 + ], + [ + 4.2354423, + 50.7343554 + ], + [ + 4.2354423, + 50.7343554 + ], + [ + 4.2354423, + 50.7343554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T17:08:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 6 + }, + "id": 120946554 + } + }, + { + "id": 120944469, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.4392296, + 55.8524325 + ], + [ + 37.4392296, + 55.8524325 + ], + [ + 37.4392296, + 55.8524325 + ], + [ + 37.4392296, + 55.8524325 + ], + [ + 37.4392296, + 55.8524325 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "somix", + "uid": "12176526", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T16:18:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 6 + }, + "id": 120944469 + } + }, + { + "id": 120941137, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9669723, + 50.3062213 + ], + [ + 5.7125495, + 50.3062213 + ], + [ + 5.7125495, + 51.1762922 + ], + [ + 4.9669723, + 51.1762922 + ], + [ + 4.9669723, + 50.3062213 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bavh", + "uid": "30514", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T15:01:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.648705025423481, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations", + "move": 1, + "theme": "charging_stations", + "answer": 20, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/7184050483": "improve_accuracy" + }, + "id": 120941137 + } + }, + { + "id": 120937607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2416398, + 50.7423322 + ], + [ + 4.241777, + 50.7423322 + ], + [ + 4.241777, + 50.7423853 + ], + [ + 4.2416398, + 50.7423853 + ], + [ + 4.2416398, + 50.7423322 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T13:53:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 7.28532000033279e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 6, + "move:node/9207458590": "improve_accuracy" + }, + "id": 120937607 + } + }, + { + "id": 120937450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3490074, + 51.3583946 + ], + [ + 3.3490074, + 51.3583946 + ], + [ + 3.3490074, + 51.3583946 + ], + [ + 3.3490074, + 51.3583946 + ], + [ + 3.3490074, + 51.3583946 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T13:50:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 120937450 + } + }, + { + "id": 120936490, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5901804, + 48.0215783 + ], + [ + 10.5901804, + 48.0215783 + ], + [ + 10.5901804, + 48.0215783 + ], + [ + 10.5901804, + 48.0215783 + ], + [ + 10.5901804, + 48.0215783 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T13:23:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 12, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 120936490 + } + }, + { + "id": 120935956, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0324011, + 38.7961369 + ], + [ + 0.0975851, + 38.7961369 + ], + [ + 0.0975851, + 38.8390413 + ], + [ + 0.0324011, + 38.8390413 + ], + [ + 0.0324011, + 38.7961369 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T13:10:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00279668040959984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "create": 1, + "locale": "ca", + "imagery": "cyclosm" + }, + "id": 120935956 + } + }, + { + "id": 120933362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1132741, + 38.8340481 + ], + [ + 0.1132741, + 38.8340481 + ], + [ + 0.1132741, + 38.8340481 + ], + [ + 0.1132741, + 38.8340481 + ], + [ + 0.1132741, + 38.8340481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T12:09:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "ca", + "imagery": "HDM_HOT", + "change_over_5000m": 1 + }, + "id": 120933362 + } + }, + { + "id": 120932739, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4370437, + 50.9022725 + ], + [ + 5.469224, + 50.9022725 + ], + [ + 5.469224, + 50.9223747 + ], + [ + 5.4370437, + 50.9223747 + ], + [ + 5.4370437, + 50.9022725 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T11:56:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 615, + "modify": 2305, + "delete": 40, + "area": 0.000646894826659879, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 2028, + "theme": "grb", + "delete": 40, + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 578 + }, + "id": 120932739 + } + }, + { + "id": 120932394, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4565889, + 50.9164403 + ], + [ + 5.4623947, + 50.9164403 + ], + [ + 5.4623947, + 50.9207158 + ], + [ + 5.4565889, + 50.9207158 + ], + [ + 5.4565889, + 50.9164403 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T11:49:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 22, + "modify": 324, + "delete": 5, + "area": 0.0000248226979000332, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 293, + "theme": "grb", + "delete": 5, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "id": 120932394 + } + }, + { + "id": 120930463, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2209162, + 48.7840022 + ], + [ + 2.3734067, + 48.7840022 + ], + [ + 2.3734067, + 48.9198854 + ], + [ + 2.2209162, + 48.9198854 + ], + [ + 2.2209162, + 48.7840022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wagner51", + "uid": "11699", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T11:08:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0207208971095992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations", + "theme": "charging_stations", + "answer": 14, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 120930463 + } + }, + { + "id": 120929304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.419071, + 50.9788967 + ], + [ + 4.438021, + 50.9788967 + ], + [ + 4.438021, + 50.9799808 + ], + [ + 4.419071, + 50.9799808 + ], + [ + 4.419071, + 50.9788967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-13T10:41:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000205436949999988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 7 + }, + "id": 120929304 + } + }, + { + "id": 120924883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4591777, + 50.9176296 + ], + [ + 5.471333, + 50.9176296 + ], + [ + 5.471333, + 50.9226577 + ], + [ + 5.4591777, + 50.9226577 + ], + [ + 5.4591777, + 50.9176296 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T09:15:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 221, + "modify": 1130, + "delete": 27, + "area": 0.000061118063930049, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 983, + "theme": "grb", + "delete": 27, + "import": 37, + "locale": "nl", + "imagery": "osm", + "conflation": 310 + }, + "id": 120924883 + } + }, + { + "id": 120910073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2156318, + -39.8333614 + ], + [ + -73.2145631, + -39.8333614 + ], + [ + -73.2145631, + -39.832349 + ], + [ + -73.2156318, + -39.832349 + ], + [ + -73.2156318, + -39.8333614 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-13T01:04:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000108195187999087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 7 + }, + "id": 120910073 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-14.json b/Docs/Tools/stats/stats.2022-5-14.json new file mode 100644 index 0000000000..80101fad1f --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-14.json @@ -0,0 +1,1199 @@ +{ + "features": [ + { + "id": 120995001, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1036522, + 38.833928 + ], + [ + 0.1036721, + 38.833928 + ], + [ + 0.1036721, + 38.834032 + ], + [ + 0.1036522, + 38.834032 + ], + [ + 0.1036522, + 38.833928 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T22:47:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.06960000000683e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "create": 2, + "locale": "ca", + "imagery": "PNOA-Spain", + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 120995001 + } + }, + { + "id": 120994937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2323441, + -39.8163691 + ], + [ + -73.2323441, + -39.8163691 + ], + [ + -73.2323441, + -39.8163691 + ], + [ + -73.2323441, + -39.8163691 + ], + [ + -73.2323441, + -39.8163691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T22:44:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 120994937 + } + }, + { + "id": 120993541, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3173465, + 50.836684 + ], + [ + 4.3173465, + 50.836684 + ], + [ + 4.3173465, + 50.836684 + ], + [ + 4.3173465, + 50.836684 + ], + [ + 4.3173465, + 50.836684 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T21:23:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "locale": "nl", + "imagery": "CartoDB.Positron", + "add-image": 1 + }, + "id": 120993541 + } + }, + { + "id": 120993519, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2235102, + 51.2016792 + ], + [ + 3.2235102, + 51.2016792 + ], + [ + 3.2235102, + 51.2016792 + ], + [ + 3.2235102, + 51.2016792 + ], + [ + 3.2235102, + 51.2016792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arx - 83", + "uid": "9282195", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T21:21:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork", + "theme": "artwork", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 120993519 + } + }, + { + "id": 120986049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1047537, + 38.8364764 + ], + [ + 0.1074812, + 38.8364764 + ], + [ + 0.1074812, + 38.8382786 + ], + [ + 0.1047537, + 38.8382786 + ], + [ + 0.1047537, + 38.8364764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T16:42:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000491550050000053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 8 + }, + "id": 120986049 + } + }, + { + "id": 120985573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.251168, + -39.8318721 + ], + [ + -73.251168, + -39.8318721 + ], + [ + -73.251168, + -39.8318721 + ], + [ + -73.251168, + -39.8318721 + ], + [ + -73.251168, + -39.8318721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T16:26:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 120985573 + } + }, + { + "id": 120985441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1062038, + 38.836688 + ], + [ + 0.1070346, + 38.836688 + ], + [ + 0.1070346, + 38.8371084 + ], + [ + 0.1062038, + 38.8371084 + ], + [ + 0.1062038, + 38.836688 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T16:22:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.49268319996574e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120985441 + } + }, + { + "id": 120985421, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0979345, + 38.8381481 + ], + [ + 0.0985039, + 38.8381481 + ], + [ + 0.0985039, + 38.8384945 + ], + [ + 0.0979345, + 38.8384945 + ], + [ + 0.0979345, + 38.8381481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T16:21:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.97240160002894e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 120985421 + } + }, + { + "id": 120985360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1122207, + 38.8377625 + ], + [ + 0.1122207, + 38.8377625 + ], + [ + 0.1122207, + 38.8377625 + ], + [ + 0.1122207, + 38.8377625 + ], + [ + 0.1122207, + 38.8377625 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T16:19:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 120985360 + } + }, + { + "id": 120985330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1115454, + 38.8376777 + ], + [ + 0.1122083, + 38.8376777 + ], + [ + 0.1122083, + 38.8384425 + ], + [ + 0.1115454, + 38.8384425 + ], + [ + 0.1115454, + 38.8376777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T16:19:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.06985919999266e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 2, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "id": 120985330 + } + }, + { + "id": 120985124, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7863934, + -34.6513029 + ], + [ + -58.7863934, + -34.6513029 + ], + [ + -58.7863934, + -34.6513029 + ], + [ + -58.7863934, + -34.6513029 + ], + [ + -58.7863934, + -34.6513029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T16:12:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 120985124 + } + }, + { + "id": 120983016, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T15:03:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 120983016 + } + }, + { + "id": 120982766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3004131, + 52.5381048 + ], + [ + 13.3506121, + 52.5381048 + ], + [ + 13.3506121, + 52.5715185 + ], + [ + 13.3004131, + 52.5715185 + ], + [ + 13.3004131, + 52.5381048 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T14:58:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00167733432630018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 120982766 + } + }, + { + "id": 120975177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.1972375, + 32.7260576 + ], + [ + -7.8970443, + 32.7260576 + ], + [ + -7.8970443, + 37.0361441 + ], + [ + -117.1972375, + 37.0361441 + ], + [ + -117.1972375, + 32.7260576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T11:28:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 471.093287158712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 120975177 + } + }, + { + "id": 120974276, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.033415, + 38.7948937 + ], + [ + 0.033415, + 38.7948937 + ], + [ + 0.033415, + 38.7948937 + ], + [ + 0.033415, + 38.7948937 + ], + [ + 0.033415, + 38.7948937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T11:03:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 120974276 + } + }, + { + "id": 120974122, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ], + [ + 0.0344643, + 38.7934335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T10:59:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 120974122 + } + }, + { + "id": 120973946, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2368036, + 48.6818495 + ], + [ + 9.2368036, + 48.6818495 + ], + [ + 9.2368036, + 48.6818495 + ], + [ + 9.2368036, + 48.6818495 + ], + [ + 9.2368036, + 48.6818495 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-14T10:54:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 120973946 + } + }, + { + "id": 120973482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.6947669, + -36.5864664 + ], + [ + 174.6947707, + -36.5864664 + ], + [ + 174.6947707, + -36.5864571 + ], + [ + 174.6947669, + -36.5864571 + ], + [ + 174.6947669, + -36.5864664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T10:42:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 3.53400000244812e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "move": 1, + "theme": "charging_stations", + "answer": 18, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/5629724273": "improve_accuracy" + }, + "id": 120973482 + } + }, + { + "id": 120964797, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-14T06:46:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 120964797 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-15.json b/Docs/Tools/stats/stats.2022-5-15.json new file mode 100644 index 0000000000..cc40022bc5 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-15.json @@ -0,0 +1,1853 @@ +{ + "features": [ + { + "id": 121027788, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.4126876, + 39.675823 + ], + [ + -86.4126876, + 39.675823 + ], + [ + -86.4126876, + 39.675823 + ], + [ + -86.4126876, + 39.675823 + ], + [ + -86.4126876, + 39.675823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TArzate5", + "uid": "12330537", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T23:13:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121027788 + } + }, + { + "id": 121027164, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.7245396, + 56.0574812 + ], + [ + -2.7170941, + 56.0574812 + ], + [ + -2.7170941, + 56.0580439 + ], + [ + -2.7245396, + 56.0580439 + ], + [ + -2.7245396, + 56.0574812 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jdtoy", + "uid": "2127380", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T22:32:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000418958285002404, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 7, + "move:node/9742149050": "improve_accuracy" + }, + "id": 121027164 + } + }, + { + "id": 121025504, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3267583, + 51.5664038 + ], + [ + 13.3267583, + 51.5664038 + ], + [ + 13.3267583, + 51.5664038 + ], + [ + 13.3267583, + 51.5664038 + ], + [ + 13.3267583, + 51.5664038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "da-werbung", + "uid": "4923577", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T21:03:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121025504 + } + }, + { + "id": 121025251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6765733, + 50.9887729 + ], + [ + 4.6765733, + 50.9887729 + ], + [ + 4.6765733, + 50.9887729 + ], + [ + 4.6765733, + 50.9887729 + ], + [ + 4.6765733, + 50.9887729 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T20:51:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 121025251 + } + }, + { + "id": 121024888, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6072477, + 52.2882123 + ], + [ + -1.6068275, + 52.2882123 + ], + [ + -1.6068275, + 52.2882846 + ], + [ + -1.6072477, + 52.2882846 + ], + [ + -1.6072477, + 52.2882123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T20:35:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 3.03804599997293e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 6, + "import": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 121024888 + } + }, + { + "id": 121024771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3867069, + 50.8387988 + ], + [ + 4.3867069, + 50.8387988 + ], + [ + 4.3867069, + 50.8387988 + ], + [ + 4.3867069, + 50.8387988 + ], + [ + 4.3867069, + 50.8387988 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T20:29:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_5000m": 2 + }, + "id": 121024771 + } + }, + { + "id": 121024603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.9321168, + 50.2682484 + ], + [ + 18.9321168, + 50.2682484 + ], + [ + 18.9321168, + 50.2682484 + ], + [ + 18.9321168, + 50.2682484 + ], + [ + 18.9321168, + 50.2682484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "arukuni", + "uid": "8534839", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T20:20:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121024603 + } + }, + { + "id": 121024505, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9924533, + 51.1557388 + ], + [ + 4.9924573, + 51.1557388 + ], + [ + 4.9924573, + 51.1557943 + ], + [ + 4.9924533, + 51.1557943 + ], + [ + 4.9924533, + 51.1557388 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T20:16:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.21999999961253e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 15, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 15 + }, + "id": 121024505 + } + }, + { + "id": 121022658, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9565665, + 51.1998854 + ], + [ + 4.9565665, + 51.1998854 + ], + [ + 4.9565665, + 51.1998854 + ], + [ + 4.9565665, + 51.1998854 + ], + [ + 4.9565665, + 51.1998854 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T19:00:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 121022658 + } + }, + { + "id": 121022600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.6993583, + -36.8979788 + ], + [ + 174.7272891, + -36.8979788 + ], + [ + 174.7272891, + -36.8688594 + ], + [ + 174.6993583, + -36.8688594 + ], + [ + 174.6993583, + -36.8979788 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T18:58:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00081332813752018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 15, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 15 + }, + "id": 121022600 + } + }, + { + "id": 121021609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -9.1357561, + 38.712706 + ], + [ + -9.1357561, + 38.712706 + ], + [ + -9.1357561, + 38.712706 + ], + [ + -9.1357561, + 38.712706 + ], + [ + -9.1357561, + 38.712706 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Reino Baptista", + "uid": "2820801", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T18:07:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121021609 + } + }, + { + "id": 121021287, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4548766, + 50.9249494 + ], + [ + 5.4586138, + 50.9249494 + ], + [ + 5.4586138, + 50.9261865 + ], + [ + 5.4548766, + 50.9261865 + ], + [ + 5.4548766, + 50.9249494 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T17:55:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 26, + "modify": 52, + "delete": 2, + "area": 0.00000462329011998973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 46, + "theme": "grb", + "delete": 2, + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "id": 121021287 + } + }, + { + "id": 121020638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2188684, + 48.6840441 + ], + [ + 9.2191624, + 48.6840441 + ], + [ + 9.2191624, + 48.6842088 + ], + [ + 9.2188684, + 48.6842088 + ], + [ + 9.2188684, + 48.6840441 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T17:34:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.84217999997833e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 121020638 + } + }, + { + "id": 121019778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4968231, + 50.9868935 + ], + [ + 4.4968231, + 50.9868935 + ], + [ + 4.4968231, + 50.9868935 + ], + [ + 4.4968231, + 50.9868935 + ], + [ + 4.4968231, + 50.9868935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T16:54:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 5 + }, + "id": 121019778 + } + }, + { + "id": 121018772, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "csjunker", + "uid": "696477", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T16:12:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "Geodatastyrelsen_Skaermkort" + }, + "id": 121018772 + } + }, + { + "id": 121017840, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9510927, + 51.1886189 + ], + [ + 4.9510927, + 51.1886189 + ], + [ + 4.9510927, + 51.1886189 + ], + [ + 4.9510927, + 51.1886189 + ], + [ + 4.9510927, + 51.1886189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T15:44:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 6 + }, + "id": 121017840 + } + }, + { + "id": 121017678, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4378201, + 51.0854715 + ], + [ + 3.4390808, + 51.0854715 + ], + [ + 3.4390808, + 51.0979524 + ], + [ + 3.4378201, + 51.0979524 + ], + [ + 3.4378201, + 51.0854715 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T15:41:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000157346706299999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 121017678 + } + }, + { + "id": 121014433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.452369, + 50.9230754 + ], + [ + 5.4588813, + 50.9230754 + ], + [ + 5.4588813, + 50.9269091 + ], + [ + 5.452369, + 50.9269091 + ], + [ + 5.452369, + 50.9230754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T14:17:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 151, + "modify": 736, + "delete": 9, + "area": 0.0000249662045100075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 654, + "theme": "grb", + "delete": 9, + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 180 + }, + "id": 121014433 + } + }, + { + "id": 121013943, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.9649317, + 52.3973826 + ], + [ + 16.9649317, + 52.3973826 + ], + [ + 16.9649317, + 52.3973826 + ], + [ + 16.9649317, + 52.3973826 + ], + [ + 16.9649317, + 52.3973826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mariusz256", + "uid": "10396575", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T14:03:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 121013943 + } + }, + { + "id": 121012581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8740872, + 45.7471321 + ], + [ + 4.8752631, + 45.7471321 + ], + [ + 4.8752631, + 45.747247 + ], + [ + 4.8740872, + 45.747247 + ], + [ + 4.8740872, + 45.7471321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JitenshaNiko", + "uid": "71304", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T13:26:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.35110909999748e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121012581 + } + }, + { + "id": 121011880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.787709, + 46.8159006 + ], + [ + 6.7877867, + 46.8159006 + ], + [ + 6.7877867, + 46.8159559 + ], + [ + 6.787709, + 46.8159559 + ], + [ + 6.787709, + 46.8159006 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "imagoiq", + "uid": "1856092", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T13:13:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.29680999993959e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "id": 121011880 + } + }, + { + "id": 121011671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8689725, + 45.7461644 + ], + [ + 7.2676411, + 45.7461644 + ], + [ + 7.2676411, + 47.7486139 + ], + [ + 4.8689725, + 47.7486139 + ], + [ + 4.8689725, + 45.7461644 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JitenshaNiko", + "uid": "71304", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T13:07:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 18, + "delete": 0, + "area": 4.80321273873571, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 34, + "create": 2, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "id": 121011671 + } + }, + { + "id": 121007973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1811945, + 48.6889258 + ], + [ + 6.1811945, + 48.6889258 + ], + [ + 6.1811945, + 48.6889258 + ], + [ + 6.1811945, + 48.6889258 + ], + [ + 6.1811945, + 48.6889258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vermoot", + "uid": "11463327", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T11:07:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121007973 + } + }, + { + "id": 121006684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.139356, + 50.84089 + ], + [ + -0.139356, + 50.84089 + ], + [ + -0.139356, + 50.84089 + ], + [ + -0.139356, + 50.84089 + ], + [ + -0.139356, + 50.84089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T10:18:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 121006684 + } + }, + { + "id": 121005770, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8772687, + 51.0602847 + ], + [ + 4.8807864, + 51.0602847 + ], + [ + 4.8807864, + 51.0613724 + ], + [ + 4.8772687, + 51.0613724 + ], + [ + 4.8772687, + 51.0602847 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T09:46:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000382620229002245, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 17, + "change_within_25m": 17 + }, + "id": 121005770 + } + }, + { + "id": 121005536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4471432, + 50.9091467 + ], + [ + 5.4601497, + 50.9091467 + ], + [ + 5.4601497, + 50.9151997 + ], + [ + 5.4471432, + 50.9151997 + ], + [ + 5.4471432, + 50.9091467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T09:39:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 49, + "modify": 9, + "delete": 0, + "area": 0.0000787283445000153, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 8, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "id": 121005536 + } + }, + { + "id": 121001868, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.7769537, + 31.2197083 + ], + [ + 75.7769537, + 31.2197083 + ], + [ + 75.7769537, + 31.2197083 + ], + [ + 75.7769537, + 31.2197083 + ], + [ + 75.7769537, + 31.2197083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mohit Jairath", + "uid": "15920679", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T07:10:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121001868 + } + }, + { + "id": 121001712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6576817, + 42.3412856 + ], + [ + -3.6576817, + 42.3412856 + ], + [ + -3.6576817, + 42.3412856 + ], + [ + -3.6576817, + 42.3412856 + ], + [ + -3.6576817, + 42.3412856 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-15T07:02:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 121001712 + } + }, + { + "id": 120998384, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7867206, + -34.6512499 + ], + [ + -58.7865812, + -34.6512499 + ], + [ + -58.7865812, + -34.6512256 + ], + [ + -58.7867206, + -34.6512256 + ], + [ + -58.7867206, + -34.6512499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-15T03:35:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.3874200010025e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 120998384 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-16.json b/Docs/Tools/stats/stats.2022-5-16.json new file mode 100644 index 0000000000..65688ebc91 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-16.json @@ -0,0 +1,2354 @@ +{ + "features": [ + { + "id": 121071618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4815516, + 51.0822078 + ], + [ + 3.5099255, + 51.0822078 + ], + [ + 3.5099255, + 51.0938814 + ], + [ + 3.4815516, + 51.0938814 + ], + [ + 3.4815516, + 51.0822078 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T22:13:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00033122555904005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_5000m": 1 + }, + "id": 121071618 + } + }, + { + "id": 121070082, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 17.7856301, + 48.4218354 + ], + [ + 17.7879891, + 48.4218354 + ], + [ + 17.7879891, + 48.4249734 + ], + [ + 17.7856301, + 48.4249734 + ], + [ + 17.7856301, + 48.4218354 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tomas Jancovic", + "uid": "4997045", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T21:07:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00000740254200000595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 23, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 24 + }, + "id": 121070082 + } + }, + { + "id": 121068322, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9182296, + 53.5643321 + ], + [ + 9.9182296, + 53.5643321 + ], + [ + 9.9182296, + 53.5643321 + ], + [ + 9.9182296, + 53.5643321 + ], + [ + 9.9182296, + 53.5643321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T20:16:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121068322 + } + }, + { + "id": 121067964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2916228, + 50.949791 + ], + [ + 3.2916673, + 50.949791 + ], + [ + 3.2916673, + 50.9498152 + ], + [ + 3.2916228, + 50.9498152 + ], + [ + 3.2916228, + 50.949791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T20:06:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.07690000025336e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 10 + }, + "id": 121067964 + } + }, + { + "id": 121067682, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T19:58:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 2 + }, + "id": 121067682 + } + }, + { + "id": 121067564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8711893, + 49.7582171 + ], + [ + 10.6172991, + 49.7582171 + ], + [ + 10.6172991, + 49.813482 + ], + [ + 9.8711893, + 49.813482 + ], + [ + 9.8711893, + 49.7582171 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T19:55:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0412336834860181, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 15, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 121067564 + } + }, + { + "id": 121067115, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ], + [ + 3.2917577, + 50.9499323 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T19:41:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 3 + }, + "id": 121067115 + } + }, + { + "id": 121066871, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.7033889, + -36.873156 + ], + [ + 174.7049339, + -36.873156 + ], + [ + 174.7049339, + -36.8728913 + ], + [ + 174.7033889, + -36.8728913 + ], + [ + 174.7033889, + -36.873156 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T19:33:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.08961500001937e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 121066871 + } + }, + { + "id": 121066209, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.7014231, + -36.9333394 + ], + [ + 174.876222, + -36.9333394 + ], + [ + 174.876222, + -36.881982 + ], + [ + 174.7014231, + -36.881982 + ], + [ + 174.7014231, + -36.9333394 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T19:13:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00897721702686077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_1000m": 2, + "change_within_5000m": 2 + }, + "id": 121066209 + } + }, + { + "id": 121064277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6142661, + 51.1034952 + ], + [ + 3.6142661, + 51.1034952 + ], + [ + 3.6142661, + 51.1034952 + ], + [ + 3.6142661, + 51.1034952 + ], + [ + 3.6142661, + 51.1034952 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T18:20:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 121064277 + } + }, + { + "id": 121058672, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8444269, + 45.7519499 + ], + [ + 4.8444269, + 45.7519499 + ], + [ + 4.8444269, + 45.7519499 + ], + [ + 4.8444269, + 45.7519499 + ], + [ + 4.8444269, + 45.7519499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MatthieuLyon69", + "uid": "562805", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T15:23:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121058672 + } + }, + { + "id": 121056111, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4252157, + 51.2035611 + ], + [ + 4.4252157, + 51.2035611 + ], + [ + 4.4252157, + 51.2035611 + ], + [ + 4.4252157, + 51.2035611 + ], + [ + 4.4252157, + 51.2035611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T14:11:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121056111 + } + }, + { + "id": 121052836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4649723, + 50.9250421 + ], + [ + 5.4753038, + 50.9250421 + ], + [ + 5.4753038, + 50.9281506 + ], + [ + 5.4649723, + 50.9281506 + ], + [ + 5.4649723, + 50.9250421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T12:50:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 395, + "modify": 1767, + "delete": 101, + "area": 0.0000321154677500324, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1554, + "theme": "grb", + "delete": 101, + "import": 79, + "locale": "nl", + "imagery": "osm", + "conflation": 458 + }, + "id": 121052836 + } + }, + { + "id": 121051673, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.9531105, + 45.7962548 + ], + [ + 15.9742781, + 45.7962548 + ], + [ + 15.9742781, + 45.8040785 + ], + [ + 15.9531105, + 45.8040785 + ], + [ + 15.9531105, + 45.7962548 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T12:27:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.000165608952120064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 71, + "locale": "en", + "imagery": "osm" + }, + "id": 121051673 + } + }, + { + "id": 121051508, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T12:24:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121051508 + } + }, + { + "id": 121050789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8432177, + 49.8304551 + ], + [ + 9.8664026, + 49.8304551 + ], + [ + 9.8664026, + 49.8599215 + ], + [ + 9.8432177, + 49.8599215 + ], + [ + 9.8432177, + 49.8304551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T12:11:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00068317553735994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 48, + "locale": "de", + "imagery": "osm" + }, + "id": 121050789 + } + }, + { + "id": 121048707, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.5048061, + 42.447111 + ], + [ + -2.5044756, + 42.447111 + ], + [ + -2.5044756, + 42.4485988 + ], + [ + -2.5048061, + 42.4485988 + ], + [ + -2.5048061, + 42.447111 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T11:26:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.91717899999883e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_100m": 1 + }, + "id": 121048707 + } + }, + { + "id": 121048036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.7981454, + -32.9127302 + ], + [ + -60.7969143, + -32.9127302 + ], + [ + -60.7969143, + -32.9061251 + ], + [ + -60.7981454, + -32.9061251 + ], + [ + -60.7981454, + -32.9127302 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T11:13:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000813153861003742, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121048036 + } + }, + { + "id": 121047493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4000355, + 50.8497344 + ], + [ + 4.4000355, + 50.8497344 + ], + [ + 4.4000355, + 50.8497344 + ], + [ + 4.4000355, + 50.8497344 + ], + [ + 4.4000355, + 50.8497344 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T11:01:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/US99KxJ.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121047493 + } + }, + { + "id": 121045103, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.9746391, + 45.8027768 + ], + [ + 15.9746439, + 45.8027768 + ], + [ + 15.9746439, + 45.8028245 + ], + [ + 15.9746391, + 45.8028245 + ], + [ + 15.9746391, + 45.8027768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T10:11:05Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.28960000064327e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121045103 + } + }, + { + "id": 121042704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7319263, + 51.3015161 + ], + [ + 4.7339943, + 51.3015161 + ], + [ + 4.7339943, + 51.3019345 + ], + [ + 4.7319263, + 51.3019345 + ], + [ + 4.7319263, + 51.3015161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T09:32:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 8.6525120000209e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "create": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121042704 + } + }, + { + "id": 121042222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.45817, + 50.9242576 + ], + [ + 5.4767265, + 50.9242576 + ], + [ + 5.4767265, + 50.9287293 + ], + [ + 5.45817, + 50.9287293 + ], + [ + 5.45817, + 50.9242576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T09:22:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 519, + "modify": 2487, + "delete": 100, + "area": 0.0000829791010500627, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 2180, + "theme": "grb", + "answer": 1, + "delete": 100, + "import": 91, + "locale": "nl", + "imagery": "osm", + "conflation": 630 + }, + "id": 121042222 + } + }, + { + "id": 121042098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4582467, + 50.9240959 + ], + [ + 5.4609573, + 50.9240959 + ], + [ + 5.4609573, + 50.9253386 + ], + [ + 5.4582467, + 50.9253386 + ], + [ + 5.4582467, + 50.9240959 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T09:19:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 36, + "modify": 159, + "delete": 16, + "area": 0.00000336846262001538, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 141, + "theme": "grb", + "delete": 16, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "id": 121042098 + } + }, + { + "id": 121041011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.660019, + 51.2805047 + ], + [ + 4.6938819, + 51.2805047 + ], + [ + 4.6938819, + 51.2972287 + ], + [ + 4.660019, + 51.2972287 + ], + [ + 4.660019, + 51.2805047 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T08:57:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 6, + "delete": 0, + "area": 0.000566323139599877, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121041011 + } + }, + { + "id": 121039870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.0688742, + 48.1870996 + ], + [ + 15.0688742, + 48.1870996 + ], + [ + 15.0688742, + 48.1870996 + ], + [ + 15.0688742, + 48.1870996 + ], + [ + 15.0688742, + 48.1870996 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alxGS", + "uid": "13367754", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T08:33:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 121039870 + } + }, + { + "id": 121039374, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.1377708, + 48.1265289 + ], + [ + 15.1502505, + 48.1265289 + ], + [ + 15.1502505, + 48.1428728 + ], + [ + 15.1377708, + 48.1428728 + ], + [ + 15.1377708, + 48.1265289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alxGS", + "uid": "13367754", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T08:23:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000203966968830033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 14, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 121039374 + } + }, + { + "id": 121038943, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6763214, + 51.2949109 + ], + [ + 4.7018051, + 51.2949109 + ], + [ + 4.7018051, + 51.3008162 + ], + [ + 4.6763214, + 51.3008162 + ], + [ + 4.6763214, + 51.2949109 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Malle", + "uid": "15547279", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T08:12:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 2, + "delete": 2, + "area": 0.000150488893610049, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "deletion:node/9742900587": "not found", + "deletion:node/9742948060": "testing point" + }, + "id": 121038943 + } + }, + { + "id": 121035313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.265708, + 48.7789225 + ], + [ + 10.3045536, + 48.7789225 + ], + [ + 10.3045536, + 48.7945509 + ], + [ + 10.265708, + 48.7945509 + ], + [ + 10.265708, + 48.7789225 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Segelpaule", + "uid": "146822", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T06:43:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00060709457503989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "id": 121035313 + } + }, + { + "id": 121035206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7702969, + 50.9097243 + ], + [ + 4.7728375, + 50.9097243 + ], + [ + 4.7728375, + 50.9118525 + ], + [ + 4.7702969, + 50.9118525 + ], + [ + 4.7702969, + 50.9097243 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T06:40:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.00000540690492000275, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 1, + "change_within_25m": 15 + }, + "id": 121035206 + } + }, + { + "id": 121034216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0497152, + 48.8345491 + ], + [ + 10.0682785, + 48.8345491 + ], + [ + 10.0682785, + 48.8349704 + ], + [ + 10.0497152, + 48.8349704 + ], + [ + 10.0497152, + 48.8345491 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Segelpaule", + "uid": "146822", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T06:14:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000782071829011887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121034216 + } + }, + { + "id": 121034011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0919616, + 48.8342195 + ], + [ + 10.096381, + 48.8342195 + ], + [ + 10.096381, + 48.8411842 + ], + [ + 10.0919616, + 48.8411842 + ], + [ + 10.0919616, + 48.8342195 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Segelpaule", + "uid": "146822", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-16T06:08:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000307797951799871, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121034011 + } + }, + { + "id": 121032795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9839282, + 40.5730029 + ], + [ + -73.9405525, + 40.5730029 + ], + [ + -73.9405525, + 40.5878536 + ], + [ + -73.9839282, + 40.5878536 + ], + [ + -73.9839282, + 40.5730029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T05:24:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000644159507990142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 22, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 2, + "change_within_5000m": 5 + }, + "id": 121032795 + } + }, + { + "id": 121032581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9732843, + 40.5808858 + ], + [ + -73.9719128, + 40.5808858 + ], + [ + -73.9719128, + 40.5812025 + ], + [ + -73.9732843, + 40.5812025 + ], + [ + -73.9732843, + 40.5808858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T05:17:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.34354050009957e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 6 + }, + "id": 121032581 + } + }, + { + "id": 121032203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.972004, + 40.5763866 + ], + [ + -73.9131302, + 40.5763866 + ], + [ + -73.9131302, + 40.6279442 + ], + [ + -73.972004, + 40.6279442 + ], + [ + -73.972004, + 40.5763866 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T05:05:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00303539183088018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 6, + "change_within_5000m": 5 + }, + "id": 121032203 + } + }, + { + "id": 121031471, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9838587, + 40.57538 + ], + [ + -73.9749964, + 40.57538 + ], + [ + -73.9749964, + 40.5797153 + ], + [ + -73.9838587, + 40.5797153 + ], + [ + -73.9838587, + 40.57538 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T04:27:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.000038420729189964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 41, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 9, + "change_within_5000m": 32 + }, + "id": 121031471 + } + }, + { + "id": 121028937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.8838368, + -36.9348462 + ], + [ + 174.8879612, + -36.9348462 + ], + [ + 174.8879612, + -36.9295865 + ], + [ + 174.8838368, + -36.9295865 + ], + [ + 174.8838368, + -36.9348462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-16T01:01:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000216931066799874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 121028937 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-17.json b/Docs/Tools/stats/stats.2022-5-17.json new file mode 100644 index 0000000000..a621f4a8d9 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-17.json @@ -0,0 +1,3491 @@ +{ + "features": [ + { + "id": 121118922, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.2694693, + 53.4333957 + ], + [ + 12.2704592, + 53.4333957 + ], + [ + 12.2704592, + 53.4343264 + ], + [ + 12.2694693, + 53.4343264 + ], + [ + 12.2694693, + 53.4333957 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T21:36:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.21299930003646e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121118922 + } + }, + { + "id": 121118640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.530901, + 44.8551194 + ], + [ + -0.5297779, + 44.8551194 + ], + [ + -0.5297779, + 44.857559 + ], + [ + -0.530901, + 44.857559 + ], + [ + -0.530901, + 44.8551194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T21:25:57Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/bdBn524.jpg", + "https://i.imgur.com/BchmgZE.jpg" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000273991476000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 121118640 + } + }, + { + "id": 121118554, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2163222, + -39.8326361 + ], + [ + -73.2146958, + -39.8326361 + ], + [ + -73.2146958, + -39.8322404 + ], + [ + -73.2163222, + -39.8322404 + ], + [ + -73.2163222, + -39.8326361 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T21:23:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/wHnyGIY.jpg", + "https://i.imgur.com/1WoTLA8.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 3, + "modify": 9, + "delete": 0, + "area": 6.43566479994543e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 2, + "theme": "trees", + "answer": 3, + "create": 3, + "locale": "es", + "imagery": "EsriWorldImagery", + "add-image": 5, + "change_over_5000m": 3, + "change_within_25m": 10, + "move:node/9750182248": "improve_accuracy", + "move:node/9750191525": "improve_accuracy" + }, + "id": 121118554 + } + }, + { + "id": 121118487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3069063, + 43.6187531 + ], + [ + 1.3069063, + 43.6187531 + ], + [ + 1.3069063, + 43.6187531 + ], + [ + 1.3069063, + 43.6187531 + ], + [ + 1.3069063, + 43.6187531 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T21:19:59Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121118487 + } + }, + { + "id": 121115858, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.351492, + 44.8712712 + ], + [ + 4.364943, + 44.8712712 + ], + [ + 4.364943, + 44.8804823 + ], + [ + 4.351492, + 44.8804823 + ], + [ + 4.351492, + 44.8712712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T19:53:19Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "hiking" + ], + "survey:date": [ + "2021-12-28" + ], + "expected_lwn_route_relations": [ + "3" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000123898506099926, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121115858 + } + }, + { + "id": 121115735, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3650338, + 44.8803151 + ], + [ + 4.3650338, + 44.8803151 + ], + [ + 4.3650338, + 44.8803151 + ], + [ + 4.3650338, + 44.8803151 + ], + [ + 4.3650338, + 44.8803151 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/cb8f5e51c869c9dd54221b56e7c771659c69c4a4/walkingnetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T19:49:35Z", + "reviewed_features": [], + "tag_changes": { + "survey:date": [ + "2021-12-28" + ], + "expected_lwn_route_relations": [ + "3" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/cb8f5e51c869c9dd54221b56e7c771659c69c4a4/walkingnetworks.json", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121115735 + } + }, + { + "id": 121111163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.531071, + 44.857765 + ], + [ + -0.531071, + 44.857765 + ], + [ + -0.531071, + 44.857765 + ], + [ + -0.531071, + 44.857765 + ], + [ + -0.531071, + 44.857765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T17:30:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/oeKjquh.jpg" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 121111163 + } + }, + { + "id": 121110964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4866615, + 51.5904159 + ], + [ + 13.5092224, + 51.5904159 + ], + [ + 13.5092224, + 51.6026817 + ], + [ + 13.4866615, + 51.6026817 + ], + [ + 13.4866615, + 51.5904159 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ronnsen79", + "uid": "15992654", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T17:22:56Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Vorhanden", + "Nicht mehr vorhanden", + "Nicht für Fw", + "K. A.", + "Eingezäunt" + ], + "fire_hydrant:diameter": [ + "1", + "100", + "80" + ] + }, + "create": 3, + "modify": 37, + "delete": 0, + "area": 0.000276727487219877, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121110964 + } + }, + { + "id": 121109328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8733831, + 48.7496917 + ], + [ + 8.8733831, + 48.7496917 + ], + [ + 8.8733831, + 48.7496917 + ], + [ + 8.8733831, + 48.7496917 + ], + [ + 8.8733831, + 48.7496917 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Urml", + "uid": "2088671", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T16:38:26Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 10, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 5 + }, + "id": 121109328 + } + }, + { + "id": 121102388, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6235712, + 50.9568578 + ], + [ + 3.6447857, + 50.9568578 + ], + [ + 3.6447857, + 50.9637571 + ], + [ + 3.6235712, + 50.9637571 + ], + [ + 3.6235712, + 50.9568578 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T13:52:42Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "copyshop" + ], + "office": [ + "company" + ], + "amenity": [ + "pharmacy" + ], + "building": [ + "roof", + "house", + "yes" + ], + "addr:street": [ + "Zuiderbiesten" + ], + "addr:housenumber": [ + "7", + "5" + ], + "source:geometry:ref": [ + "Gbg/3805893", + "Gbg/3807581", + "Gbg/3807582", + "Gbg/3809032", + "Gbg/3807585", + "Gbg/3807103", + "Gbg/3806925", + "Gbg/3806668", + "Gbg/3806675", + "Gbg/3805858" + ], + "source:geometry:date": [ + "2012-11-26", + "2012-08-13", + "2019-03-29", + "2014-12-17" + ] + }, + "create": 6729, + "modify": 75, + "delete": 1, + "area": 0.000146365199850011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 64, + "theme": "grb", + "delete": 1, + "import": 888, + "locale": "nl", + "imagery": "osm", + "conflation": 22, + "change_over_5000m": 718 + }, + "id": 121102388 + } + }, + { + "id": 121102245, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3069708, + 43.6186648 + ], + [ + 1.3072017, + 43.6186648 + ], + [ + 1.3072017, + 43.6188224 + ], + [ + 1.3069708, + 43.6188224 + ], + [ + 1.3069708, + 43.6186648 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T13:50:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Lzkq14u.jpg" + ], + "leisure": [ + "playground" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.6389840000334e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121102245 + } + }, + { + "id": 121101359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4692451, + 50.9254929 + ], + [ + 5.4730395, + 50.9254929 + ], + [ + 5.4730395, + 50.9270813 + ], + [ + 5.4692451, + 50.9270813 + ], + [ + 5.4692451, + 50.9254929 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T13:35:22Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 15, + "modify": 6, + "delete": 0, + "area": 0.00000602702495998282, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 6, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 121101359 + } + }, + { + "id": 121101264, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.628836, + 50.9530991 + ], + [ + 3.638503, + 50.9530991 + ], + [ + 3.638503, + 50.9579608 + ], + [ + 3.628836, + 50.9579608 + ], + [ + 3.628836, + 50.9530991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T13:33:23Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "garden" + ], + "building": [ + "house", + "yes", + "residential", + "terrace", + "roof" + ], + "addr:street": [ + "Zuiderbiesten", + "Biesten" + ], + "addr:housenumber": [ + "27A", + "31", + "33", + "39", + "13", + "11", + "9", + "3", + "49", + "47" + ], + "source:geometry:ref": [ + "Gbg/3806276", + "Gbg/3806655", + "Gbg/5684153", + "Gbg/3806657", + "Gbg/3806656", + "Gbg/3806661", + "Gbg/3806660", + "Gbg/3806659", + "Gbg/3806662", + "Gbg/3806664", + "Gbg/3806653", + "Gbg/3806650", + "Gbg/3806651", + "Gbg/3806636", + "Gbg/3806665", + "Gbg/3806666", + "Gbg/3806667", + "Gbg/3806677", + "Gbg/3806678", + "Gbg/3806681" + ], + "source:geometry:date": [ + "2012-08-13", + "2014-12-17", + "2016-09-07", + "2021-04-29", + "2012-11-26", + "2018-05-23", + "2020-01-07", + "2019-03-29" + ] + }, + "create": 1386, + "modify": 128, + "delete": 0, + "area": 0.0000469980538999926, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 108, + "theme": "grb", + "answer": 1, + "import": 219, + "locale": "nl", + "imagery": "osm", + "conflation": 42, + "change_over_5000m": 220 + }, + "id": 121101264 + } + }, + { + "id": 121100440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7202336, + -34.665669 + ], + [ + -58.5969584, + -34.665669 + ], + [ + -58.5969584, + -34.6450594 + ], + [ + -58.7202336, + -34.6450594 + ], + [ + -58.7202336, + -34.665669 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T13:17:03Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "RO 5B" + ], + "railway": [ + "signal" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00254065256192007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 121100440 + } + }, + { + "id": 121099791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.364419, + 50.9611513 + ], + [ + 5.3644625, + 50.9611513 + ], + [ + 5.3644625, + 50.9611803 + ], + [ + 5.364419, + 50.9611803 + ], + [ + 5.364419, + 50.9611513 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T13:02:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/CxFv2IA.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.26150000022387e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2, + "move:node/2652967003": "improve_accuracy" + }, + "id": 121099791 + } + }, + { + "id": 121097843, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9330818, + 48.6953694 + ], + [ + 9.0232743, + 48.6953694 + ], + [ + 9.0232743, + 48.7672987 + ], + [ + 8.9330818, + 48.7672987 + ], + [ + 8.9330818, + 48.6953694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Urml", + "uid": "2088671", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T12:19:58Z", + "reviewed_features": [], + "tag_changes": { + "sport": [ + "climbing", + "climbing;bouldering" + ], + "access": [ + "yes" + ], + "leisure": [ + "sports_centre" + ], + "website": [ + "https://gymnasium-renningen.de/" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00648748339025011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 121097843 + } + }, + { + "id": 121097619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.306909, + 43.618759 + ], + [ + 1.3070136, + 43.618759 + ], + [ + 1.3070136, + 43.6187706 + ], + [ + 1.306909, + 43.6187706 + ], + [ + 1.306909, + 43.618759 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T12:15:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 1, + "area": 1.21336000005824e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "move": 1, + "theme": "waste_basket", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "move:node/9748960310": "improve_accuracy", + "deletion:node/9748960310": "duplicate" + }, + "id": 121097619 + } + }, + { + "id": 121095534, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2099704, + 51.1880573 + ], + [ + 3.2099704, + 51.1880573 + ], + [ + 3.2099704, + 51.1880573 + ], + [ + 3.2099704, + 51.1880573 + ], + [ + 3.2099704, + 51.1880573 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T11:35:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 121095534 + } + }, + { + "id": 121094577, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3018204, + 43.2915551 + ], + [ + -8.3015184, + 43.2915551 + ], + [ + -8.3015184, + 43.2920325 + ], + [ + -8.3018204, + 43.2920325 + ], + [ + -8.3018204, + 43.2915551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T11:14:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.44174800000157e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121094577 + } + }, + { + "id": 121094491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3178825, + 43.2875394 + ], + [ + -8.3019087, + 43.2875394 + ], + [ + -8.3019087, + 43.2914859 + ], + [ + -8.3178825, + 43.2914859 + ], + [ + -8.3178825, + 43.2875394 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T11:12:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000630406016999632, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "split": 2, + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121094491 + } + }, + { + "id": 121094316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 83.1017006, + 54.8538623 + ], + [ + 83.1152009, + 54.8538623 + ], + [ + 83.1152009, + 54.8596691 + ], + [ + 83.1017006, + 54.8596691 + ], + [ + 83.1017006, + 54.8538623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-433769296", + "name": "улица Николаева", + "osm_id": 433769296, + "reasons": [ + 87 + ], + "version": 3, + "primary_tags": { + "highway": "unclassified" + } + } + ], + "user": "Miroff", + "uid": "217899", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T11:08:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000783935420399544, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 6, + "locale": "ru", + "imagery": "osm" + }, + "id": 121094316 + } + }, + { + "id": 121094288, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8656479, + 43.3192417 + ], + [ + -3.8656479, + 43.3192417 + ], + [ + -3.8656479, + 43.3192417 + ], + [ + -3.8656479, + 43.3192417 + ], + [ + -3.8656479, + 43.3192417 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T11:08:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 121094288 + } + }, + { + "id": 121094247, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3191927, + 43.2753576 + ], + [ + -8.2967907, + 43.2753576 + ], + [ + -8.2967907, + 43.2993974 + ], + [ + -8.3191927, + 43.2993974 + ], + [ + -8.3191927, + 43.2753576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T11:07:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000538539599599924, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "id": 121094247 + } + }, + { + "id": 121094108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3072315, + 43.2874499 + ], + [ + -8.3059499, + 43.2874499 + ], + [ + -8.3059499, + 43.289101 + ], + [ + -8.3072315, + 43.289101 + ], + [ + -8.3072315, + 43.2874499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T11:03:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000211604976000544, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 121094108 + } + }, + { + "id": 121093446, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3403718, + 43.2796228 + ], + [ + -8.2673071, + 43.2796228 + ], + [ + -8.2673071, + 43.311679 + ], + [ + -8.3403718, + 43.311679 + ], + [ + -8.3403718, + 43.2796228 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T10:49:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00234217663613996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 10, + "create": 2, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "id": 121093446 + } + }, + { + "id": 121093212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3557792, + 43.2714888 + ], + [ + -8.2682052, + 43.2714888 + ], + [ + -8.2682052, + 43.4057712 + ], + [ + -8.3557792, + 43.4057712 + ], + [ + -8.3557792, + 43.2714888 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T10:45:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0117596468975997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "nature", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 121093212 + } + }, + { + "id": 121092518, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.4192596, + 43.2312666 + ], + [ + -8.4108818, + 43.2312666 + ], + [ + -8.4108818, + 43.3499279 + ], + [ + -8.4192596, + 43.3499279 + ], + [ + -8.4192596, + 43.2312666 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T10:30:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000994120639139981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 9, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121092518 + } + }, + { + "id": 121092413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -7.8949374, + 43.7163683 + ], + [ + -7.8949374, + 43.7163683 + ], + [ + -7.8949374, + 43.7163683 + ], + [ + -7.8949374, + 43.7163683 + ], + [ + -7.8949374, + 43.7163683 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9748738736", + "osm_id": 9748738736, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T10:28:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "id": 121092413 + } + }, + { + "id": 121091526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3102995, + 43.2863536 + ], + [ + -8.3017454, + 43.2863536 + ], + [ + -8.3017454, + 43.2918415 + ], + [ + -8.3102995, + 43.2918415 + ], + [ + -8.3102995, + 43.2863536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T10:09:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 38, + "delete": 0, + "area": 0.0000469440453899852, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 56, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121091526 + } + }, + { + "id": 121091190, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3013356, + 43.2902348 + ], + [ + -8.2703501, + 43.2902348 + ], + [ + -8.2703501, + 43.2980788 + ], + [ + -8.3013356, + 43.2980788 + ], + [ + -8.3013356, + 43.2902348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T10:01:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 1, + "area": 0.000243050261999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 2, + "create": 3, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9748616614": "testing point" + }, + "id": 121091190 + } + }, + { + "id": 121090759, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.393875, + 43.371277 + ], + [ + -8.393875, + 43.371277 + ], + [ + -8.393875, + 43.371277 + ], + [ + -8.393875, + 43.371277 + ], + [ + -8.393875, + 43.371277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:51:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121090759 + } + }, + { + "id": 121090489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.4054228, + 43.3762172 + ], + [ + -8.4054228, + 43.3762172 + ], + [ + -8.4054228, + 43.3762172 + ], + [ + -8.4054228, + 43.3762172 + ], + [ + -8.4054228, + 43.3762172 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:46:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 121090489 + } + }, + { + "id": 121089968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3063966, + 43.289085 + ], + [ + -8.3010802, + 43.289085 + ], + [ + -8.3010802, + 43.2959939 + ], + [ + -8.3063966, + 43.2959939 + ], + [ + -8.3063966, + 43.289085 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:36:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000367304759599945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 8, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121089968 + } + }, + { + "id": 121089902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4656758, + 50.9264522 + ], + [ + 5.47033, + 50.9264522 + ], + [ + 5.47033, + 50.9299814 + ], + [ + 5.4656758, + 50.9299814 + ], + [ + 5.4656758, + 50.9264522 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:34:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 99, + "modify": 599, + "delete": 29, + "area": 0.0000164256026400126, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 523, + "theme": "grb", + "delete": 29, + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 164 + }, + "id": 121089902 + } + }, + { + "id": 121089767, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4788527, + 51.1600788 + ], + [ + 4.4856293, + 51.1600788 + ], + [ + 4.4856293, + 51.1639661 + ], + [ + 4.4788527, + 51.1639661 + ], + [ + 4.4788527, + 51.1600788 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "maubu", + "uid": "15716055", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:32:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000026342677180017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 121089767 + } + }, + { + "id": 121089730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3075627, + 43.2874306 + ], + [ + -8.3070215, + 43.2874306 + ], + [ + -8.3070215, + 43.2882821 + ], + [ + -8.3075627, + 43.2882821 + ], + [ + -8.3075627, + 43.2874306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:31:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.60831800002269e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "id": 121089730 + } + }, + { + "id": 121089635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3076495, + 43.2868482 + ], + [ + -8.3038818, + 43.2868482 + ], + [ + -8.3038818, + 43.2888002 + ], + [ + -8.3076495, + 43.2888002 + ], + [ + -8.3076495, + 43.2868482 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:29:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000735455039998574, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 121089635 + } + }, + { + "id": 121089147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3607822, + 43.2810317 + ], + [ + -8.2741931, + 43.2810317 + ], + [ + -8.2741931, + 43.3160537 + ], + [ + -8.3607822, + 43.3160537 + ], + [ + -8.3607822, + 43.2810317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:19:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0030325234601998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 18, + "locale": "es", + "imagery": "CartoDB.Voyager" + }, + "id": 121089147 + } + }, + { + "id": 121088328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3213657, + 43.2783574 + ], + [ + -8.3063244, + 43.2783574 + ], + [ + -8.3063244, + 43.2956307 + ], + [ + -8.3213657, + 43.2956307 + ], + [ + -8.3213657, + 43.2783574 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T09:01:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.000259812887289991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 11, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121088328 + } + }, + { + "id": 121088140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -8.3074178, + 43.286305 + ], + [ + -8.304108, + 43.286305 + ], + [ + -8.304108, + 43.2874347 + ], + [ + -8.3074178, + 43.2874347 + ], + [ + -8.3074178, + 43.286305 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "luckthing", + "uid": "13948532", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T08:57:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000373908105999995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 10, + "locale": "es", + "imagery": "osm" + }, + "id": 121088140 + } + }, + { + "id": 121087485, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2272325, + 50.9616092 + ], + [ + 4.2272325, + 50.9616092 + ], + [ + 4.2272325, + 50.9616092 + ], + [ + 4.2272325, + 50.9616092 + ], + [ + 4.2272325, + 50.9616092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T08:43:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9748423599": "source: https://osm.org/note/3090311" + }, + "id": 121087485 + } + }, + { + "id": 121086096, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3255945, + 50.8545415 + ], + [ + 4.3340369, + 50.8545415 + ], + [ + 4.3340369, + 50.8571051 + ], + [ + 4.3255945, + 50.8571051 + ], + [ + 4.3255945, + 50.8545415 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T08:12:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000216429366399565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 17, + "locale": "nl", + "imagery": "osm" + }, + "id": 121086096 + } + }, + { + "id": 121085448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.7923027, + 51.3894918 + ], + [ + 6.7975439, + 51.3894918 + ], + [ + 6.7975439, + 51.3922642 + ], + [ + 6.7923027, + 51.3922642 + ], + [ + 6.7923027, + 51.3894918 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "calli3756", + "uid": "546812", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T07:58:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000145307028799895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 13, + "locale": "en", + "imagery": "nrw_ortho_wms" + }, + "id": 121085448 + } + }, + { + "id": 121083080, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0728822, + 48.829189 + ], + [ + 10.0799606, + 48.829189 + ], + [ + 10.0799606, + 48.8321846 + ], + [ + 10.0728822, + 48.8321846 + ], + [ + 10.0728822, + 48.829189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Segelpaule", + "uid": "146822", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T07:10:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000212040550399867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121083080 + } + }, + { + "id": 121082056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5140126, + 53.1975588 + ], + [ + 6.5143709, + 53.1975588 + ], + [ + 6.5143709, + 53.1980096 + ], + [ + 6.5140126, + 53.1980096 + ], + [ + 6.5140126, + 53.1975588 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T06:49:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.61521639998634e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 2, + "change_within_5000m": 4 + }, + "id": 121082056 + } + }, + { + "id": 121080104, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7456988, + 48.4011164 + ], + [ + 11.7456988, + 48.4011164 + ], + [ + 11.7456988, + 48.4011164 + ], + [ + 11.7456988, + 48.4011164 + ], + [ + 11.7456988, + 48.4011164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zorae", + "uid": "9333062", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T06:08:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121080104 + } + }, + { + "id": 121079478, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.418045, + 52.0983377 + ], + [ + 13.418045, + 52.0983377 + ], + [ + 13.418045, + 52.0983377 + ], + [ + 13.418045, + 52.0983377 + ], + [ + 13.418045, + 52.0983377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T05:51:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121079478 + } + }, + { + "id": 121079411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.329815, + 50.9906025 + ], + [ + 3.329815, + 50.9906025 + ], + [ + 3.329815, + 50.9906025 + ], + [ + 3.329815, + 50.9906025 + ], + [ + 3.329815, + 50.9906025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-17T05:49:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9748077287": "source: https://osm.org/note/3161437" + }, + "id": 121079411 + } + }, + { + "id": 121075113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.71259, + 45.1762693 + ], + [ + 5.7127283, + 45.1762693 + ], + [ + 5.7127283, + 45.1763502 + ], + [ + 5.71259, + 45.1763502 + ], + [ + 5.71259, + 45.1762693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T02:50:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 1.11884700001008e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 14, + "locale": "en", + "imagery": "osm", + "change_within_500m": 14 + }, + "id": 121075113 + } + }, + { + "id": 121074597, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.3755901, + 47.6849813 + ], + [ + -122.37559, + 47.6849813 + ], + [ + -122.37559, + 47.6849813 + ], + [ + -122.3755901, + 47.6849813 + ], + [ + -122.3755901, + 47.6849813 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-17T01:55:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 121074597 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-18.json b/Docs/Tools/stats/stats.2022-5-18.json new file mode 100644 index 0000000000..c7e6241197 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-18.json @@ -0,0 +1,3995 @@ +{ + "features": [ + { + "id": 121168007, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5247694, + 45.0325494 + ], + [ + 7.7190443, + 45.0325494 + ], + [ + 7.7190443, + 45.0939566 + ], + [ + 7.5247694, + 45.0939566 + ], + [ + 7.5247694, + 45.0325494 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "madbob", + "uid": "734100", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T23:30:53Z", + "reviewed_features": [], + "tag_changes": { + "place": [ + "square" + ], + "amenity": [ + "school", + "community_centre", + "cinema" + ], + "highway": [ + "tertiary", + "residential", + "pedestrian", + "primary", + "secondary", + "unclassified", + "service", + "footway", + "steps" + ], + "railway": [ + "tram" + ], + "tourism": [ + "yes" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q19833", + "Q19826", + "Q2751", + "Q220", + "Q598854", + "Q13437", + "Q6596", + "Q9000", + "Q676555", + "Q6122", + "Q1848", + "Q13619", + "Q9519", + "Q1486", + "Q10261", + "Q13670", + "Q100", + "Q17827", + "Q9311", + "Q6606", + "Q13138", + "Q441294", + "Q541300", + "Q31", + "Q13470", + "Q643", + "Q723652", + "Q539", + "Q2044", + "Q3947924", + "Q64450" + ] + }, + "create": 0, + "modify": 303, + "delete": 0, + "area": 0.0119298776392796, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 438, + "locale": "en", + "imagery": "osm" + }, + "id": 121168007 + } + }, + { + "id": 121164998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6334937, + 50.9529321 + ], + [ + 3.6503084, + 50.9529321 + ], + [ + 3.6503084, + 50.9674165 + ], + [ + 3.6334937, + 50.9674165 + ], + [ + 3.6334937, + 50.9529321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T21:16:39Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "supermarket", + "car_repair" + ], + "office": [ + "company" + ], + "amenity": [ + "place_of_worship", + "arts_centre" + ], + "building": [ + "house", + "yes", + "church", + "greenhouse", + "shop", + "roof" + ], + "addr:street": [ + "De Lichterveldestraat", + "Kerkplein", + "Zagmanstraat", + "Bosstraat" + ], + "addr:housenumber": [ + "6B", + "11", + "16A", + "18", + "45C", + "1" + ], + "source:geometry:ref": [ + "Gbg/3806278", + "Gbg/3806389", + "Gbg/6031917", + "Gbg/3807478", + "Gbg/6725233", + "Gbg/3807475", + "Gbg/5684176", + "Gbg/3807477", + "Gbg/3806399", + "Gbg/3807762", + "Gbg/6344391", + "Gbg/3809667" + ], + "source:geometry:date": [ + "2012-08-13", + "2014-12-17", + "2017-09-15", + "2020-05-09", + "2016-09-07", + "2018-05-23", + "2012-11-26", + "2017-09-28", + "2012-10-17" + ] + }, + "create": 5216, + "modify": 97, + "delete": 0, + "area": 0.000243550840680015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 84, + "theme": "grb", + "answer": 1, + "import": 660, + "locale": "nl", + "imagery": "osm", + "conflation": 24, + "change_over_5000m": 659 + }, + "id": 121164998 + } + }, + { + "id": 121164320, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2319197, + -39.8474093 + ], + [ + -73.231165, + -39.8474093 + ], + [ + -73.231165, + -39.8458035 + ], + [ + -73.2319197, + -39.8458035 + ], + [ + -73.2319197, + -39.8474093 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T20:53:57Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/W3521ts.jpg", + "https://i.imgur.com/yMGliwG.jpg", + "https://i.imgur.com/VguzCC0.jpg", + "https://i.imgur.com/58lftkV.jpg", + "https://i.imgur.com/ldLrQ3S.jpg", + "https://i.imgur.com/ztLG8a6.jpg", + "https://i.imgur.com/AAd2o41.jpg", + "https://i.imgur.com/tq0wZAg.jpg", + "https://i.imgur.com/vLMCaJY.jpg", + "https://i.imgur.com/Wnh8QCg.jpg", + "https://i.imgur.com/OhndJig.jpg", + "https://i.imgur.com/cB7ue6j.jpg", + "https://i.imgur.com/XhLyOv6.jpg", + "https://i.imgur.com/CtxiT3N.jpg", + "https://i.imgur.com/RNvDwyZ.jpg", + "https://i.imgur.com/ISiFItn.jpg" + ], + "image:0": [ + "https://i.imgur.com/wn10Wk3.jpg", + "https://i.imgur.com/JV0hohr.jpg", + "https://i.imgur.com/c5RDWYC.jpg", + "https://i.imgur.com/MTDVWH3.jpg" + ], + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00000121189726000275, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 20, + "change_within_25m": 21 + }, + "id": 121164320 + } + }, + { + "id": 121162818, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2324556, + -39.8460562 + ], + [ + -73.2317358, + -39.8460562 + ], + [ + -73.2317358, + -39.8438042 + ], + [ + -73.2324556, + -39.8438042 + ], + [ + -73.2324556, + -39.8460562 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T20:04:23Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/uva2A8Q.jpg", + "https://i.imgur.com/ERy60aR.jpg", + "https://i.imgur.com/Dtr2h15.jpg", + "https://i.imgur.com/JDFSeYU.jpg", + "https://i.imgur.com/fDULVGa.jpg", + "https://i.imgur.com/t8PaUJo.jpg", + "https://i.imgur.com/md9zPT1.jpg", + "https://i.imgur.com/nCxT7Ob.jpg", + "https://i.imgur.com/SsjkV0j.jpg", + "https://i.imgur.com/pPRIrdl.jpg", + "https://i.imgur.com/JTFEHux.jpg", + "https://i.imgur.com/pvk0s6X.jpg", + "https://i.imgur.com/igSSyOQ.jpg", + "https://i.imgur.com/mF3MVCl.jpg", + "https://i.imgur.com/72jeZOk.jpg", + "https://i.imgur.com/8PkmCDq.jpg", + "https://i.imgur.com/SjG9880.jpg", + "https://i.imgur.com/3sIEg30.jpg", + "https://i.imgur.com/d0R59PF.jpg", + "https://i.imgur.com/urariCc.jpg", + "https://i.imgur.com/2gdVulu.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00000162098959999634, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 21, + "change_within_25m": 20, + "change_within_50m": 1 + }, + "id": 121162818 + } + }, + { + "id": 121162070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2487075, + 53.199991 + ], + [ + 6.2488443, + 53.199991 + ], + [ + 6.2488443, + 53.2001709 + ], + [ + 6.2487075, + 53.2001709 + ], + [ + 6.2487075, + 53.199991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T19:41:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.46103200008406e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 8, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 10 + }, + "id": 121162070 + } + }, + { + "id": 121161539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2499747, + 53.2010715 + ], + [ + 6.2499747, + 53.2010715 + ], + [ + 6.2499747, + 53.2010715 + ], + [ + 6.2499747, + 53.2010715 + ], + [ + 6.2499747, + 53.2010715 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T19:25:39Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "indoor": [ + "no" + ], + "emergency": [ + "defibrillator" + ], + "wheelchair": [ + "yes" + ], + "survey:date": [ + "2022-05-18" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 5 + }, + "id": 121161539 + } + }, + { + "id": 121159657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7036228, + 50.8805314 + ], + [ + 4.7039947, + 50.8805314 + ], + [ + 4.7039947, + 50.8805686 + ], + [ + 4.7036228, + 50.8805686 + ], + [ + 4.7036228, + 50.8805314 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T18:25:40Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "the tag access was filled out by the user and might need refinement" + ], + "image": [ + "https://i.imgur.com/5wQmCCd.jpg" + ], + "level": [ + "0" + ], + "access": [ + "Tijdens openingsuren bibliotheek", + "yes" + ], + "amenity": [ + "toilets" + ], + "image:0": [ + "https://i.imgur.com/mRwhPFh.jpg" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 6, + "delete": 1, + "area": 1.38346799978454e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 2, + "deletion:node/7835232730": "duplicate" + }, + "id": 121159657 + } + }, + { + "id": 121158699, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0612579, + 53.9353522 + ], + [ + 13.0612579, + 53.9353522 + ], + [ + 13.0612579, + 53.9353522 + ], + [ + 13.0612579, + 53.9353522 + ], + [ + 13.0612579, + 53.9353522 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T17:57:27Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Vogelbeobachtungsturm", + "Vogelbeobachtungsturm (Höhe 9m)" + ], + "height": [ + "9 m" + ], + "tourism": [ + "viewpoint" + ], + "man_made": [ + "tower" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 121158699 + } + }, + { + "id": 121158296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5324616, + 44.8568503 + ], + [ + -0.5324616, + 44.8568503 + ], + [ + -0.5324616, + 44.8568503 + ], + [ + -0.5324616, + 44.8568503 + ], + [ + -0.5324616, + 44.8568503 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T17:43:46Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 5 + }, + "id": 121158296 + } + }, + { + "id": 121156660, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4189932, + 50.8985036 + ], + [ + 5.4350536, + 50.8985036 + ], + [ + 5.4350536, + 50.9065059 + ], + [ + 5.4189932, + 50.9065059 + ], + [ + 5.4189932, + 50.8985036 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T16:54:07Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "commercial", + "school", + "industrial", + "roof" + ], + "addr:street": [ + "Meidoornlaan" + ], + "addr:housenumber": [ + "1A" + ], + "source:geometry:ref": [ + "Gbg/2336334", + "Gbg/4708873", + "Gbg/2336115", + "Gbg/4708869", + "Gbg/2336338", + "Gbg/2336328", + "Gbg/2336360", + "Gbg/4708877", + "Gbg/2336241", + "Gbg/4708858", + "Gbg/2336331", + "Gbg/4708853", + "Gbg/2336240", + "Gbg/6450978", + "Gbg/2336329", + "Gbg/2336333", + "Gbg/2336332", + "Gbg/6450975", + "Gbg/2335813", + "Gbg/5836074", + "Gbg/2335741", + "Gbg/6635449", + "Gbg/2335327", + "Gbg/4707186", + "Gbg/4707185", + "Gbg/2335743", + "Gbg/2335546", + "Gbg/2336070", + "Gbg/2336335", + "Gbg/5835583", + "Gbg/2335848", + "Gbg/2335849", + "Gbg/2335745", + "Gbg/5836114", + "Gbg/2335818", + "Gbg/2335817", + "Gbg/2335954", + "Gbg/2335953", + "Gbg/5836273", + "Gbg/5836275", + "Gbg/5836272", + "Gbg/5836268", + "Gbg/2335819", + "Gbg/2335820", + "Gbg/5548498", + "Gbg/7024142", + "Gbg/5836226", + "Gbg/2335178", + "Gbg/7024141", + "Gbg/2335729", + "Gbg/2335836", + "Gbg/2335834", + "Gbg/2335835", + "Gbg/6635466", + "Gbg/2335728", + "Gbg/6635435", + "Gbg/2335830", + "Gbg/2336186", + "Gbg/2336120", + "Gbg/2336359", + "Gbg/4709535", + "Gbg/2336112", + "Gbg/5836020", + "Gbg/2336111", + "Gbg/2336110", + "Gbg/5836134", + "Gbg/2336108", + "Gbg/2336107", + "Gbg/2336106", + "Gbg/2336344", + "Gbg/2336119", + "Gbg/2336118", + "Gbg/2336117", + "Gbg/2336116", + "Gbg/2336074", + "Gbg/4709202", + "Gbg/2336073", + "Gbg/2336075", + "Gbg/2335328", + "Gbg/2335329", + "Gbg/2335916", + "Gbg/2335915", + "Gbg/6450976", + "Gbg/5739970", + "Gbg/5739971", + "Gbg/5740024", + "Gbg/7023785", + "Gbg/6111644", + "Gbg/6450981", + "Gbg/5740029", + "Gbg/2335400", + "Gbg/2335410", + "Gbg/2335397", + "Gbg/2335396", + "Gbg/2335411", + "Gbg/6451137", + "Gbg/4709543", + "Gbg/5836208", + "Gbg/2335334", + "Gbg/2335333", + "Gbg/2335335", + "Gbg/5740034", + "Gbg/2335911", + "Gbg/4709640", + "Gbg/7024156", + "Gbg/2335721", + "Gbg/5836050", + "Gbg/2335720", + "Gbg/2335719", + "Gbg/2335330", + "Gbg/6931468", + "Gbg/6931467", + "Gbg/6931466", + "Gbg/6931456", + "Gbg/6931463", + "Gbg/6715619", + "Gbg/6715620", + "Gbg/6931462", + "Gbg/2336113", + "Gbg/2336114", + "Gbg/5835860", + "Gbg/2335994", + "Gbg/2335993", + "Gbg/6780746", + "Gbg/6780892", + "Gbg/2340056", + "Gbg/2340042", + "Gbg/2340032", + "Gbg/2340024", + "Gbg/2339997", + "Gbg/4707506", + "Gbg/5834855", + "Gbg/5835293", + "Gbg/5548504" + ], + "source:geometry:date": [ + "2010-01-25", + "2020-02-25", + "2014-05-27", + "2017-01-30", + "2018-08-07", + "2019-07-05", + "2016-11-09", + "2020-01-06", + "2015-08-25", + "2020-04-30", + "2021-04-20", + "2010-06-14", + "2016-05-13" + ] + }, + "create": 972, + "modify": 1343, + "delete": 15, + "area": 0.000128520138920016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1217, + "theme": "grb", + "delete": 15, + "import": 161, + "locale": "nl", + "imagery": "osm", + "conflation": 268 + }, + "id": 121156660 + } + }, + { + "id": 121156578, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1231735, + 51.2176747 + ], + [ + 4.1231735, + 51.2176747 + ], + [ + 4.1231735, + 51.2176747 + ], + [ + 4.1231735, + 51.2176747 + ], + [ + 4.1231735, + 51.2176747 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T16:51:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121156578 + } + }, + { + "id": 121156344, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.427708, + 50.9052282 + ], + [ + 5.4672393, + 50.9052282 + ], + [ + 5.4672393, + 50.915004 + ], + [ + 5.427708, + 50.915004 + ], + [ + 5.427708, + 50.9052282 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T16:44:28Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "amenity": [ + "fuel" + ], + "building": [ + "yes", + "roof", + "house", + "detached" + ], + "source:geometry:ref": [ + "Gba/542779", + "Gbg/2335930", + "Gbg/5289986", + "Gbg/2335923", + "Gbg/2335919", + "Gbg/2335920", + "Gbg/4709114", + "Gbg/2335385", + "Gbg/2335413", + "Gbg/2335414", + "Gbg/2335332", + "Gbg/2336361", + "Gbg/2335927", + "Gbg/2335715", + "Gbg/2335714", + "Gbg/2335935", + "Gbg/2335924", + "Gbg/2335926", + "Gbg/2335925", + "Gbg/2335331", + "Gbg/5824166", + "Gbg/1471647", + "Gbg/1471729", + "Gbg/1471728", + "Gbg/1470034", + "Gbg/4831158", + "Gbg/2335931", + "Gbg/2335932", + "Gbg/2335700", + "Gbg/2335699", + "Gbg/6780782", + "Gbg/6450708", + "Gbg/7006885", + "Gbg/7023944", + "Gbg/7024159", + "Gbg/2335437", + "Gbg/5834635", + "Gbg/6450058", + "Gbg/2335433", + "Gbg/4708826" + ], + "source:geometry:date": [ + "2017-11-08", + "2010-01-25", + "2015-08-25", + "2020-02-25", + "2017-01-30", + "2017-01-24", + "2009-11-20", + "2014-08-20", + "2020-04-30", + "2018-08-07", + "2021-10-07", + "2014-05-27" + ] + }, + "create": 101, + "modify": 407, + "delete": 13, + "area": 0.000386450082539997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 369, + "theme": "grb", + "delete": 13, + "import": 19, + "locale": "nl", + "imagery": "osm", + "conflation": 80 + }, + "id": 121156344 + } + }, + { + "id": 121155024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4679209, + 50.915324 + ], + [ + 5.4904659, + 50.915324 + ], + [ + 5.4904659, + 50.9272027 + ], + [ + 5.4679209, + 50.9272027 + ], + [ + 5.4679209, + 50.915324 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T16:09:20Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "newsagent" + ], + "amenity": [ + "restaurant" + ], + "building": [ + "industrial", + "house", + "yes", + "roof", + "detached" + ], + "source:geometry:ref": [ + "Gbg/4752350", + "Gbg/1578903", + "Gba/101551", + "Gbg/1578416", + "Gbg/6841120", + "Gbg/7032682", + "Gbg/1578837", + "Gbg/1578975", + "Gbg/1579004", + "Gbg/4753068", + "Gbg/1578359", + "Gbg/1578967", + "Gbg/1578952", + "Gbg/7032686", + "Gbg/7032695", + "Gbg/5786676", + "Gbg/1578971", + "Gbg/7032692", + "Gbg/7032691", + "Gbg/1578791", + "Gbg/6655661", + "Gbg/6655662", + "Gbg/6178092", + "Gbg/6179024", + "Gbg/1471966", + "Gbg/1471645", + "Gbg/1471631", + "Gba/640158", + "Gbg/1469950", + "Gbg/1471109", + "Gbg/6176818", + "Gbg/4832491", + "Gbg/6900595", + "Gbg/1471105", + "Gbg/1469951", + "Gbg/6179688", + "Gbg/6900597", + "Gbg/6179261", + "Gbg/1469947", + "Gbg/1469948", + "Gbg/6177799", + "Gbg/1469949", + "Gbg/6176521", + "Gbg/6345819", + "Gbg/6900599", + "Gbg/4830813", + "Gbg/6655658", + "Gbg/1471092", + "Gbg/6900591", + "Gbg/2342963", + "Gbg/2343003", + "Gbg/4708174", + "Gbg/5290564", + "Gbg/2343011", + "Gbg/2342999", + "Gbg/7024500", + "Gbg/6450608", + "Gbg/2343052", + "Gbg/2343016", + "Gbg/6780836", + "Gbg/7024501", + "Gbg/2343065", + "Gbg/2343060", + "Gbg/2343068", + "Gbg/5834484", + "Gbg/5835077", + "Gbg/2343080", + "Gbg/2343105", + "Gbg/5836015", + "Gbg/2342996", + "Gbg/2342979", + "Gbg/2342962", + "Gbg/2342942", + "Gbg/2342922", + "Gbg/2343129", + "Gbg/6780837", + "Gbg/6780838", + "Gbg/6450079", + "Gbg/5835518", + "Gbg/2343148", + "Gbg/4707721", + "Gbg/5835899", + "Gbg/4707495", + "Gbg/2343188", + "Gbg/6449914" + ], + "source:geometry:date": [ + "2014-06-12", + "2009-08-20", + "2020-09-24", + "2021-12-03", + "2016-12-19", + "2019-08-09", + "2018-01-08", + "2009-11-20", + "2019-02-12", + "2014-08-20", + "2021-02-24", + "2018-06-18", + "2010-11-02", + "2015-08-25", + "2020-02-25", + "2018-08-07", + "2017-01-30", + "2020-04-30", + "2014-05-27" + ] + }, + "create": 383, + "modify": 675, + "delete": 14, + "area": 0.000267805291500091, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 595, + "theme": "grb", + "delete": 14, + "import": 61, + "locale": "nl", + "imagery": "osm", + "conflation": 170 + }, + "id": 121155024 + } + }, + { + "id": 121154484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4588409, + 50.9232627 + ], + [ + 5.4813157, + 50.9232627 + ], + [ + 5.4813157, + 50.9321114 + ], + [ + 5.4588409, + 50.9321114 + ], + [ + 5.4588409, + 50.9232627 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:56:31Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1578309", + "Gbg/5787146", + "Gbg/1578311", + "Gbg/6437951", + "Gbg/4752728", + "Gbg/6436820", + "Gbg/6440039", + "Gbg/1578917", + "Gbg/6436987", + "Gbg/1578314", + "Gbg/4750651", + "Gbg/6437402", + "Gbg/4749895", + "Gbg/5786802", + "Gbg/1578313", + "Gbg/5786033", + "Gbg/4748710", + "Gbg/5787147", + "Gbg/4753669", + "Gbg/1578466", + "Gbg/4751471", + "Gbg/1579000", + "Gbg/6438032", + "Gbg/5785483", + "Gbg/1578326", + "Gbg/4749648", + "Gbg/5785851", + "Gbg/5783129", + "Gbg/1578325", + "Gbg/6746773", + "Gbg/4752794", + "Gbg/6435961", + "Gbg/1578819", + "Gbg/4754063", + "Gbg/1579039", + "Gbg/5787179", + "Gbg/5417555", + "Gbg/5786743", + "Gbg/6439819", + "Gbg/1578955", + "Gbg/7032674", + "Gbg/6437018" + ], + "source:geometry:date": [ + "2016-12-19", + "2009-08-20", + "2018-07-30", + "2014-06-12", + "2020-02-05", + "2019-06-07", + "2015-11-04", + "2021-12-03" + ] + }, + "create": 158, + "modify": 345, + "delete": 13, + "area": 0.000198872762759869, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 303, + "theme": "grb", + "delete": 13, + "import": 32, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "id": 121154484 + } + }, + { + "id": 121153857, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8210361, + -32.9366272 + ], + [ + -60.7655185, + -32.9366272 + ], + [ + -60.7655185, + -32.9251279 + ], + [ + -60.8210361, + -32.9251279 + ], + [ + -60.8210361, + -32.9366272 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:42:25Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "operator": [ + "Municipalidad de Funes", + "Barrio San Sebastián" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "public", + "traffic" + ], + "camera:direction": [ + "314", + "35", + "125", + "310" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000638413537679853, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 121153857 + } + }, + { + "id": 121153758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.810955, + -32.9168627 + ], + [ + -60.8104748, + -32.9168627 + ], + [ + -60.8104748, + -32.9166109 + ], + [ + -60.810955, + -32.9166109 + ], + [ + -60.810955, + -32.9168627 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:39:59Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.20914360000029e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121153758 + } + }, + { + "id": 121153503, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8104584, + -32.9136312 + ], + [ + -60.806479, + -32.9136312 + ], + [ + -60.806479, + -32.9108203 + ], + [ + -60.8104584, + -32.9108203 + ], + [ + -60.8104584, + -32.9136312 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:32:54Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+54 341 493 6003" + ], + "access": [ + "public", + "yes", + "limited", + "members", + "customers" + ], + "barrier": [ + "fence" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "grass", + "concrete" + ], + "reservation": [ + "yes" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000111856954599964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 13, + "locale": "es", + "imagery": "osm" + }, + "id": 121153503 + } + }, + { + "id": 121153048, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.7321845, + -32.9754186 + ], + [ + -60.7321845, + -32.9754186 + ], + [ + -60.7321845, + -32.9754186 + ], + [ + -60.7321845, + -32.9754186 + ], + [ + -60.7321845, + -32.9754186 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:21:17Z", + "reviewed_features": [], + "tag_changes": { + "noname": [ + "yes" + ], + "man_made": [ + "tower" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 121153048 + } + }, + { + "id": 121152875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8035978, + -32.9178184 + ], + [ + -60.8035978, + -32.9178184 + ], + [ + -60.8035978, + -32.9178184 + ], + [ + -60.8035978, + -32.9178184 + ], + [ + -60.8035978, + -32.9178184 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:18:06Z", + "reviewed_features": [], + "tag_changes": { + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ], + "crossing": [ + "unmarked", + "marked" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "id": 121152875 + } + }, + { + "id": 121152419, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8077635, + -32.931075 + ], + [ + -60.7976243, + -32.931075 + ], + [ + -60.7976243, + -32.9177968 + ], + [ + -60.8077635, + -32.9177968 + ], + [ + -60.8077635, + -32.931075 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T15:07:24Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "phone": [ + "+54 9 341 351 9232" + ], + "amenity": [ + "bicycle_parking" + ], + "leisure": [ + "track" + ], + "website": [ + "https://pini-bike.negocio.site/" + ], + "cargo_bike": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:diy": [ + "no" + ], + "service:bicycle:second_hand": [ + "no" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000134630325439988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "es", + "imagery": "osm" + }, + "id": 121152419 + } + }, + { + "id": 121152399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2164204, + -39.8327389 + ], + [ + -73.2161174, + -39.8327389 + ], + [ + -73.2161174, + -39.8317069 + ], + [ + -73.2164204, + -39.8317069 + ], + [ + -73.2164204, + -39.8327389 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T15:07:07Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 3, + "modify": 4, + "delete": 0, + "area": 3.1269600000311e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 6, + "create": 3, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "add-image": 2, + "change_over_5000m": 3, + "change_within_5000m": 8 + }, + "id": 121152399 + } + }, + { + "id": 121151414, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1230112, + 51.1711015 + ], + [ + 4.1230112, + 51.1711015 + ], + [ + 4.1230112, + 51.1711015 + ], + [ + 4.1230112, + 51.1711015 + ], + [ + 4.1230112, + 51.1711015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T14:47:34Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "fence" + ], + "leisure": [ + "dog_park" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3 + }, + "id": 121151414 + } + }, + { + "id": 121149322, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2256578, + 48.683025 + ], + [ + 9.2256578, + 48.683025 + ], + [ + 9.2256578, + 48.683025 + ], + [ + 9.2256578, + 48.683025 + ], + [ + 9.2256578, + 48.683025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T13:55:00Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "farm" + ], + "image": [ + "https://i.imgur.com/UQNkGsx.jpg" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 2 + }, + "id": 121149322 + } + }, + { + "id": 121147174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1142525, + 51.1654236 + ], + [ + 4.1142525, + 51.1654236 + ], + [ + 4.1142525, + 51.1654236 + ], + [ + 4.1142525, + 51.1654236 + ], + [ + 4.1142525, + 51.1654236 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T13:00:28Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "fitness_station" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121147174 + } + }, + { + "id": 121146764, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2340334, + 50.7355016 + ], + [ + 4.2340334, + 50.7355016 + ], + [ + 4.2340334, + 50.7355016 + ], + [ + 4.2340334, + 50.7355016 + ], + [ + 4.2340334, + 50.7355016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T12:50:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/p0DQu5v.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "capacity": [ + "5" + ], + "cargo_bike": [ + "yes" + ], + "capacity:cargo_bike": [ + "1" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121146764 + } + }, + { + "id": 121145969, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1433572, + 51.1714002 + ], + [ + 4.1435442, + 51.1714002 + ], + [ + 4.1435442, + 51.1715213 + ], + [ + 4.1433572, + 51.1715213 + ], + [ + 4.1433572, + 51.1714002 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T12:33:27Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "rental": [ + "city_bike" + ], + "service:bicycle:pump": [ + "separate" + ], + "service:bicycle:rental": [ + "yes" + ], + "service:bicycle:repair": [ + "yes" + ], + "service:bicycle:retail": [ + "no" + ], + "service:bicycle:cleaning": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.26457000002718e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 6 + }, + "id": 121145969 + } + }, + { + "id": 121145841, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1436367, + 51.1714072 + ], + [ + 4.1436367, + 51.1714072 + ], + [ + 4.1436367, + 51.1714072 + ], + [ + 4.1436367, + 51.1714072 + ], + [ + 4.1436367, + 51.1714072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T12:31:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/I0HDODp.jpg" + ], + "rental": [ + "city_bike" + ], + "amenity": [ + "bicycle_rental" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "payment:cards": [ + "no" + ], + "bicycle_rental": [ + "key_dispensing_machine" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1, + "change_within_100m": 3 + }, + "id": 121145841 + } + }, + { + "id": 121144520, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4582786, + 50.9258837 + ], + [ + 5.4743274, + 50.9258837 + ], + [ + 5.4743274, + 50.9316175 + ], + [ + 5.4582786, + 50.9316175 + ], + [ + 5.4582786, + 50.9258837 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T12:08:19Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "convenience" + ], + "building": [ + "yes", + "house", + "roof", + "detached", + "garage", + "apartments" + ], + "source:geometry:ref": [ + "Gbg/6450269", + "Gbg/7032684", + "Gbg/7032685", + "Gbg/2341668", + "Gbg/2341698", + "Gbg/2341729", + "Gbg/2341717", + "Gbg/2341758", + "Gbg/2341754", + "Gbg/2341751", + "Gbg/4707749", + "Gbg/4709018", + "Gbg/2341806", + "Gbg/5835945", + "Gbg/5835549", + "Gbg/2341855", + "Gbg/2341878", + "Gbg/2341921", + "Gbg/2341920", + "Gbg/2341942", + "Gbg/2341995", + "Gbg/2342030", + "Gbg/2342044", + "Gbg/2342074", + "Gbg/2342094", + "Gbg/6780463", + "Gbg/7024495", + "Gbg/6780462", + "Gbg/5290628", + "Gbg/2342279", + "Gbg/2342347", + "Gbg/2342315", + "Gbg/2342348", + "Gbg/4707650", + "Gbg/2342388", + "Gbg/2342431", + "Gbg/5835100", + "Gbg/6450467", + "Gbg/4709254", + "Gbg/2342245", + "Gbg/2342224", + "Gbg/2342218", + "Gbg/2342200", + "Gbg/2342183", + "Gbg/2342127", + "Gbg/2342152", + "Gbg/2342149", + "Gbg/2342133", + "Gbg/2342124", + "Gbg/2342107", + "Gbg/2342070", + "Gbg/2342322", + "Gba/171484", + "Gbg/2342305", + "Gbg/2341834", + "Gbg/2341856", + "Gbg/2342064", + "Gbg/2342066", + "Gbg/2342141", + "Gbg/6450153", + "Gbg/2342210", + "Gbg/2342163", + "Gbg/2342192", + "Gbg/2342213", + "Gbg/4708418", + "Gbg/4708663", + "Gbg/6450298", + "Gbg/4708753", + "Gbg/2342256", + "Gbg/5835205", + "Gbg/6780442", + "Gbg/7024493", + "Gbg/4708503", + "Gbg/6449980", + "Gbg/2342283", + "Gbg/2342298", + "Gbg/2342333", + "Gbg/2342367", + "Gbg/2342409", + "Gbg/2342390", + "Gbg/2342730", + "Gbg/2342701", + "Gbg/5835223", + "Gbg/5835451", + "Gbg/5834523", + "Gbg/4708659", + "Gbg/4707583", + "Gbg/5834788", + "Gbg/2342705", + "Gbg/5834214", + "Gbg/7023821", + "Gbg/2342749", + "Gbg/2342622", + "Gbg/2342603", + "Gbg/4707376", + "Gbg/2342636", + "Gbg/4708611", + "Gbg/7024494", + "Gbg/6450858", + "Gbg/2342420", + "Gbg/4708459", + "Gbg/2342407", + "Gbg/4708797", + "Gbg/2342379", + "Gbg/2342386", + "Gbg/2342376", + "Gbg/5834800", + "Gbg/4708171", + "Gbg/2342284", + "Gbg/5834424", + "Gbg/4708114", + "Gbg/6450899", + "Gbg/5835005", + "Gbg/6450784", + "Gbg/6449967", + "Gbg/6780441", + "Gbg/5834463", + "Gbg/2342173", + "Gbg/2342238", + "Gbg/2342254", + "Gbg/2342276", + "Gbg/2342303", + "Gbg/2342326", + "Gbg/7024004", + "Gbg/4708005", + "Gbg/4707352", + "Gbg/2342361", + "Gbg/6780454", + "Gbg/6780455", + "Gbg/4707735", + "Gbg/2342449", + "Gbg/2342465", + "Gbg/4708553", + "Gbg/5835726", + "Gbg/4708973", + "Gbg/2342526", + "Gbg/2342791", + "Gbg/6450232", + "Gbg/7024510", + "Gbg/2342781", + "Gbg/2342699", + "Gbg/2342813", + "Gbg/2342825", + "Gbg/6780461", + "Gbg/6449875", + "Gbg/6780460", + "Gbg/4708571", + "Gbg/2342836", + "Gbg/2342843", + "Gbg/2342859", + "Gbg/2342872", + "Gbg/2342884", + "Gbg/5836173", + "Gbg/5835318", + "Gbg/4708784", + "Gbg/2343102", + "Gbg/5835752", + "Gbg/2343081", + "Gbg/4708492", + "Gbg/5834776", + "Gbg/2343074", + "Gbg/2343082", + "Gbg/2343095", + "Gbg/2343111", + "Gbg/2343067", + "Gbg/2343064", + "Gbg/4708257", + "Gbg/5835125", + "Gbg/2343086", + "Gbg/2343077", + "Gbg/2343056", + "Gbg/2343046", + "Gbg/2343084", + "Gbg/7024511", + "Gbg/2343089", + "Gbg/7024512", + "Gbg/2343069", + "Gbg/4707279", + "Gbg/2343036", + "Gbg/2343029", + "Gbg/4708169", + "Gbg/2343026", + "Gbg/3174791", + "Gbg/2342995", + "Gbg/2342988", + "Gbg/4707676", + "Gbg/4707309", + "Gbg/5834250", + "Gbg/2342974", + "Gbg/4709191", + "Gbg/4709415", + "Gbg/2342929", + "Gbg/4707685", + "Gbg/2342972", + "Gbg/6450886", + "Gbg/2343028", + "Gbg/2343017", + "Gbg/7024514", + "Gbg/7024515", + "Gbg/2343041", + "Gbg/2343055", + "Gbg/5834933", + "Gbg/2343076", + "Gbg/4709294", + "Gbg/2343108", + "Gbg/4753541", + "Gbg/6437981", + "Gbg/1578705", + "Gbg/2343103", + "Gbg/5834623", + "Gbg/2343136", + "Gbg/2343151", + "Gbg/4708673", + "Gbg/2343140", + "Gbg/2343117", + "Gbg/2343104", + "Gbg/7024513", + "Gbg/2343090", + "Gbg/6450941", + "Gbg/2343066", + "Gbg/2343048", + "Gbg/5835248", + "Gbg/2343053", + "Gbg/2343078", + "Gbg/5290245", + "Gbg/2343101", + "Gbg/2343109", + "Gbg/2343119", + "Gbg/2343124", + "Gbg/5548486", + "Gbg/5290265", + "Gbg/2343161", + "GRB", + "Gbg/2343179", + "Gbg/2343154", + "Gbg/2343177", + "Gbg/5835102", + "Gbg/2343173", + "Gbg/2343171", + "Gbg/6449972", + "Gbg/5834950", + "Gbg/2343167", + "Gbg/2343162", + "Gbg/6780459", + "Gbg/5836312", + "Gbg/2343150", + "Gbg/5835629", + "Gbg/2343147", + "Gbg/2343145", + "Gbg/2343132", + "Gbg/2343123", + "Gbg/5836032", + "Gbg/4752030", + "Gbg/1578368", + "Gbg/4749912", + "Gbg/1578321", + "Gbg/1578320", + "Gbg/4753921", + "Gbg/1578318", + "Gbg/1578233", + "Gbg/1578317", + "Gbg/1578707", + "Gbg/1578316", + "Gbg/2342369", + "Gbg/2342357", + "Gbg/5834515", + "Gbg/2342350", + "Gbg/2342319", + "Gbg/2342314", + "Gbg/2342312", + "Gbg/2342289", + "Gbg/2342336", + "Gbg/2342327", + "Gbg/2342288", + "Gbg/2342304", + "Gbg/2342281", + "Gbg/2342275", + "Gbg/2342285", + "Gbg/6450406", + "Gbg/6450602", + "Gbg/4709575", + "Gbg/2342253", + "Gbg/4708363", + "Gbg/2342193", + "Gbg/2342216", + "Gbg/2342236", + "Gbg/2342209", + "Gbg/2342182", + "Gbg/2342187", + "Gbg/2342178", + "Gbg/2342196", + "Gbg/2342158", + "Gbg/2342174", + "Gbg/4707581", + "Gbg/4708380", + "Gbg/2342167", + "Gbg/2342140", + "Gbg/2342089", + "Gbg/2342059", + "Gbg/2342032", + "Gbg/2342011", + "Gbg/4708282", + "Gbg/2341983", + "Gbg/2341981", + "Gbg/2341966", + "Gbg/2342026", + "Gbg/2342095", + "Gbg/7024492", + "Gbg/2342126", + "Gbg/2342259", + "Gbg/2342476", + "Gbg/2342468", + "Gbg/4708314", + "Gbg/4707530", + "Gbg/2342414", + "Gbg/2342393", + "Gbg/2342381", + "Gbg/4708757", + "Gbg/4707438", + "Gbg/2342341", + "Gbg/2342295", + "Gbg/2342272", + "Gbg/2342286", + "Gbg/2342310", + "Gbg/4708680", + "Gbg/5834741", + "Gbg/2342332", + "Gbg/2342308", + "Gbg/2342318", + "Gbg/2342438", + "Gbg/2342451", + "Gbg/4709357", + "Gbg/2342485", + "Gbg/4708780", + "Gbg/5835690", + "Gbg/5835819", + "Gbg/2342478", + "Gbg/2342492", + "Gbg/2342475", + "Gbg/2342447", + "Gbg/2342434", + "Gbg/2342400", + "Gbg/4513148", + "Gbg/6994472", + "Gbg/6994473" + ], + "source:geometry:date": [ + "2018-08-07", + "2021-12-03", + "2010-11-02", + "2014-05-27", + "2017-01-30", + "2020-04-30", + "2020-02-25", + "2015-08-25", + "2012-03-14", + "2014-01-30", + "2018-07-30", + "2009-08-20", + "2016-05-13", + "2022-05-17", + "2014-06-12", + "2016-12-19", + "2021-09-20" + ] + }, + "create": 254, + "modify": 2534, + "delete": 51, + "area": 0.0000920206094400256, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 2207, + "theme": "grb", + "delete": 51, + "import": 54, + "locale": "nl", + "imagery": "osm", + "conflation": 692 + }, + "id": 121144520 + } + }, + { + "id": 121143420, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.464458, + 50.928051 + ], + [ + 5.4689883, + 50.928051 + ], + [ + 5.4689883, + 50.930567 + ], + [ + 5.464458, + 50.930567 + ], + [ + 5.464458, + 50.928051 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T11:46:47Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "roof", + "detached", + "yes", + "house" + ], + "source:geometry:ref": [ + "Gbg/2342455", + "Gbg/5835446", + "Gbg/5835620", + "Gbg/2342539", + "Gbg/5290264", + "Gbg/2342577", + "Gbg/6450953", + "Gbg/2342538", + "Gbg/2342529", + "Gbg/5290250", + "Gbg/2342611", + "Gbg/2342633", + "Gbg/2342642", + "Gbg/2342667", + "Gbg/7023822", + "Gbg/4707390", + "Gbg/2342713", + "Gbg/5836156", + "Gbg/5836204", + "Gbg/2342658", + "Gbg/6450269", + "Gbg/4708576", + "Gbg/2342590", + "Gbg/2342629", + "Gbg/2342608", + "Gbg/5835456", + "Gbg/2342559", + "Gbg/2342573", + "Gbg/5836128", + "Gbg/2342504", + "Gbg/5834945", + "Gbg/5834939", + "Gbg/5834720", + "Gbg/6450891", + "Gbg/2342477", + "Gbg/2342398", + "Gbg/2342385", + "Gbg/2342330", + "Gbg/2342302", + "Gbg/7024005", + "Gbg/2342225", + "Gbg/2342222", + "Gbg/2342230", + "Gbg/2342269", + "Gbg/2342291", + "Gbg/6451144", + "Gbg/2342351", + "Gbg/6522617", + "Gbg/2342430", + "Gbg/2342714", + "Gbg/2342735", + "Gbg/2342680", + "Gbg/2342659", + "Gbg/5290244", + "Gbg/2342605", + "Gbg/2342809", + "Gbg/2342803" + ], + "source:geometry:date": [ + "2018-08-07", + "2017-01-30", + "2010-11-02", + "2016-05-13", + "2020-02-25", + "2015-08-25", + "2014-05-27", + "2018-12-10" + ] + }, + "create": 71, + "modify": 439, + "delete": 24, + "area": 0.0000113982348000018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 388, + "theme": "grb", + "delete": 24, + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 114 + }, + "id": 121143420 + } + }, + { + "id": 121143333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.467321, + 50.9295092 + ], + [ + 5.4688052, + 50.9295092 + ], + [ + 5.4688052, + 50.9304306 + ], + [ + 5.467321, + 50.9304306 + ], + [ + 5.467321, + 50.9295092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T11:44:48Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/2342640", + "Gbg/2342657", + "Gbg/2342693", + "Gbg/2342710", + "Gbg/4707529", + "Gbg/5836186", + "Gbg/5836096", + "Gbg/2342786", + "Gbg/2342769" + ], + "source:geometry:date": [ + "2010-11-02", + "2017-01-30", + "2020-02-25", + "2014-05-27", + "2018-08-07", + "2015-08-25" + ] + }, + "create": 21, + "modify": 73, + "delete": 11, + "area": 0.00000136754188000437, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 70, + "theme": "grb", + "delete": 11, + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "id": 121143333 + } + }, + { + "id": 121139553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4673301, + 50.9272691 + ], + [ + 5.4706768, + 50.9272691 + ], + [ + 5.4706768, + 50.9290813 + ], + [ + 5.4673301, + 50.9290813 + ], + [ + 5.4673301, + 50.9272691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T10:25:16Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "detached", + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/2342634", + "Gbg/7023809", + "Gbg/2342684", + "Gbg/6450688", + "Gbg/4708604", + "Gbg/2342661", + "Gbg/5836202", + "Gbg/5834959", + "Gbg/2342716", + "Gbg/4708183", + "Gbg/6450176", + "Gbg/2342808", + "Gbg/2342830", + "Gbg/2342796", + "Gbg/2342776", + "Gbg/2342840", + "Gbg/2342886", + "Gbg/2342878", + "Gbg/2342871", + "Gbg/2342905", + "Gbg/2342894", + "Gbg/2342914", + "Gbg/4708729", + "Gbg/5834445", + "Gbg/6450958", + "Gbg/2342862", + "Gbg/4707734", + "Gbg/5835032", + "Gbg/2342912", + "Gbg/6780444", + "Gbg/2342949", + "Gbg/2342956", + "Gbg/2342932", + "Gbg/4708694", + "Gbg/2342969", + "Gbg/2342973", + "Gbg/6450948", + "Gbg/2342951", + "Gbg/2342935", + "Gbg/2342968", + "Gbg/2342978", + "Gbg/2342986", + "Gbg/7024508", + "Gbg/2342994", + "Gbg/2342918", + "Gbg/4707776", + "Gbg/2342888", + "Gbg/2342877", + "Gbg/2342842", + "Gbg/2342857", + "Gbg/2342824", + "Gbg/5290248", + "Gbg/6450268", + "Gbg/6450932", + "Gbg/7024509", + "Gbg/6780445", + "Gbg/2342811", + "Gbg/5834902", + "Gbg/2342779", + "Gbg/6780446", + "Gbg/2342767", + "Gbg/7023808", + "Gbg/2342741", + "Gbg/6450685", + "Gbg/4708208", + "Gbg/2342880", + "Gbg/5835717" + ], + "source:geometry:date": [ + "2010-11-02", + "2020-02-25", + "2015-08-25", + "2018-08-07", + "2014-05-27", + "2017-01-30", + "2020-04-30", + "2012-03-14" + ] + }, + "create": 77, + "modify": 475, + "delete": 21, + "area": 0.00000606488974001095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 410, + "theme": "grb", + "delete": 21, + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 134 + }, + "id": 121139553 + } + }, + { + "id": 121134623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.999458, + 43.4078028 + ], + [ + -3.9618695, + 43.4078028 + ], + [ + -3.9618695, + 43.4200036 + ], + [ + -3.999458, + 43.4200036 + ], + [ + -3.999458, + 43.4078028 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T08:48:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000458609770800084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 5, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "id": 121134623 + } + }, + { + "id": 121132724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3179078, + 44.8472835 + ], + [ + 4.4408325, + 44.8472835 + ], + [ + 4.4408325, + 44.9161808 + ], + [ + 4.3179078, + 44.9161808 + ], + [ + 4.3179078, + 44.8472835 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/95be0f8e9a17cd3c3ad0326a94c81e6452f0fe16/walkingnetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T08:05:02Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "hiking" + ], + "survey:date": [ + "2021-12-28" + ] + }, + "create": 0, + "modify": 40, + "delete": 0, + "area": 0.0084691799333095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/95be0f8e9a17cd3c3ad0326a94c81e6452f0fe16/walkingnetworks.json", + "answer": 40, + "locale": "en", + "imagery": "osm" + }, + "id": 121132724 + } + }, + { + "id": 121132312, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3234809, + 44.8479993 + ], + [ + 4.4218624, + 44.8479993 + ], + [ + 4.4218624, + 44.9139881 + ], + [ + 4.3234809, + 44.9139881 + ], + [ + 4.3234809, + 44.8479993 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T07:54:47Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "hiking" + ], + "survey:date": [ + "2021-12-28" + ], + "expected_lwn_route_relations": [ + "3", + "2", + "4" + ] + }, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.00649207712719998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "id": 121132312 + } + }, + { + "id": 121128602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.4954436, + 49.773106 + ], + [ + 10.4955362, + 49.773106 + ], + [ + 10.4955362, + 49.7731164 + ], + [ + 10.4954436, + 49.7731164 + ], + [ + 10.4954436, + 49.773106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-18T06:36:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 10, + "delete": 0, + "area": 9.63040000072261e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "move": 1, + "theme": "charging_stations", + "answer": 14, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "move:node/9750887298": "improve_accuracy" + }, + "id": 121128602 + } + }, + { + "id": 121127575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3648376, + 50.9612889 + ], + [ + 5.3648376, + 50.9612889 + ], + [ + 5.3648376, + 50.9612889 + ], + [ + 5.3648376, + 50.9612889 + ], + [ + 5.3648376, + 50.9612889 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T06:11:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/zuSJxB8.jpg" + ], + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "landmark" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4 + }, + "id": 121127575 + } + }, + { + "id": 121123128, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.340668, + 50.8069055 + ], + [ + 5.3424994, + 50.8069055 + ], + [ + 5.3424994, + 50.8099846 + ], + [ + 5.340668, + 50.8099846 + ], + [ + 5.340668, + 50.8069055 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T03:25:14Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary" + ], + "name:etymology:wikidata": [ + "Q55008046" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000563906374000257, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121123128 + } + }, + { + "id": 121121367, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.1098452, + 19.4613109 + ], + [ + -99.1096989, + 19.4613109 + ], + [ + -99.1096989, + 19.4613741 + ], + [ + -99.1098452, + 19.4613741 + ], + [ + -99.1098452, + 19.4613109 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-18T00:21:46Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 9.24615999976837e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 2 + }, + "id": 121121367 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-19.json b/Docs/Tools/stats/stats.2022-5-19.json new file mode 100644 index 0000000000..2fe6cb76e6 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-19.json @@ -0,0 +1,1691 @@ +{ + "features": [ + { + "id": 121208078, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4267662, + 50.8822279 + ], + [ + 3.4267662, + 50.8822279 + ], + [ + 3.4267662, + 50.8822279 + ], + [ + 3.4267662, + 50.8822279 + ], + [ + 3.4267662, + 50.8822279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T18:29:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2FqQ9qK.jpg" + ], + "rental": [ + "city_bike" + ], + "amenity": [ + "bicycle_rental" + ], + "bicycle_rental": [ + "docking_station" + ], + "capacity:city_bike": [ + "12" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 121208078 + } + }, + { + "id": 121198279, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7216874, + 51.0423994 + ], + [ + 3.7216874, + 51.0423994 + ], + [ + 3.7216874, + 51.0423994 + ], + [ + 3.7216874, + 51.0423994 + ], + [ + 3.7216874, + 51.0423994 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T14:15:15Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q161374" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121198279 + } + }, + { + "id": 121197910, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T14:06:09Z", + "reviewed_features": [], + "tag_changes": { + "valves": [ + "sclaverand;schrader" + ], + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121197910 + } + }, + { + "id": 121197782, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ], + [ + 3.6892122, + 51.0235038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T14:02:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121197782 + } + }, + { + "id": 121195824, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4797189, + 51.0334762 + ], + [ + 4.4797189, + 51.0334762 + ], + [ + 4.4797189, + 51.0334762 + ], + [ + 4.4797189, + 51.0334762 + ], + [ + 4.4797189, + 51.0334762 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T13:12:22Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/C0N0MPy.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 121195824 + } + }, + { + "id": 121192060, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1949374, + 45.7378386 + ], + [ + 3.1949374, + 45.7378386 + ], + [ + 3.1949374, + 45.7378386 + ], + [ + 3.1949374, + 45.7378386 + ], + [ + 3.1949374, + 45.7378386 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jieff6_10", + "uid": "3510184", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T11:50:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_box" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121192060 + } + }, + { + "id": 121191415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2961962, + 45.7594414 + ], + [ + 3.1376883, + 45.7594414 + ], + [ + 3.1376883, + 48.8609484 + ], + [ + 2.2961962, + 48.8609484 + ], + [ + 2.2961962, + 45.7594414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jieff6_10", + "uid": "3510184", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T11:37:29Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle" + ], + "highway": [ + "steps", + "footway", + "service", + "path" + ], + "leisure": [ + "garden" + ] + }, + "create": 3, + "modify": 1, + "delete": 0, + "area": 2.6098936385947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/facadegardens.html", + "theme": "facadegardens", + "answer": 9, + "create": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 121191415 + } + }, + { + "id": 121189940, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0597688, + 50.8495352 + ], + [ + 4.0598351, + 50.8495352 + ], + [ + 4.0598351, + 50.8497158 + ], + [ + 4.0597688, + 50.8497158 + ], + [ + 4.0597688, + 50.8495352 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T11:08:09Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.19737800000667e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "import:node/9754296735": "source: https://osm.org/note/3090238" + }, + "id": 121189940 + } + }, + { + "id": 121187877, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4167276, + 50.9053328 + ], + [ + 5.422073, + 50.9053328 + ], + [ + 5.422073, + 50.9074432 + ], + [ + 5.4167276, + 50.9074432 + ], + [ + 5.4167276, + 50.9053328 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T10:21:54Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "jewelry", + "butcher", + "newsagent", + "bakery" + ], + "amenity": [ + "community_centre", + "fast_food", + "vending_machine" + ], + "building": [ + "yes", + "house", + "commercial", + "apartments", + "school", + "roof" + ], + "addr:street": [ + "Kloosterstraat", + "Paanhuisstraat" + ], + "addr:housenumber": [ + "29", + "5" + ], + "source:geometry:ref": [ + "Gbg/2335866", + "Gbg/2335867", + "Gbg/2336355", + "Gbg/2335317", + "Gbg/2335316", + "Gbg/2335798", + "Gbg/2335388", + "Gbg/2336102", + "Gbg/4708898", + "Gbg/5836008", + "Gbg/2335312", + "Gbg/5947029", + "Gbg/4707188", + "Gbg/4708862", + "Gbg/2336372", + "Gbg/6449843", + "Gbg/2335500", + "Gbg/2335753", + "Gbg/5947025", + "Gbg/2335298", + "Gbg/6450982", + "Gbg/2335309", + "Gbg/5290362", + "Gbg/5289949", + "Gbg/4708911", + "Gbg/2335751", + "Gbg/5289932", + "Gbg/2335302", + "Gbg/4709144", + "Gbg/2335884", + "Gbg/2335883", + "Gbg/4709631", + "Gbg/2335290", + "Gbg/5836071", + "Gbg/2335864", + "Gbg/2335865", + "Gbg/2335862", + "Gbg/2335861", + "Gbg/2335321", + "Gbg/2335320", + "Gbg/2335323", + "Gbg/2335324", + "Gbg/2335325", + "Gbg/2335304", + "Gbg/2335303", + "Gbg/2335305", + "Gbg/2335300", + "Gbg/2335299", + "Gbg/2335301", + "Gbg/2335306", + "Gbg/2335307", + "Gbg/2335315", + "Gbg/2335314", + "Gbg/2335801", + "Gbg/2335395", + "Gbg/2335799", + "Gbg/4708913", + "Gbg/4708978", + "Gbg/2335965", + "Gbg/2335966", + "Gbg/2335802", + "Gbg/5836235", + "Gbg/2335322" + ], + "source:geometry:date": [ + "2015-08-25", + "2010-01-25", + "2014-05-27", + "2017-01-30", + "2018-08-07", + "2020-04-30", + "2020-02-25", + "2017-05-22" + ] + }, + "create": 221, + "modify": 613, + "delete": 17, + "area": 0.0000112809321600356, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 558, + "theme": "grb", + "delete": 17, + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 126 + }, + "id": 121187877 + } + }, + { + "id": 121186797, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4186162, + 50.9036058 + ], + [ + 5.4233255, + 50.9036058 + ], + [ + 5.4233255, + 50.9066296 + ], + [ + 5.4186162, + 50.9066296 + ], + [ + 5.4186162, + 50.9036058 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T09:59:15Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "jewelry" + ], + "amenity": [ + "fast_food", + "post_office", + "community_centre" + ], + "building": [ + "house", + "yes", + "public", + "roof" + ], + "addr:street": [ + "Kloosterstraat" + ], + "addr:housenumber": [ + "1" + ], + "source:geometry:ref": [ + "Gbg/2335815", + "Gbg/2335517", + "Gbg/2335814", + "Gbg/2335855", + "Gbg/2335326", + "Gbg/2335950", + "Gbg/5836138", + "Gbg/2335858", + "Gbg/2335859", + "Gbg/2335860", + "Gbg/2335725", + "Gbg/2335179", + "Gbg/2335803", + "Gbg/2335951", + "Gbg/2335960", + "Gbg/2335959", + "Gbg/2335952", + "Gbg/2335804", + "Gbg/2335963", + "Gbg/2335964", + "Gbg/2335805", + "Gbg/6451063", + "Gbg/6635475", + "Gbg/6635455", + "Gbg/6635468", + "Gbg/2335809", + "Gbg/5836081", + "Gbg/2335811", + "Gbg/2335810", + "Gbg/2335812", + "Gbg/6635480", + "Gbg/2336362", + "Gbg/2335726", + "Gbg/2335854", + "Gbg/2335841", + "Gbg/2335842", + "Gbg/2335843", + "Gbg/2335844", + "Gbg/2335846", + "Gbg/6451087", + "Gbg/6635431", + "Gbg/5836178", + "Gbg/2335852", + "Gbg/2335958", + "Gbg/5836027", + "Gbg/2335822", + "Gbg/6635487", + "Gbg/2335824", + "Gbg/5836170", + "Gbg/2335825", + "Gbg/2335826", + "Gbg/2335840", + "Gbg/5835927", + "Gbg/2335837", + "Gbg/2335838", + "Gbg/6931469" + ], + "source:geometry:date": [ + "2010-01-25", + "2020-04-30", + "2017-01-30", + "2019-07-05", + "2014-05-27", + "2015-08-25", + "2021-04-20" + ] + }, + "create": 287, + "modify": 498, + "delete": 7, + "area": 0.0000142399813400054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 450, + "theme": "grb", + "delete": 7, + "import": 52, + "locale": "nl", + "imagery": "osm", + "conflation": 112 + }, + "id": 121186797 + } + }, + { + "id": 121186673, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4229565, + 50.9056517 + ], + [ + 5.4231754, + 50.9056517 + ], + [ + 5.4231754, + 50.9057944 + ], + [ + 5.4229565, + 50.9057944 + ], + [ + 5.4229565, + 50.9056517 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T09:56:57Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/2335816" + ], + "source:geometry:date": [ + "2010-01-25" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 3.12370299995441e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 121186673 + } + }, + { + "id": 121186174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5518855, + 53.0657265 + ], + [ + 6.5806527, + 53.0657265 + ], + [ + 6.5806527, + 53.0930517 + ], + [ + 6.5518855, + 53.0930517 + ], + [ + 6.5518855, + 53.0657265 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T09:48:57Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified", + "footway", + "primary", + "service" + ], + "name:etymology:wikidata": [ + "Q146391", + "Q13358519", + "Q5194627", + "Q156921", + "Q25393", + "Q25234", + "Q25388", + "Q18789", + "Q18845", + "Q168473", + "Q43489", + "Q29858", + "Q25380", + "Q27589", + "Q2175460", + "Q835083" + ] + }, + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000786069493439995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 37, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1, + "change_within_500m": 1, + "change_within_1000m": 18, + "change_within_5000m": 17 + }, + "id": 121186174 + } + }, + { + "id": 121186169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1004406, + 38.8376833 + ], + [ + 0.1120733, + 38.8376833 + ], + [ + 0.1120733, + 38.8440603 + ], + [ + 0.1004406, + 38.8440603 + ], + [ + 0.1004406, + 38.8376833 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T09:48:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/z0CFFo0.jpg", + "https://i.imgur.com/H8ZrCXG.jpg", + "https://i.imgur.com/uRSEZmx.jpg" + ], + "waste": [ + "trash;dog_excrement;cigarettes" + ], + "amenity": [ + "recycling", + "waste_basket", + "waste_disposal" + ], + "highway": [ + "crossing" + ], + "crossing": [ + "marked" + ], + "opening_hours": [ + "24/7" + ], + "tactile_paving": [ + "incorrect", + "yes", + "no" + ], + "crossing:island": [ + "no" + ] + }, + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.000074181727900006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 11, + "create": 5, + "locale": "ca", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 5, + "change_within_25m": 13, + "change_within_50m": 2 + }, + "id": 121186169 + } + }, + { + "id": 121184168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1036262, + 50.8330112 + ], + [ + 5.1239271, + 50.8330112 + ], + [ + 5.1239271, + 50.841777 + ], + [ + 5.1036262, + 50.841777 + ], + [ + 5.1036262, + 50.8330112 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stad Zoutleeuw", + "uid": "16012939", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T09:10:34Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "toilets" + ], + "opening_hours": [ + "We-Fr 11:00-18:00; Sa-Su 11:00-19:00" + ], + "changing_table": [ + "yes" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ], + "changing_table:location": [ + "female_toilet" + ] + }, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000177953629219985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 15, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121184168 + } + }, + { + "id": 121183621, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7470047, + 51.1640294 + ], + [ + 4.7476164, + 51.1640294 + ], + [ + 4.7476164, + 51.1643445 + ], + [ + 4.7470047, + 51.1643445 + ], + [ + 4.7470047, + 51.1640294 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T08:58:46Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ] + }, + "create": 29, + "modify": 0, + "delete": 0, + "area": 1.92746670001129e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 121183621 + } + }, + { + "id": 121182527, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5874941, + 51.003143 + ], + [ + 4.5874981, + 51.003143 + ], + [ + 4.5874981, + 51.0031488 + ], + [ + 4.5874941, + 51.0031488 + ], + [ + 4.5874941, + 51.003143 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T08:37:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.31999999901432e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "move:node/9753918057": "improve_accuracy" + }, + "id": 121182527 + } + }, + { + "id": 121179953, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.435622, + 50.891231 + ], + [ + 4.435622, + 50.891231 + ], + [ + 4.435622, + 50.891231 + ], + [ + 4.435622, + 50.891231 + ], + [ + 4.435622, + 50.891231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T07:45:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 8 + }, + "id": 121179953 + } + }, + { + "id": 121177115, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5657718, + 52.9952091 + ], + [ + 6.576919, + 52.9952091 + ], + [ + 6.576919, + 52.998461 + ], + [ + 6.5657718, + 52.998461 + ], + [ + 6.5657718, + 52.9952091 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T06:45:39Z", + "reviewed_features": [], + "tag_changes": { + "noname": [ + "yes" + ], + "natural": [ + "tree" + ], + "heritage": [ + "yes" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "natural_monument", + "urban" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q146149", + "Q165145", + "Q2228034" + ] + }, + "create": 1, + "modify": 19, + "delete": 0, + "area": 0.0000362495796800242, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 25, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 26, + "move:node/4777757193": "improve_accuracy" + }, + "id": 121177115 + } + }, + { + "id": 121171436, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2319094, + -39.8456811 + ], + [ + -73.2319032, + -39.8456811 + ], + [ + -73.2319032, + -39.8456497 + ], + [ + -73.2319094, + -39.8456497 + ], + [ + -73.2319094, + -39.8456811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-19T03:51:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FFzed3G.jpg", + "https://i.imgur.com/S1hX3Q8.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.94680000028205e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2, + "change_within_500m": 2 + }, + "id": 121171436 + } + }, + { + "id": 121168411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6506974, + -33.4516004 + ], + [ + -70.650681, + -33.4516004 + ], + [ + -70.650681, + -33.4515613 + ], + [ + -70.6506974, + -33.4515613 + ], + [ + -70.6506974, + -33.4516004 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-19T00:03:25Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.41239999633779e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 2, + "locale": "es", + "imagery": "EsriWorldImagery" + }, + "id": 121168411 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-20.json b/Docs/Tools/stats/stats.2022-5-20.json new file mode 100644 index 0000000000..2a01818b75 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-20.json @@ -0,0 +1,2184 @@ +{ + "features": [ + { + "id": 121260521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 23.9863531, + 49.8128104 + ], + [ + 23.9863531, + 49.8128104 + ], + [ + 23.9863531, + 49.8128104 + ], + [ + 23.9863531, + 49.8128104 + ], + [ + 23.9863531, + 49.8128104 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "maximkooo", + "uid": "6268514", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T20:52:08Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121260521 + } + }, + { + "id": 121259376, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7298474, + 51.060719 + ], + [ + 3.7298474, + 51.060719 + ], + [ + 3.7298474, + 51.060719 + ], + [ + 3.7298474, + 51.060719 + ], + [ + 3.7298474, + 51.060719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T19:59:12Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/qY3pnVy.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 121259376 + } + }, + { + "id": 121259173, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.731854, + 51.064861 + ], + [ + 3.7320203, + 51.064861 + ], + [ + 3.7320203, + 51.0649731 + ], + [ + 3.731854, + 51.0649731 + ], + [ + 3.731854, + 51.064861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T19:52:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/qhwGmRZ.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "direction": [ + "182" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.86422300004417e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "id": 121259173 + } + }, + { + "id": 121258681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5503104, + 44.8522634 + ], + [ + -0.5501557, + 44.8522634 + ], + [ + -0.5501557, + 44.8523672 + ], + [ + -0.5503104, + 44.8523672 + ], + [ + -0.5503104, + 44.8522634 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T19:33:35Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "industrial" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.60578600007831e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 7 + }, + "id": 121258681 + } + }, + { + "id": 121258058, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7526418, + 50.8027777 + ], + [ + 3.7658951, + 50.8027777 + ], + [ + 3.7658951, + 50.8032604 + ], + [ + 3.7526418, + 50.8032604 + ], + [ + 3.7526418, + 50.8027777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T19:11:04Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "landuse": [ + "grass", + "meadow", + "forest" + ], + "leisure": [ + "park" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000639736790998885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 10, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_1000m": 10 + }, + "id": 121258058 + } + }, + { + "id": 121257936, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1817549, + 48.6925403 + ], + [ + 9.1918555, + 48.6925403 + ], + [ + 9.1918555, + 48.694202 + ], + [ + 9.1817549, + 48.694202 + ], + [ + 9.1817549, + 48.6925403 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T19:06:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/BN7MFZx.jpg", + "https://i.imgur.com/gznQiqz.jpg" + ], + "amenity": [ + "charging_station" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000167841670199986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 2 + }, + "id": 121257936 + } + }, + { + "id": 121257577, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7646634, + 50.8042931 + ], + [ + 3.7646634, + 50.8042931 + ], + [ + 3.7646634, + 50.8042931 + ], + [ + 3.7646634, + 50.8042931 + ], + [ + 3.7646634, + 50.8042931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T18:52:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_1000m": 6 + }, + "id": 121257577 + } + }, + { + "id": 121257432, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4002316, + 52.3245661 + ], + [ + 13.4002316, + 52.3245661 + ], + [ + 13.4002316, + 52.3245661 + ], + [ + 13.4002316, + 52.3245661 + ], + [ + 13.4002316, + 52.3245661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FreddyFFB", + "uid": "16029853", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T18:47:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121257432 + } + }, + { + "id": 121255719, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2380522, + 50.7382288 + ], + [ + 4.2382644, + 50.7382288 + ], + [ + 4.2382644, + 50.7394925 + ], + [ + 4.2380522, + 50.7394925 + ], + [ + 4.2380522, + 50.7382288 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T17:53:53Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 2.68157139999048e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 11, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121255719 + } + }, + { + "id": 121254968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7545362, + 50.8026565 + ], + [ + 3.7594541, + 50.8026565 + ], + [ + 3.7594541, + 50.8037028 + ], + [ + 3.7545362, + 50.8037028 + ], + [ + 3.7545362, + 50.8026565 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T17:30:59Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 10, + "modify": 13, + "delete": 0, + "area": 0.00000514559877002881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 21, + "create": 10, + "locale": "nl", + "imagery": "AGIV", + "add-image": 6, + "change_over_5000m": 10, + "change_within_25m": 25, + "change_within_50m": 2 + }, + "id": 121254968 + } + }, + { + "id": 121254696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1006894, + 50.9525164 + ], + [ + 3.1007093, + 50.9525164 + ], + [ + 3.1007093, + 50.9525204 + ], + [ + 3.1006894, + 50.9525204 + ], + [ + 3.1006894, + 50.9525164 + ] + ] + ] + }, + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "gptm", + "uid": "2873411", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T17:22:12Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 7, + "delete": 0, + "area": 7.95999999416061e-11, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-05-20T20:27:05.445355Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 10, + "move:node/9757887106": "improve_accuracy" + }, + "id": 121254696 + } + }, + { + "id": 121254571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7640401, + 50.8038079 + ], + [ + 3.7650316, + 50.8038079 + ], + [ + 3.7650316, + 50.8048071 + ], + [ + 3.7640401, + 50.8048071 + ], + [ + 3.7640401, + 50.8038079 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T17:18:59Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/jT0qLMK.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station", + "bicycle_repair_station" + ], + "capacity": [ + "6", + "8" + ], + "operator": [ + "Gemeente Brakek" + ], + "socket:typee": [ + "6" + ], + "opening_hours": [ + "24/7" + ], + "authentication:none": [ + "yes" + ] + }, + "create": 2, + "modify": 12, + "delete": 0, + "area": 9.90706799995499e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 22, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 24, + "change_within_50m": 1 + }, + "id": 121254571 + } + }, + { + "id": 121254521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7317252, + 51.0648375 + ], + [ + 3.731854, + 51.0648375 + ], + [ + 3.731854, + 51.0648972 + ], + [ + 3.7317252, + 51.0648972 + ], + [ + 3.7317252, + 51.0648375 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T17:17:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/aOl9Cvq.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "playground", + "picnic_table" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 7.68935999923839e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 121254521 + } + }, + { + "id": 121252868, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7585687, + 50.8021132 + ], + [ + 3.7651698, + 50.8021132 + ], + [ + 3.7651698, + 50.8043058 + ], + [ + 3.7585687, + 50.8043058 + ], + [ + 3.7585687, + 50.8021132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T16:31:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "vending_machine", + "bicycle_repair_station", + "bicycle_parking" + ] + }, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000144735718600044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 11, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 12, + "change_within_50m": 1 + }, + "id": 121252868 + } + }, + { + "id": 121252818, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7797207, + 50.8072471 + ], + [ + 3.7797207, + 50.8072471 + ], + [ + 3.7797207, + 50.8072471 + ], + [ + 3.7797207, + 50.8072471 + ], + [ + 3.7797207, + 50.8072471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T16:29:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "opening_hours": [ + "We 11:30-13:30, 17:00-22:00; Th 17:00-22:00; Fr 11:30-13:30, 17:00-23:00; Sa-Su 11:30-13:30, 17:00-22:00;PH off" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 121252818 + } + }, + { + "id": 121252787, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T16:28:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 121252787 + } + }, + { + "id": 121246319, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6306912, + 50.9565762 + ], + [ + 3.6447625, + 50.9565762 + ], + [ + 3.6447625, + 50.967252 + ], + [ + 3.6306912, + 50.967252 + ], + [ + 3.6306912, + 50.9565762 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T13:53:16Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3806468" + ], + "source:geometry:date": [ + "2012-11-26" + ] + }, + "create": 1663, + "modify": 9, + "delete": 0, + "area": 0.000150222384540023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 8, + "theme": "grb", + "import": 217, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 121246319 + } + }, + { + "id": 121244392, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6264444, + 50.9977497 + ], + [ + 4.6264444, + 50.9977497 + ], + [ + 4.6264444, + 50.9977497 + ], + [ + 4.6264444, + 50.9977497 + ], + [ + 4.6264444, + 50.9977497 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T13:07:00Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9757347638": "source: https://osm.org/note/3084030" + }, + "id": 121244392 + } + }, + { + "id": 121244070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.418372, + 50.9062422 + ], + [ + 5.4260531, + 50.9062422 + ], + [ + 5.4260531, + 50.9090831 + ], + [ + 5.418372, + 50.9090831 + ], + [ + 5.418372, + 50.9062422 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T12:59:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_box", + "townhall", + "place_of_worship", + "pub", + "fast_food", + "cafe" + ], + "building": [ + "apartments", + "school", + "house", + "yes", + "church", + "farm_auxiliary", + "roof" + ], + "addr:street": [ + "Dorpsstraat", + "Sint-Janslaan", + "Kloosterstraat", + "Wijkstraat" + ], + "addr:housenumber": [ + "16", + "3", + "18A", + "11", + "9", + "7", + "5", + "2A", + "8", + "1A", + "1" + ], + "source:geometry:ref": [ + "Gbg/2335241", + "Gbg/2335759", + "Gbg/2335868", + "Gbg/2335283", + "Gbg/2335284", + "Gbg/2336357", + "Gbg/2335279", + "Gbg/2335869", + "Gbg/2335280", + "Gbg/5835902", + "Gbg/2335404", + "Gbg/2335403", + "Gbg/2335962", + "Gbg/2335870", + "Gbg/2335212", + "Gbg/2335213", + "Gbg/5835919", + "Gbg/5290374", + "Gbg/2335266", + "Gbg/2335267", + "Gbg/2335268", + "Gbg/5290351", + "Gbg/2335724", + "Gbg/6715618", + "Gbg/2335210", + "Gbg/6451153", + "Gbg/2335208", + "Gbg/2335206", + "Gbg/2335207", + "Gbg/4708908", + "Gbg/2335749", + "Gbg/2335748", + "Gbg/2335282", + "Gbg/4709533", + "Gbg/2335286", + "Gbg/4709387", + "Gbg/2335288", + "Gbg/2335295", + "Gbg/2335888", + "Gbg/2335240", + "Gbg/2335239", + "Gbg/5289930", + "Gbg/2335237", + "Gbg/2335236", + "Gbg/2335235", + "Gbg/2335961", + "Gbg/2335887", + "Gbg/2335354", + "Gbg/2335877", + "Gbg/2335878", + "Gbg/2335879", + "Gbg/2335882", + "Gbg/2335880", + "Gbg/2335885", + "Gbg/2335291", + "Gbg/5836292", + "Gbg/2335293", + "Gbg/2335294", + "Gbg/2335874", + "Gbg/2335873", + "Gbg/2335270", + "Gbg/2335271", + "Gbg/4709016", + "Gbg/5835873", + "Gbg/2335274", + "Gbg/2335276", + "Gbg/2335277", + "Gbg/6715629", + "Gbg/6715627", + "Gbg/6715626", + "Gbg/6715630", + "Gbg/6780774", + "Gbg/2335532", + "Gbg/7023811", + "Gbg/5289955", + "Gbg/2335908", + "Gbg/5290402", + "Gbg/4707837", + "Gbg/2335281", + "Gbg/2335264", + "Gbg/5289952", + "Gbg/4709015", + "Gbg/2335289", + "Gbg/2335296", + "Gbg/4708894", + "Gbg/2335875", + "Gbg/2335272", + "Gbg/2335275" + ], + "source:geometry:date": [ + "2017-01-30", + "2012-03-14", + "2015-08-25", + "2010-01-25", + "2020-01-06", + "2018-08-07", + "2014-05-27", + "2016-05-13", + "2020-04-30", + "2020-02-25" + ] + }, + "create": 446, + "modify": 840, + "delete": 21, + "area": 0.0000218212369899648, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 805, + "theme": "grb", + "delete": 21, + "import": 64, + "locale": "nl", + "imagery": "osm", + "conflation": 176 + }, + "id": 121244070 + } + }, + { + "id": 121237686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1056203, + 50.8328362 + ], + [ + 5.1056203, + 50.8328362 + ], + [ + 5.1056203, + 50.8328362 + ], + [ + 5.1056203, + 50.8328362 + ], + [ + 5.1056203, + 50.8328362 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stad Zoutleeuw", + "uid": "16012939", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T11:09:49Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "import:node/9757085168": "source: https://osm.org/note/3090202" + }, + "id": 121237686 + } + }, + { + "id": 121237011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.2484012, + 40.8481467 + ], + [ + 14.2721247, + 40.8481467 + ], + [ + 14.2721247, + 40.9486324 + ], + [ + 14.2484012, + 40.9486324 + ], + [ + 14.2484012, + 40.8481467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Acheloo", + "uid": "11366923", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T10:57:21Z", + "reviewed_features": [], + "tag_changes": { + "place": [ + "square" + ], + "amenity": [ + "hospital", + "school", + "college" + ], + "highway": [ + "residential", + "tertiary", + "secondary", + "pedestrian" + ], + "building": [ + "public" + ], + "name:etymology:wikidata": [ + "Q9696", + "Q187336", + "Q472772", + "Q166234", + "Q7814", + "Q5592", + "Q680", + "Q762", + "Q63302009", + "Q1067", + "Q2023833", + "Q267304", + "Q733392", + "Q320171", + "Q83003", + "Q3762973", + "Q114387", + "Q503060", + "Q36330", + "Q297190", + "Q332626", + "Q168691" + ] + }, + "create": 0, + "modify": 47, + "delete": 0, + "area": 0.00238387250395009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 54, + "locale": "it", + "imagery": "osm" + }, + "id": 121237011 + } + }, + { + "id": 121233337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3355776, + 50.8363144 + ], + [ + 4.3355776, + 50.8363144 + ], + [ + 4.3355776, + 50.8363144 + ], + [ + 4.3355776, + 50.8363144 + ], + [ + 4.3355776, + 50.8363144 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T09:37:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 121233337 + } + }, + { + "id": 121232316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4358155, + 49.4915462 + ], + [ + 11.4476759, + 49.4915462 + ], + [ + 11.4476759, + 49.5124204 + ], + [ + 11.4358155, + 49.5124204 + ], + [ + 11.4358155, + 49.4915462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheFish", + "uid": "121036", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T09:13:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ScFjA1D.jpg", + "https://i.imgur.com/55hRk2l.jpg", + "https://i.imgur.com/LjMvGJs.jpg", + "https://i.imgur.com/xeLML7n.jpg" + ], + "noname": [ + "yes" + ], + "image:0": [ + "https://i.imgur.com/yiKSACV.jpg" + ], + "natural": [ + "tree" + ], + "heritage": [ + "yes", + "no" + ], + "wikidata": [ + "Q62104477" + ], + "species:wikidata": [ + "Q149335", + "Q12004", + "Q43284" + ] + }, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000247576361680013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 12, + "locale": "de", + "imagery": "osm", + "add-image": 7 + }, + "id": 121232316 + } + }, + { + "id": 121230895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.207806, + 50.9058677 + ], + [ + 4.2094696, + 50.9058677 + ], + [ + 4.2094696, + 50.906306 + ], + [ + 4.207806, + 50.906306 + ], + [ + 4.207806, + 50.9058677 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T08:43:12Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "operator": [ + "gemeente Asse" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 7.2915587999858e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9756757456": "source: https://osm.org/note/3161473" + }, + "id": 121230895 + } + }, + { + "id": 121230531, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1007969, + 50.8323086 + ], + [ + 5.1062963, + 50.8323086 + ], + [ + 5.1062963, + 50.8334454 + ], + [ + 5.1007969, + 50.8334454 + ], + [ + 5.1007969, + 50.8323086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stad Zoutleeuw", + "uid": "16012939", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T08:33:58Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/81h0Ycv.jpg", + "https://i.imgur.com/QyXkx9O.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets", + "bench" + ], + "image:0": [ + "https://i.imgur.com/W4SMbQ0.jpg" + ], + "leisure": [ + "playground", + "picnic_table" + ], + "surface": [ + "sand" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00000625171792002659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 2, + "import": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "move:node/9756745045": "improve_accuracy", + "import:node/9756907408": "source: https://osm.org/note/3090320" + }, + "id": 121230531 + } + }, + { + "id": 121218865, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5903353, + -34.6443169 + ], + [ + -58.5903353, + -34.6443169 + ], + [ + -58.5903353, + -34.6443169 + ], + [ + -58.5903353, + -34.6443169 + ], + [ + -58.5903353, + -34.6443169 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-20T01:07:33Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "signal" + ], + "railway:signal:route:ref": [ + "HD 22" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 121218865 + } + }, + { + "id": 121218560, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9395884, + 40.7019937 + ], + [ + -73.9392946, + 40.7019937 + ], + [ + -73.9392946, + 40.7021573 + ], + [ + -73.9395884, + 40.7021573 + ], + [ + -73.9395884, + 40.7019937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #swimming_pools", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-20T00:42:09Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "swimming_pool" + ], + "location": [ + "outdoor" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.8065680001543e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "swimming_pools", + "answer": 1, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "id": 121218560 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-21.json b/Docs/Tools/stats/stats.2022-5-21.json new file mode 100644 index 0000000000..61e524adfa --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-21.json @@ -0,0 +1,2587 @@ +{ + "features": [ + { + "id": 121298909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9538278, + 49.8499921 + ], + [ + 9.9538278, + 49.8499921 + ], + [ + 9.9538278, + 49.8499921 + ], + [ + 9.9538278, + 49.8499921 + ], + [ + 9.9538278, + 49.8499921 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kay_D", + "uid": "57158", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T21:33:57Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "denotation": [ + "none" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q13223298" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 121298909 + } + }, + { + "id": 121298903, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2902744, + 51.1166765 + ], + [ + 3.290659, + 51.1166765 + ], + [ + 3.290659, + 51.1169057 + ], + [ + 3.2902744, + 51.1169057 + ], + [ + 3.2902744, + 51.1166765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T21:33:36Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/TeHGRMJ.jpg", + "https://i.imgur.com/HFpxDS5.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.81503199998522e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 121298903 + } + }, + { + "id": 121296442, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6766982, + 50.9410567 + ], + [ + 5.6768699, + 50.9410567 + ], + [ + 5.6768699, + 50.9412477 + ], + [ + 5.6766982, + 50.9412477 + ], + [ + 5.6766982, + 50.9410567 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Timothy Yzermans", + "uid": "16042306", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T20:05:03Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "man_made": [ + "surveillance" + ], + "camera:type": [ + "fixed" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "outdoor" + ], + "camera:direction": [ + "330" + ], + "surveillance:type": [ + "camera" + ] + }, + "create": 3, + "modify": 5, + "delete": 0, + "area": 3.27947000001821e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 14, + "create": 5, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_50m": 9 + }, + "id": 121296442 + } + }, + { + "id": 121296412, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.869045, + 49.8305779 + ], + [ + 9.8698771, + 49.8305779 + ], + [ + 9.8698771, + 49.835638 + ], + [ + 9.869045, + 49.835638 + ], + [ + 9.869045, + 49.8305779 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T20:04:14Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "yes" + ], + "opening_hours": [ + "Mo-Su 08:00-22:00", + "24/7" + ], + "changing_table": [ + "yes" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ], + "changing_table:location": [ + "female_toilet" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000421050921000235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 14, + "locale": "de", + "imagery": "osm" + }, + "id": 121296412 + } + }, + { + "id": 121295849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4310101, + 50.8355912 + ], + [ + 4.4310101, + 50.8355912 + ], + [ + 4.4310101, + 50.8355912 + ], + [ + 4.4310101, + 50.8355912 + ], + [ + 4.4310101, + 50.8355912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T19:42:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/DdWoonQ.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121295849 + } + }, + { + "id": 121295179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8949188, + 50.2249054 + ], + [ + 4.8949188, + 50.2249054 + ], + [ + 4.8949188, + 50.2249054 + ], + [ + 4.8949188, + 50.2249054 + ], + [ + 4.8949188, + 50.2249054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T19:18:38Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "information" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/nature.html", + "theme": "nature", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121295179 + } + }, + { + "id": 121294852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.439366, + 50.8554992 + ], + [ + 4.5034502, + 50.8554992 + ], + [ + 4.5034502, + 50.8611503 + ], + [ + 4.439366, + 50.8611503 + ], + [ + 4.439366, + 50.8554992 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T19:09:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UQADh3T.jpg" + ], + "image:0": [ + "https://i.imgur.com/bgRfuS9.jpg" + ], + "image:1": [ + "https://i.imgur.com/dmzu5h5.jpg" + ], + "leisure": [ + "playground" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000362146222620093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "id": 121294852 + } + }, + { + "id": 121294678, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8926497, + 50.2332771 + ], + [ + 4.8926497, + 50.2332771 + ], + [ + 4.8926497, + 50.2332771 + ], + [ + 4.8926497, + 50.2332771 + ], + [ + 4.8926497, + 50.2332771 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T19:02:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 121294678 + } + }, + { + "id": 121294109, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9033517, + 50.2384788 + ], + [ + 4.9033517, + 50.2384788 + ], + [ + 4.9033517, + 50.2384788 + ], + [ + 4.9033517, + 50.2384788 + ], + [ + 4.9033517, + 50.2384788 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T18:44:54Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121294109 + } + }, + { + "id": 121292719, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1581552, + 50.6274703 + ], + [ + 6.1581552, + 50.6274703 + ], + [ + 6.1581552, + 50.6274703 + ], + [ + 6.1581552, + 50.6274703 + ], + [ + 6.1581552, + 50.6274703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T18:00:58Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 121292719 + } + }, + { + "id": 121291459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8621056, + 50.4685469 + ], + [ + 4.8621159, + 50.4685469 + ], + [ + 4.8621159, + 50.4686016 + ], + [ + 4.8621056, + 50.4686016 + ], + [ + 4.8621056, + 50.4685469 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T17:22:42Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "email": [ + "namur@provelo.org" + ], + "image": [ + "https://i.imgur.com/mC6f9i7.jpg", + "https://i.imgur.com/6Fp7YS6.jpg" + ], + "rental": [ + "city_bike" + ], + "amenity": [ + "bicycle_rental" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "opening_hours": [ + "Mo-Fr 09:00-12:30, 13:30-18:00;PH off", + "Mo-We 09:30-12:30, 13:00-19:00; Th 07:00-19:00; Fr 09:30-12:30, 13:00-19:00" + ], + "payment:cards": [ + "no" + ], + "capacity:city_bike": [ + "6" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.63410000022644e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 7 + }, + "id": 121291459 + } + }, + { + "id": 121291404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3826417, + 50.8329608 + ], + [ + 4.3826417, + 50.8329608 + ], + [ + 4.3826417, + 50.8329608 + ], + [ + 4.3826417, + 50.8329608 + ], + [ + 4.3826417, + 50.8329608 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RJShew", + "uid": "16040998", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T17:20:59Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121291404 + } + }, + { + "id": 121289028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1982605, + 51.1938999 + ], + [ + 3.1982605, + 51.1938999 + ], + [ + 3.1982605, + 51.1938999 + ], + [ + 3.1982605, + 51.1938999 + ], + [ + 3.1982605, + 51.1938999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T16:17:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "cuisine": [ + "friture", + "fish_and_chips" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121289028 + } + }, + { + "id": 121286564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1543841, + 49.9921754 + ], + [ + 5.15446, + 49.9921754 + ], + [ + 5.15446, + 49.9922114 + ], + [ + 5.1543841, + 49.9922114 + ], + [ + 5.1543841, + 49.9921754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T15:16:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 1, + "delete": 1, + "area": 2.7324000001329e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "deletion": 1, + "change_over_5000m": 2, + "change_within_5000m": 3, + "deletion:node/5042649937": "not found" + }, + "id": 121286564 + } + }, + { + "id": 121286180, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8552761, + 56.2542038 + ], + [ + 43.8552982, + 56.2542038 + ], + [ + 43.8552982, + 56.2542075 + ], + [ + 43.8552761, + 56.2542075 + ], + [ + 43.8552761, + 56.2542038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T15:04:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 8.17700000225218e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_50m": 5, + "move:node/9759648952": "improve_accuracy" + }, + "id": 121286180 + } + }, + { + "id": 121284729, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.2075676, + 47.27122 + ], + [ + 8.2075676, + 47.27122 + ], + [ + 8.2075676, + 47.27122 + ], + [ + 8.2075676, + 47.27122 + ], + [ + 8.2075676, + 47.27122 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T14:26:48Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "caravan_site" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 8, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 121284729 + } + }, + { + "id": 121281914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8777557, + 50.7714671 + ], + [ + 3.882262, + 50.7714671 + ], + [ + 3.882262, + 50.771797 + ], + [ + 3.8777557, + 50.771797 + ], + [ + 3.8777557, + 50.7714671 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T13:17:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station", + "bench" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000148662836998649, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 121281914 + } + }, + { + "id": 121281871, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8831099, + 50.7717961 + ], + [ + 3.8831099, + 50.7717961 + ], + [ + 3.8831099, + 50.7717961 + ], + [ + 3.8831099, + 50.7717961 + ], + [ + 3.8831099, + 50.7717961 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T13:16:16Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "wheelchair": [ + "limited" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_100m": 2 + }, + "id": 121281871 + } + }, + { + "id": 121281416, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8632632, + 49.8273578 + ], + [ + 9.8754396, + 49.8273578 + ], + [ + 9.8754396, + 49.8387642 + ], + [ + 9.8632632, + 49.8387642 + ], + [ + 9.8632632, + 49.8273578 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T13:00:38Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "fee": [ + "yes" + ], + "hgv": [ + "no" + ], + "email": [ + "buergerbuero@margetshoechheim.de" + ], + "phone": [ + "+49 931 468620" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "maxstay": [ + "unlimited" + ], + "network": [ + "LastMileSolutions" + ], + "scooter": [ + "no" + ], + "capacity": [ + "6", + "3", + "2" + ], + "motorcar": [ + "yes" + ], + "operator": [ + "Gemeinde Margetshöchheim" + ], + "no:network": [ + "yes" + ], + "parking:fee": [ + "no" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "1" + ], + "socket:typee": [ + "1" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "yes", + "no" + ], + "authentication:app": [ + "no" + ], + "authentication:nfc": [ + "no" + ], + "authentication:none": [ + "yes" + ], + "socket:type2:output": [ + "22 kW" + ], + "socket:type2:current": [ + "32 A" + ], + "socket:type2:voltage": [ + "400 V" + ], + "socket:typee:current": [ + "16 A" + ], + "socket:typee:voltage": [ + "230 V" + ], + "payment:membership_card": [ + "yes" + ], + "authentication:debit_card": [ + "no" + ], + "authentication:money_card": [ + "no" + ], + "authentication:phone_call": [ + "no" + ], + "authentication:short_message": [ + "no" + ], + "authentication:membership_card": [ + "no" + ] + }, + "create": 1, + "modify": 44, + "delete": 0, + "area": 0.000138888888959976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 62, + "create": 1, + "locale": "de", + "imagery": "Mapbox" + }, + "id": 121281416 + } + }, + { + "id": 121275206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4464556, + 51.0808207 + ], + [ + 3.4464556, + 51.0808207 + ], + [ + 3.4464556, + 51.0808207 + ], + [ + 3.4464556, + 51.0808207 + ], + [ + 3.4464556, + 51.0808207 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T09:59:58Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/44ZyHXh.jpg" + ], + "barrier": [ + "lift_gate" + ], + "survey:date": [ + "2022-05-21" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121275206 + } + }, + { + "id": 121273438, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3529522, + 50.192646 + ], + [ + 4.3530741, + 50.192646 + ], + [ + 4.3530741, + 50.1927504 + ], + [ + 4.3529522, + 50.1927504 + ], + [ + 4.3529522, + 50.192646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T09:11:47Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "3" + ], + "colour": [ + "black" + ], + "amenity": [ + "bench" + ], + "material": [ + "plastic" + ], + "direction": [ + "138" + ], + "survey:date": [ + "2022-05-21" + ] + }, + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.27263599997327e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 17 + }, + "id": 121273438 + } + }, + { + "id": 121271315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3639327, + 50.188205 + ], + [ + 4.3639547, + 50.188205 + ], + [ + 4.3639547, + 50.1882165 + ], + [ + 4.3639327, + 50.1882165 + ], + [ + 4.3639327, + 50.188205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T07:58:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.52999999981022e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 11, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 11 + }, + "id": 121271315 + } + }, + { + "id": 121271259, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.418016, + 50.9088416 + ], + [ + 5.419251, + 50.9088416 + ], + [ + 5.419251, + 50.9097287 + ], + [ + 5.418016, + 50.9097287 + ], + [ + 5.418016, + 50.9088416 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T07:56:44Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments", + "dormitory", + "terrace", + "house", + "yes", + "roof" + ], + "addr:street": [ + "Kapelstraat" + ], + "addr:housenumber": [ + "21;23" + ], + "source:geometry:ref": [ + "Gbg/2335353", + "Gbg/5835866", + "Gbg/2335361", + "Gbg/2335360", + "Gbg/2335352", + "Gbg/2335351" + ], + "source:geometry:date": [ + "2010-01-25", + "2017-01-30", + "2015-08-25" + ] + }, + "create": 40, + "modify": 87, + "delete": 0, + "area": 0.00000109556850000018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 81, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "id": 121271259 + } + }, + { + "id": 121270915, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4189223, + 50.9062879 + ], + [ + 5.4274778, + 50.9062879 + ], + [ + 5.4274778, + 50.9102882 + ], + [ + 5.4189223, + 50.9102882 + ], + [ + 5.4189223, + 50.9062879 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T07:43:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "police", + "community_centre", + "pub" + ], + "landuse": [ + "retail", + "residential" + ], + "building": [ + "dormitory", + "house", + "apartments", + "yes", + "warehouse", + "roof" + ], + "addr:street": [ + "Wijkstraat" + ], + "addr:housenumber": [ + "27;29;31;33;35;27A;29A-29B;33A;35A" + ], + "source:geometry:ref": [ + "Gbg/2335417", + "Gbg/2335723", + "Gbg/7024546", + "Gbg/2335446", + "Gbg/5739972", + "Gbg/2335896", + "Gbg/2335891", + "Gbg/2335892", + "Gbg/2335893", + "Gbg/5290368", + "Gbg/5289944", + "Gbg/2335338", + "Gbg/2335340", + "Gbg/6780787", + "Gbg/2335342", + "Gbg/5740035", + "Gbg/2335349", + "Gbg/5740000", + "Gbg/2335942", + "Gbg/6259040", + "Gbg/2335936", + "Gbg/4708888", + "Gbg/2335348", + "Gbg/2336368", + "Gbg/5289936", + "Gbg/2335898", + "Gbg/4709620", + "Gbg/2335899", + "Gbg/2335343", + "Gbg/4708971", + "Gbg/4708966", + "Gbg/4709331", + "Gbg/4709156", + "Gbg/2335902", + "Gbg/2335903", + "Gbg/2335180", + "Gbg/3174803", + "Gbg/5835869", + "Gbg/7024545", + "Gbg/7023810", + "Gbg/7024547", + "Gbg/2335398", + "Gbg/2335909", + "Gbg/5834118" + ], + "source:geometry:date": [ + "2014-05-27", + "2010-01-25", + "2020-02-25", + "2017-01-30", + "2015-08-25", + "2020-04-30", + "2016-11-09", + "2018-05-10" + ] + }, + "create": 192, + "modify": 475, + "delete": 1, + "area": 0.00003422456664995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 438, + "theme": "grb", + "delete": 1, + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "id": 121270915 + } + }, + { + "id": 121270634, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4193292, + 50.9077781 + ], + [ + 5.4231047, + 50.9077781 + ], + [ + 5.4231047, + 50.9094892 + ], + [ + 5.4193292, + 50.9094892 + ], + [ + 5.4193292, + 50.9077781 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T07:30:56Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "apartments", + "house", + "roof" + ], + "addr:street": [ + "Dorpsstraat" + ], + "addr:housenumber": [ + "7" + ], + "source:geometry:ref": [ + "Gbg/2335245", + "Gbg/2335247", + "Gbg/5289940", + "Gbg/5836243", + "Gbg/2335248", + "Gbg/2335249", + "Gbg/2335251", + "Gbg/2335253", + "Gbg/2335254", + "Gbg/2335255", + "Gbg/5289943", + "Gbg/2335257", + "Gbg/5836162", + "Gbg/2335259", + "Gbg/2335260", + "Gbg/2335262", + "Gbg/5835904", + "Gbg/2335244", + "Gbg/2335242", + "Gbg/2335233", + "Gbg/2335234", + "Gbg/5836256", + "Gbg/2335232", + "Gbg/2335230", + "Gbg/2335229", + "Gbg/4709390", + "Gbg/2335227", + "Gbg/2335228", + "Gbg/2335226", + "Gbg/2335225", + "Gbg/2335223", + "Gbg/2335224", + "Gbg/2335345", + "Gbg/2335252", + "Gbg/2335250" + ], + "source:geometry:date": [ + "2015-08-25", + "2017-01-30", + "2010-01-25", + "2018-08-07" + ] + }, + "create": 176, + "modify": 368, + "delete": 10, + "area": 0.00000646025805000482, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 337, + "theme": "grb", + "delete": 10, + "import": 27, + "locale": "nl", + "imagery": "osm", + "conflation": 70 + }, + "id": 121270634 + } + }, + { + "id": 121268941, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7631077, + 50.8042553 + ], + [ + 3.7631077, + 50.8042553 + ], + [ + 3.7631077, + 50.8042553 + ], + [ + 3.7631077, + 50.8042553 + ], + [ + 3.7631077, + 50.8042553 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T06:23:47Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/rKvhOH9.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 121268941 + } + }, + { + "id": 121268750, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7549083, + 50.8035912 + ], + [ + 3.7564759, + 50.8035912 + ], + [ + 3.7564759, + 50.8041731 + ], + [ + 3.7549083, + 50.8041731 + ], + [ + 3.7549083, + 50.8035912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T06:15:22Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/avpWhuz.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "operator": [ + "Gemeente Brakel" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 9.12186440000387e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 6, + "change_within_100m": 2 + }, + "id": 121268750 + } + }, + { + "id": 121268623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3941226, + 50.7889562 + ], + [ + 5.3995653, + 50.7889562 + ], + [ + 5.3995653, + 50.7916949 + ], + [ + 5.3941226, + 50.7916949 + ], + [ + 5.3941226, + 50.7889562 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T06:09:16Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ] + }, + "create": 906, + "modify": 0, + "delete": 0, + "area": 0.0000149059224900093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 110, + "locale": "nl", + "imagery": "osm" + }, + "id": 121268623 + } + }, + { + "id": 121267812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9935839, + 51.1553967 + ], + [ + 4.9935839, + 51.1553967 + ], + [ + 4.9935839, + 51.1553967 + ], + [ + 4.9935839, + 51.1553967 + ], + [ + 4.9935839, + 51.1553967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T05:31:01Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 121267812 + } + }, + { + "id": 121267574, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9934681, + 51.1547796 + ], + [ + 4.9934681, + 51.1547796 + ], + [ + 4.9934681, + 51.1547796 + ], + [ + 4.9934681, + 51.1547796 + ], + [ + 4.9934681, + 51.1547796 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-21T05:18:23Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 3 + }, + "id": 121267574 + } + }, + { + "id": 121264626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7328001, + 51.0720753 + ], + [ + 3.7328383, + 51.0720753 + ], + [ + 3.7328383, + 51.072133 + ], + [ + 3.7328001, + 51.072133 + ], + [ + 3.7328001, + 51.0720753 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-21T00:48:35Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "fitness_station" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 2.20413999997793e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 4, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121264626 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-22.json b/Docs/Tools/stats/stats.2022-5-22.json new file mode 100644 index 0000000000..d699a8f60a --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-22.json @@ -0,0 +1,1851 @@ +{ + "features": [ + { + "id": 121339529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.6196963, + -38.7405529 + ], + [ + -72.6196963, + -38.7405529 + ], + [ + -72.6196963, + -38.7405529 + ], + [ + -72.6196963, + -38.7405529 + ], + [ + -72.6196963, + -38.7405529 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T23:47:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9TBWx4q.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 121339529 + } + }, + { + "id": 121338817, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T23:05:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121338817 + } + }, + { + "id": 121337368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6565749, + 45.2285865 + ], + [ + 11.6565749, + 45.2285865 + ], + [ + 11.6565749, + 45.2285865 + ], + [ + 11.6565749, + 45.2285865 + ], + [ + 11.6565749, + 45.2285865 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mappilo", + "uid": "4763621", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T21:53:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "create": 1, + "locale": "it", + "imagery": "osm" + }, + "id": 121337368 + } + }, + { + "id": 121336893, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7576135, + -33.6315724 + ], + [ + -70.6879783, + -33.6315724 + ], + [ + -70.6879783, + -33.5538183 + ], + [ + -70.7576135, + -33.5538183 + ], + [ + -70.7576135, + -33.6315724 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T21:30:20Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Tercera Compañía del Cuerpo de Bomberos del Maipo", + "3ra Compañía de Bomberos de Calera de Tango", + "Base Bomberos FACH" + ], + "amenity": [ + "fire_station" + ], + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00541442230432058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "HDM_HOT" + }, + "id": 121336893 + } + }, + { + "id": 121333914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.28407, + 51.1074911 + ], + [ + 3.3012553, + 51.1074911 + ], + [ + 3.3012553, + 51.1187341 + ], + [ + 3.28407, + 51.1187341 + ], + [ + 3.28407, + 51.1074911 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T19:42:03Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "foot" + ], + "survey:date": [ + "2022-05-21", + "2020-11-15", + "2021-10-02", + "2020-11-23" + ] + }, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000193214327900005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 12, + "locale": "en", + "imagery": "osm" + }, + "id": 121333914 + } + }, + { + "id": 121330118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.1191789, + 33.2184522 + ], + [ + -97.1191789, + 33.2184522 + ], + [ + -97.1191789, + 33.2184522 + ], + [ + -97.1191789, + 33.2184522 + ], + [ + -97.1191789, + 33.2184522 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BubbleGuppies", + "uid": "1426091", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T18:05:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "website": [ + "https://www.facebook.com/pages/Sullivan-Keller-Early-Childhood-Center/146217585402621" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "schools", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121330118 + } + }, + { + "id": 121329433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2913809, + 51.1044572 + ], + [ + 3.2956616, + 51.1044572 + ], + [ + 3.2956616, + 51.117016 + ], + [ + 3.2913809, + 51.117016 + ], + [ + 3.2913809, + 51.1044572 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T17:49:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YfkY2u0.jpg", + "https://i.imgur.com/JsJ3wJ2.jpg" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000537604551600008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 121329433 + } + }, + { + "id": 121328566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7082415, + 51.0339384 + ], + [ + 3.7082415, + 51.0339384 + ], + [ + 3.7082415, + 51.0339384 + ], + [ + 3.7082415, + 51.0339384 + ], + [ + 3.7082415, + 51.0339384 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T17:28:10Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "bicycle_parking": [ + "stands" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "id": 121328566 + } + }, + { + "id": 121327494, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2913923, + 51.1088723 + ], + [ + 3.3145908, + 51.1088723 + ], + [ + 3.3145908, + 51.1106009 + ], + [ + 3.2913923, + 51.1106009 + ], + [ + 3.2913923, + 51.1088723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T16:57:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/U4C8VHY.jpg", + "https://i.imgur.com/EUEqDjz.jpg", + "https://i.imgur.com/QGiWjDP.jpg", + "https://i.imgur.com/71n3pj3.jpg", + "https://i.imgur.com/Ue38tGD.jpg" + ], + "amenity": [ + "toilets" + ], + "image:0": [ + "https://i.imgur.com/KevTwOy.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0000401009270999965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "id": 121327494 + } + }, + { + "id": 121323947, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6087851, + 50.8417731 + ], + [ + 3.6087851, + 50.8417731 + ], + [ + 3.6087851, + 50.8417731 + ], + [ + 3.6087851, + 50.8417731 + ], + [ + 3.6087851, + 50.8417731 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T15:28:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/8siPumb.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 121323947 + } + }, + { + "id": 121317921, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.3304968, + 48.1897023 + ], + [ + 16.3304968, + 48.1897023 + ], + [ + 16.3304968, + 48.1897023 + ], + [ + 16.3304968, + 48.1897023 + ], + [ + 16.3304968, + 48.1897023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T13:14:40Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121317921 + } + }, + { + "id": 121317585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6900422, + 50.904145 + ], + [ + 3.6900422, + 50.904145 + ], + [ + 3.6900422, + 50.904145 + ], + [ + 3.6900422, + 50.904145 + ], + [ + 3.6900422, + 50.904145 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T13:05:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 121317585 + } + }, + { + "id": 121317140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6896608, + 50.9039389 + ], + [ + 3.6902574, + 50.9039389 + ], + [ + 3.6902574, + 50.9042559 + ], + [ + 3.6896608, + 50.9042559 + ], + [ + 3.6896608, + 50.9039389 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T12:53:00Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "historic": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.89122200001584e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 121317140 + } + }, + { + "id": 121313270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6089696, + 50.841846 + ], + [ + 3.6089696, + 50.841846 + ], + [ + 3.6089696, + 50.841846 + ], + [ + 3.6089696, + 50.841846 + ], + [ + 3.6089696, + 50.841846 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T10:57:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 121313270 + } + }, + { + "id": 121313064, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8923358, + 50.2196764 + ], + [ + 4.8923358, + 50.2196764 + ], + [ + 4.8923358, + 50.2196764 + ], + [ + 4.8923358, + 50.2196764 + ], + [ + 4.8923358, + 50.2196764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T10:50:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121313064 + } + }, + { + "id": 121312696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6029334, + 50.8390776 + ], + [ + 3.6042326, + 50.8390776 + ], + [ + 3.6042326, + 50.8421399 + ], + [ + 3.6029334, + 50.8421399 + ], + [ + 3.6029334, + 50.8390776 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T10:38:01Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "leisure": [ + "playground", + "picnic_table" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.00000397854015999536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 5, + "change_within_25m": 6, + "change_within_100m": 1 + }, + "id": 121312696 + } + }, + { + "id": 121312559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6048239, + 50.8387506 + ], + [ + 3.6049926, + 50.8387506 + ], + [ + 3.6049926, + 50.8389149 + ], + [ + 3.6048239, + 50.8389149 + ], + [ + 3.6048239, + 50.8387506 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T10:33:38Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/JEcBSLK.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "image:0": [ + "https://i.imgur.com/K5o13m1.jpg" + ], + "network": [ + "Blue Corner" + ], + "scooter": [ + "no" + ], + "capacity": [ + "2" + ], + "motorcar": [ + "yes" + ], + "payment:app": [ + "no" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "2" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "no" + ], + "brand:wikidata": [ + "Q106902344" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.7717410000285e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 9, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 2, + "change_within_25m": 2, + "change_within_100m": 9 + }, + "id": 121312559 + } + }, + { + "id": 121312094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3808917, + 50.8556571 + ], + [ + 4.3834483, + 50.8556571 + ], + [ + 4.3834483, + 50.8577383 + ], + [ + 4.3808917, + 50.8577383 + ], + [ + 4.3808917, + 50.8556571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T10:17:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/x6hopap.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000053207959199983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4 + }, + "id": 121312094 + } + }, + { + "id": 121311050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8941485, + 50.2200668 + ], + [ + 4.9033517, + 50.2200668 + ], + [ + 4.9033517, + 50.2384788 + ], + [ + 4.8941485, + 50.2384788 + ], + [ + 4.8941485, + 50.2200668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T09:46:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Rhj5GXo.jpg", + "https://i.imgur.com/1FhkZbk.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "playground" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "45" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000169449318400045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9, + "move:node/9727746215": "improve_accuracy" + }, + "id": 121311050 + } + }, + { + "id": 121310706, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1084569, + 38.83635 + ], + [ + 0.1084569, + 38.83635 + ], + [ + 0.1084569, + 38.83635 + ], + [ + 0.1084569, + 38.83635 + ], + [ + 0.1084569, + 38.83635 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T09:36:54Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "sports" + ], + "service:bicycle:rental": [ + "no" + ], + "service:bicycle:repair": [ + "no" + ], + "service:bicycle:retail": [ + "no" + ], + "service:bicycle:cleaning": [ + "no" + ], + "service:bicycle:second_hand": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5 + }, + "id": 121310706 + } + }, + { + "id": 121310527, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0291029, + 43.8067524 + ], + [ + 1.0291029, + 43.8067524 + ], + [ + 1.0291029, + 43.8067524 + ], + [ + 1.0291029, + 43.8067524 + ], + [ + 1.0291029, + 43.8067524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T09:33:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121310527 + } + }, + { + "id": 121307630, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2912773, + 51.1156159 + ], + [ + 3.2912773, + 51.1156159 + ], + [ + 3.2912773, + 51.1156159 + ], + [ + 3.2912773, + 51.1156159 + ], + [ + 3.2912773, + 51.1156159 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T07:58:08Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/GHoVLf1.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 121307630 + } + }, + { + "id": 121307467, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7585692, + 50.7714988 + ], + [ + 3.8797927, + 50.7714988 + ], + [ + 3.8797927, + 50.8045836 + ], + [ + 3.7585692, + 50.8045836 + ], + [ + 3.7585692, + 50.7714988 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T07:51:44Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/WCe2tW6.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking", + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00401065525279968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 3, + "change_within_1000m": 6 + }, + "id": 121307467 + } + }, + { + "id": 121307375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8692926, + 49.8150087 + ], + [ + 9.8692926, + 49.8150087 + ], + [ + 9.8692926, + 49.8150087 + ], + [ + 9.8692926, + 49.8150087 + ], + [ + 9.8692926, + 49.8150087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "onkelben866", + "uid": "14063915", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-22T07:48:10Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "denotation": [ + "garden" + ], + "leaf_cycle": [ + "evergreen", + "semi_evergreen" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 121307375 + } + }, + { + "id": 121306907, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7643086, + 50.7914863 + ], + [ + 3.9160905, + 50.7914863 + ], + [ + 3.9160905, + 50.8047406 + ], + [ + 3.7643086, + 50.8047406 + ], + [ + 3.7643086, + 50.7914863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-22T07:31:37Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "foot" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00201176283716997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 4, + "locale": "nl", + "imagery": "AGIV", + "add-image": 5, + "change_over_5000m": 8, + "change_within_5000m": 6 + }, + "id": 121306907 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-23.json b/Docs/Tools/stats/stats.2022-5-23.json new file mode 100644 index 0000000000..cfb9d27c92 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-23.json @@ -0,0 +1,1136 @@ +{ + "features": [ + { + "id": 121392001, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2352805, + 50.7351815 + ], + [ + 4.2358945, + 50.7351815 + ], + [ + 4.2358945, + 50.7358029 + ], + [ + 4.2352805, + 50.7358029 + ], + [ + 4.2352805, + 50.7351815 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9765595739", + "name": "9 Levens", + "osm_id": 9765595739, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "shop": "Books" + } + } + ], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-23T22:11:36Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "Books", + "baby_goods" + ] + }, + "create": 1, + "modify": 2, + "delete": 1, + "area": 3.81539599999792e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/5713813873": "shop_closed" + }, + "id": 121392001 + } + }, + { + "id": 121385909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3918154, + 50.8376257 + ], + [ + 4.4356963, + 50.8376257 + ], + [ + 4.4356963, + 50.8526747 + ], + [ + 4.3918154, + 50.8526747 + ], + [ + 4.3918154, + 50.8376257 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T18:55:20Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xxKeeI8.jpg" + ], + "amenity": [ + "bicycle_parking" + ], + "leisure": [ + "park" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000660363664100215, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 121385909 + } + }, + { + "id": 121384724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6083824, + 37.1717355 + ], + [ + -3.6062007, + 37.1717355 + ], + [ + -3.6062007, + 37.1725831 + ], + [ + -3.6083824, + 37.1725831 + ], + [ + -3.6083824, + 37.1717355 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-23T18:25:36Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary" + ], + "name:etymology:wikidata": [ + "Q443403" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000184920892000033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 121384724 + } + }, + { + "id": 121383029, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.721699, + 51.0268317 + ], + [ + 3.7218979, + 51.0268317 + ], + [ + 3.7218979, + 51.0269374 + ], + [ + 3.721699, + 51.0269374 + ], + [ + 3.721699, + 51.0268317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T17:48:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/bkv8RSR.jpg" + ], + "amenity": [ + "fast_food" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10237299997767e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 121383029 + } + }, + { + "id": 121371568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4802162, + -34.5087352 + ], + [ + -58.4801737, + -34.5087352 + ], + [ + -58.4801737, + -34.5087156 + ], + [ + -58.4802162, + -34.5087156 + ], + [ + -58.4802162, + -34.5087352 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T14:01:52Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "level_crossing" + ], + "supervised": [ + "yes" + ], + "crossing:saltire": [ + "yes" + ], + "crossing:activation": [ + "automatic" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 8.3299999975503e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 8 + }, + "id": 121371568 + } + }, + { + "id": 121369283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1416751, + 50.89331 + ], + [ + 4.1476815, + 50.89331 + ], + [ + 4.1476815, + 50.8962939 + ], + [ + 4.1416751, + 50.8962939 + ], + [ + 4.1416751, + 50.89331 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T13:12:22Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "shed", + "yes", + "garage", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1885933", + "Gbg/6345501", + "Gbg/1885896", + "Gbg/1885885", + "Gbg/1885869", + "Gbg/1885863", + "Gbg/1885855", + "Gbg/6723315", + "Gbg/1885834", + "Gbg/1885829", + "Gbg/1885825", + "Gbg/5608664", + "Gbg/6345500", + "Gbg/6345499", + "Gbg/1885978", + "Gbg/1885990", + "Gbg/1886001", + "Gbg/1886011", + "Gbg/1886025", + "Gbg/1886034", + "Gbg/1886046", + "Gbg/1886056", + "Gbg/1885874", + "Gbg/1885912" + ], + "source:geometry:date": [ + "2010-06-11", + "2018-05-14", + "2021-07-29", + "2015-08-12" + ] + }, + "create": 1335, + "modify": 142, + "delete": 2, + "area": 0.0000179224969600241, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 130, + "theme": "grb", + "answer": 2, + "delete": 2, + "import": 182, + "locale": "en", + "imagery": "AGIV", + "conflation": 48 + }, + "id": 121369283 + } + }, + { + "id": 121365723, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6014409, + 51.1471348 + ], + [ + 5.6014409, + 51.1471348 + ], + [ + 5.6014409, + 51.1471348 + ], + [ + 5.6014409, + 51.1471348 + ], + [ + 5.6014409, + 51.1471348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FW28", + "uid": "16061422", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T11:56:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 5 + }, + "id": 121365723 + } + }, + { + "id": 121359961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3904106, + 50.7868258 + ], + [ + 5.4155563, + 50.7868258 + ], + [ + 5.4155563, + 50.7924624 + ], + [ + 5.3904106, + 50.7924624 + ], + [ + 5.3904106, + 50.7868258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T10:05:19Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "car" + ], + "amenity": [ + "parking" + ], + "building": [ + "detached", + "house", + "farm", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/4054022", + "Gbg/4054015", + "Gbg/5603354", + "Gbg/4054017", + "Gbg/6605847", + "Gbg/4054329", + "Gbg/4054330", + "Gbg/6605843" + ], + "source:geometry:date": [ + "2013-01-18", + "2016-06-14", + "2019-03-04", + "2020-10-21" + ] + }, + "create": 1087, + "modify": 90, + "delete": 0, + "area": 0.000141736252619887, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 84, + "theme": "grb", + "import": 140, + "locale": "nl", + "imagery": "AGIV", + "conflation": 16, + "change_over_5000m": 66 + }, + "id": 121359961 + } + }, + { + "id": 121354132, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2840876, + 51.1108327 + ], + [ + 3.2841054, + 51.1108327 + ], + [ + 3.2841054, + 51.1109236 + ], + [ + 3.2840876, + 51.1109236 + ], + [ + 3.2840876, + 51.1108327 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T08:11:54Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/PNmxxHS.jpg" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.6180199999531e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3 + }, + "id": 121354132 + } + }, + { + "id": 121352814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3963045, + 50.791227 + ], + [ + 5.4014939, + 50.791227 + ], + [ + 5.4014939, + 50.7950311 + ], + [ + 5.3963045, + 50.7950311 + ], + [ + 5.3963045, + 50.791227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T07:49:53Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "garage", + "shed", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4054340", + "Gbg/4054486", + "Gbg/4054488" + ], + "source:geometry:date": [ + "2013-01-18", + "2013-04-15" + ] + }, + "create": 585, + "modify": 19, + "delete": 0, + "area": 0.0000197409965400179, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 16, + "theme": "grb", + "import": 75, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 121352814 + } + }, + { + "id": 121352705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.278106, + 51.1025116 + ], + [ + 3.3148448, + 51.1025116 + ], + [ + 3.3148448, + 51.1191878 + ], + [ + 3.278106, + 51.1191878 + ], + [ + 3.278106, + 51.1025116 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T07:48:24Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "hiking", + "foot" + ], + "survey:date": [ + "2022-05-21", + "2021-02-21", + "2022-01-22", + "2021-10-02", + "2020-11-15", + "2020-11-23", + "2020-11-22" + ] + }, + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000612663576559964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 21, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 21 + }, + "id": 121352705 + } + }, + { + "id": 121352599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3987226, + 50.7921843 + ], + [ + 5.4007316, + 50.7921843 + ], + [ + 5.4007316, + 50.7933438 + ], + [ + 5.3987226, + 50.7933438 + ], + [ + 5.3987226, + 50.7921843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T07:46:57Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ] + }, + "create": 181, + "modify": 0, + "delete": 0, + "area": 0.00000232943550000013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121352599 + } + }, + { + "id": 121352312, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0033394, + 51.1249236 + ], + [ + 5.0050642, + 51.1249236 + ], + [ + 5.0050642, + 51.1251606 + ], + [ + 5.0033394, + 51.1251606 + ], + [ + 5.0033394, + 51.1249236 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-23T07:43:01Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9Akaeya.jpg", + "https://i.imgur.com/h3xnTIb.jpg" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "material": [ + "wood" + ], + "direction": [ + "158" + ], + "survey:date": [ + "2022-05-22" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.0877759999736e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 121352312 + } + }, + { + "id": 121347641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6425134, + 52.0112151 + ], + [ + 14.6542087, + 52.0112151 + ], + [ + 14.6542087, + 52.0188356 + ], + [ + 14.6425134, + 52.0188356 + ], + [ + 14.6425134, + 52.0112151 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PaulSembten", + "uid": "13999064", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-23T06:02:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000891240336500149, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121347641 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-24.json b/Docs/Tools/stats/stats.2022-5-24.json new file mode 100644 index 0000000000..cd9ffd7ab4 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-24.json @@ -0,0 +1,1536 @@ +{ + "features": [ + { + "id": 121446476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 19.9340122, + 60.0983841 + ], + [ + 19.9386358, + 60.0983841 + ], + [ + 19.9386358, + 60.0998745 + ], + [ + 19.9340122, + 60.0998745 + ], + [ + 19.9340122, + 60.0983841 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Walkingmage", + "uid": "124870", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T21:47:11Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes", + "no" + ], + "highway": [ + "path", + "footway", + "cycleway" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000689101344000514, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 121446476 + } + }, + { + "id": 121431456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.736217, + 53.1458223 + ], + [ + 6.7693697, + 53.1458223 + ], + [ + 6.7693697, + 53.1638418 + ], + [ + 6.736217, + 53.1638418 + ], + [ + 6.736217, + 53.1458223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-24T15:39:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "library", + "school" + ], + "highway": [ + "unclassified", + "primary", + "residential", + "cycleway", + "path", + "service", + "tertiary", + "secondary", + "footway" + ], + "building": [ + "school" + ], + "name:etymology:wikidata": [ + "Q463478", + "Q13894", + "Q320014", + "Q45095", + "Q146149", + "Q14169641", + "Q951705", + "Q254", + "Q7349", + "Q1511", + "Q7312", + "Q7317", + "Q1268", + "Q123829", + "Q7294", + "Q156907", + "Q127849", + "Q25239", + "Q81666", + "Q42292", + "Q124969", + "Q25243", + "Q182509", + "Q380970", + "Q358629", + "Q560714", + "Q319", + "Q308", + "Q193", + "Q1917464", + "Q9256", + "Q13029", + "Q944997", + "Q10914484", + "Q332", + "Q111", + "Q10478", + "Q3030", + "Q239522", + "Q1932984", + "Q3409", + "Q10580", + "Q313", + "Q324", + "Q782615", + "Q380956", + "Q1339", + "Q3002", + "Q129324", + "Q8865", + "Q469652", + "Q920312", + "Q10413", + "Q2158218", + "Q255", + "Q1673766", + "Q1375304", + "Q1375186", + "Q46151", + "Q2384352", + "Q154211", + "Q43499", + "Q127348", + "Q78454", + "Q13008", + "Q8866", + "Q10406", + "Q3427", + "Q8918", + "Q10535", + "Q131113", + "Q780144", + "Q2574405", + "Q560649", + "Q194654", + "Q1375247", + "Q33036816" + ] + }, + "create": 0, + "modify": 239, + "delete": 0, + "area": 0.000597395077650048, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 320, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 320 + }, + "id": 121431456 + } + }, + { + "id": 121429294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6049926, + 50.7441724 + ], + [ + 4.3078879, + 50.7441724 + ], + [ + 4.3078879, + 50.8389149 + ], + [ + 3.6049926, + 50.8389149 + ], + [ + 3.6049926, + 50.7441724 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-24T14:57:51Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "capacity": [ + "6" + ], + "motorcar": [ + "yes" + ], + "payment:app": [ + "no" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "2", + "1" + ], + "socket:typee": [ + "6" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "no" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0665940579602517, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 10, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 4, + "change_within_500m": 1, + "change_within_5000m": 5 + }, + "id": 121429294 + } + }, + { + "id": 121428525, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3602318, + 50.8125745 + ], + [ + 4.3602318, + 50.8125745 + ], + [ + 4.3602318, + 50.8125745 + ], + [ + 4.3602318, + 50.8125745 + ], + [ + 4.3602318, + 50.8125745 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LivingwithLulu", + "uid": "16075299", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T14:43:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121428525 + } + }, + { + "id": 121427908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1118555, + 50.7952225 + ], + [ + 4.1178046, + 50.7952225 + ], + [ + 4.1178046, + 50.7995312 + ], + [ + 4.1118555, + 50.7995312 + ], + [ + 4.1118555, + 50.7952225 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T14:31:35Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "rental": [ + "city_bike" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000256328871699767, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121427908 + } + }, + { + "id": 121420964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4137481, + 50.9064885 + ], + [ + 5.4195734, + 50.9064885 + ], + [ + 5.4195734, + 50.9101345 + ], + [ + 5.4137481, + 50.9101345 + ], + [ + 5.4137481, + 50.9064885 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-749185072", + "osm_id": 749185072, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "building": "government" + } + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T12:14:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "library", + "community_centre", + "dentist" + ], + "highway": [ + "pedestrian" + ], + "building": [ + "house", + "apartments", + "yes", + "shed", + "government", + "roof" + ], + "addr:street": [ + "Servaasplein", + "Dr.J.Grouwelsstraat", + "Poststraat", + "Nanofstraat" + ], + "addr:housenumber": [ + "24", + "12A", + "39", + "22" + ], + "source:geometry:ref": [ + "Gbg/4708882", + "Gbg/2335205", + "Gbg/2335204", + "Gbg/2335203", + "Gbg/2335200", + "Gbg/2335199", + "Gbg/4708975", + "Gbg/2335201", + "Gbg/5836297", + "Gbg/5739948", + "Gbg/4708889", + "Gbg/5739950", + "Gbg/5835868", + "Gbg/2335215", + "Gbg/2335772", + "Gbg/4709509", + "Gbg/4709511", + "Gbg/4709653", + "Gbg/2335383", + "Gbg/2335747", + "Gbg/2335739", + "Gbg/2335738", + "Gbg/2338615", + "Gbg/4708874", + "Gbg/2335787", + "Gbg/5290350", + "Gbg/5289950", + "Gbg/3174703", + "Gbg/3174704", + "Gbg/3174705", + "Gbg/3174706", + "Gbg/4709675", + "Gbg/4709643", + "Gbg/4709635", + "Gbg/3174708", + "Gbg/2335788", + "Gbg/2335790", + "Gbg/2335216", + "Gbg/2335405", + "Gbg/2335406", + "Gbg/5740021", + "Gbg/2335735", + "Gbg/2335771", + "Gbg/4709603", + "Gba/372596", + "Gbg/5290349", + "Gbg/5290369", + "Gbg/5289951", + "Gbg/2335768", + "Gbg/2335394", + "Gbg/6451130", + "Gbg/2338754", + "Gbg/4709487", + "Gbg/4709573", + "Gbg/4709590", + "Gbg/4709303", + "Gbg/4709414", + "Gbg/2335197", + "Gbg/2335195", + "Gbg/2335196", + "Gbg/4709374", + "Gbg/2335791", + "Gbg/2335194", + "Gbg/2335192", + "Gbg/2335193", + "Gbg/2335191", + "Gbg/2335189", + "Gbg/2335190", + "Gbg/2335734", + "Gbg/4709668", + "Gbg/4709608", + "Gbg/4709679", + "Gbg/4709662", + "Gbg/4709078", + "Gbg/2335184", + "Gbg/5290011", + "Gbg/4709670" + ], + "source:geometry:date": [ + "2017-05-22", + "2017-01-30", + "2010-01-25", + "2015-08-25", + "2014-05-27", + "2016-11-09", + "2019-07-05", + "2018-08-07", + "2010-05-10" + ] + }, + "create": 413, + "modify": 699, + "delete": 19, + "area": 0.0000212390437999771, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 634, + "theme": "grb", + "delete": 19, + "import": 78, + "locale": "nl", + "imagery": "osm", + "conflation": 154 + }, + "id": 121420964 + } + }, + { + "id": 121420899, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4175587, + 50.9069572 + ], + [ + 5.418769, + 50.9069572 + ], + [ + 5.418769, + 50.9075377 + ], + [ + 5.4175587, + 50.9075377 + ], + [ + 5.4175587, + 50.9069572 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T12:13:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "library", + "community_centre" + ], + "building": [ + "yes", + "house" + ], + "source:geometry:ref": [ + "Gbg/5835861" + ], + "source:geometry:date": [ + "2018-08-07" + ] + }, + "create": 11, + "modify": 14, + "delete": 1, + "area": 7.02579149997888e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 13, + "theme": "grb", + "delete": 1, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 121420899 + } + }, + { + "id": 121420579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4007276, + 50.8911054 + ], + [ + 3.4621538, + 50.8911054 + ], + [ + 3.4621538, + 50.9382694 + ], + [ + 3.4007276, + 50.9382694 + ], + [ + 3.4007276, + 50.8911054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GertjanReynaert", + "uid": "15664631", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T12:08:26Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "phone": [ + "+32 56 60 22 70", + "+32 9 281 00 41" + ], + "amenity": [ + "bicycle_repair_station" + ], + "website": [ + "https://fietsenminne.be" + ], + "opening_hours": [ + "Mo 13:30-18:30; Tu-We 08:30-12:00, 13:30-18:30; Fr 08:30-12:00, 13:30-18:30; Sa 08:30-12:00, 13:30-16:00" + ], + "service:bicycle:repair": [ + "yes" + ], + "service:bicycle:retail": [ + "yes" + ], + "service:bicycle:second_hand": [ + "yes" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00289710529680012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "move": 1, + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/9688724314": "improve_accuracy" + }, + "id": 121420579 + } + }, + { + "id": 121420125, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4159968, + 50.9073577 + ], + [ + 5.4194592, + 50.9073577 + ], + [ + 5.4194592, + 50.909399 + ], + [ + 5.4159968, + 50.909399 + ], + [ + 5.4159968, + 50.9073577 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T12:01:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "library" + ], + "building": [ + "warehouse", + "yes", + "apartments", + "house", + "terrace", + "roof" + ], + "source:geometry:ref": [ + "Gbg/2335198", + "Gbg/2335758", + "Gbg/2335214", + "Gbg/4709379", + "Gbg/2335778", + "Gbg/2335970", + "Gbg/2335776", + "Gbg/2335775", + "Gbg/4709201", + "Gbg/5289933", + "Gbg/2335736", + "Gbg/2336356", + "Gbg/2335737", + "Gbg/2335217", + "Gbg/4708986", + "Gbg/4709686", + "Gbg/4709098", + "Gbg/2335222", + "Gbg/4708922", + "Gbg/2336364", + "Gbg/2335784", + "Gbg/2335780", + "Gbg/2335781", + "Gbg/2335779", + "Gbg/3174712", + "Gba/480868", + "Gbg/4708905", + "Gbg/4708918", + "Gbg/3174715", + "Gbg/3174713", + "Gbg/2335760", + "Gbg/2335761", + "GRB", + "Gbg/2335762", + "Gbg/2335764", + "Gbg/2335763", + "Gbg/2335765", + "Gbg/4709014", + "Gbg/4709604", + "Gbg/4709617" + ], + "source:geometry:date": [ + "2016-11-09", + "2010-01-25", + "2014-05-27", + "2015-08-25", + "2017-01-30", + "2012-03-14", + "2022-05-22" + ] + }, + "create": 134, + "modify": 381, + "delete": 5, + "area": 0.0000070677971200068, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 349, + "theme": "grb", + "delete": 5, + "import": 24, + "locale": "nl", + "imagery": "osm", + "conflation": 80 + }, + "id": 121420125 + } + }, + { + "id": 121418878, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4149821, + 50.9077824 + ], + [ + 5.4252713, + 50.9077824 + ], + [ + 5.4252713, + 50.9112624 + ], + [ + 5.4149821, + 50.9112624 + ], + [ + 5.4149821, + 50.9077824 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T11:38:22Z", + "reviewed_features": [], + "tag_changes": { + "power": [ + "substation" + ], + "highway": [ + "service" + ], + "building": [ + "apartments", + "house", + "yes", + "garage", + "dormitory", + "roof" + ], + "addr:street": [ + "Spoorstraat" + ], + "addr:housenumber": [ + "11" + ], + "source:geometry:ref": [ + "Gbg/2335570", + "Gbg/2335377", + "Gbg/4708907", + "Gbg/5835877", + "Gbg/2335947", + "Gbg/2335381", + "Gbg/2335380", + "Gbg/2335376", + "Gbg/4513070", + "Gbg/2335375", + "Gbg/2335374", + "Gbg/4709080", + "Gbg/2335364", + "Gbg/2335362", + "Gbg/2335350", + "Gbg/3174716", + "Gbg/2335944", + "Gbg/5836127", + "Gbg/2335367", + "Gbg/2335369", + "Gbg/2335370", + "Gbg/2335371", + "Gbg/5835958", + "Gbg/4708990", + "Gbg/5740015", + "Gbg/5836279", + "Gbg/5836276", + "Gbg/5740012", + "Gbg/5836282", + "Gbg/5740010", + "Gbg/5740009", + "Gbg/5836277", + "Gbg/5740017", + "Gbg/5740016", + "Gbg/2335901", + "Gbg/6715623", + "Gbg/6780785", + "Gbg/6780786", + "Gbg/6715625", + "Gbg/6931516", + "Gbg/2335946", + "Gbg/2335773", + "Gbg/2338758", + "Gbg/2338731", + "Gbg/2338658", + "Gba/170832", + "Gbg/2335379", + "Gbg/2335711" + ], + "source:geometry:date": [ + "2014-05-27", + "2010-01-25", + "2017-01-30", + "2015-08-25", + "2020-04-30", + "2018-08-07", + "2020-02-25", + "2021-10-07", + "2021-04-20", + "2010-05-10" + ] + }, + "create": 370, + "modify": 499, + "delete": 4, + "area": 0.0000358064159999631, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 470, + "theme": "grb", + "delete": 4, + "import": 66, + "locale": "nl", + "imagery": "osm", + "conflation": 96 + }, + "id": 121418878 + } + }, + { + "id": 121418036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8626318, + 51.1799077 + ], + [ + 4.8634312, + 51.1799077 + ], + [ + 4.8634312, + 51.18033 + ], + [ + 4.8626318, + 51.18033 + ], + [ + 4.8626318, + 51.1799077 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T11:18:34Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ] + }, + "create": 55, + "modify": 0, + "delete": 0, + "area": 3.37586619997418e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 121418036 + } + }, + { + "id": 121417526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9023028, + 50.2369649 + ], + [ + 4.9054381, + 50.2369649 + ], + [ + 4.9054381, + 50.2387152 + ], + [ + 4.9023028, + 50.2387152 + ], + [ + 4.9023028, + 50.2369649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-24T11:07:27Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "school", + "yes" + ], + "source:geometry:ref": [ + "Picc/1002662", + "Picc/575159" + ], + "source:geometry:date": [ + "2016-06-24" + ] + }, + "create": 401, + "modify": 24, + "delete": 0, + "area": 0.00000548771559001386, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 22, + "theme": "grb", + "import": 12, + "locale": "en", + "imagery": "osm", + "conflation": 4, + "change_over_5000m": 12 + }, + "id": 121417526 + } + }, + { + "id": 121415391, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6693115, + 50.5641607 + ], + [ + 4.7033152, + 50.5641607 + ], + [ + 4.7033152, + 50.5716721 + ], + [ + 4.6693115, + 50.5716721 + ], + [ + 4.6693115, + 50.5641607 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T10:21:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jAvBOjp.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.000255415392179946, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 13, + "create": 3, + "locale": "en", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1 + }, + "id": 121415391 + } + }, + { + "id": 121409434, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6874687, + 50.557346 + ], + [ + 4.6987581, + 50.557346 + ], + [ + 4.6987581, + 50.5726865 + ], + [ + 4.6874687, + 50.5726865 + ], + [ + 4.6874687, + 50.557346 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T08:34:36Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 10, + "modify": 15, + "delete": 0, + "area": 0.000173185040700006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 38, + "create": 10, + "locale": "en", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1 + }, + "id": 121409434 + } + }, + { + "id": 121395081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.2122024, + 37.8117886 + ], + [ + -122.212202, + 37.8117886 + ], + [ + -122.212202, + 37.8117886 + ], + [ + -122.2122024, + 37.8117886 + ], + [ + -122.2122024, + 37.8117886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jabrad0", + "uid": "2426778", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-24T01:31:07Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121395081 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-25.json b/Docs/Tools/stats/stats.2022-5-25.json new file mode 100644 index 0000000000..4730255a1f --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-25.json @@ -0,0 +1,742 @@ +{ + "features": [ + { + "id": 121491888, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -46.6898366, + -23.5327703 + ], + [ + -46.6896214, + -23.5327703 + ], + [ + -46.6896214, + -23.5327365 + ], + [ + -46.6898366, + -23.5327365 + ], + [ + -46.6898366, + -23.5327703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "homeroff", + "uid": "445668", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-25T20:19:10Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 7.27376000012149e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121491888 + } + }, + { + "id": 121491116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -49.2326157, + -25.4592628 + ], + [ + -49.2326157, + -25.4592628 + ], + [ + -49.2326157, + -25.4592628 + ], + [ + -49.2326157, + -25.4592628 + ], + [ + -49.2326157, + -25.4592628 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kauê de Moraes Vestena", + "uid": "2052228", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-25T19:55:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "veterinary" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121491116 + } + }, + { + "id": 121491040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -49.2312813, + -25.4613879 + ], + [ + -49.2312813, + -25.4613879 + ], + [ + -49.2312813, + -25.4613879 + ], + [ + -49.2312813, + -25.4613879 + ], + [ + -49.2312813, + -25.4613879 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kauê de Moraes Vestena", + "uid": "2052228", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-25T19:53:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_disposal" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121491040 + } + }, + { + "id": 121490689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -49.2313738, + -25.4612081 + ], + [ + -49.2313168, + -25.4612081 + ], + [ + -49.2313168, + -25.4611966 + ], + [ + -49.2313738, + -25.4611966 + ], + [ + -49.2313738, + -25.4612081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kauê de Moraes Vestena", + "uid": "2052228", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-25T19:40:21Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.55499999944329e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121490689 + } + }, + { + "id": 121485997, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3906636, + 51.0715768 + ], + [ + 3.3906636, + 51.0715768 + ], + [ + 3.3906636, + 51.0715768 + ], + [ + 3.3906636, + 51.0715768 + ], + [ + 3.3906636, + 51.0715768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-25T17:23:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "id": 121485997 + } + }, + { + "id": 121485747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-25T17:15:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "id": 121485747 + } + }, + { + "id": 121479693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7530381, + 50.8628307 + ], + [ + 3.7530381, + 50.8628307 + ], + [ + 3.7530381, + 50.8628307 + ], + [ + 3.7530381, + 50.8628307 + ], + [ + 3.7530381, + 50.8628307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BBO1", + "uid": "6159261", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-25T14:47:10Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "4" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "houtpaletten" + ], + "direction": [ + "59" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121479693 + } + }, + { + "id": 121478703, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7106243, + 51.0332678 + ], + [ + 3.7107396, + 51.0332678 + ], + [ + 3.7107396, + 51.0337907 + ], + [ + 3.7106243, + 51.0337907 + ], + [ + 3.7106243, + 51.0332678 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-25T14:23:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 6.02903700000203e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 121478703 + } + }, + { + "id": 121472054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1957978, + 48.6772682 + ], + [ + 9.1957978, + 48.6772682 + ], + [ + 9.1957978, + 48.6772682 + ], + [ + 9.1957978, + 48.6772682 + ], + [ + 9.1957978, + 48.6772682 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-25T11:51:02Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/dEpfVBs.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 3 + }, + "id": 121472054 + } + }, + { + "id": 121459068, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9773688, + 51.1091876 + ], + [ + 4.9773688, + 51.1091876 + ], + [ + 4.9773688, + 51.1091876 + ], + [ + 4.9773688, + 51.1091876 + ], + [ + 4.9773688, + 51.1091876 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-25T07:05:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/CwoOjPt.jpg" + ], + "colour": [ + "black" + ], + "amenity": [ + "bench" + ], + "direction": [ + "330" + ], + "survey:date": [ + "2022-05-25" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 121459068 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-26.json b/Docs/Tools/stats/stats.2022-5-26.json new file mode 100644 index 0000000000..86d17c6d0d --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-26.json @@ -0,0 +1,2181 @@ +{ + "features": [ + { + "id": 121546262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1006019, + 51.1113613 + ], + [ + 5.1078293, + 51.1113613 + ], + [ + 5.1078293, + 51.1129348 + ], + [ + 5.1006019, + 51.1129348 + ], + [ + 5.1006019, + 51.1113613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T21:20:12Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "farm", + "farm_auxiliary", + "yes", + "roof" + ], + "addr:street": [ + "Vennestraat" + ], + "addr:housenumber": [ + "7" + ], + "source:geometry:ref": [ + "Gbg/1038513", + "Gbg/1037644", + "Gbg/1037838", + "Gbg/1038512", + "Gbg/5774612", + "Gbg/1038404", + "Gbg/1039170", + "Gbg/1038612", + "Gbg/1037992", + "Gbg/1037990", + "Gbg/1038889", + "Gbg/6454782", + "Gbg/1038888", + "Gbg/5773024", + "Gbg/6455524", + "Gbg/1037836", + "Gbg/1039186", + "Gbg/1038357", + "Gbg/5773318" + ], + "source:geometry:date": [ + "2015-07-13", + "2009-03-02", + "2016-11-21", + "2018-08-29", + "2020-04-20", + "2020-09-28" + ] + }, + "create": 39, + "modify": 178, + "delete": 2, + "area": 0.0000113723138999939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 161, + "theme": "grb", + "delete": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 38 + }, + "id": 121546262 + } + }, + { + "id": 121542290, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1901383, + 50.8398813 + ], + [ + 3.1937378, + 50.8398813 + ], + [ + 3.1937378, + 50.8411756 + ], + [ + 3.1901383, + 50.8411756 + ], + [ + 3.1901383, + 50.8398813 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-26T19:14:38Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/DmsBtCX.jpg", + "https://i.imgur.com/s6uZtIp.jpg" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000465883284999227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 121542290 + } + }, + { + "id": 121539596, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3984885, + 52.5316204 + ], + [ + 13.3984885, + 52.5316204 + ], + [ + 13.3984885, + 52.5316204 + ], + [ + 13.3984885, + 52.5316204 + ], + [ + 13.3984885, + 52.5316204 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-26T18:04:06Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "hackerspace" + ], + "hackerspace": [ + "makerspace" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hackerspaces.html", + "theme": "hackerspaces", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 121539596 + } + }, + { + "id": 121538549, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.8649321, + 9.5103999 + ], + [ + 80.2664784, + 9.5103999 + ], + [ + 80.2664784, + 13.138441 + ], + [ + 76.8649321, + 13.138441 + ], + [ + 76.8649321, + 9.5103999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-837717490", + "name": "Tiruvalluvar Street", + "osm_id": 837717490, + "reasons": [ + 87 + ], + "version": 4, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-837717489", + "name": "Tiruvalluvar Street", + "osm_id": 837717489, + "reasons": [ + 87 + ], + "version": 2, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-26480972", + "name": "Tiruvalluvar Street", + "osm_id": 26480972, + "reasons": [ + 87 + ], + "version": 11, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-26480973", + "name": "Kamarajar Salai", + "osm_id": 26480973, + "reasons": [ + 87 + ], + "version": 15, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-26T17:35:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "college", + "school", + "university" + ], + "highway": [ + "tertiary", + "unclassified", + "living_street", + "residential", + "secondary", + "primary", + "road", + "service", + "trunk" + ], + "leisure": [ + "stadium", + "park" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q522048", + "Q2353373", + "Q1535227", + "Q231690", + "Q1001", + "Q156349", + "Q1047", + "Q464318", + "Q888293", + "Q7809411", + "Q2153", + "Q3411606", + "Q492527" + ] + }, + "create": 0, + "modify": 106, + "delete": 0, + "area": 12.3409497799529, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 131, + "locale": "en", + "imagery": "osm" + }, + "id": 121538549 + } + }, + { + "id": 121536762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T16:49:45Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "yes" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "create": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 121536762 + } + }, + { + "id": 121536619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3803311, + 43.6559703 + ], + [ + 1.3803848, + 43.6559703 + ], + [ + 1.3803848, + 43.6561333 + ], + [ + 1.3803311, + 43.6561333 + ], + [ + 1.3803311, + 43.6559703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T16:46:30Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.75310000003851e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 121536619 + } + }, + { + "id": 121536484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3801514, + 43.6559538 + ], + [ + 1.3803224, + 43.6559538 + ], + [ + 1.3803224, + 43.6562046 + ], + [ + 1.3801514, + 43.6562046 + ], + [ + 1.3801514, + 43.6559538 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T16:43:40Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 4.28868000006237e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "id": 121536484 + } + }, + { + "id": 121536427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3805373, + 43.6554633 + ], + [ + 1.380771, + 43.6554633 + ], + [ + 1.380771, + 43.6560085 + ], + [ + 1.3805373, + 43.6560085 + ], + [ + 1.3805373, + 43.6554633 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T16:42:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.27413239999402e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_100m": 4, + "move:node/4374375909": "improve_accuracy" + }, + "id": 121536427 + } + }, + { + "id": 121534586, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0353372, + 51.1117575 + ], + [ + 5.1155488, + 51.1117575 + ], + [ + 5.1155488, + 51.1310172 + ], + [ + 5.0353372, + 51.1310172 + ], + [ + 5.0353372, + 51.1117575 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T16:03:12Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UWhuPJg.jpg" + ], + "colour": [ + "gray" + ], + "amenity": [ + "bench", + "toilets" + ], + "backrest": [ + "yes" + ], + "material": [ + "concrete" + ], + "direction": [ + "308", + "167" + ], + "survey:date": [ + "2022-05-26", + "2020-05-06 12:26:57.139008" + ] + }, + "create": 2, + "modify": 11, + "delete": 0, + "area": 0.00154485135251994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 19, + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "move:node/9677061297": "improve_accuracy", + "move:node/9677061338": "improve_accuracy", + "import:node/9773056032": "source: https://osm.org/note/3143560" + }, + "id": 121534586 + } + }, + { + "id": 121533236, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-26T15:37:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/index.html", + "theme": "bookcases", + "locale": "fr", + "add-image": 1 + }, + "id": 121533236 + } + }, + { + "id": 121532256, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.975936, + 49.8462657 + ], + [ + 4.975936, + 49.8462657 + ], + [ + 4.975936, + 49.8462657 + ], + [ + 4.975936, + 49.8462657 + ], + [ + 4.975936, + 49.8462657 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T15:18:49Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "caravan_site" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 121532256 + } + }, + { + "id": 121531215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3794269, + 43.6554745 + ], + [ + 1.3798785, + 43.6554745 + ], + [ + 1.3798785, + 43.6557292 + ], + [ + 1.3794269, + 43.6557292 + ], + [ + 1.3794269, + 43.6554745 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T14:59:44Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 1.15022520002909e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 2, + "move:node/9772878554": "improve_accuracy" + }, + "id": 121531215 + } + }, + { + "id": 121530935, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3795245, + 43.6554725 + ], + [ + 1.3799965, + 43.6554725 + ], + [ + 1.3799965, + 43.6556511 + ], + [ + 1.3795245, + 43.6556511 + ], + [ + 1.3795245, + 43.6554725 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T14:54:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 8.42991999991277e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "id": 121530935 + } + }, + { + "id": 121530792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3812357, + 43.6556947 + ], + [ + 1.3813484, + 43.6556947 + ], + [ + 1.3813484, + 43.6559897 + ], + [ + 1.3812357, + 43.6559897 + ], + [ + 1.3812357, + 43.6556947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T14:52:26Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.32465000001653e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_50m": 1, + "change_within_100m": 1 + }, + "id": 121530792 + } + }, + { + "id": 121530415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3802004, + 43.6553677 + ], + [ + 1.3802004, + 43.6553677 + ], + [ + 1.3802004, + 43.6553677 + ], + [ + 1.3802004, + 43.6553677 + ], + [ + 1.3802004, + 43.6553677 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T14:46:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121530415 + } + }, + { + "id": 121529765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3465029, + 52.5230288 + ], + [ + 13.3469221, + 52.5230288 + ], + [ + 13.3469221, + 52.5234786 + ], + [ + 13.3465029, + 52.5234786 + ], + [ + 13.3465029, + 52.5230288 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-26T14:36:06Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "entrance": [ + "main", + "yes", + "secondary" + ], + "automatic_door": [ + "no" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.88556159999154e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "id": 121529765 + } + }, + { + "id": 121528477, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3538071, + 48.8798823 + ], + [ + 2.3568919, + 48.8798823 + ], + [ + 2.3568919, + 48.8819557 + ], + [ + 2.3538071, + 48.8819557 + ], + [ + 2.3538071, + 48.8798823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T14:16:28Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "train_station" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000639602432000115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 4 + }, + "id": 121528477 + } + }, + { + "id": 121526458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9879452, + 51.3611379 + ], + [ + 4.9879452, + 51.3611379 + ], + [ + 4.9879452, + 51.3611379 + ], + [ + 4.9879452, + 51.3611379 + ], + [ + 4.9879452, + 51.3611379 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T13:33:34Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 121526458 + } + }, + { + "id": 121526004, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9651826, + 51.356967 + ], + [ + 4.9880257, + 51.356967 + ], + [ + 4.9880257, + 51.3611274 + ], + [ + 4.9651826, + 51.3611274 + ], + [ + 4.9651826, + 51.356967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T13:26:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000950364332400773, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "import:node/9772722990": "source: https://osm.org/note/3143438", + "import:node/9772727020": "source: https://osm.org/note/3143527" + }, + "id": 121526004 + } + }, + { + "id": 121521094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3923723, + 43.6634561 + ], + [ + 1.3930549, + 43.6634561 + ], + [ + 1.3930549, + 43.6639368 + ], + [ + 1.3923723, + 43.6639368 + ], + [ + 1.3923723, + 43.6634561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T12:04:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 4, + "modify": 1, + "delete": 0, + "area": 3.28125820002976e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 4 + }, + "id": 121521094 + } + }, + { + "id": 121518153, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3877642, + 43.6625611 + ], + [ + 1.3915273, + 43.6625611 + ], + [ + 1.3915273, + 43.6660924 + ], + [ + 1.3877642, + 43.6660924 + ], + [ + 1.3877642, + 43.6625611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T11:12:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ] + }, + "create": 9, + "modify": 3, + "delete": 0, + "area": 0.0000132886350299955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 11, + "create": 9, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 9, + "change_within_25m": 11 + }, + "id": 121518153 + } + }, + { + "id": 121516891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3910573, + 43.6653939 + ], + [ + 1.3912055, + 43.6653939 + ], + [ + 1.3912055, + 43.6655031 + ], + [ + 1.3910573, + 43.6655031 + ], + [ + 1.3910573, + 43.6653939 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T10:52:26Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.61834400006467e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 2, + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "fr.ign.bdortho", + "change_within_25m": 4, + "move:node/9236402773": "improve_accuracy", + "move:node/9236402774": "improve_accuracy" + }, + "id": 121516891 + } + }, + { + "id": 121516757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3911317, + 43.6656054 + ], + [ + 1.3911317, + 43.6656054 + ], + [ + 1.3911317, + 43.6656054 + ], + [ + 1.3911317, + 43.6656054 + ], + [ + 1.3911317, + 43.6656054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T10:49:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121516757 + } + }, + { + "id": 121516566, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-26T10:44:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 121516566 + } + }, + { + "id": 121516177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3929205, + 43.6636889 + ], + [ + 1.3929205, + 43.6636889 + ], + [ + 1.3929205, + 43.6636889 + ], + [ + 1.3929205, + 43.6636889 + ], + [ + 1.3929205, + 43.6636889 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T10:35:50Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 1, + "deletion:node/5559482055": "duplicate" + }, + "id": 121516177 + } + }, + { + "id": 121516104, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9947544, + 48.5019688 + ], + [ + 8.9950595, + 48.5019688 + ], + [ + 8.9950595, + 48.5024474 + ], + [ + 8.9947544, + 48.5024474 + ], + [ + 8.9947544, + 48.5019688 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T10:34:13Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "1" + ], + "light:colour": [ + "white" + ], + "light:method": [ + "LED" + ], + "light:direction": [ + "252" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.46020860000438e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 8 + }, + "id": 121516104 + } + }, + { + "id": 121515698, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3911358, + 43.6654337 + ], + [ + 1.3913114, + 43.6654337 + ], + [ + 1.3913114, + 43.6655972 + ], + [ + 1.3911358, + 43.6655972 + ], + [ + 1.3911358, + 43.6654337 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T10:25:47Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "lit": [ + "no" + ], + "image": [ + "https://i.imgur.com/zFq4D4m.jpg" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "surface": [ + "woodchips" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.87105999998707e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 121515698 + } + }, + { + "id": 121508615, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8940134, + 49.8826473 + ], + [ + 4.8940134, + 49.8826473 + ], + [ + 4.8940134, + 49.8826473 + ], + [ + 4.8940134, + 49.8826473 + ], + [ + 4.8940134, + 49.8826473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T08:12:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 121508615 + } + }, + { + "id": 121504630, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8497061, + 49.8960247 + ], + [ + 4.8497061, + 49.8960247 + ], + [ + 4.8497061, + 49.8960247 + ], + [ + 4.8497061, + 49.8960247 + ], + [ + 4.8497061, + 49.8960247 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-26T06:43:25Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121504630 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-27.json b/Docs/Tools/stats/stats.2022-5-27.json new file mode 100644 index 0000000000..09b2be0fd0 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-27.json @@ -0,0 +1,1758 @@ +{ + "features": [ + { + "id": 121595516, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.4910229, + 43.589965 + ], + [ + 1.4918261, + 43.589965 + ], + [ + 1.4918261, + 43.590555 + ], + [ + 1.4910229, + 43.590555 + ], + [ + 1.4910229, + 43.589965 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T22:34:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/R9EX6u3.jpg", + "https://i.imgur.com/G5lz3Pr.jpg" + ], + "access": [ + "public" + ], + "image:0": [ + "https://i.imgur.com/D93FCzc.jpg" + ], + "leisure": [ + "pitch" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.73888000002037e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "id": 121595516 + } + }, + { + "id": 121595067, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3800915, + 43.5894064 + ], + [ + 1.4914621, + 43.5894064 + ], + [ + 1.4914621, + 43.6561886 + ], + [ + 1.3800915, + 43.6561886 + ], + [ + 1.3800915, + 43.5894064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T22:08:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/PyOPcPa.jpg", + "https://i.imgur.com/rGTlJX9.jpg" + ], + "leisure": [ + "playground" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00743757368331984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 121595067 + } + }, + { + "id": 121594460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.241668, + -39.8295339 + ], + [ + -73.241668, + -39.8295339 + ], + [ + -73.241668, + -39.8295339 + ], + [ + -73.241668, + -39.8295339 + ], + [ + -73.241668, + -39.8295339 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T21:37:03Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121594460 + } + }, + { + "id": 121594410, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2420511, + -39.8294596 + ], + [ + -73.2420511, + -39.8294596 + ], + [ + -73.2420511, + -39.8294596 + ], + [ + -73.2420511, + -39.8294596 + ], + [ + -73.2420511, + -39.8294596 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T21:34:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xeq0Dhb.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 121594410 + } + }, + { + "id": 121585213, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7896861, + 50.87463 + ], + [ + 4.7896861, + 50.87463 + ], + [ + 4.7896861, + 50.87463 + ], + [ + 4.7896861, + 50.87463 + ], + [ + 4.7896861, + 50.87463 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T16:38:44Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121585213 + } + }, + { + "id": 121582081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7912353, + 49.8497599 + ], + [ + 5.7912353, + 49.8497599 + ], + [ + 5.7912353, + 49.8497599 + ], + [ + 5.7912353, + 49.8497599 + ], + [ + 5.7912353, + 49.8497599 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T15:21:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 121582081 + } + }, + { + "id": 121576635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1517694, + 48.6780261 + ], + [ + 2.1532149, + 48.6780261 + ], + [ + 2.1532149, + 48.6797994 + ], + [ + 2.1517694, + 48.6797994 + ], + [ + 2.1517694, + 48.6780261 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paulrbr", + "uid": "12447319", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T13:21:58Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "url": [ + "https://www.camptocamp.org/waypoints/102840/fr/viaduc-des-fauvettes" + ], + "rock": [ + "Gritstone" + ], + "image": [ + "https://i.imgur.com/vNozUQG.jpg" + ], + "access": [ + "yes" + ], + "building": [ + "yes" + ], + "climbing": [ + "crag" + ], + "man_made": [ + "bridge" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000256330515000508, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121576635 + } + }, + { + "id": 121576404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.447357, + 51.3886118 + ], + [ + 4.4747186, + 51.3886118 + ], + [ + 4.4747186, + 51.4084981 + ], + [ + 4.447357, + 51.4084981 + ], + [ + 4.447357, + 51.3886118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tissie", + "uid": "11544291", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T13:16:36Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "3" + ], + "amenity": [ + "bench", + "toilets", + "bicycle_rental" + ], + "leisure": [ + "playground" + ], + "material": [ + "wood" + ], + "direction": [ + "11", + "258" + ], + "wheelchair": [ + "yes" + ], + "survey:date": [ + "2022-04-30" + ] + }, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.000544120986080083, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9775033593": "source: https://osm.org/note/3161461" + }, + "id": 121576404 + } + }, + { + "id": 121571643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2198591, + 50.5575216 + ], + [ + 4.2398483, + 50.5575216 + ], + [ + 4.2398483, + 50.6433495 + ], + [ + 4.2198591, + 50.6433495 + ], + [ + 4.2198591, + 50.5575216 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T11:35:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 9, + "modify": 8, + "delete": 0, + "area": 0.00171563105868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 19, + "create": 9, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "change_over_5000m": 9, + "change_within_25m": 18, + "change_within_50m": 1 + }, + "id": 121571643 + } + }, + { + "id": 121569052, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2223871, + 50.6055974 + ], + [ + 4.2302595, + 50.6055974 + ], + [ + 4.2302595, + 50.7100815 + ], + [ + 4.2223871, + 50.7100815 + ], + [ + 4.2223871, + 50.6055974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T10:43:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 4, + "modify": 4, + "delete": 1, + "area": 0.000822540628840016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 4, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 4, + "change_within_25m": 7, + "change_within_50m": 2, + "deletion:node/4512748291": "not found" + }, + "id": 121569052 + } + }, + { + "id": 121568785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0026899, + 51.1264179 + ], + [ + 5.0026899, + 51.1264179 + ], + [ + 5.0026899, + 51.1264179 + ], + [ + 5.0026899, + 51.1264179 + ], + [ + 5.0026899, + 51.1264179 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T10:37:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/EmDkTG8.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 121568785 + } + }, + { + "id": 121566441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.6427638, + 9.8978631 + ], + [ + 80.2623655, + 9.8978631 + ], + [ + 80.2623655, + 13.1402693 + ], + [ + 76.6427638, + 13.1402693 + ], + [ + 76.6427638, + 9.8978631 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-34159383", + "name": "Gandhi Main Road", + "osm_id": 34159383, + "reasons": [ + 87 + ], + "version": 8, + "primary_tags": { + "highway": "residential" + } + }, + { + "url": "way-34159389", + "name": "Thanthai Periyar Street", + "osm_id": 34159389, + "reasons": [ + 87 + ], + "version": 5, + "primary_tags": { + "highway": "residential" + } + }, + { + "url": "way-34159388", + "name": "Aringar Anna Street", + "osm_id": 34159388, + "reasons": [ + 87 + ], + "version": 4, + "primary_tags": { + "highway": "residential" + } + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T09:50:04Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "road" + ], + "highway": [ + "residential", + "service", + "unclassified", + "primary", + "secondary", + "tertiary", + "living_street", + "trunk_link" + ], + "name:etymology:wikidata": [ + "Q2153", + "Q138765", + "Q181878", + "Q1001", + "Q737280" + ] + }, + "create": 0, + "modify": 51, + "delete": 0, + "area": 11.7362189936106, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 73, + "locale": "en", + "imagery": "osm" + }, + "id": 121566441 + } + }, + { + "id": 121565136, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2808198, + 52.4877944 + ], + [ + 13.3220174, + 52.4877944 + ], + [ + 13.3220174, + 52.5048901 + ], + [ + 13.2808198, + 52.5048901 + ], + [ + 13.2808198, + 52.4877944 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T09:27:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "theatre", + "school", + "hospital" + ], + "barrier": [ + "fence" + ], + "highway": [ + "elevator", + "service" + ], + "building": [ + "school", + "yes" + ], + "name:etymology:wikidata": [ + "Q939583", + "Q1401339", + "Q800476", + "Q12735", + "Q72384", + "Q123490", + "Q57674", + "Q62512", + "Q135645", + "Q152384", + "Q60095", + "Q651009", + "Q1670522", + "Q9554", + "Q112138469", + "Q8023" + ] + }, + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000704301810319952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 27, + "locale": "de", + "imagery": "osm" + }, + "id": 121565136 + } + }, + { + "id": 121564744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1821974, + 50.8401972 + ], + [ + 3.18224, + 50.8401972 + ], + [ + 3.18224, + 50.8402328 + ], + [ + 3.1821974, + 50.8402328 + ], + [ + 3.1821974, + 50.8401972 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T09:20:27Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Km7You4.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.51656000016671e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121564744 + } + }, + { + "id": 121564333, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T09:12:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "move:node/-1": "improve_accuracy", + "change_within_25m": 1 + }, + "id": 121564333 + } + }, + { + "id": 121564020, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1935282, + 50.8398022 + ], + [ + 3.1935455, + 50.8398022 + ], + [ + 3.1935455, + 50.8398285 + ], + [ + 3.1935282, + 50.8398285 + ], + [ + 3.1935282, + 50.8398022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T09:05:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ga0iFu5.jpg" + ], + "barrier": [ + "lift_gate" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.54990000034194e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121564020 + } + }, + { + "id": 121563754, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1918522, + 50.8404509 + ], + [ + 3.1921043, + 50.8404509 + ], + [ + 3.1921043, + 50.8406286 + ], + [ + 3.1918522, + 50.8406286 + ], + [ + 3.1918522, + 50.8404509 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T08:59:38Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/sAf8J9Y.jpg", + "https://i.imgur.com/cmP0JW1.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "survey:date": [ + "2022-05-26" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.47981700004585e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 121563754 + } + }, + { + "id": 121563722, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3077264, + 52.4535105 + ], + [ + 13.308048, + 52.4535105 + ], + [ + 13.308048, + 52.4543358 + ], + [ + 13.3077264, + 52.4543358 + ], + [ + 13.3077264, + 52.4535105 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T08:59:05Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "highway": [ + "footway", + "street_lamp" + ], + "surface": [ + "paving_stones" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 2.65416480000364e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 11, + "create": 4, + "locale": "nl", + "imagery": "Berlin-2020-TrueDOP", + "change_over_5000m": 4, + "change_within_25m": 6, + "change_within_50m": 5 + }, + "id": 121563722 + } + }, + { + "id": 121563538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2365336, + 49.7766509 + ], + [ + 5.2374931, + 49.7766509 + ], + [ + 5.2374931, + 49.77733 + ], + [ + 5.2365336, + 49.77733 + ], + [ + 5.2365336, + 49.7766509 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T08:56:12Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes", + "no" + ], + "image": [ + "https://i.imgur.com/mg0Q1Yv.jpg" + ], + "image:0": [ + "https://i.imgur.com/K3hRxj5.jpg" + ], + "image:1": [ + "https://i.imgur.com/DemBCfS.jpg" + ], + "tourism": [ + "caravan_site" + ], + "internet_access": [ + "yes" + ], + "permanent_camping": [ + "no" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.51596449999599e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_50m": 6 + }, + "id": 121563538 + } + }, + { + "id": 121563172, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.306522, + 52.4530697 + ], + [ + 13.3081502, + 52.4530697 + ], + [ + 13.3081502, + 52.4547541 + ], + [ + 13.306522, + 52.4547541 + ], + [ + 13.306522, + 52.4530697 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T08:49:16Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "amenity": [ + "bench", + "waste_basket" + ], + "highway": [ + "footway" + ], + "surface": [ + "fine_gravel", + "paving_stones", + "asphalt" + ] + }, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000274254008000456, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 3, + "theme": "waste", + "answer": 9, + "create": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 12, + "move:node/9774517148": "improve_accuracy" + }, + "id": 121563172 + } + }, + { + "id": 121563026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3047062, + 52.4530696 + ], + [ + 13.3081227, + 52.4530696 + ], + [ + 13.3081227, + 52.454746 + ], + [ + 13.3047062, + 52.454746 + ], + [ + 13.3047062, + 52.4530696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-27T08:45:58Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "amenity": [ + "bench" + ], + "highway": [ + "footway" + ], + "surface": [ + "fine_gravel", + "paving_stones", + "asphalt" + ] + }, + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00000572742060000337, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 24, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 21, + "change_within_500m": 4, + "move:node/9774555889": "improve_accuracy" + }, + "id": 121563026 + } + }, + { + "id": 121553183, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.9823671, + 9.444339 + ], + [ + 80.2605656, + 9.444339 + ], + [ + 80.2605656, + 13.1103711 + ], + [ + 75.9823671, + 13.1103711 + ], + [ + 75.9823671, + 9.444339 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-27T04:27:07Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "theatre", + "college" + ], + "highway": [ + "residential", + "unclassified", + "tertiary", + "living_street", + "primary", + "trunk", + "footway", + "service", + "secondary" + ], + "natural": [ + "grassland" + ], + "boundary": [ + "local_authority" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q256286", + "Q47478", + "Q3534483", + "Q9513", + "Q1570759", + "Q60429", + "Q745268", + "Q30547", + "Q127868", + "Q715607", + "Q250165" + ] + }, + "create": 0, + "modify": 68, + "delete": 0, + "area": 15.6840130311719, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 78, + "locale": "en", + "imagery": "osm" + }, + "id": 121553183 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-28.json b/Docs/Tools/stats/stats.2022-5-28.json new file mode 100644 index 0000000000..c93c3f74cc --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-28.json @@ -0,0 +1,2455 @@ +{ + "features": [ + { + "id": 121635305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0494433, + 14.7010168 + ], + [ + 121.0515282, + 14.7010168 + ], + [ + 121.0515282, + 14.7057593 + ], + [ + 121.0494433, + 14.7057593 + ], + [ + 121.0494433, + 14.7010168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-28T23:19:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000988763825006819, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 2, + "theme": "waste", + "locale": "en", + "imagery": "osm", + "move:node/7543489085": "improve_accuracy", + "move:node/7547431985": "improve_accuracy" + }, + "id": 121635305 + } + }, + { + "id": 121635205, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-28T23:11:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121635205 + } + }, + { + "id": 121634200, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T22:05:35Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "camera:mount": [ + "wall" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 121634200 + } + }, + { + "id": 121631519, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0967807, + 38.8264996 + ], + [ + 0.0967807, + 38.8264996 + ], + [ + 0.0967807, + 38.8264996 + ], + [ + 0.0967807, + 38.8264996 + ], + [ + 0.0967807, + 38.8264996 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9777790419", + "osm_id": 9777790419, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T20:19:00Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121631519 + } + }, + { + "id": 121631032, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3468577, + 49.6363809 + ], + [ + 5.3468577, + 49.6363809 + ], + [ + 5.3468577, + 49.6363809 + ], + [ + 5.3468577, + 49.6363809 + ], + [ + 5.3468577, + 49.6363809 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T20:07:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121631032 + } + }, + { + "id": 121630944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3950094, + 50.8672881 + ], + [ + 4.3950094, + 50.8672881 + ], + [ + 4.3950094, + 50.8672881 + ], + [ + 4.3950094, + 50.8672881 + ], + [ + 4.3950094, + 50.8672881 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T20:04:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 121630944 + } + }, + { + "id": 121629949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0495104, + 14.7057321 + ], + [ + 121.0495225, + 14.7057321 + ], + [ + 121.0495225, + 14.7057593 + ], + [ + 121.0495104, + 14.7057593 + ], + [ + 121.0495104, + 14.7057321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-28T19:24:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.29119999786225e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 1, + "theme": "waste", + "locale": "en", + "imagery": "osm", + "move:node/7547431985": "improve_accuracy" + }, + "id": 121629949 + } + }, + { + "id": 121621932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7034722, + 50.7428389 + ], + [ + 4.7407106, + 50.7428389 + ], + [ + 4.7407106, + 50.7730193 + ], + [ + 4.7034722, + 50.7730193 + ], + [ + 4.7034722, + 50.7428389 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T15:23:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.00112386980735995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 10, + "change_within_25m": 1, + "change_within_5000m": 3 + }, + "id": 121621932 + } + }, + { + "id": 121620119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.2406021, + 43.5973782 + ], + [ + 1.2406021, + 43.5973782 + ], + [ + 1.2406021, + 43.5973782 + ], + [ + 1.2406021, + 43.5973782 + ], + [ + 1.2406021, + 43.5973782 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:39:10Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "pitch" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 121620119 + } + }, + { + "id": 121619492, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:24:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 121619492 + } + }, + { + "id": 121619476, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:23:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 121619476 + } + }, + { + "id": 121619396, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:21:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 121619396 + } + }, + { + "id": 121619343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8286229, + 50.7402858 + ], + [ + 4.8286229, + 50.7402858 + ], + [ + 4.8286229, + 50.7402858 + ], + [ + 4.8286229, + 50.7402858 + ], + [ + 4.8286229, + 50.7402858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:20:41Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Bisous Bisous", + "Atelier Mélin" + ], + "amenity": [ + "cafe" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 121619343 + } + }, + { + "id": 121619321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ], + [ + 1.2355515, + 43.5984912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:20:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 121619321 + } + }, + { + "id": 121619305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.694637, + 50.8257857 + ], + [ + 5.694651, + 50.8257857 + ], + [ + 5.694651, + 50.8257934 + ], + [ + 5.694637, + 50.8257934 + ], + [ + 5.694637, + 50.8257857 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:19:46Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.0780000006744e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7, + "move:node/9776842243": "improve_accuracy" + }, + "id": 121619305 + } + }, + { + "id": 121619298, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8276037, + 50.739086 + ], + [ + 4.8296538, + 50.739086 + ], + [ + 4.8296538, + 50.7415327 + ], + [ + 4.8276037, + 50.7415327 + ], + [ + 4.8276037, + 50.739086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T14:19:36Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "farm_auxiliary" + ] + }, + "create": 457, + "modify": 0, + "delete": 0, + "area": 0.00000501597967000014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "theme": "grb", + "import": 71, + "locale": "nl", + "imagery": "SPW_PICC", + "change_within_25m": 8, + "change_within_50m": 29, + "change_within_100m": 25, + "change_within_500m": 9 + }, + "id": 121619298 + } + }, + { + "id": 121617131, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3561102, + 51.6776295 + ], + [ + 14.3621435, + 51.6776295 + ], + [ + 14.3621435, + 51.6791083 + ], + [ + 14.3561102, + 51.6791083 + ], + [ + 14.3561102, + 51.6776295 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "zepelindererste", + "uid": "504008", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-28T13:23:10Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Flachspiegelbrunnen. Ca. 200l/min" + ], + "fire_hydrant:type": [ + "underground" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000892204404000656, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121617131 + } + }, + { + "id": 121615815, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6837552, + 50.8354643 + ], + [ + 5.6843753, + 50.8354643 + ], + [ + 5.6843753, + 50.8364223 + ], + [ + 5.6837552, + 50.8364223 + ], + [ + 5.6837552, + 50.8354643 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T12:52:39Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "colour": [ + "red" + ], + "amenity": [ + "bench", + "toilets" + ], + "image:0": [ + "https://i.imgur.com/L430MhX.jpg" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "327" + ], + "wheelchair": [ + "yes" + ], + "survey:date": [ + "2022-05-28" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.9405580000253e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 13 + }, + "id": 121615815 + } + }, + { + "id": 121613158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6851394, + 50.8163013 + ], + [ + 5.6862672, + 50.8163013 + ], + [ + 5.6862672, + 50.8312674 + ], + [ + 5.6851394, + 50.8312674 + ], + [ + 5.6851394, + 50.8163013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T11:44:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/GADiNQM.jpg" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "311" + ], + "survey:date": [ + "2022-05-28" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000168787675800011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "id": 121613158 + } + }, + { + "id": 121612756, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.341431, + 49.7722838 + ], + [ + 6.341431, + 49.7722838 + ], + [ + 6.341431, + 49.7722838 + ], + [ + 6.341431, + 49.7722838 + ], + [ + 6.341431, + 49.7722838 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T11:32:15Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ItP2zSw.jpg" + ], + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "yes" + ], + "service:bicycle:chain_tool": [ + "yes" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 121612756 + } + }, + { + "id": 121610567, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6792569, + 50.8468277 + ], + [ + 5.6792877, + 50.8468277 + ], + [ + 5.6792877, + 50.8468593 + ], + [ + 5.6792569, + 50.8468593 + ], + [ + 5.6792569, + 50.8468277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T10:32:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.73279999972664e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 5, + "move:node/9776596769": "improve_accuracy" + }, + "id": 121610567 + } + }, + { + "id": 121610108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8537642, + 50.908502 + ], + [ + 4.8537642, + 50.908502 + ], + [ + 4.8537642, + 50.908502 + ], + [ + 4.8537642, + 50.908502 + ], + [ + 4.8537642, + 50.908502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T10:17:53Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "fee": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/p6qvHdW.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "yes" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "no" + ], + "socket:typee": [ + "1" + ], + "opening_hours": [ + "24/7" + ], + "authentication:none": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 121610108 + } + }, + { + "id": 121610053, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8537308, + 50.9038752 + ], + [ + 4.8574966, + 50.9038752 + ], + [ + 4.8574966, + 50.9085451 + ], + [ + 4.8537308, + 50.9085451 + ], + [ + 4.8537308, + 50.9038752 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T10:15:58Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "amenity": [ + "vending_machine" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000175859094199856, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 121610053 + } + }, + { + "id": 121609020, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8388174, + 43.3189397 + ], + [ + -1.8388174, + 43.3189397 + ], + [ + -1.8388174, + 43.3189397 + ], + [ + -1.8388174, + 43.3189397 + ], + [ + -1.8388174, + 43.3189397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mirenbz", + "uid": "224679", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:44:43Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "AC Txingudi" + ], + "tourism": [ + "caravan_site" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite", + "theme": "campersite", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121609020 + } + }, + { + "id": 121608882, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3947265, + 48.9928873 + ], + [ + 8.3947265, + 48.9928873 + ], + [ + 8.3947265, + 48.9928873 + ], + [ + 8.3947265, + 48.9928873 + ], + [ + 8.3947265, + 48.9928873 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:40:15Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "image": [ + "https://i.imgur.com/msps0js.jpg" + ], + "leisure": [ + "playground" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 121608882 + } + }, + { + "id": 121608864, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9763045, + 51.7606305 + ], + [ + 13.9918157, + 51.7606305 + ], + [ + 13.9918157, + 51.7789001 + ], + [ + 13.9763045, + 51.7789001 + ], + [ + 13.9763045, + 51.7606305 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:39:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/nnUxbUD.jpg" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000283383419520066, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121608864 + } + }, + { + "id": 121608618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3962192, + 48.9932595 + ], + [ + 8.3962732, + 48.9932595 + ], + [ + 8.3962732, + 48.9933359 + ], + [ + 8.3962192, + 48.9933359 + ], + [ + 8.3962192, + 48.9932595 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:32:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/qP4nZYw.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.12559999976494e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121608618 + } + }, + { + "id": 121608313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3413744, + 43.6160225 + ], + [ + 1.341484, + 43.6160225 + ], + [ + 1.341484, + 43.6160853 + ], + [ + 1.3413744, + 43.6160853 + ], + [ + 1.3413744, + 43.6160225 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:25:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.88288000021101e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 121608313 + } + }, + { + "id": 121608170, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3412279, + 43.6159569 + ], + [ + 1.3414861, + 43.6159569 + ], + [ + 1.3414861, + 43.6163472 + ], + [ + 1.3412279, + 43.6163472 + ], + [ + 1.3412279, + 43.6159569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:21:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 5, + "modify": 0, + "delete": 0, + "area": 1.0077545999984e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "create": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 5 + }, + "id": 121608170 + } + }, + { + "id": 121608127, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3409644, + 43.6160123 + ], + [ + 1.3411662, + 43.6160123 + ], + [ + 1.3411662, + 43.6162103 + ], + [ + 1.3409644, + 43.6162103 + ], + [ + 1.3409644, + 43.6160123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:20:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.9956399999475e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 121608127 + } + }, + { + "id": 121607986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3957818, + 48.9934055 + ], + [ + 8.395849, + 48.9934055 + ], + [ + 8.395849, + 48.9934254 + ], + [ + 8.3957818, + 48.9934254 + ], + [ + 8.3957818, + 48.9934055 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:16:27Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/8Qvi1kc.jpg" + ], + "amenity": [ + "toilets" + ], + "building": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.33727999987369e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 121607986 + } + }, + { + "id": 121607531, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3994013, + 47.3048655 + ], + [ + 9.6461811, + 47.3048655 + ], + [ + 9.6461811, + 47.7124306 + ], + [ + 9.3994013, + 47.7124306 + ], + [ + 9.3994013, + 47.3048655 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T09:03:32Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+49 7544 9667222", + "+49 7544 9049499" + ], + "office": [ + "yes" + ], + "landuse": [ + "residential" + ], + "leisure": [ + "hackerspace" + ], + "building": [ + "industrial" + ], + "start_date": [ + "2016-05-01", + "2014-04-29" + ], + "opening_hours": [ + "Th 19:00-22:00" + ], + "drink:club-mate": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.10057883386498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hackerspaces.html", + "theme": "hackerspaces", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5 + }, + "id": 121607531 + } + }, + { + "id": 121607290, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7559053, + 50.9459465 + ], + [ + 4.7559053, + 50.9459465 + ], + [ + 4.7559053, + 50.9459465 + ], + [ + 4.7559053, + 50.9459465 + ], + [ + 4.7559053, + 50.9459465 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T08:58:27Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1, + "import:node/9776441170": "source: https://osm.org/note/3090222" + }, + "id": 121607290 + } + }, + { + "id": 121607064, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4334027, + 52.107181 + ], + [ + 13.4334027, + 52.107181 + ], + [ + 13.4334027, + 52.107181 + ], + [ + 13.4334027, + 52.107181 + ], + [ + 13.4334027, + 52.107181 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-28T08:52:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121607064 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-29.json b/Docs/Tools/stats/stats.2022-5-29.json new file mode 100644 index 0000000000..38f88dfea2 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-29.json @@ -0,0 +1,2845 @@ +{ + "features": [ + { + "id": 121680655, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9104819, + 48.2783052 + ], + [ + 11.9104819, + 48.2783052 + ], + [ + 11.9104819, + 48.2783052 + ], + [ + 11.9104819, + 48.2783052 + ], + [ + 11.9104819, + 48.2783052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T22:45:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_box" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 121680655 + } + }, + { + "id": 121680369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8892294, + 48.3085175 + ], + [ + 11.8892294, + 48.3085175 + ], + [ + 11.8892294, + 48.3085175 + ], + [ + 11.8892294, + 48.3085175 + ], + [ + 11.8892294, + 48.3085175 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T22:29:47Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 4 + }, + "id": 121680369 + } + }, + { + "id": 121680292, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9137689, + 48.278054 + ], + [ + 11.9137689, + 48.278054 + ], + [ + 11.9137689, + 48.278054 + ], + [ + 11.9137689, + 48.278054 + ], + [ + 11.9137689, + 48.278054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T22:25:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 121680292 + } + }, + { + "id": 121680166, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7840615, + 48.9169958 + ], + [ + 8.7840615, + 48.9169958 + ], + [ + 8.7840615, + 48.9169958 + ], + [ + 8.7840615, + 48.9169958 + ], + [ + 8.7840615, + 48.9169958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T22:19:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 121680166 + } + }, + { + "id": 121679920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8944584, + 48.2725368 + ], + [ + 11.9079035, + 48.2725368 + ], + [ + 11.9079035, + 48.2931315 + ], + [ + 11.8944584, + 48.2931315 + ], + [ + 11.8944584, + 48.2725368 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T22:08:28Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "mall" + ], + "building": [ + "retail", + "yes", + "commercial", + "apartments" + ] + }, + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.000276897800970055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 3, + "create": 12, + "locale": "de", + "imagery": "osm" + }, + "id": 121679920 + } + }, + { + "id": 121679771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9076667, + 48.2783187 + ], + [ + 11.9116927, + 48.2783187 + ], + [ + 11.9116927, + 48.2817495 + ], + [ + 11.9076667, + 48.2817495 + ], + [ + 11.9076667, + 48.2783187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T22:00:12Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes", + "no" + ], + "highway": [ + "residential", + "track" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000138124007999856, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "locale": "de", + "imagery": "Mapbox" + }, + "id": 121679771 + } + }, + { + "id": 121677447, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4694808, + 51.3946486 + ], + [ + 3.4789976, + 51.3946486 + ], + [ + 3.4789976, + 51.3955096 + ], + [ + 3.4694808, + 51.3955096 + ], + [ + 3.4694808, + 51.3946486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-3528575436", + "osm_id": 3528575436, + "reasons": [ + 42 + ], + "version": 4, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T20:29:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/pwh0uR7.jpg", + "https://i.imgur.com/T7xbsck.jpg", + "https://i.imgur.com/2dtSgkl.jpg" + ], + "seats": [ + "3" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table", + "playground" + ], + "surface": [ + "sand" + ], + "tourism": [ + "picnic_site" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "survey:date": [ + "2022-05-29" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000819396480000432, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 121677447 + } + }, + { + "id": 121677201, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4688743, + 51.3941811 + ], + [ + 3.4688743, + 51.3941811 + ], + [ + 3.4688743, + 51.3941811 + ], + [ + 3.4688743, + 51.3941811 + ], + [ + 3.4688743, + 51.3941811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T20:21:24Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/WY34Ayr.jpg" + ], + "survey:date": [ + "2022-05-29" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121677201 + } + }, + { + "id": 121667744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2529937, + -39.7949935 + ], + [ + -73.2529655, + -39.7949935 + ], + [ + -73.2529655, + -39.7946596 + ], + [ + -73.2529937, + -39.7946596 + ], + [ + -73.2529937, + -39.7949935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T16:22:18Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.41598000073184e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "es", + "imagery": "Mapbox", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 121667744 + } + }, + { + "id": 121660626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7081439, + 51.0273397 + ], + [ + 3.7218937, + 51.0273397 + ], + [ + 3.7218937, + 51.0338093 + ], + [ + 3.7081439, + 51.0338093 + ], + [ + 3.7081439, + 51.0273397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T14:11:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar", + "cafe" + ] + }, + "create": 1, + "modify": 5, + "delete": 1, + "area": 0.0000889557060800349, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "deletion": 1, + "deletion:node/5807358349": "shop_closed" + }, + "id": 121660626 + } + }, + { + "id": 121659160, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5587436, + 52.996223 + ], + [ + 6.5587436, + 52.996223 + ], + [ + 6.5587436, + 52.996223 + ], + [ + 6.5587436, + 52.996223 + ], + [ + 6.5587436, + 52.996223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T13:48:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121659160 + } + }, + { + "id": 121658639, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.705307, + 51.0273818 + ], + [ + 3.7189476, + 51.0273818 + ], + [ + 3.7189476, + 51.0381502 + ], + [ + 3.705307, + 51.0381502 + ], + [ + 3.705307, + 51.0273818 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T13:39:51Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes", + "private" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "cargo_bike": [ + "yes" + ], + "bicycle_parking": [ + "stands" + ] + }, + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.00014688743703995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 13, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121658639 + } + }, + { + "id": 121658394, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7056033, + 50.1645421 + ], + [ + 5.7060516, + 50.1645421 + ], + [ + 5.7060516, + 50.1647188 + ], + [ + 5.7056033, + 50.1647188 + ], + [ + 5.7056033, + 50.1645421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T13:35:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ], + "building": [ + "yes" + ], + "wheelchair": [ + "no" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ], + "service:electricity": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.92146100020252e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 121658394 + } + }, + { + "id": 121658110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.142755, + 50.6919925 + ], + [ + 3.142755, + 50.6919925 + ], + [ + 3.142755, + 50.6919925 + ], + [ + 3.142755, + 50.6919925 + ], + [ + 3.142755, + 50.6919925 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T13:29:42Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 2, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 121658110 + } + }, + { + "id": 121657979, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7068652, + 51.0294657 + ], + [ + 3.7072192, + 51.0294657 + ], + [ + 3.7072192, + 51.0296782 + ], + [ + 3.7068652, + 51.0296782 + ], + [ + 3.7068652, + 51.0294657 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T13:27:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 4, + "modify": 8, + "delete": 0, + "area": 7.52249999986697e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 15, + "create": 4, + "locale": "nl", + "imagery": "osm", + "move:node/9779253472": "improve_accuracy" + }, + "id": 121657979 + } + }, + { + "id": 121656427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4353967, + 50.7394197 + ], + [ + 4.4353967, + 50.7394197 + ], + [ + 4.4353967, + 50.7394197 + ], + [ + 4.4353967, + 50.7394197 + ], + [ + 4.4353967, + 50.7394197 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T12:58:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2yO6RCF.jpg" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 121656427 + } + }, + { + "id": 121656414, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.235992, + 50.7351196 + ], + [ + 4.235992, + 50.7351196 + ], + [ + 4.235992, + 50.7351196 + ], + [ + 4.235992, + 50.7351196 + ], + [ + 4.235992, + 50.7351196 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T12:58:43Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Press Shop" + ], + "shop": [ + "newsagent" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121656414 + } + }, + { + "id": 121653230, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5006126, + 50.7020877 + ], + [ + 4.5008406, + 50.7020877 + ], + [ + 4.5008406, + 50.7022882 + ], + [ + 4.5006126, + 50.7022882 + ], + [ + 4.5006126, + 50.7020877 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T11:53:17Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "yes", + "deli" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.57139999995848e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "id": 121653230 + } + }, + { + "id": 121651143, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9333741, + 51.3263126 + ], + [ + 4.9333741, + 51.3263126 + ], + [ + 4.9333741, + 51.3263126 + ], + [ + 4.9333741, + 51.3263126 + ], + [ + 4.9333741, + 51.3263126 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T11:08:08Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/m2PHxzO.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121651143 + } + }, + { + "id": 121650362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9072394, + 51.3200747 + ], + [ + 4.9332246, + 51.3200747 + ], + [ + 4.9332246, + 51.3263246 + ], + [ + 4.9072394, + 51.3263246 + ], + [ + 4.9072394, + 51.3200747 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T10:51:22Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/I8kXkFv.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000162404901480007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "id": 121650362 + } + }, + { + "id": 121649798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3564265, + 52.5209182 + ], + [ + 13.3564265, + 52.5209182 + ], + [ + 13.3564265, + 52.5209182 + ], + [ + 13.3564265, + 52.5209182 + ], + [ + 13.3564265, + 52.5209182 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T10:37:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "HDM_HOT", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121649798 + } + }, + { + "id": 121649762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3936039, + 51.344577 + ], + [ + 4.3936039, + 51.344577 + ], + [ + 4.3936039, + 51.344577 + ], + [ + 4.3936039, + 51.344577 + ], + [ + 4.3936039, + 51.344577 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "QuercE", + "uid": "551808", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T10:36:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9778990747": "source: https://osm.org/note/3143441" + }, + "id": 121649762 + } + }, + { + "id": 121648974, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0294986, + 50.0539115 + ], + [ + 6.0294986, + 50.0539115 + ], + [ + 6.0294986, + 50.0539115 + ], + [ + 6.0294986, + 50.0539115 + ], + [ + 6.0294986, + 50.0539115 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T10:15:50Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "id": 121648974 + } + }, + { + "id": 121648266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6133834, + 50.6350135 + ], + [ + 4.6133834, + 50.6350135 + ], + [ + 4.6133834, + 50.6350135 + ], + [ + 4.6133834, + 50.6350135 + ], + [ + 4.6133834, + 50.6350135 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:56:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121648266 + } + }, + { + "id": 121647882, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3444539, + 43.5660541 + ], + [ + 1.3444539, + 43.5660541 + ], + [ + 1.3444539, + 43.5660541 + ], + [ + 1.3444539, + 43.5660541 + ], + [ + 1.3444539, + 43.5660541 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:46:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/V7pf18I.jpg" + ], + "leisure": [ + "pitch" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 121647882 + } + }, + { + "id": 121647662, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3456582, + 43.5657164 + ], + [ + 1.3457548, + 43.5657164 + ], + [ + 1.3457548, + 43.5657164 + ], + [ + 1.3456582, + 43.5657164 + ], + [ + 1.3456582, + 43.5657164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:41:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "id": 121647662 + } + }, + { + "id": 121646954, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0310504, + 50.0536863 + ], + [ + 6.0310504, + 50.0536863 + ], + [ + 6.0310504, + 50.0536863 + ], + [ + 6.0310504, + 50.0536863 + ], + [ + 6.0310504, + 50.0536863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:24:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 121646954 + } + }, + { + "id": 121646892, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.029868, + 50.053556 + ], + [ + 6.029868, + 50.053556 + ], + [ + 6.029868, + 50.053556 + ], + [ + 6.029868, + 50.053556 + ], + [ + 6.029868, + 50.053556 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:22:35Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 121646892 + } + }, + { + "id": 121646658, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3428989, + 43.5679562 + ], + [ + 1.3428989, + 43.5679562 + ], + [ + 1.3428989, + 43.5679562 + ], + [ + 1.3428989, + 43.5679562 + ], + [ + 1.3428989, + 43.5679562 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:16:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121646658 + } + }, + { + "id": 121646086, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ], + [ + -2.0765944, + 51.9028681 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:04:22Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "surveillance": [ + "outdoor" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 121646086 + } + }, + { + "id": 121645920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.353078, + 52.5157983 + ], + [ + 13.3591431, + 52.5157983 + ], + [ + 13.3591431, + 52.5168236 + ], + [ + 13.353078, + 52.5168236 + ], + [ + 13.353078, + 52.5157983 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T09:00:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench", + "waste_basket" + ], + "leisure": [ + "pitch" + ], + "check_date": [ + "2022-05-29" + ], + "fire_hydrant:position": [ + "green" + ] + }, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00000621854703001289, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 8, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 8 + }, + "id": 121645920 + } + }, + { + "id": 121645550, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3518577, + 52.5155056 + ], + [ + 13.3518577, + 52.5155056 + ], + [ + 13.3518577, + 52.5155056 + ], + [ + 13.3518577, + 52.5155056 + ], + [ + 13.3518577, + 52.5155056 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9778880545", + "osm_id": 9778880545, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T08:54:04Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121645550 + } + }, + { + "id": 121645402, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T08:49:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 121645402 + } + }, + { + "id": 121645285, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3519909, + 52.5151991 + ], + [ + 13.3574139, + 52.5151991 + ], + [ + 13.3574139, + 52.5165319 + ], + [ + 13.3519909, + 52.5165319 + ], + [ + 13.3519909, + 52.5151991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T08:46:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench", + "waste_basket" + ] + }, + "create": 9, + "modify": 1, + "delete": 0, + "area": 0.00000722777439999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 18, + "create": 9, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 9, + "change_within_25m": 18 + }, + "id": 121645285 + } + }, + { + "id": 121645212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3519245, + 52.5151293 + ], + [ + 13.3521696, + 52.5151293 + ], + [ + 13.3521696, + 52.5153536 + ], + [ + 13.3519245, + 52.5153536 + ], + [ + 13.3519245, + 52.5151293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T08:45:18Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "green" + ], + "amenity": [ + "bench" + ], + "material": [ + "wood" + ], + "direction": [ + "61" + ], + "survey:date": [ + "2022-05-29" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 5.49759299996012e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 2, + "theme": "benches", + "answer": 8, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 6, + "change_within_50m": 4, + "move:node/4994905293": "improve_accuracy", + "move:node/9778872504": "improve_accuracy" + }, + "id": 121645212 + } + }, + { + "id": 121645156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.7143255, + 46.8025602 + ], + [ + 6.7143255, + 46.8025602 + ], + [ + 6.7143255, + 46.8025602 + ], + [ + 6.7143255, + 46.8025602 + ], + [ + 6.7143255, + 46.8025602 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T08:43:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "sanitary_dump_station" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 3 + }, + "id": 121645156 + } + }, + { + "id": 121644610, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.9907472, + 14.6414205 + ], + [ + 120.9907472, + 14.6414205 + ], + [ + 120.9907472, + 14.6414205 + ], + [ + 120.9907472, + 14.6414205 + ], + [ + 120.9907472, + 14.6414205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T08:29:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121644610 + } + }, + { + "id": 121642445, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.1579269, + 47.0470742 + ], + [ + 7.1598993, + 47.0470742 + ], + [ + 7.1598993, + 47.0483829 + ], + [ + 7.1579269, + 47.0483829 + ], + [ + 7.1579269, + 47.0470742 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-29T07:27:11Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "caravan_site" + ], + "permanent_camping": [ + "only" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000258127988000606, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121642445 + } + }, + { + "id": 121636023, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0255584, + 51.44416 + ], + [ + -0.0210667, + 51.44416 + ], + [ + -0.0210667, + 51.4445081 + ], + [ + -0.0255584, + 51.4445081 + ], + [ + -0.0255584, + 51.44416 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Firefishy", + "uid": "3560", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-29T00:03:46Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket", + "recycling" + ], + "not:vending": [ + "dog_excrement_bag" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000156356077001629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121636023 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-30.json b/Docs/Tools/stats/stats.2022-5-30.json new file mode 100644 index 0000000000..5b303ed452 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-30.json @@ -0,0 +1,1986 @@ +{ + "features": [ + { + "id": 121740761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ], + [ + 0.10833, + 38.8374023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T22:51:41Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "pet", + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 121740761 + } + }, + { + "id": 121740734, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T22:49:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121740734 + } + }, + { + "id": 121740733, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T22:49:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121740733 + } + }, + { + "id": 121740394, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T22:27:34Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 121740394 + } + }, + { + "id": 121740372, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.277287, + 53.2137197 + ], + [ + 6.277287, + 53.2137197 + ], + [ + 6.277287, + 53.2137197 + ], + [ + 6.277287, + 53.2137197 + ], + [ + 6.277287, + 53.2137197 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T22:25:53Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "cargo_bike": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121740372 + } + }, + { + "id": 121740344, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2610765, + 53.2345798 + ], + [ + 6.2610765, + 53.2345798 + ], + [ + 6.2610765, + 53.2345798 + ], + [ + 6.2610765, + 53.2345798 + ], + [ + 6.2610765, + 53.2345798 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T22:24:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121740344 + } + }, + { + "id": 121739992, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.26237, + 53.2176402 + ], + [ + 6.2761572, + 53.2176402 + ], + [ + 6.2761572, + 53.233224 + ], + [ + 6.26237, + 53.233224 + ], + [ + 6.26237, + 53.2176402 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T22:01:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 9, + "modify": 6, + "delete": 0, + "area": 0.000214856967360029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 28, + "create": 9, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 121739992 + } + }, + { + "id": 121738583, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2511205, + -39.7961613 + ], + [ + -73.2511205, + -39.7961613 + ], + [ + -73.2511205, + -39.7961613 + ], + [ + -73.2511205, + -39.7961613 + ], + [ + -73.2511205, + -39.7961613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T20:54:47Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/EK9A37v.jpg" + ], + "image:1": [ + "https://i.imgur.com/SQi8nmm.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "Mapbox", + "add-image": 2 + }, + "id": 121738583 + } + }, + { + "id": 121737729, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6688421, + 51.0347628 + ], + [ + 3.6688421, + 51.0347628 + ], + [ + 3.6688421, + 51.0347628 + ], + [ + 3.6688421, + 51.0347628 + ], + [ + 3.6688421, + 51.0347628 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T20:21:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5G8kXw8.jpg" + ], + "image:0": [ + "https://i.imgur.com/JV9sRkM.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 121737729 + } + }, + { + "id": 121736044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ], + [ + 6.269453, + 53.2213882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T19:28:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121736044 + } + }, + { + "id": 121732398, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2573881, + 53.2286856 + ], + [ + 6.2573881, + 53.2286856 + ], + [ + 6.2573881, + 53.2286856 + ], + [ + 6.2573881, + 53.2286856 + ], + [ + 6.2573881, + 53.2286856 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T17:40:49Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 121732398 + } + }, + { + "id": 121732379, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T17:40:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 121732379 + } + }, + { + "id": 121732087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T17:32:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 121732087 + } + }, + { + "id": 121728923, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5150016, + 51.2285778 + ], + [ + 4.5976811, + 51.2285778 + ], + [ + 4.5976811, + 51.2683531 + ], + [ + 4.5150016, + 51.2683531 + ], + [ + 4.5150016, + 51.2285778 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T16:22:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "tertiary", + "cycleway", + "residential", + "track", + "secondary", + "living_street", + "path", + "footway" + ], + "tourism": [ + "museum" + ], + "name:etymology:wikidata": [ + "Q27914585", + "Q3914", + "Q2747279", + "Q835090", + "Q2288294", + "Q112177134", + "Q44265", + "Q732775", + "Q132543", + "Q754395", + "Q160835", + "Q243778", + "Q112177387", + "Q5715793", + "Q112176646", + "Q112175663", + "Q25243", + "Q2234703", + "Q2686049", + "Q146149", + "Q112177501", + "Q44494", + "Q693513", + "Q159857", + "Q527808", + "Q25385", + "Q159834", + "Q12004", + "Q21744", + "Q9482", + "Q23390", + "Q131734", + "Q1678302", + "Q1714828", + "Q5079636", + "Q291708" + ] + }, + "create": 0, + "modify": 126, + "delete": 0, + "area": 0.0032886019163502, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 185, + "locale": "nl", + "imagery": "osm" + }, + "id": 121728923 + } + }, + { + "id": 121722150, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4114647, + 51.1516799 + ], + [ + 4.5724382, + 51.1516799 + ], + [ + 4.5724382, + 51.2632325 + ], + [ + 4.4114647, + 51.2632325 + ], + [ + 4.4114647, + 51.1516799 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T14:36:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "university" + ], + "highway": [ + "residential" + ], + "name:etymology:wikidata": [ + "Q27106649", + "Q724055", + "Q44265", + "Q469580", + "Q2703293", + "Q2715321", + "Q336591", + "Q68631", + "Q219477", + "Q277589", + "Q359165", + "Q17035103", + "Q380360" + ] + }, + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.0179570124561005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 55, + "locale": "en", + "imagery": "osm" + }, + "id": 121722150 + } + }, + { + "id": 121721508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5141759, + -34.5388194 + ], + [ + -58.4670985, + -34.5388194 + ], + [ + -58.4670985, + -34.4713879 + ], + [ + -58.5141759, + -34.4713879 + ], + [ + -58.5141759, + -34.5388194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T14:27:19Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "level_crossing", + "crossing", + "switch" + ], + "crossing:bell": [ + "yes" + ], + "crossing:light": [ + "yes" + ], + "crossing:barrier": [ + "half", + "no" + ], + "crossing:chicane": [ + "yes" + ], + "crossing:saltire": [ + "yes" + ], + "crossing:activation": [ + "automatic" + ], + "railway:turnout_side": [ + "left" + ], + "railway:switch:electric": [ + "no" + ], + "railway:switch:local_operated": [ + "no" + ] + }, + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00317449969809984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 43, + "locale": "en", + "imagery": "osm", + "change_within_25m": 28, + "change_within_50m": 2, + "change_within_100m": 13 + }, + "id": 121721508 + } + }, + { + "id": 121719232, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.233405, + 60.287199 + ], + [ + 5.233405, + 60.287199 + ], + [ + 5.233405, + 60.287199 + ], + [ + 5.233405, + 60.287199 + ], + [ + 5.233405, + 60.287199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "‎Rem", + "uid": "11021936", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T13:51:04Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "2" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "no" + ], + "material": [ + "concrete" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121719232 + } + }, + { + "id": 121714365, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5640706, + 46.0452467 + ], + [ + 14.5640706, + 46.0452467 + ], + [ + 14.5640706, + 46.0452467 + ], + [ + 14.5640706, + 46.0452467 + ], + [ + 14.5640706, + 46.0452467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stepc", + "uid": "13911774", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T12:32:55Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121714365 + } + }, + { + "id": 121714130, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5403048, + 46.049454 + ], + [ + 14.5478069, + 46.049454 + ], + [ + 14.5478069, + 46.0548716 + ], + [ + 14.5403048, + 46.0548716 + ], + [ + 14.5403048, + 46.049454 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stepc", + "uid": "13911774", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T12:29:59Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ], + "crossing": [ + "uncontrolled", + "marked" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000406433769600091, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121714130 + } + }, + { + "id": 121711834, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5436859, + 46.0556194 + ], + [ + 14.544749, + 46.0556194 + ], + [ + 14.544749, + 46.0563105 + ], + [ + 14.5436859, + 46.0563105 + ], + [ + 14.5436859, + 46.0556194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stepc", + "uid": "13911774", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T11:51:31Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.34708410004539e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "move": 1, + "theme": "charging_stations", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/5094130791": "improve_accuracy" + }, + "id": 121711834 + } + }, + { + "id": 121711267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9094077, + 48.281617 + ], + [ + 11.9094077, + 48.281617 + ], + [ + 11.9094077, + 48.281617 + ], + [ + 11.9094077, + 48.281617 + ], + [ + 11.9094077, + 48.281617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T11:41:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "HDM_HOT", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121711267 + } + }, + { + "id": 121708268, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8922595, + 48.2838994 + ], + [ + 11.9180855, + 48.2838994 + ], + [ + 11.9180855, + 48.3090325 + ], + [ + 11.8922595, + 48.3090325 + ], + [ + 11.8922595, + 48.2838994 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T10:46:19Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified", + "living_street", + "footway", + "service" + ], + "name:etymology:wikidata": [ + "Q57065", + "Q9021", + "Q22670", + "Q5879", + "Q75889", + "Q40904", + "Q937", + "Q43523", + "Q37193" + ] + }, + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.000649087440599955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 42, + "locale": "de", + "imagery": "osm" + }, + "id": 121708268 + } + }, + { + "id": 121707614, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9088796, + 48.2840051 + ], + [ + 11.909509, + 48.2840051 + ], + [ + 11.909509, + 48.284522 + ], + [ + 11.9088796, + 48.284522 + ], + [ + 11.9088796, + 48.2840051 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T10:34:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/T6NCl9U.jpg" + ], + "access": [ + "public" + ], + "image:0": [ + "https://i.imgur.com/ecLMc15.jpg" + ], + "leisure": [ + "pitch" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.25336860000242e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 121707614 + } + }, + { + "id": 121707585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.909126, + 48.2843191 + ], + [ + 11.909126, + 48.2843191 + ], + [ + 11.909126, + 48.2843191 + ], + [ + 11.909126, + 48.2843191 + ], + [ + 11.909126, + 48.2843191 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ThirdChild", + "uid": "9447503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T10:33:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 121707585 + } + }, + { + "id": 121699079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.052361, + 50.9264326 + ], + [ + 4.052361, + 50.9264326 + ], + [ + 4.052361, + 50.9264326 + ], + [ + 4.052361, + 50.9264326 + ], + [ + 4.052361, + 50.9264326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-30T07:52:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/LUbftFg.jpg" + ], + "image:0": [ + "https://i.imgur.com/NGXRvBI.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 121699079 + } + }, + { + "id": 121691387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.3662825, + 43.0905808 + ], + [ + -89.3658527, + 43.0905808 + ], + [ + -89.3658527, + 43.0906827 + ], + [ + -89.3662825, + 43.0906827 + ], + [ + -89.3662825, + 43.0905808 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Seaviator", + "uid": "9649188", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T05:32:51Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 4.37966200009972e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "Mapbox" + }, + "id": 121691387 + } + }, + { + "id": 121685539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2510992, + -39.7961176 + ], + [ + -73.2510992, + -39.7961176 + ], + [ + -73.2510992, + -39.7961176 + ], + [ + -73.2510992, + -39.7961176 + ], + [ + -73.2510992, + -39.7961176 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-30T02:34:10Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Nv3vSup.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 121685539 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-31.json b/Docs/Tools/stats/stats.2022-5-31.json new file mode 100644 index 0000000000..16ae9634a2 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-5-31.json @@ -0,0 +1,2076 @@ +{ + "features": [ + { + "id": 121786773, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0745608, + 38.8071178 + ], + [ + 0.0754854, + 38.8071178 + ], + [ + 0.0754854, + 38.8084354 + ], + [ + 0.0745608, + 38.8084354 + ], + [ + 0.0745608, + 38.8071178 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T22:12:57Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "service" + ], + "name:etymology:wikidata": [ + "Q432741" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000121825296000013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 3, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 3 + }, + "id": 121786773 + } + }, + { + "id": 121786221, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.5572506, + -33.0393257 + ], + [ + -71.5549348, + -33.0393257 + ], + [ + -71.5549348, + -33.0364578 + ], + [ + -71.5572506, + -33.0364578 + ], + [ + -71.5572506, + -33.0393257 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T21:48:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/0fOW279.jpg", + "https://i.imgur.com/bLDvlCV.jpg", + "https://i.imgur.com/fOKCmHx.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000664148282001087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 4 + }, + "id": 121786221 + } + }, + { + "id": 121781233, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2413194, + -39.8343216 + ], + [ + -73.2164607, + -39.8343216 + ], + [ + -73.2164607, + -39.8331935 + ], + [ + -73.2413194, + -39.8331935 + ], + [ + -73.2413194, + -39.8343216 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T19:05:00Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/aKkCxNR.jpg", + "https://i.imgur.com/Vy1BXUT.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000280430994700579, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "id": 121781233 + } + }, + { + "id": 121776368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7025535, + 50.5612412 + ], + [ + 4.7025535, + 50.5612412 + ], + [ + 4.7025535, + 50.5612412 + ], + [ + 4.7025535, + 50.5612412 + ], + [ + 4.7025535, + 50.5612412 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T16:30:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "SPW_ORTHO_LAST" + }, + "id": 121776368 + } + }, + { + "id": 121772762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2874701, + 53.2165877 + ], + [ + 6.2882609, + 53.2165877 + ], + [ + 6.2882609, + 53.216653 + ], + [ + 6.2874701, + 53.216653 + ], + [ + 6.2874701, + 53.2165877 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9785819818", + "osm_id": 9785819818, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-9785819817", + "osm_id": 9785819817, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T15:00:35Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.16392400022227e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2 + }, + "id": 121772762 + } + }, + { + "id": 121771802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6589498, + 50.5364451 + ], + [ + 4.6918541, + 50.5364451 + ], + [ + 4.6918541, + 50.5638179 + ], + [ + 4.6589498, + 50.5638179 + ], + [ + 4.6589498, + 50.5364451 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T14:38:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "yes", + "no" + ], + "capacity": [ + "6", + "10" + ], + "bicycle_parking": [ + "stands", + "wall_loops" + ] + }, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.000900682823039813, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 17, + "create": 3, + "locale": "en", + "imagery": "SPW_ORTHO_LAST" + }, + "id": 121771802 + } + }, + { + "id": 121770718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5653206, + 53.2109057 + ], + [ + 6.5653206, + 53.2109057 + ], + [ + 6.5653206, + 53.2109057 + ], + [ + 6.5653206, + 53.2109057 + ], + [ + 6.5653206, + 53.2109057 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T14:11:49Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 121770718 + } + }, + { + "id": 121770242, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T14:00:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 121770242 + } + }, + { + "id": 121768954, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6643242, + 50.5599471 + ], + [ + 4.6977416, + 50.5599471 + ], + [ + 4.6977416, + 50.5619296 + ], + [ + 4.6643242, + 50.5619296 + ], + [ + 4.6643242, + 50.5599471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:29:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/aRvw3mU.jpg", + "https://i.imgur.com/3WyViYd.jpg", + "https://i.imgur.com/qJmqduT.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000662499954998948, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 14, + "create": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5, + "change_over_5000m": 3, + "change_within_500m": 16, + "change_within_5000m": 3 + }, + "id": 121768954 + } + }, + { + "id": 121768882, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:28:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 121768882 + } + }, + { + "id": 121768873, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:27:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "id": 121768873 + } + }, + { + "id": 121768854, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:27:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "id": 121768854 + } + }, + { + "id": 121768850, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:27:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 2 + }, + "id": 121768850 + } + }, + { + "id": 121768842, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:27:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "id": 121768842 + } + }, + { + "id": 121768770, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.696704, + 50.562178 + ], + [ + 4.696704, + 50.562178 + ], + [ + 4.696704, + 50.562178 + ], + [ + 4.696704, + 50.562178 + ], + [ + 4.696704, + 50.562178 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:25:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 6 + }, + "id": 121768770 + } + }, + { + "id": 121768063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4142691, + -34.6086874 + ], + [ + -58.409965, + -34.6086874 + ], + [ + -58.409965, + -34.608503 + ], + [ + -58.4142691, + -34.608503 + ], + [ + -58.4142691, + -34.6086874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:09:24Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "0 4", + "O 12", + "A 12" + ], + "railway": [ + "signal" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 7.93676040008268e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 121768063 + } + }, + { + "id": 121767695, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4471123, + -34.6206531 + ], + [ + -58.4471123, + -34.6206531 + ], + [ + -58.4471123, + -34.6206531 + ], + [ + -58.4471123, + -34.6206531 + ], + [ + -58.4471123, + -34.6206531 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T13:00:42Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "switch" + ], + "railway:turnout_side": [ + "right" + ], + "railway:switch:electric": [ + "no" + ], + "railway:switch:local_operated": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 121767695 + } + }, + { + "id": 121765066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6952391, + 50.5583978 + ], + [ + 4.6977416, + 50.5583978 + ], + [ + 4.6977416, + 50.5619296 + ], + [ + 4.6952391, + 50.5619296 + ], + [ + 4.6952391, + 50.5583978 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T12:00:08Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "capacity": [ + "4" + ], + "cargo_bike": [ + "yes" + ], + "capacity:cargo_bike": [ + "4" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000883832949999173, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 16, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121765066 + } + }, + { + "id": 121764271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2655383, + 53.2053579 + ], + [ + 6.2655383, + 53.2053579 + ], + [ + 6.2655383, + 53.2053579 + ], + [ + 6.2655383, + 53.2053579 + ], + [ + 6.2655383, + 53.2053579 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9785317531", + "osm_id": 9785317531, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T11:43:43Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1 + }, + "id": 121764271 + } + }, + { + "id": 121764147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T11:40:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_500m": 2 + }, + "id": 121764147 + } + }, + { + "id": 121764113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.263392, + 53.2048723 + ], + [ + 6.263577, + 53.2048723 + ], + [ + 6.263577, + 53.2048875 + ], + [ + 6.263392, + 53.2048875 + ], + [ + 6.263392, + 53.2048723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T11:40:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.81200000000025e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_500m": 5 + }, + "id": 121764113 + } + }, + { + "id": 121760604, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2363372, + 50.7396603 + ], + [ + 4.2363372, + 50.7396603 + ], + [ + 4.2363372, + 50.7396603 + ], + [ + 4.2363372, + 50.7396603 + ], + [ + 4.2363372, + 50.7396603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T10:20:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121760604 + } + }, + { + "id": 121757751, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6958255, + 50.5633418 + ], + [ + 4.6966804, + 50.5633418 + ], + [ + 4.6966804, + 50.5639924 + ], + [ + 4.6958255, + 50.5639924 + ], + [ + 4.6958255, + 50.5633418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T09:27:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 5.56197939994208e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/", + "theme": "cyclofix", + "answer": 8, + "create": 2, + "locale": "en", + "add-image": 3 + }, + "id": 121757751 + } + }, + { + "id": 121757710, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T09:26:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121757710 + } + }, + { + "id": 121757701, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T09:26:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121757701 + } + }, + { + "id": 121756893, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6941689, + 50.5616893 + ], + [ + 4.6974234, + 50.5616893 + ], + [ + 4.6974234, + 50.5694227 + ], + [ + 4.6941689, + 50.5694227 + ], + [ + 4.6941689, + 50.5616893 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T09:09:54Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/J2ncENL.jpg", + "https://i.imgur.com/3XcLgVy.jpg", + "https://i.imgur.com/XKJSJsz.jpg" + ], + "amenity": [ + "bicycle_parking" + ], + "cargo_bike": [ + "yes" + ], + "capacity:cargo_bike": [ + "1" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000251683502999956, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "id": 121756893 + } + }, + { + "id": 121756868, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.4892489, + 44.9027052 + ], + [ + -0.488266, + 44.9027052 + ], + [ + -0.488266, + 44.9034454 + ], + [ + -0.4892489, + 44.9034454 + ], + [ + -0.4892489, + 44.9027052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T09:09:21Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "sports" + ], + "building": [ + "yes" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 7.27542580002704e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "id": 121756868 + } + }, + { + "id": 121756160, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2282714, + 50.7313349 + ], + [ + 4.2396822, + 50.7313349 + ], + [ + 4.2396822, + 50.7427775 + ], + [ + 4.2282714, + 50.7427775 + ], + [ + 4.2282714, + 50.7313349 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-05-31T08:53:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "material": [ + "wood" + ], + "direction": [ + "109" + ] + }, + "create": 27, + "modify": 19, + "delete": 0, + "area": 0.000130569220080028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 69, + "create": 27, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 1, + "change_within_5000m": 3 + }, + "id": 121756160 + } + }, + { + "id": 121754924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1979668, + 50.9121613 + ], + [ + 4.198232, + 50.9121613 + ], + [ + 4.198232, + 50.9132137 + ], + [ + 4.1979668, + 50.9132137 + ], + [ + 4.1979668, + 50.9121613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T08:30:09Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "residential" + ], + "surface": [ + "asphalt" + ], + "cycleway": [ + "no" + ], + "smoothness": [ + "excellent" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.79096480000037e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121754924 + } + }, + { + "id": 121746554, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.544749, + 46.0556194 + ], + [ + 14.544749, + 46.0556194 + ], + [ + 14.544749, + 46.0556194 + ], + [ + 14.544749, + 46.0556194 + ], + [ + 14.544749, + 46.0556194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stepc", + "uid": "13911774", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-05-31T05:09:15Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "image": [ + "https://i.imgur.com/k5G9zzj.jpg" + ], + "phone": [ + "+386 1 471 46 66" + ], + "access": [ + "yes" + ], + "charge": [ + "0.25€/kwh (full registration), 0.30€/kwh (temporary registration), extra charge of 0.07€/min after 180min" + ], + "amenity": [ + "charging_station" + ], + "maxstay": [ + "unlimited" + ], + "network": [ + "OneCharge" + ], + "parking:fee": [ + "no" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "1" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "no" + ], + "socket:type2:output": [ + "22 kW" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 13, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121746554 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-01.json b/Docs/Tools/stats/stats.2022-6-01.json new file mode 100644 index 0000000000..23d98db7c5 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-01.json @@ -0,0 +1,1162 @@ +{ + "features": [ + { + "id": 121830828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4773602, + -34.6312868 + ], + [ + -58.4762827, + -34.6312868 + ], + [ + -58.4762827, + -34.6309174 + ], + [ + -58.4773602, + -34.6309174 + ], + [ + -58.4773602, + -34.6312868 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T23:59:45Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "train", + "tracks" + ], + "railway": [ + "level_crossing", + "crossing" + ], + "crossing:activation": [ + "automatic" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.98028499996844e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "change_within_500m": 2 + }, + "id": 121830828 + } + }, + { + "id": 121826070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4016342, + 50.8594183 + ], + [ + 4.4016342, + 50.8594183 + ], + [ + 4.4016342, + 50.8594183 + ], + [ + 4.4016342, + 50.8594183 + ], + [ + 4.4016342, + 50.8594183 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T19:58:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Ur0dzMf.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121826070 + } + }, + { + "id": 121823684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.32204, + 50.8315324 + ], + [ + 4.32204, + 50.8315324 + ], + [ + 4.32204, + 50.8315324 + ], + [ + 4.32204, + 50.8315324 + ], + [ + 4.32204, + 50.8315324 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T18:47:58Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VrkSpQA.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121823684 + } + }, + { + "id": 121822540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3021159, + 50.9728771 + ], + [ + 4.9006386, + 50.9728771 + ], + [ + 4.9006386, + 51.1353962 + ], + [ + 4.3021159, + 51.1353962 + ], + [ + 4.3021159, + 50.9728771 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wegspotter", + "uid": "428001", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-01T18:08:14Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "foot", + "bus" + ], + "amenity": [ + "toilets", + "bench" + ], + "highway": [ + "path", + "secondary_link", + "tertiary", + "cycleway", + "service", + "secondary" + ], + "leisure": [ + "park", + "picnic_table" + ], + "boundary": [ + "administrative", + "postal_code" + ], + "man_made": [ + "bridge" + ] + }, + "create": 26, + "modify": 11, + "delete": 0, + "area": 0.0972713705335725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 31, + "create": 2, + "import": 24, + "locale": "nl", + "imagery": "osm", + "import:node/-10": "source: https://osm.org/note/3143578", + "import:node/-11": "source: https://osm.org/note/3090173", + "import:node/-12": "source: https://osm.org/note/3090150", + "import:node/-14": "source: https://osm.org/note/3143504", + "import:node/-15": "source: https://osm.org/note/3143576", + "import:node/-17": "source: https://osm.org/note/3143507", + "import:node/-18": "source: https://osm.org/note/3143515", + "import:node/-19": "source: https://osm.org/note/3143509", + "import:node/-20": "source: https://osm.org/note/3143409", + "import:node/-21": "source: https://osm.org/note/3143412", + "import:node/-22": "source: https://osm.org/note/3143427", + "import:node/-23": "source: https://osm.org/note/3143548", + "import:node/-24": "source: https://osm.org/note/3143575", + "import:node/-25": "source: https://osm.org/note/3143408", + "import:node/-26": "source: https://osm.org/note/3022987", + "import:node/9788854260": "source: https://osm.org/note/3143537", + "import:node/9788865814": "source: https://osm.org/note/3143506", + "import:node/9788885168": "source: https://osm.org/note/3023067", + "import:node/9788885181": "source: https://osm.org/note/3022925", + "import:node/9788891455": "source: https://osm.org/note/3023072", + "import:node/9788917843": "source: https://osm.org/note/3143519", + "import:node/9788922775": "source: https://osm.org/note/3143539", + "import:node/9788930923": "source: https://osm.org/note/3143554", + "import:node/9788933325": "source: https://osm.org/note/3143551" + }, + "id": 121822540 + } + }, + { + "id": 121822375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.401792, + 51.0429294 + ], + [ + 3.401792, + 51.0429294 + ], + [ + 3.401792, + 51.0429294 + ], + [ + 3.401792, + 51.0429294 + ], + [ + 3.401792, + 51.0429294 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-01T18:02:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121822375 + } + }, + { + "id": 121821532, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T17:34:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 121821532 + } + }, + { + "id": 121821529, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T17:34:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "id": 121821529 + } + }, + { + "id": 121821519, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T17:34:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 121821519 + } + }, + { + "id": 121821510, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T17:34:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 121821510 + } + }, + { + "id": 121820311, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4401348, + 50.984066 + ], + [ + 4.4401348, + 50.984066 + ], + [ + 4.4401348, + 50.984066 + ], + [ + 4.4401348, + 50.984066 + ], + [ + 4.4401348, + 50.984066 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-01T16:53:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121820311 + } + }, + { + "id": 121818377, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1618575, + 49.6176337 + ], + [ + 6.1618575, + 49.6176337 + ], + [ + 6.1618575, + 49.6176337 + ], + [ + 6.1618575, + 49.6176337 + ], + [ + 6.1618575, + 49.6176337 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T15:54:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 121818377 + } + }, + { + "id": 121815682, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7602277, + 51.1617329 + ], + [ + 4.7617097, + 51.1617329 + ], + [ + 4.7617097, + 51.1653178 + ], + [ + 4.7602277, + 51.1653178 + ], + [ + 4.7602277, + 51.1617329 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-01T14:43:13Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ] + }, + "create": 23, + "modify": 0, + "delete": 0, + "area": 0.00000531282180000057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 121815682 + } + }, + { + "id": 121813712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5498025, + -34.639664 + ], + [ + -58.5498025, + -34.639664 + ], + [ + -58.5498025, + -34.639664 + ], + [ + -58.5498025, + -34.639664 + ], + [ + -58.5498025, + -34.639664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T13:49:15Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "A 86" + ], + "railway": [ + "signal" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 121813712 + } + }, + { + "id": 121813330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6946945, + 50.8257843 + ], + [ + 5.6946945, + 50.8257843 + ], + [ + 5.6946945, + 50.8257843 + ], + [ + 5.6946945, + 50.8257843 + ], + [ + 5.6946945, + 50.8257843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T13:38:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6 + }, + "id": 121813330 + } + }, + { + "id": 121810416, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5084333, + 35.9073316 + ], + [ + 14.5120114, + 35.9073316 + ], + [ + 14.5120114, + 35.9083098 + ], + [ + 14.5084333, + 35.9083098 + ], + [ + 14.5084333, + 35.9073316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nevborg", + "uid": "2457325", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-01T12:22:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000350009741999573, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121810416 + } + }, + { + "id": 121807731, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2346053, + 50.7367357 + ], + [ + 4.2356423, + 50.7367357 + ], + [ + 4.2356423, + 50.736828 + ], + [ + 4.2346053, + 50.736828 + ], + [ + 4.2346053, + 50.7367357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-01T11:20:47Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "image:0": [ + "https://i.imgur.com/2s2ZVR5.jpg" + ], + "capacity": [ + "6", + "4" + ], + "cargo_bike": [ + "yes" + ], + "bicycle_parking": [ + "stands", + "rack" + ], + "capacity:cargo_bike": [ + "1" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 9.57151000059347e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 10, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "id": 121807731 + } + }, + { + "id": 121797249, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ], + [ + 6.2626188, + 53.2341393 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-01T07:23:35Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "denotation": [ + "natural_monument" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 121797249 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-02.json b/Docs/Tools/stats/stats.2022-6-02.json new file mode 100644 index 0000000000..64c60c694b --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-02.json @@ -0,0 +1,1267 @@ +{ + "features": [ + { + "id": 121871323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.232757, + -39.8306165 + ], + [ + -73.232254, + -39.8306165 + ], + [ + -73.232254, + -39.8296762 + ], + [ + -73.232757, + -39.8296762 + ], + [ + -73.232757, + -39.8306165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T23:26:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/z8NeOOg.jpg", + "https://i.imgur.com/ESDLEgV.jpg", + "https://i.imgur.com/dIKf1IX.jpg", + "https://i.imgur.com/82Epx0k.jpg", + "https://i.imgur.com/Im4ZNF5.jpg", + "https://i.imgur.com/45nNiqD.jpg", + "https://i.imgur.com/kTjyUoo.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 4.72970900006645e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 7 + }, + "id": 121871323 + } + }, + { + "id": 121871141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0212511, + 14.5628527 + ], + [ + 121.0212511, + 14.5628527 + ], + [ + 121.0212511, + 14.5628527 + ], + [ + 121.0212511, + 14.5628527 + ], + [ + 121.0212511, + 14.5628527 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T23:13:01Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "Freeform used on 'bicycle_parking'-tag: possibly a wrong value" + ], + "image": [ + "https://i.imgur.com/GX18j1a.jpg" + ], + "access": [ + "customers" + ], + "amenity": [ + "bicycle_parking" + ], + "bicycle_parking": [ + "yes", + "railing" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121871141 + } + }, + { + "id": 121869884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.232186, + -39.8307888 + ], + [ + -73.2316372, + -39.8307888 + ], + [ + -73.2316372, + -39.8302944 + ], + [ + -73.232186, + -39.8302944 + ], + [ + -73.232186, + -39.8307888 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T21:57:14Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/tEBP5sA.jpg", + "https://i.imgur.com/kQLuXLT.jpg", + "https://i.imgur.com/u2FaKpJ.jpg", + "https://i.imgur.com/P7pmNMT.jpg", + "https://i.imgur.com/cgwp2vh.jpg", + "https://i.imgur.com/tmdcU9B.jpg" + ], + "image:0": [ + "https://i.imgur.com/RQ7Mus2.jpg" + ], + "image:1": [ + "https://i.imgur.com/X4Wx2f3.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.71326720002584e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 8 + }, + "id": 121869884 + } + }, + { + "id": 121868369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2317231, + -39.83117 + ], + [ + -73.2315383, + -39.83117 + ], + [ + -73.2315383, + -39.8309504 + ], + [ + -73.2317231, + -39.8309504 + ], + [ + -73.2317231, + -39.83117 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T20:53:47Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Mc2W3Qr.jpg", + "https://i.imgur.com/wJqDbr9.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.05820800001224e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "id": 121868369 + } + }, + { + "id": 121863141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0961074, + 48.8408778 + ], + [ + 10.0961074, + 48.8408778 + ], + [ + 10.0961074, + 48.8408778 + ], + [ + 10.0961074, + 48.8408778 + ], + [ + 10.0961074, + 48.8408778 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T18:03:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Tgyr9mE.jpg" + ], + "amenity": [ + "toilets" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 121863141 + } + }, + { + "id": 121859599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6643242, + 50.5601827 + ], + [ + 4.695168, + 50.5601827 + ], + [ + 4.695168, + 50.5642614 + ], + [ + 4.6643242, + 50.5642614 + ], + [ + 4.6643242, + 50.5601827 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9790984738", + "osm_id": 9790984738, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T16:27:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/wpOxkw1.jpg" + ], + "amenity": [ + "bicycle_parking", + "bicycle_library", + "bicycle_repair_station" + ] + }, + "create": 8, + "modify": 22, + "delete": 1, + "area": 0.000125802607060025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 32, + "create": 8, + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "add-image": 8, + "change_over_5000m": 9, + "change_within_25m": 40, + "deletion:node/9785604436": "duplicate" + }, + "id": 121859599 + } + }, + { + "id": 121856741, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6141915, + 43.1816863 + ], + [ + 5.6141915, + 43.1816863 + ], + [ + 5.6141915, + 43.1816863 + ], + [ + 5.6141915, + 43.1816863 + ], + [ + 5.6141915, + 43.1816863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T15:22:41Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ], + "operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2 + }, + "id": 121856741 + } + }, + { + "id": 121855658, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9371133, + 50.9687189 + ], + [ + 4.9685405, + 50.9687189 + ], + [ + 4.9685405, + 50.9963481 + ], + [ + 4.9371133, + 50.9963481 + ], + [ + 4.9371133, + 50.9687189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T14:55:04Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "email": [ + "sportenjeugd@scherpenheuvel-zichem.be" + ], + "phone": [ + "+32 13 39 14 40" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "website": [ + "https://www.scherpenheuvel-zichem.be/toerisme-en-vrije-tijd/kinderen-en-jongeren/speelterreinen/speelterrein-planetenwijk-scherpenheuvel", + "https://www.scherpenheuvel-zichem.be/speelterrein-vossenberg-keiberg", + "https://www.scherpenheuvel-zichem.be/speelterrein-merellaan-lijsterlaan-schoonderbuken" + ], + "operator": [ + "Gemeente Scherpenheuvel-Zichem" + ] + }, + "create": 1, + "modify": 18, + "delete": 0, + "area": 0.000868308394239981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 21, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121855658 + } + }, + { + "id": 121854064, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5339336, + 51.1539547 + ], + [ + 5.5593288, + 51.1539547 + ], + [ + 5.5593288, + 51.1745414 + ], + [ + 5.5339336, + 51.1745414 + ], + [ + 5.5339336, + 51.1539547 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ToerBocholt", + "uid": "16178470", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T14:16:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ], + "leisure": [ + "playground" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00052280336384007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 121854064 + } + }, + { + "id": 121853404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1523533, + 50.7597604 + ], + [ + 4.1523533, + 50.7597604 + ], + [ + 4.1523533, + 50.7597604 + ], + [ + 4.1523533, + 50.7597604 + ], + [ + 4.1523533, + 50.7597604 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T13:58:20Z", + "reviewed_features": [], + "tag_changes": { + "traffic_sign:issue": [ + "Dit zou een C3 moeten zijn", + "Dit zou een C3 moeten zijn; er zou 50 meter verder nog een bord moeten zijn" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121853404 + } + }, + { + "id": 121850761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6622172, + 50.5596732 + ], + [ + 4.6622172, + 50.5596732 + ], + [ + 4.6622172, + 50.5596732 + ], + [ + 4.6622172, + 50.5596732 + ], + [ + 4.6622172, + 50.5596732 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T12:45:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "cyclosm", + "add-image": 1, + "change_over_5000m": 8 + }, + "id": 121850761 + } + }, + { + "id": 121850677, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T12:42:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "cyclosm", + "change_over_5000m": 2 + }, + "id": 121850677 + } + }, + { + "id": 121850656, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T12:42:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "cyclosm", + "change_over_5000m": 1 + }, + "id": 121850656 + } + }, + { + "id": 121849906, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2186376, + 51.2072158 + ], + [ + 3.2199645, + 51.2072158 + ], + [ + 3.2199645, + 51.2076978 + ], + [ + 3.2186376, + 51.2076978 + ], + [ + 3.2186376, + 51.2072158 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T12:19:25Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "addr:street": [ + "Wulfhagestraat" + ], + "addr:housenumber": [ + "12" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 6.39565799997482e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_500m": 4 + }, + "id": 121849906 + } + }, + { + "id": 121847347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.7841905, + 48.4156942 + ], + [ + 9.7841905, + 48.4156942 + ], + [ + 9.7841905, + 48.4156942 + ], + [ + 9.7841905, + 48.4156942 + ], + [ + 9.7841905, + 48.4156942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T11:07:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/KcY5Cca.jpg" + ], + "access": [ + "yes" + ], + "indoor": [ + "no", + "yes" + ], + "survey:date": [ + "2022-06-02" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 121847347 + } + }, + { + "id": 121844176, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.786001, + 48.4132021 + ], + [ + 9.786001, + 48.4132021 + ], + [ + 9.786001, + 48.4132021 + ], + [ + 9.786001, + 48.4132021 + ], + [ + 9.786001, + 48.4132021 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-02T09:46:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YIyPeie.jpg" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 121844176 + } + }, + { + "id": 121838532, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6970093, + 50.567331 + ], + [ + 4.6973258, + 50.567331 + ], + [ + 4.6973258, + 50.5675694 + ], + [ + 4.6970093, + 50.5675694 + ], + [ + 4.6970093, + 50.567331 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.19.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-02T07:24:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 7.54535999978069e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 11, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "id": 121838532 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-03.json b/Docs/Tools/stats/stats.2022-6-03.json new file mode 100644 index 0000000000..bb9d908fb8 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-03.json @@ -0,0 +1,1797 @@ +{ + "features": [ + { + "id": 121911414, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1456337, + 52.4187189 + ], + [ + 14.1456337, + 52.4187189 + ], + [ + 14.1456337, + 52.4187189 + ], + [ + 14.1456337, + 52.4187189 + ], + [ + 14.1456337, + 52.4187189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T19:01:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121911414 + } + }, + { + "id": 121908433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.049599, + -36.8139974 + ], + [ + -73.049599, + -36.8139974 + ], + [ + -73.049599, + -36.8139974 + ], + [ + -73.049599, + -36.8139974 + ], + [ + -73.049599, + -36.8139974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T18:01:33Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "heritage": [ + "yes" + ], + "denotation": [ + "natural_monument", + "street" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "id": 121908433 + } + }, + { + "id": 121908299, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.941501, + 53.4371697 + ], + [ + 18.9422106, + 53.4371697 + ], + [ + 18.9422106, + 53.437546 + ], + [ + 18.941501, + 53.437546 + ], + [ + 18.941501, + 53.4371697 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "macaddr", + "uid": "13378425", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T17:58:17Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "barrier": [ + "fence" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.67022479999604e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 121908299 + } + }, + { + "id": 121907674, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6630242, + 50.5601629 + ], + [ + 4.6657722, + 50.5601629 + ], + [ + 4.6657722, + 50.5617783 + ], + [ + 4.6630242, + 50.5617783 + ], + [ + 4.6630242, + 50.5601629 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T17:42:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000443911919999683, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 12, + "create": 2, + "locale": "en", + "imagery": "HDM_HOT", + "change_over_5000m": 2, + "change_within_5000m": 12 + }, + "id": 121907674 + } + }, + { + "id": 121903206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2802261, + 47.7961281 + ], + [ + -4.2801718, + 47.7961281 + ], + [ + -4.2801718, + 47.796142 + ], + [ + -4.2802261, + 47.796142 + ], + [ + -4.2802261, + 47.7961281 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T16:02:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/PWO9PCf.jpg", + "https://i.imgur.com/DU4k6Jj.jpg" + ], + "amenity": [ + "recycling" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 7.54770000337672e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 3, + "change_within_500m": 2 + }, + "id": 121903206 + } + }, + { + "id": 121903039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2780006, + 47.7959265 + ], + [ + -4.2779533, + 47.7959265 + ], + [ + -4.2779533, + 47.7959512 + ], + [ + -4.2780006, + 47.7959512 + ], + [ + -4.2780006, + 47.7959265 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T15:58:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/yp5fZki.jpg" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.16830999988097e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 121903039 + } + }, + { + "id": 121902864, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7053571, + 51.0278079 + ], + [ + 3.7053571, + 51.0278079 + ], + [ + 3.7053571, + 51.0278079 + ], + [ + 3.7053571, + 51.0278079 + ], + [ + 3.7053571, + 51.0278079 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T15:55:07Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 121902864 + } + }, + { + "id": 121902857, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.277912, + 47.7960841 + ], + [ + -4.277912, + 47.7960841 + ], + [ + -4.277912, + 47.7960841 + ], + [ + -4.277912, + 47.7960841 + ], + [ + -4.277912, + 47.7960841 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T15:54:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/8ANOSVX.jpg" + ], + "amenity": [ + "fast_food" + ], + "wheelchair": [ + "limited" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "id": 121902857 + } + }, + { + "id": 121902736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2776398, + 47.7960467 + ], + [ + -4.2776398, + 47.7960467 + ], + [ + -4.2776398, + 47.7960467 + ], + [ + -4.2776398, + 47.7960467 + ], + [ + -4.2776398, + 47.7960467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T15:52:38Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Mp4WiZk.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "Cadastre", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 121902736 + } + }, + { + "id": 121902216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.786211, + 48.413471 + ], + [ + 9.786211, + 48.413471 + ], + [ + 9.786211, + 48.413471 + ], + [ + 9.786211, + 48.413471 + ], + [ + 9.786211, + 48.413471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T15:42:09Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "fee": [ + "yes" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/HsBSbRW.jpg" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "no" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 121902216 + } + }, + { + "id": 121899091, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.7502487, + 53.435716 + ], + [ + 18.9390591, + 53.435716 + ], + [ + 18.9390591, + 53.4904115 + ], + [ + 18.7502487, + 53.4904115 + ], + [ + 18.7502487, + 53.435716 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "macaddr", + "uid": "13378425", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T14:32:45Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "camera:direction": [ + "130" + ], + "surveillance:zone": [ + "parking" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0103270792332003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121899091 + } + }, + { + "id": 121898826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.9419333, + 53.4380603 + ], + [ + 18.9419333, + 53.4380603 + ], + [ + 18.9419333, + 53.4380603 + ], + [ + 18.9419333, + 53.4380603 + ], + [ + 18.9419333, + 53.4380603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "macaddr", + "uid": "13378425", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T14:26:38Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "lamp_mount": [ + "bent_mast" + ], + "light:count": [ + "1" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 121898826 + } + }, + { + "id": 121898273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T14:14:21Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "sports_centre" + ], + "opening_hours": [ + "Mo-Fr 07:45-22:00; Sa 08:00-18:00; Su 08:00-13:00;PH off", + "Mo-Fr 08:00-23:00; Sa 08:00-22:00; Su 08:00-16:00" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "id": 121898273 + } + }, + { + "id": 121898202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.7497059, + 53.4788636 + ], + [ + 18.7530143, + 53.4788636 + ], + [ + 18.7530143, + 53.4902106 + ], + [ + 18.7497059, + 53.4902106 + ], + [ + 18.7497059, + 53.4788636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "macaddr", + "uid": "13378425", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T14:12:46Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "building": [ + "yes" + ], + "entrance": [ + "secondary", + "yes" + ], + "automatic_door": [ + "no" + ] + }, + "create": 1, + "modify": 13, + "delete": 0, + "area": 0.000037540414800021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 14, + "create": 2, + "locale": "en", + "imagery": "Geoportal2-PL-aerial_image_WMTS" + }, + "id": 121898202 + } + }, + { + "id": 121895716, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1149699, + 45.0119662 + ], + [ + 0.1153946, + 45.0119662 + ], + [ + 0.1153946, + 45.01234 + ], + [ + 0.1149699, + 45.01234 + ], + [ + 0.1149699, + 45.0119662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T13:24:17Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.58752859999331e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 2, + "change_within_100m": 5 + }, + "id": 121895716 + } + }, + { + "id": 121893784, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.7841748, + 48.4157049 + ], + [ + 9.7841748, + 48.4157049 + ], + [ + 9.7841748, + 48.4157049 + ], + [ + 9.7841748, + 48.4157049 + ], + [ + 9.7841748, + 48.4157049 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T12:46:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/uw09UPb.jpg" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 121893784 + } + }, + { + "id": 121893009, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2919769, + 50.9934448 + ], + [ + 5.2919769, + 50.9934448 + ], + [ + 5.2919769, + 50.9934448 + ], + [ + 5.2919769, + 50.9934448 + ], + [ + 5.2919769, + 50.9934448 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T12:30:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1, + "import:node/9792436412": "source: https://osm.org/note/3044405" + }, + "id": 121893009 + } + }, + { + "id": 121891827, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8092803, + 43.9475412 + ], + [ + 4.8092803, + 43.9475412 + ], + [ + 4.8092803, + 43.9475412 + ], + [ + 4.8092803, + 43.9475412 + ], + [ + 4.8092803, + 43.9475412 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T12:06:28Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 121891827 + } + }, + { + "id": 121890920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0031754, + 50.9143032 + ], + [ + 5.0031754, + 50.9143032 + ], + [ + 5.0031754, + 50.9143032 + ], + [ + 5.0031754, + 50.9143032 + ], + [ + 5.0031754, + 50.9143032 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T11:48:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "link-image": 1 + }, + "id": 121890920 + } + }, + { + "id": 121888941, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T11:04:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking_space" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121888941 + } + }, + { + "id": 121882456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0385858, + 50.9221514 + ], + [ + 4.0772923, + 50.9221514 + ], + [ + 4.0772923, + 50.9346099 + ], + [ + 4.0385858, + 50.9346099 + ], + [ + 4.0385858, + 50.9221514 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vincent Van Heghe", + "uid": "4624802", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T08:23:25Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Somergembos", + "Parktuin Schelfhout" + ], + "access": [ + "yes" + ], + "landuse": [ + "forest" + ], + "leisure": [ + "park" + ], + "boundary": [ + "protected_area" + ], + "operator": [ + "Natuurpunt" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00048222493025004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "id": 121882456 + } + }, + { + "id": 121879671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3006821, + 50.8071335 + ], + [ + 4.3006821, + 50.8071335 + ], + [ + 4.3006821, + 50.8071335 + ], + [ + 4.3006821, + 50.8071335 + ], + [ + 4.3006821, + 50.8071335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T07:20:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2 + }, + "id": 121879671 + } + }, + { + "id": 121876090, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ], + [ + 1.7128895, + 41.2184252 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-03T05:37:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking_space" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121876090 + } + }, + { + "id": 121872925, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.514267, + -34.4713306 + ], + [ + -58.5142478, + -34.4713306 + ], + [ + -58.5142478, + -34.4713223 + ], + [ + -58.514267, + -34.4713223 + ], + [ + -58.514267, + -34.4713306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-03T02:18:36Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "signal" + ], + "railway:signal:position": [ + "left" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.59360000063877e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7 + }, + "id": 121872925 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-04.json b/Docs/Tools/stats/stats.2022-6-04.json new file mode 100644 index 0000000000..d44fdfe8a7 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-04.json @@ -0,0 +1,2331 @@ +{ + "features": [ + { + "id": 121955897, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.9417057, + 14.4756233 + ], + [ + 121.2054562, + 14.4756233 + ], + [ + 121.2054562, + 14.7494825 + ], + [ + 120.9417057, + 14.7494825 + ], + [ + 120.9417057, + 14.4756233 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T22:56:10Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "PRIDE Binangonan", + "PRIDE BInangonan" + ], + "lgbtq": [ + "welcome", + "friendly" + ], + "office": [ + "association" + ], + "amenity": [ + "social_facility", + "bar" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0722305009295998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121955897 + } + }, + { + "id": 121955635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.8509143, + -27.4812184 + ], + [ + -58.8172702, + -27.4812184 + ], + [ + -58.8172702, + -27.4694499 + ], + [ + -58.8509143, + -27.4694499 + ], + [ + -58.8509143, + -27.4812184 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jmourglia", + "uid": "1814226", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-04T22:37:02Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "Freeform field used for artwork type - doublecheck the value" + ], + "image": [ + "https://i.imgur.com/UajpE81.jpg", + "https://i.imgur.com/3JV4xN5.jpg", + "https://i.imgur.com/5KpRxi3.jpg", + "https://i.imgur.com/ddvruc7.jpg" + ], + "image:0": [ + "https://i.imgur.com/jjlUuM4.jpg", + "https://i.imgur.com/GBwXLdh.jpg" + ], + "image:1": [ + "https://i.imgur.com/hW1xHmm.jpg" + ], + "tourism": [ + "artwork" + ], + "artist_name": [ + "kura" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000395940590849917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 7 + }, + "id": 121955635 + } + }, + { + "id": 121954681, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T21:43:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121954681 + } + }, + { + "id": 121954424, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4504297, + 50.8688095 + ], + [ + 4.4506651, + 50.8688095 + ], + [ + 4.4506651, + 50.869087 + ], + [ + 4.4504297, + 50.869087 + ], + [ + 4.4504297, + 50.8688095 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-04T21:33:05Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xSR5pVy.jpg" + ], + "image:0": [ + "https://i.imgur.com/JJq2zMm.jpg" + ], + "leisure": [ + "playground" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.53235000007239e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 121954424 + } + }, + { + "id": 121952098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0301882, + 14.6234142 + ], + [ + 121.0303851, + 14.6234142 + ], + [ + 121.0303851, + 14.6235816 + ], + [ + 121.0301882, + 14.6235816 + ], + [ + 121.0301882, + 14.6234142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T20:01:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar" + ], + "building": [ + "yes" + ], + "contact:facebook": [ + "https://www.facebook.com/fahrenheitclubmanila/" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.29610600010895e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121952098 + } + }, + { + "id": 121951074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.1023868, + 14.6034278 + ], + [ + 121.1023868, + 14.6034278 + ], + [ + 121.1023868, + 14.6034278 + ], + [ + 121.1023868, + 14.6034278 + ], + [ + 121.1023868, + 14.6034278 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T19:29:17Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "delete@g.com" + ], + "amenity": [ + "fast_food" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121951074 + } + }, + { + "id": 121949177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3233021, + 50.9978061 + ], + [ + 3.3233021, + 50.9978061 + ], + [ + 3.3233021, + 50.9978061 + ], + [ + 3.3233021, + 50.9978061 + ], + [ + 3.3233021, + 50.9978061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T18:21:08Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 121949177 + } + }, + { + "id": 121949096, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2774142, + 47.7977984 + ], + [ + -4.2774142, + 47.7977984 + ], + [ + -4.2774142, + 47.7977984 + ], + [ + -4.2774142, + 47.7977984 + ], + [ + -4.2774142, + 47.7977984 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T18:17:59Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "0" + ], + "access": [ + "yes" + ], + "wheelchair": [ + "yes" + ], + "defibrillator:location:en": [ + "In the hall, on the left, near exit emergency" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "id": 121949096 + } + }, + { + "id": 121949028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0301882, + 14.6234142 + ], + [ + 121.0377205, + 14.6234142 + ], + [ + 121.0377205, + 14.672904 + ], + [ + 121.0301882, + 14.672904 + ], + [ + 121.0301882, + 14.6234142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T18:14:39Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "fclubphilippines@yahoo.com" + ], + "office": [ + "ngo", + "association" + ], + "amenity": [ + "bar" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000372772020540422, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 121949028 + } + }, + { + "id": 121948749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3231027, + 50.9973437 + ], + [ + 3.3240883, + 50.9973437 + ], + [ + 3.3240883, + 50.9985594 + ], + [ + 3.3231027, + 50.9985594 + ], + [ + 3.3231027, + 50.9973437 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T18:05:18Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench", + "waste_basket" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0000011981939199959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 7, + "create": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 7 + }, + "id": 121948749 + } + }, + { + "id": 121948514, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3235095, + 50.9982068 + ], + [ + 3.3241702, + 50.9982068 + ], + [ + 3.3241702, + 50.9986443 + ], + [ + 3.3235095, + 50.9986443 + ], + [ + 3.3235095, + 50.9982068 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T17:58:56Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle" + ], + "highway": [ + "footway" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.89056250002584e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "entrances", + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 121948514 + } + }, + { + "id": 121948508, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T17:58:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 121948508 + } + }, + { + "id": 121948441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3235043, + 50.9986135 + ], + [ + 3.3235043, + 50.9986135 + ], + [ + 3.3235043, + 50.9986135 + ], + [ + 3.3235043, + 50.9986135 + ], + [ + 3.3235043, + 50.9986135 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T17:55:46Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121948441 + } + }, + { + "id": 121948275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3231141, + 50.9974306 + ], + [ + 3.3241433, + 50.9974306 + ], + [ + 3.3241433, + 50.9986071 + ], + [ + 3.3231141, + 50.9986071 + ], + [ + 3.3231141, + 50.9974306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T17:49:32Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.00000121085379999923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 43, + "create": 7, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 8, + "change_within_25m": 43, + "import:node/9795328273": "source: https://osm.org/note/3156394" + }, + "id": 121948275 + } + }, + { + "id": 121945314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3526206, + 50.8515168 + ], + [ + 4.3526581, + 50.8515168 + ], + [ + 4.3526581, + 50.8515898 + ], + [ + 4.3526206, + 50.8515898 + ], + [ + 4.3526206, + 50.8515168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moh glk", + "uid": "16199465", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T16:19:18Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.73750000004231e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 2, + "move:node/7376270730": "improve_accuracy" + }, + "id": 121945314 + } + }, + { + "id": 121944895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8537228, + 50.90854 + ], + [ + 4.8537308, + 50.90854 + ], + [ + 4.8537308, + 50.9085451 + ], + [ + 4.8537228, + 50.9085451 + ], + [ + 4.8537228, + 50.90854 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T16:07:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "vending_machine" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.07999999663752e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "move": 1, + "theme": "cyclofix", + "locale": "en", + "imagery": "AGIVFlandersGRB", + "move:node/9776597335": "improve_accuracy" + }, + "id": 121944895 + } + }, + { + "id": 121943875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8106191, + 51.1862576 + ], + [ + 2.8106264, + 51.1862576 + ], + [ + 2.8106264, + 51.1862581 + ], + [ + 2.8106191, + 51.1862581 + ], + [ + 2.8106191, + 51.1862576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T15:39:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ] + }, + "create": 1, + "modify": 1, + "delete": 1, + "area": 3.65000004267595e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/1545762872": "shop_closed" + }, + "id": 121943875 + } + }, + { + "id": 121943858, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T15:38:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 1, + "deletion:node/1545762872": "shop_closed" + }, + "id": 121943858 + } + }, + { + "id": 121943283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.2912086, + 48.3005377 + ], + [ + 14.2950152, + 48.3005377 + ], + [ + 14.2950152, + 48.3039445 + ], + [ + 14.2912086, + 48.3039445 + ], + [ + 14.2912086, + 48.3005377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mapper75474", + "uid": "8581722", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-04T15:23:53Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:tools": [ + "yes" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000129683248800045, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 121943283 + } + }, + { + "id": 121942826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3215027, + 50.8323484 + ], + [ + 4.3215027, + 50.8323484 + ], + [ + 4.3215027, + 50.8323484 + ], + [ + 4.3215027, + 50.8323484 + ], + [ + 4.3215027, + 50.8323484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T15:12:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121942826 + } + }, + { + "id": 121942799, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T15:11:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 121942799 + } + }, + { + "id": 121941839, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0301882, + 14.6234142 + ], + [ + 121.0303851, + 14.6234142 + ], + [ + 121.0303851, + 14.6235816 + ], + [ + 121.0301882, + 14.6235816 + ], + [ + 121.0301882, + 14.6234142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T14:44:06Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "Mo 00:00-01:00, 16:00-00:00; Tu-Fr 16:00-00:00; Sa-Su 00:00-01:00, 16:00-00:00", + "Fr-Sa 19:00-04:00" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.29610600010895e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 121941839 + } + }, + { + "id": 121940844, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1090121, + 50.7861001 + ], + [ + 4.1090121, + 50.7861001 + ], + [ + 4.1090121, + 50.7861001 + ], + [ + 4.1090121, + 50.7861001 + ], + [ + 4.1090121, + 50.7861001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T14:12:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 8, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "id": 121940844 + } + }, + { + "id": 121938289, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0000378, + 14.6150336 + ], + [ + 121.0000378, + 14.6150336 + ], + [ + 121.0000378, + 14.6150336 + ], + [ + 121.0000378, + 14.6150336 + ], + [ + 121.0000378, + 14.6150336 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T13:00:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "social_facility" + ], + "opening_hours": [ + "We-Su 09:00-15:30" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121938289 + } + }, + { + "id": 121937771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2201007, + 51.1974825 + ], + [ + 3.2201007, + 51.1974825 + ], + [ + 3.2201007, + 51.1974825 + ], + [ + 3.2201007, + 51.1974825 + ], + [ + 3.2201007, + 51.1974825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T12:44:40Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 2 + }, + "id": 121937771 + } + }, + { + "id": 121937100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5754289, + 51.0642306 + ], + [ + 3.5754289, + 51.0642306 + ], + [ + 3.5754289, + 51.0642306 + ], + [ + 3.5754289, + 51.0642306 + ], + [ + 3.5754289, + 51.0642306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T12:20:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_rental" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "en", + "imagery": "AGIV", + "import:node/9794675533": "source: https://osm.org/note/3161429" + }, + "id": 121937100 + } + }, + { + "id": 121935902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0301882, + 14.5629968 + ], + [ + 121.0340718, + 14.5629968 + ], + [ + 121.0340718, + 14.6235816 + ], + [ + 121.0301882, + 14.6235816 + ], + [ + 121.0301882, + 14.5629968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T11:42:49Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "ngo" + ], + "amenity": [ + "bar" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "Mo-Fr 09:00-17:00", + "Fr-Sa 19:00-04:00", + "Su-Th 19:00-3:00; Fr-Sa 19:00-4:00" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000235287129280534, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121935902 + } + }, + { + "id": 121935343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0509915, + 14.7044834 + ], + [ + 121.0509915, + 14.7044834 + ], + [ + 121.0509915, + 14.7044834 + ], + [ + 121.0509915, + 14.7044834 + ], + [ + 121.0509915, + 14.7044834 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T11:23:28Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ], + "opening_hours": [ + "Mo 09:00-22:00; Tu-Sa 10:00-22:00; Su 10:00-17:00" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121935343 + } + }, + { + "id": 121935001, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1377728, + 51.1669491 + ], + [ + 4.1382167, + 51.1669491 + ], + [ + 4.1382167, + 51.1670929 + ], + [ + 4.1377728, + 51.1670929 + ], + [ + 4.1377728, + 51.1669491 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T11:14:15Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/07wgs8s.jpg" + ], + "amenity": [ + "charging_station" + ], + "capacity": [ + "6" + ], + "socket:typee": [ + "6", + "1" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.38328200016606e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 3, + "change_within_50m": 1, + "move:node/9685459856": "improve_accuracy" + }, + "id": 121935001 + } + }, + { + "id": 121934603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1307145, + 51.1687748 + ], + [ + 4.1307145, + 51.1687748 + ], + [ + 4.1307145, + 51.1687748 + ], + [ + 4.1307145, + 51.1687748 + ], + [ + 4.1307145, + 51.1687748 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T11:01:48Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 121934603 + } + }, + { + "id": 121929503, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5476008, + 51.2103174 + ], + [ + 4.5476008, + 51.2103174 + ], + [ + 4.5476008, + 51.2103174 + ], + [ + 4.5476008, + 51.2103174 + ], + [ + 4.5476008, + 51.2103174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T08:25:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 121929503 + } + }, + { + "id": 121924774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8587278, + 51.141416 + ], + [ + 4.8624193, + 51.141416 + ], + [ + 4.8624193, + 51.143177 + ], + [ + 4.8587278, + 51.143177 + ], + [ + 4.8587278, + 51.141416 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T05:36:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant", + "pharmacy" + ], + "building": [ + "yes", + "house", + "garages", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4047428", + "Gbg/4050111", + "Gbg/4047568", + "Gbg/4047420", + "Gbg/4047393", + "Gbg/4047394", + "Gbg/4047496", + "Gbg/4047430", + "Gbg/4047431", + "Gba/311592", + "Gbg/4047433" + ], + "source:geometry:date": [ + "2017-03-01", + "2017-03-30", + "2013-01-16", + "2015-11-24", + "2020-09-16", + "2013-02-20", + "2014-12-04" + ] + }, + "create": 226, + "modify": 76, + "delete": 0, + "area": 0.00000650073150000772, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 69, + "theme": "grb", + "import": 26, + "locale": "nl", + "imagery": "AGIV", + "conflation": 22 + }, + "id": 121924774 + } + }, + { + "id": 121924745, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8589092, + 51.1425534 + ], + [ + 4.8595015, + 51.1425534 + ], + [ + 4.8595015, + 51.1427674 + ], + [ + 4.8589092, + 51.1427674 + ], + [ + 4.8589092, + 51.1425534 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-04T05:35:38Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/4047427", + "Gbg/4047426", + "Gbg/4047425" + ], + "source:geometry:date": [ + "2017-03-01", + "2013-01-16", + "2014-05-02" + ] + }, + "create": 20, + "modify": 15, + "delete": 0, + "area": 1.26752199999852e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 121924745 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-05.json b/Docs/Tools/stats/stats.2022-6-05.json new file mode 100644 index 0000000000..a7a2ed10b6 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-05.json @@ -0,0 +1,1268 @@ +{ + "features": [ + { + "id": 121997486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.5893592, + 10.2721269 + ], + [ + -85.5889646, + 10.2721269 + ], + [ + -85.5889646, + 10.2724262 + ], + [ + -85.5893592, + 10.2724262 + ], + [ + -85.5893592, + 10.2721269 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "0xwabi", + "uid": "16159140", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T23:26:04Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Deco Autos", + "Tire Kingdom" + ], + "shop": [ + "tyres" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.18103780002101e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 121997486 + } + }, + { + "id": 121994667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.5897019, + 10.2586071 + ], + [ + -85.5862933, + 10.2586071 + ], + [ + -85.5862933, + 10.2732369 + ], + [ + -85.5897019, + 10.2732369 + ], + [ + -85.5897019, + 10.2586071 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "0xwabi", + "uid": "16159140", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T21:01:23Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "La Golondrina", + "Las Golondrina" + ], + "image": [ + "https://i.imgur.com/i4pIgWp.jpg" + ], + "amenity": [ + "restaurant" + ], + "building": [ + "yes" + ], + "diet:vegetarian": [ + "no" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000498671362800023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_5000m": 7 + }, + "id": 121994667 + } + }, + { + "id": 121994556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.1637305, + 19.4288488 + ], + [ + -99.1637305, + 19.4288488 + ], + [ + -99.1637305, + 19.4288488 + ], + [ + -99.1637305, + 19.4288488 + ], + [ + -99.1637305, + 19.4288488 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T20:57:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "cyclosm", + "add-image": 1 + }, + "id": 121994556 + } + }, + { + "id": 121992763, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ], + [ + 3.3906408, + 51.0715958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T20:01:15Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Boekenruilkast" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 121992763 + } + }, + { + "id": 121987730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.14465, + 51.1645238 + ], + [ + 4.14465, + 51.1645238 + ], + [ + 4.14465, + 51.1645238 + ], + [ + 4.14465, + 51.1645238 + ], + [ + 4.14465, + 51.1645238 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T17:28:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 6 + }, + "id": 121987730 + } + }, + { + "id": 121981335, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-5368566323", + "name": "Bäckerei Krofnica", + "osm_id": 5368566323, + "reasons": [ + 42 + ], + "version": 4, + "primary_tags": { + "shop": "bakery" + } + } + ], + "user": "Bernhard Pranz", + "uid": "8164818", + "editor": "iD 2.20.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "basemap.at Orthofoto", + "date": "2022-06-05T14:56:37Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bakery" + ], + "phone": [ + "+43 664 9179100" + ], + "amenity": [ + "fast_food" + ], + "cuisine": [ + "kebab" + ], + "operator": [ + "Krofnica GmbH" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://www.openstreetmap.org/edit", + "locale": "de", + "hashtags": "#MapComplete;#food", + "changesets_count": 2231 + }, + "id": 121981335 + } + }, + { + "id": 121981244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ], + [ + 16.2925717, + 47.9859552 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bernhard Pranz", + "uid": "8164818", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T14:54:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 121981244 + } + }, + { + "id": 121979382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.2830465, + 47.9484447 + ], + [ + 16.2830465, + 47.9484447 + ], + [ + 16.2830465, + 47.9484447 + ], + [ + 16.2830465, + 47.9484447 + ], + [ + 16.2830465, + 47.9484447 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bernhard Pranz", + "uid": "8164818", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T14:10:59Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "indoor": [ + "no" + ], + "wheelchair": [ + "limited" + ], + "survey:date": [ + "2022-06-05" + ], + "opening_hours": [ + "24/7" + ], + "defibrillator:location": [ + "an der Hauswand/on the wall" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 121979382 + } + }, + { + "id": 121979162, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1442449, + 51.1133272 + ], + [ + 4.1757032, + 51.1133272 + ], + [ + 4.1757032, + 51.1141564 + ], + [ + 4.1442449, + 51.1141564 + ], + [ + 4.1442449, + 51.1133272 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T14:04:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000260852223599466, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/fritures.html", + "theme": "fritures", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 4 + }, + "id": 121979162 + } + }, + { + "id": 121979123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6107066, + 50.8179746 + ], + [ + 4.6242946, + 50.8179746 + ], + [ + 4.6242946, + 50.8269245 + ], + [ + 4.6107066, + 50.8269245 + ], + [ + 4.6107066, + 50.8179746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joostdeclercq", + "uid": "16204288", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T14:03:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench", + "charging_station" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000121611241199962, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 121979123 + } + }, + { + "id": 121977632, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3844626, + 50.8243706 + ], + [ + 4.4409759, + 50.8243706 + ], + [ + 4.4409759, + 50.8735345 + ], + [ + 4.3844626, + 50.8735345 + ], + [ + 4.3844626, + 50.8243706 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T13:31:39Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "image": [ + "https://i.imgur.com/eEmn5MK.jpg", + "https://i.imgur.com/3PZ3nue.jpg", + "https://i.imgur.com/BBXdYnO.jpg", + "https://i.imgur.com/ETMaTHG.jpg" + ], + "access": [ + "customers" + ], + "charge": [ + "60 EUR/year" + ], + "locked": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "yes" + ], + "capacity": [ + "5" + ], + "operator": [ + "parking.brussels" + ], + "operator:type": [ + "public" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00277841422986978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 8 + }, + "id": 121977632 + } + }, + { + "id": 121973478, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4262876, + 50.8499172 + ], + [ + 4.4262876, + 50.8499172 + ], + [ + 4.4262876, + 50.8499172 + ], + [ + 4.4262876, + 50.8499172 + ], + [ + 4.4262876, + 50.8499172 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T11:55:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/nD52Ozq.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 121973478 + } + }, + { + "id": 121973047, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3834744, + 50.8376257 + ], + [ + 4.4356963, + 50.8376257 + ], + [ + 4.4356963, + 50.8522751 + ], + [ + 4.3834744, + 50.8522751 + ], + [ + 4.3834744, + 50.8376257 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T11:42:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "image:0": [ + "https://i.imgur.com/yyZZrQd.jpg" + ], + "landuse": [ + "residential" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000765019501860172, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 121973047 + } + }, + { + "id": 121969284, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2177335, + 51.0948239 + ], + [ + 5.2177335, + 51.0948239 + ], + [ + 5.2177335, + 51.0948239 + ], + [ + 5.2177335, + 51.0948239 + ], + [ + 5.2177335, + 51.0948239 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T10:01:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 1, + "import:node/9796328942": "source: https://osm.org/note/3044610" + }, + "id": 121969284 + } + }, + { + "id": 121968687, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.095636, + 52.447019 + ], + [ + 14.095636, + 52.447019 + ], + [ + 14.095636, + 52.447019 + ], + [ + 14.095636, + 52.447019 + ], + [ + 14.095636, + 52.447019 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T09:48:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 121968687 + } + }, + { + "id": 121958553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.457513, + 5.6134242 + ], + [ + -75.457513, + 5.6134242 + ], + [ + -75.457513, + 5.6134242 + ], + [ + -75.457513, + 5.6134242 + ], + [ + -75.457513, + 5.6134242 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-05T03:47:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 121958553 + } + }, + { + "id": 121957028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.9817766, + 14.5452059 + ], + [ + 121.0526418, + 14.5452059 + ], + [ + 121.0526418, + 14.6225629 + ], + [ + 120.9817766, + 14.6225629 + ], + [ + 120.9817766, + 14.5452059 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-05T00:40:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00548191927640008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 121957028 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-06.json b/Docs/Tools/stats/stats.2022-6-06.json new file mode 100644 index 0000000000..ec31881407 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-06.json @@ -0,0 +1,5074 @@ +{ + "features": [ + { + "id": 122045776, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.20659, + 51.1862096 + ], + [ + 3.2068115, + 51.1862096 + ], + [ + 3.2068115, + 51.1864629 + ], + [ + 3.20659, + 51.1864629 + ], + [ + 3.20659, + 51.1862096 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T22:59:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/AIXKG6g.jpg" + ], + "leisure": [ + "pitch" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.61059500010178e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122045776 + } + }, + { + "id": 122044896, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1896306, + 51.2037117 + ], + [ + 3.1920776, + 51.2037117 + ], + [ + 3.1920776, + 51.2043616 + ], + [ + 3.1896306, + 51.2043616 + ], + [ + 3.1896306, + 51.2037117 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T22:03:19Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "name:etymology:wikidata": [ + "Q7178", + "Q12091" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000159030529999784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 122044896 + } + }, + { + "id": 122042046, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2333359, + 50.7377595 + ], + [ + 4.2390178, + 50.7377595 + ], + [ + 4.2390178, + 50.7380284 + ], + [ + 4.2333359, + 50.7380284 + ], + [ + 4.2333359, + 50.7377595 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T20:10:59Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000152786290996979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 7, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122042046 + } + }, + { + "id": 122039704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3344968, + 51.165771 + ], + [ + 3.3344968, + 51.165771 + ], + [ + 3.3344968, + 51.165771 + ], + [ + 3.3344968, + 51.165771 + ], + [ + 3.3344968, + 51.165771 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T19:03:34Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FesTPeM.jpg" + ], + "barrier": [ + "bollard" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122039704 + } + }, + { + "id": 122039407, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5783017, + 50.1969804 + ], + [ + 8.5783017, + 50.1969804 + ], + [ + 8.5783017, + 50.1969804 + ], + [ + 8.5783017, + 50.1969804 + ], + [ + 8.5783017, + 50.1969804 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "juschu", + "uid": "67523", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T18:55:12Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "cycle_barrier" + ], + "bicycle": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122039407 + } + }, + { + "id": 122039073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0998057, + 52.3834331 + ], + [ + 10.0998057, + 52.3834331 + ], + [ + 10.0998057, + 52.3834331 + ], + [ + 10.0998057, + 52.3834331 + ], + [ + 10.0998057, + 52.3834331 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eq9RxsEL", + "uid": "6337397", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T18:45:31Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "straight_mast" + ], + "light:colour": [ + "white" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 122039073 + } + }, + { + "id": 122038237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3173243, + 51.1851439 + ], + [ + 3.3173243, + 51.1851439 + ], + [ + 3.3173243, + 51.1851439 + ], + [ + 3.3173243, + 51.1851439 + ], + [ + 3.3173243, + 51.1851439 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T18:20:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/TiJx7Hk.jpg" + ], + "survey:date": [ + "2022-06-06" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122038237 + } + }, + { + "id": 122037507, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3042992, + 51.1626279 + ], + [ + 3.3460929, + 51.1626279 + ], + [ + 3.3460929, + 51.1921715 + ], + [ + 3.3042992, + 51.1921715 + ], + [ + 3.3042992, + 51.1626279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T17:57:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/SzDdfKR.jpg", + "https://i.imgur.com/FrdmtL1.jpg", + "https://i.imgur.com/fI3yccU.jpg", + "https://i.imgur.com/O0n1buh.jpg", + "https://i.imgur.com/N9kpuqh.jpg" + ], + "route": [ + "hiking", + "bicycle", + "mtb" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "waterway": [ + "stream" + ], + "survey:date": [ + "2022-06-06" + ], + "expected_rwn_route_relations": [ + "3", + "4" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00123473635532016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "id": 122037507 + } + }, + { + "id": 122037277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.5871686, + 10.2680671 + ], + [ + -85.5871686, + 10.2680671 + ], + [ + -85.5871686, + 10.2680671 + ], + [ + -85.5871686, + 10.2680671 + ], + [ + -85.5871686, + 10.2680671 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "0xwabi", + "uid": "16159140", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T17:50:17Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/cXzqBym.jpg" + ], + "amenity": [ + "restaurant" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122037277 + } + }, + { + "id": 122036342, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3028261, + 51.1584451 + ], + [ + 3.3396979, + 51.1584451 + ], + [ + 3.3396979, + 51.1925423 + ], + [ + 3.3028261, + 51.1925423 + ], + [ + 3.3028261, + 51.1584451 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T17:27:19Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/4pEsAyW.jpg", + "https://i.imgur.com/SzDdfKR.jpg", + "https://i.imgur.com/FrdmtL1.jpg", + "https://i.imgur.com/09PBLbO.jpg", + "https://i.imgur.com/H8sPMBP.jpg", + "https://i.imgur.com/fI3yccU.jpg", + "https://i.imgur.com/RrshOcl.jpg" + ], + "route": [ + "hiking", + "bicycle", + "mtb" + ], + "waterway": [ + "stream" + ], + "survey:date": [ + "2022-06-06" + ], + "expected_rwn_route_relations": [ + "3", + "4" + ] + }, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00125722513895993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 10, + "locale": "en", + "imagery": "osm", + "add-image": 7 + }, + "id": 122036342 + } + }, + { + "id": 122033902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.5881383, + 10.2591784 + ], + [ + -85.5827009, + 10.2591784 + ], + [ + -85.5827009, + 10.2874923 + ], + [ + -85.5881383, + 10.2874923 + ], + [ + -85.5881383, + 10.2591784 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "0xwabi", + "uid": "16159140", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T16:21:14Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Mini Super San Martin", + "Super San Martin" + ], + "shop": [ + "convenience", + "supermarket" + ], + "image": [ + "https://i.imgur.com/HKIlbXU.jpg", + "https://i.imgur.com/u7DSMgr.jpg" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000153953999859749, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 122033902 + } + }, + { + "id": 122033074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1406198, + 49.6753384 + ], + [ + 6.1406198, + 49.6753384 + ], + [ + 6.1406198, + 49.6753384 + ], + [ + 6.1406198, + 49.6753384 + ], + [ + 6.1406198, + 49.6753384 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T16:00:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122033074 + } + }, + { + "id": 122030608, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3327975, + 51.8367842 + ], + [ + 5.647704, + 51.8367842 + ], + [ + 5.647704, + 52.0202659 + ], + [ + 4.3327975, + 52.0202659 + ], + [ + 4.3327975, + 51.8367842 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Friendly_Ghost", + "uid": "10875409", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T15:03:50Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "farm", + "caterer", + "flooring", + "hairdresser", + "motorcycle", + "seafood", + "catering", + "supermarket", + "clothes", + "survey", + "music", + "computer", + "convenience", + "houseware", + "leather", + "travel_agency", + "musical_instrument", + "books", + "furniture", + "sports", + "second_hand", + "florist", + "curtain", + "greengrocer", + "outdoor", + "hifi", + "art", + "charity", + "gift", + "chemist", + "tailor", + "locksmith", + "bag", + "massage", + "antiques", + "beauty", + "deli", + "butcher", + "toys", + "shoes", + "general", + "model", + "jewelry", + "casino", + "cheese", + "doityourself", + "garden_centre", + "newsagent", + "bakery", + "bed", + "agrarian", + "pet", + "car_repair", + "hardware", + "bicycle", + "interior_decoration", + "kitchen", + "bathroom_furnishing", + "stationery", + "car", + "copyshop", + "pastry", + "hearing_aids", + "funeral_directors", + "mobile_phone", + "baby_goods", + "electronics", + "tea", + "storage_rental", + "erotic", + "fabric", + "optician", + "perfumery", + "tobacco", + "military_surplus", + "herbalist", + "photo", + "spare_parts", + "chocolate", + "vacant", + "health_food", + "alcohol", + "confectionery", + "office_supplies", + "carpet", + "coffee", + "party", + "building_materials", + "car_parts", + "tyres", + "wholesale", + "nuts", + "pet_grooming", + "estate_agent", + "tattoo", + "scooter", + "wine", + "pottery", + "no", + "yes", + "shoe_repair", + "water_sports" + ], + "phone": [ + "+31 88 974 3000", + "+31 88 9743000", + "+31 15 887 1162", + "+31 15 8871162", + "+31 15 214 4998", + "+31 15 2144 998", + "+31 15 212 9533", + "+31 15 2129533", + "+31 15 213 5487", + "+31 15 2135487", + "+31 15 212 7014", + "+31 15 2127014", + "+31 15 214 3067", + "+31 15 2143067", + "+31 15 214 7770", + "+31 15 2147770", + "+31 15 214 7191", + "+31 15 2147191", + "+31 15 212 3886", + "+31 15 2123886", + "+31 6 16799022", + "+31 616799022", + "+31 15 241 1011", + "+31 15 2411011", + "+31 15 212 0610", + "+31 152120610", + "+31 6 20024460", + "+31 620024460", + "+31 15 212 5058", + "+31 15 2125058", + "+31 15 213 1000", + "+31152131000", + "+31 15 760 0320", + "015 760 0320", + "+31 6 23242094", + "+31 623242094", + "+31 15 213 0393", + "015-2130393", + "+31 15 212 4280", + "+31 15 2124280", + "+31 15 214 2972", + "+31 152142972", + "+31 15 212 8297", + "+31 15 2128297", + "+31 15 215 3434", + "+31 152153434", + "+31 6 46478874", + "+31646478874", + "+31 15 750 0848", + "015-7500848", + "+31 15 201 0275", + "+31 15 2010275", + "+31 15 213 7809", + "+31152137809", + "+31 15 214 7212", + "+31 15 2147212", + "+31 15 214 5496", + "+31 152145496", + "+31 15 214 8124", + "+31 15 2148124", + "+31 15 222 3147", + "+31 15 2223147", + "+31 15 212 1913", + "+31 15 2121913", + "+31 15 215 9552", + "+31 15 2159552", + "+31 15 364 6508", + "+31 153646508", + "+31 15 212 5582", + "+31 15 212 55 82", + "+31 15 214 2600", + "+31152142600", + "+31 15 214 5945", + "+31 15 2145945", + "+31 15 213 1194", + "+31152131194", + "+31 15 212 9895", + "+31152129895", + "+31 15 213 3311", + "+31 15 213 33 11", + "+31 15 212 1510", + "+31 15 2121510", + "+31 15 212 6243", + "+31 15 2126243", + "+31 15 820 0225", + "+31 15 82 00 225", + "+31 15 666 7700", + "+31 15 6667700", + "+31 15 212 2447", + "+31 15 212 24 47", + "+31 15 760 0200", + "+31 15 76 00 200", + "+31 15 213 2578", + "+31 15 213 25 78", + "+31 15 222 0022", + "+31152220022", + "+31 15 256 4034", + "+31152564034", + "+31 15 214 0091", + "+31 15 2140091", + "+31 15 737 0484", + "+31 15-7370484", + "+31 15 212 6107", + "+31152126107", + "+31 6 57831930", + "06-57831930", + "+31 15 219 0765", + "+31 15 219 07 65", + "+31 6 41051702", + "+31 641051702", + "+31 6 41102615", + "+31 641102615", + "+31 15 271 6250", + "+31 15 2716250", + "+31 15 364 7443", + "+31 15 3647 443", + "+31 15 260 8715", + "+31 152608715", + "+31 15 214 7773", + "+31 15 214 77 73", + "+31 15 887 4185", + "+31 15 8874185", + "+31 15 214 6852", + "+31 15 2146852", + "+31 6 14790713", + "+31 06 1479 0713", + "+31 15 219 1650", + "+31152191650", + "+31 15 215 0025", + "+31 15 215 00 25", + "+31 15 213 4619", + "+31 15 2134619", + "+31 15 214 6451", + "+31 15 2146451", + "+31 15 260 8108", + "+31 15 2608108", + "+31 6 19653347", + "+316 1965 3347", + "+31 15 212 7511", + "+31(0)152127511", + "+31 6 54356046", + "+31 (6) 54356046", + "+31 15 213 1782", + "+31 15-213 1782", + "+31 15 257 1803", + "+31152571803", + "+31 70 820 0532", + "+31708200532", + "+31 15 889 1093", + "+31 15 8891093", + "+31 15 887 6008", + "+31 15 887 60 08", + "+31 15 212 3777", + "+31 152123777", + "+31 6 38114647", + "+31 638114647", + "+31 15 364 3065", + "+31 15 364 30 65", + "+31 15 215 8948", + "+31 15 2158948", + "+31 15 785 1161", + "+31 (0)15 7851161", + "+31 15 889 7175", + "+31158897175", + "+31 15 213 3226", + "+31 15 21 33 226", + "+31 15 284 0140", + "+31 15 2840140", + "+31 15 215 1690", + "+31 15 215 16 90", + "+31 6 42074441", + "+31642074441", + "+31 15 212 3321", + "+31 (0)15 2123321", + "+31 6 18512918", + "+31618512918", + "+31 15 215 5249", + "+31 15 2155249", + "+31 15 251 6565", + "+31 152516565", + "+31 15 200 2181", + "+31 15 2002181", + "+31 15 212 4852", + "+31 152124852", + "+31 15 212 0504", + "+31 (0)15 2120504", + "+31 15 213 0698", + "+31 152130698", + "+31 6 11808143", + "+31 611808143", + "+31 15 767 6010", + "+31157676010", + "+31 15 213 7048", + "+31 15 2137048", + "+31 15 257 8778", + "+31152578778", + "+31 15 214 5100", + "+31152145100", + "+31 15 302 0000", + "+31 15 3020000", + "+31 6 41464390", + "+31 641464390", + "+31 15 215 1715", + "+31152151715", + "+31 15 212 4582", + "+31152124582", + "+31 15 213 9892", + "+31 (0)15 2139892", + "+31 15 212 1712", + "015 2121712", + "+31 15 213 8204", + "+31 15 2138204", + "+31 15 212 1122", + "015 212 1122", + "+31 15 213 5929", + "+31 152135929", + "+31 15 737 0147", + "015 737 0147", + "+31 15 820 0970", + "+31 15 8200970", + "+31 15 212 1878", + "+31 15 2121878", + "+31 15 219 5560", + "+31 15 2195560", + "+31 15 303 0750", + "+31 153030750", + "+31 15 364 9190", + "+31 153649190", + "+31 6 39001688", + "+31-6-39001688", + "+31 10 521 6655", + "+31 10 521 66 55", + "+31 10 521 4262", + "+31 10 5214262", + "+31 10 521 42 62", + "+31 183 635 578", + "+31-183-635578", + "+31 10 411 5300", + "+31 10 4115300", + "+31 10 414 4206", + "010 - 414 42 06", + "+31 10 233 0922", + "010 – 233 09 22", + "+31 10 214 0836", + "+31102140836", + "+31 10 436 6177", + "+31 10 436 61 77", + "+31 10 846 3052", + "+31-10-846 30 52", + "+31 10 436 6599", + "+31-10–4366599", + "+31 10 280 9121", + "0031102809121", + "+31 10 223 0535", + "+31-10-22 30 535", + "+31 10 201 9075", + "010-201 90 75", + "+31 10 413 4423", + "010-4134423", + "+31 10 260 0039", + "+3110-2600039", + "+31 10 433 0592", + "+31-10 4330592", + "+31 10 737 0708", + "+31-10-7370708", + "+31 10 202 0131", + "+31 10 20 20 131", + "+31 10 240 9402", + "010-2409402", + "+31 10 307 0926", + "+31103070926", + "+31 10 845 3239", + "+3110-8453239", + "+31 10 412 0812", + "+31 10 412 0812.", + "+31 88 588 5861", + "088 588 5861", + "+31 10 413 0804", + "+31-10-4130804", + "+31 10 282 9100", + "010-2829100", + "+31 10 201 2000", + "+31 10 201 20 00", + "+31 10 236 7548", + "010 236 75 48", + "+31 10 414 6819", + "+31-10-414 68 19", + "+31 10 404 7901", + "+31 10 404 79 01", + "+31 10 411 3590", + "+31-10-4113590", + "+31 10 229 9689", + "+31102299689", + "+31 10 411 8349", + "+3110–4118349", + "+31 10 414 5591", + "+31 (0)10-414 55 91", + "+31 10 412 5563", + "+31-10-4125563", + "+31 10 414 4514", + "+31-10-414 4514", + "+31 10 433 2582", + "+31-10-433 25 82", + "+31 10 214 0909", + "+31-10-2140909", + "+31 10 224 6703", + "+31 10 224 67 03", + "+31 10 404 7909", + "+31-010–404 79 09", + "+31 10 233 2022", + "010 233 2022", + "+31 10 414 2834", + "+31 10 4142834", + "+31 6 39605650", + "0639605650", + "+31 10 413 0840", + "+31-10-413 0840", + "+31 10 223 2256", + "+31-10-2232256", + "+31 10 412 3607", + "+31-10-4123607", + "+31 23 727 1002", + "+31-23-7271002", + "+31 10 213 4543", + "+31-10-213 4543", + "+31 10 415 4565", + "+31-10-4154565", + "+31 10 411 0370", + "+31 10 4110370", + "+31 10 240 9317", + "+31 10 240 93 17", + "+31 10 414 5606", + "+31 (0)10 41 45 606", + "+31 10 413 2161", + "+31-10-4132161", + "+31 10 413 3513", + "010 - 413 35 13", + "+31 10 411 9473", + "+31 10 – 411 94 73", + "+31 10 413 8105", + "010-4138105", + "+31 10 433 3055", + "+31104333055", + "+31 10 404 9951", + "+31-10–4049951", + "+31 10 240 0099", + "010-2400099", + "+31 10 412 1823", + "+31-10-4121823", + "+31 10 413 1312", + "+31-10-4131312", + "+31 10 466 3012", + "+31104663012", + "+31 10 411 6615", + "+31-10-411 66 15", + "+31 6 24734939", + "+316 24734939", + "+31 10 414 5503", + "010 414 5503", + "+31 10 236 1086", + "+31 10 2361086", + "+31 10 412 0777", + "+31.10.4120777", + "+31 10 213 6801", + "+31 (0) 102 136 801", + "+31 10 433 4551", + "+31-10-4334551", + "+31 10 233 1129", + "0102331129", + "+31 10 414 3301", + "+31-10–4143301", + "+31 10 412 5614", + "+31-10-4125614", + "+31 10 214 0496", + "+31(0)102140496", + "+31 10 433 1935", + "+31-10-4331935", + "+31 10 477 8977", + "+31 10 477 89 77", + "+31 10 414 4188", + "010-4144188", + "+31 10 785 2311", + "+31 010 785 2311", + "+31 10 436 4210", + "010 4364210", + "+31 10 414 5855", + "010 - 414 5855", + "+31 10 436 4780", + "+31-10-4364780", + "+31 10 404 7900", + "+31 10 404 79 00", + "+31 10 436 6505", + "+31-10-4366505", + "+31 6 42444407", + "06-42444407", + "+31 6 81461217", + "+31681461217", + "+31 10 404 6888", + "+31 10 404 68 88", + "+31 10 436 5873", + "+31-10-4365873", + "+31 10 737 1083", + "+31-10-737 1083", + "+31 10 436 5999", + "+31 (0)104365999", + "+31 10 413 2608", + "+31-10-4132608", + "+31 10 414 7204", + "+31-10-4147204", + "+31 10 436 4607", + "010-436 46 07", + "+31 10 414 0303", + "010 4140303", + "+31 10 413 8644", + "+31-10-4138644", + "+31 10 230 6090", + "+31102306090", + "+31 10 483 4662", + "+31104834662", + "+31 183 582 501", + "0183-582501", + "+31 88 280 0900", + "+31 88 280 09 00", + "+31 15 256 7254", + "+31 15 2567254", + "+31 6 51352696", + "+31 6 5135 2696", + "+31 15 361 7851", + "015-3617851", + "+31 15 201 0525", + "015-2010525", + "+31 6 27881552", + "06-27881552", + "+31 6 41624670", + "06-41624670", + "+31 15 364 0433", + "015-3640433", + "+31 15 737 0086", + "015-7370086", + "+31 15 870 1139", + "015-8701139", + "+31 15 369 2361", + "0153692361", + "+31 180 699 600", + "+31 180 69 96 00", + "+31 15 361 0296", + "0153610296", + "+31 10 226 6705", + "+31102266705", + "+31 15 301 4130", + "+31 15 3014130", + "+31 78 202 0208", + "+31 782020208", + "+31 85 020 8690", + "+3185 020 86 90", + "+31 184 417 066", + "+31184417066", + "+31 184 647 777", + "+31184647777", + "+31 184 642 085", + "+31184642085", + "+31 184 642 112", + "+31184642112", + "+31 184 691 379", + "+31184691379", + "+31 10 453 5905", + "010-453 59 05", + "+31 180 420 996", + "+31 180 42 09 96", + "+31 180 425 077", + "+31180425077", + "+31 180 499 845", + "+31 180 499845", + "+31 180 433 902", + "+31 180 433902", + "+31 180 418 952", + "+31 (0)180-418952", + "+31 88 337 7202", + "+31883377202", + "+31 180 462 371", + "+31 (0)180 462371", + "+31 180 487 638", + "+31 (0) 180 48 76 38", + "+31 6 18401641", + "+31618401641", + "+31 180 463 652", + "+31-180 463652", + "+31 180 444 283", + "+31 (0)180 44 42 83", + "+31 180 423 302", + "+31 180 42 33 02", + "+31 180 422 654", + "+31 180 422654", + "+31 88 313 4735", + "+3188-313 4735", + "+31 184 641 409", + "+31184 641409", + "+31 184 641 669", + "+31 184 641669", + "+31 184 601 558", + "0184601558", + "+31 184 785 047", + "+31184785047", + "+31 183 588 088", + "(+31)183 588088", + "+31 183 581 229", + "+31 183 581229", + "+31 183 581 386", + "+31 183-581386", + "+31 15 380 9381", + "+31153809381", + "+31 15 380 8767", + "+31 15 380 87 67", + "+31 78 681 2138", + "+31786812138", + "+31 78 681 2450", + "+31 786 812 450", + "+31 78 683 2211", + "+31786832211", + "+31 6 40589906", + "+31 6 405 899 06", + "+31 78 681 2239", + "+31-786812239", + "+31 6 36106766", + "+31-636106766", + "+31 10 292 2011", + "+31-10-2922011", + "+31 10 486 8600", + "+31-10-4868600", + "+31 10 479 3819", + "+31-10-4793819", + "+31 10 292 0050", + "+31-10-2920050", + "+31 10 483 8833", + "+31104838833", + "+31 10 482 6990", + "+31104826990", + "+31 180 616 277", + "+31-180-616277", + "+31 180 444 352", + "+31 180 44 43 52", + "+31 180 691 818", + "+31 180 69 18 18", + "+31 180 619 722", + "+31180 – 619 722", + "+31 180 623 906", + "+31 180 623906", + "+31 180 439 004", + "+31 180 439004", + "+31 180 692 929", + "+31 180 69 29 29", + "+31 180 616 391", + "+31 180 61 63 91", + "+31 180 620 050", + "0180-620050", + "+31 180 690 279", + "+31180690279", + "+31 88 313 4725", + "+31(0)88-3134725", + "+31 180 690 751", + "+31 180 690751", + "+31 88 007 0288", + "+31(0)88-0070288", + "+31 180 623 826", + "+31(0)180-623826", + "+31 180 620 991", + "+31(0)180-620991", + "+31 180 444 075", + "+31(0)180-444075", + "+31 180 623 960", + "+31(0)180-623960", + "+31 180 627 938", + "+31(0)180-627938", + "+31 180 767 278", + "+31(0)180-767278", + "+31 180 618 733", + "+31(0)180-618733", + "+31 180 547 630", + "+31(0)180-547630", + "+31 88 400 9585", + "+31 88 4009 585", + "+31 180 656 250", + "0180 656 250", + "+31 180 845 184", + "+31-180-845184", + "+31 6 48366993", + "+31 6 483 669 93", + "+31 181 611 919", + "0181611919", + "+31 181 614 427", + "0181614427", + "+31 10 419 2822", + "+31-10-4192822", + "+31 15 262 3720", + "015-2623720", + "+31 180 328 008", + "+31 180 32 80 08", + "+31 180 632 383", + "0180632383", + "+31 180 632 688", + "+31 180 632688", + "+31 180 634 556", + "+31 180 634556", + "+31 10 438 1032", + "+31 10 438 10 32", + "+31 85 400 0052", + "+31 85 400 00 52", + "+31 10 416 8020", + "+31 10 416 80 20", + "+31 10 416 0888", + "+31 10 416 08 88", + "+31 10 237 3391", + "+31 (0)10-2373391", + "+31 10 416 5661", + "+31 ( 0)10 4165661", + "+31 10 223 2422", + "010 – 223 2422", + "+31 10 767 0089", + "+31 (0)10 7670089", + "+31 10 501 7410", + "+31 10 501 74 10", + "+31 10 410 0862", + "+31104100862", + "+31 10 501 7884", + "+31 10 501 78 84", + "+31 10 501 2034", + "+31 10 5012034", + "+31 10 501 7330", + "+31 10 5017330", + "+31 10 737 0865", + "+31-10-7370865", + "+31 140182", + "14 0182", + "+31 182 743 400", + "+31(0)182-743400", + "+31 10 222 2657", + "+31102222657", + "+31 183 567 802", + "0183-567802", + "+31 183 216 600", + "+31183216600", + "+31 10 455 6256", + "+31104556256", + "+31 10 709 5039", + "+31-10-7095039", + "+31 10 455 3472", + "+31 10 4553472", + "+31 10 210 8630", + "+31102108630", + "+31 6 58816146", + "+31 6 58 81 61 46", + "+31 182 686 800", + "+31182686800", + "+31 88 253 1950", + "+31 88 2531950", + "+31 6 51879161", + "+31 6 51 87 91 61", + "+31 10 220 7513", + "+31 10 2207513", + "+31 900 0933", + "+31 900 – 0933", + "+31 10 484 8307", + "+31 10 4848307", + "+31 10 435 0750", + "+31(0)10 - 435 07 50", + "+31 10 232 7100", + "+31-10-2327100", + "+31 10 460 2050", + "+3110 460 2050", + "+31 10 495 1877", + "+31 10 4951877", + "+31 88 712 6500", + "+31 88 - 712 65 00", + "+31 10 294 0857", + "+31 10 294 08 57", + "+31 10 490 5757", + "+31-10-490 5757", + "+31 10 351 0051", + "0103510051", + "+31 10 434 2162", + "+31 10 4342162", + "+31 10 435 3060", + "010-4353060", + "+31 10 434 2093", + "+31 10 434 20 93", + "+31 10 470 7263", + "+31 10 470 72 63", + "+31 10 313 0067", + "+31 10 3130067", + "+31 10 474 5964", + "+31 104 745 964", + "+31 10 785 8302", + "+31 10 7858302", + "+31 10 470 5492", + "+31 10 470 54 92", + "+31 88 244 1857", + "+31 88-2441857", + "+31 182 532 000", + "+31 (0)182 532000", + "+31 10 455 6677", + "+31104556677", + "+31 10 229 8901", + "0102298901", + "+31 10 474 2646", + "+31 10 4742646", + "+31 10 261 3260", + "+31 10 2613260", + "+31 10 474 0800", + "+31 10 4740800", + "+31 10 474 5193", + "+31 10 4745193", + "+31 70 315 2500", + "+31-703152500", + "+31 10 450 8962", + "+31104508962", + "+31 10 284 0584", + "+31102840584", + "+31 10 227 0288", + "+31102270288", + "+31 10 288 9939", + "+3110 288 99 39", + "+31 6 23955535", + "+31623955535", + "+31 10 458 2740", + "+3110 - 4582740", + "+31 10 458 1293", + "+31104581293", + "+31 10 202 5846", + "010-2025846", + "+31 10 288 1111", + "+31 10 2881111", + "+31 10 202 1402", + "010-2021402", + "+31 10 284 9466", + "010-2849466", + "+31 10 288 0461", + "010-2880461", + "+31 10 226 1962", + "010-2261962", + "+31 88 664 3856", + "088-6643856", + "+31 10 226 3868", + "010-2263868", + "+31 10 244 9052", + "010-2449052", + "+31 10 412 3369", + "010-4123369", + "+31 10 303 0833", + "010-3030833", + "+31 10 303 4000", + "010-3034000", + "+31 10 413 0755", + "010-4130755", + "+31 10 206 4700", + "010-2064700", + "+31 10 242 1620", + "+31 10 2421620", + "+31 10 451 2200", + "010-4512200", + "+31 88 324 5460", + "088-3245460", + "+31 10 240 2111", + "+31 10 2402111", + "+31 10 822 2379", + "+31 10 822 23 79", + "+31 10 242 5007", + "010-2425007", + "+31 10 458 1144", + "010-4581144", + "+31 6 44504578", + "06-44504578", + "+31 10 442 4000", + "010-4424000", + "+31 10 451 2113", + "010-4512113", + "+31 10 235 4446", + "010-2354446", + "+31 10 820 2240", + "010 820 2240", + "+31 10 447 9900", + "+31 10 447 99 00", + "+31 10 409 0060", + "010-4090060", + "+31 6 16618209", + "06-16618209", + "+31 10 447 3013", + "+31104473013", + "+31 10 202 0534", + "+31 10 2020534", + "+31 10 440 8800", + "+31104408800", + "+31 10 286 3999", + "+31102863999", + "+31 10 455 7670", + "+31104557670", + "+31 10 455 5750", + "+31 10 4555750", + "+31 10 202 2257", + "+31102022257", + "+31 800 4446676", + "0800-4446676", + "+31 10 470 8110", + "+31 10 4708110", + "+31 10 247 7003", + "+31 10 2477003", + "+31 10 470 5894", + "+31 10 4705894", + "+31 10 449 2222", + "+31 10 4492222", + "+31 10 470 3141", + "+31 10 4703141", + "+31 10 220 3119", + "+31(0)10-2203119", + "+31 73 518 7084", + "+31(0)73-5187084", + "+31 10 455 9376", + "+31(0)10-4559376", + "+31 10 251 9709", + "+31(0)102519709", + "+31 10 251 8519", + "+31(0)10-2518519", + "+31 10 455 9435", + "+31(0)10-4559435", + "+31 10 455 9405", + "+31(0)10-4559405", + "+31 10 420 3911", + "+31(0)104203911", + "+31 10 210 9211", + "+31(0)10-2109211", + "+31 10 720 0956", + "+31(0)10-7200956", + "+31 10 228 0836", + "+31-10-2280836", + "+31 10 209 4636", + "010-209 46 36", + "+31 10 286 6060", + "010 - 2866060", + "+31 88 028 0304", + "088-0280304", + "+31 10 456 1299", + "010 - 4561299", + "+31 10 286 0469", + "+31 10 2860469", + "+31 900 0555", + "0900-0555", + "+31 10 455 2000", + "010 - 4552000", + "+31 10 286 0964", + "010- 286 0964", + "+31 10 307 6200", + "+31 103076200", + "+31 10 286 3888", + "010 - 2863888", + "+31 10 456 3529", + "010-456 35 29", + "+31 900 1988", + "0900-1988", + "+31 88 655 0320", + "+31 (0)88 6550320", + "+31 88 183 2001", + "+31 88 183 20 01", + "+31 10 421 0704", + "+31(0)10-4210704", + "+31 88 348 9000", + "+31 88 348 90 00", + "+31 88 008 8188", + "+31 (0)88 0088188", + "+31 85 077 0707", + "+31 85 0770707", + "+31 10 208 5555", + "+31 (0)10 – 208 5555", + "+31 10 262 3053", + "+31 102623053", + "+31 10 470 2017", + "+31 10 4702017", + "+31 10 247 0226", + "+31 10 247 02 26", + "+31 10 470 0868", + "+31 10 4700868", + "+31 10 471 4626", + "+31 10 4714626", + "+31 10 247 7204", + "+31 10 2477204", + "+31 10 227 1922", + "+3110 227 1922", + "+31 10 442 5444", + "+31 (0) 10 442 54 44", + "+31 10 442 3775", + "+31 10 4423775", + "+31 10 473 4454", + "+31 10 473 44 54", + "+31 10 893 8210", + "+31 10 893 82 10", + "+31 10 245 3555", + "+31 10 2453555", + "+31 10 246 8888", + "+31 10 246 88 88", + "+31 10 473 0600", + "+31 10 4730600", + "+31 10 473 6183", + "+31 10 4736183", + "+31 10 246 5555", + "+31 10 2465555", + "085-400 00 52", + "+31 10 442 4232", + "+31104424232", + "+31 10 442 0600", + "+31104420600", + "+31 10 458 9719", + "+31 010 458 9719", + "+31 10 441 2171", + "010-4412171", + "+31 10 427 0700", + "+31 10 427 07 00", + "+31 900 1238226", + "09001238226", + "+31 180 513 540", + "+31 180 513540", + "+31 182 322 456", + "+31(0)182-322456", + "+31 182 513 415", + "+31(0)182- 513415", + "+31 10 483 8782", + "+31104838782", + "+31 10 483 6400", + "+31 10 483 64 00", + "+31 10 419 5289", + "+31-10-419 52 89", + "+31 10 419 4166", + "+31-10-419 4166", + "+31 10 495 2791", + "+31-10-4952791", + "+31 10 229 1240", + "+31102291240", + "+31 10 481 0308", + "+31 10 4810308", + "+31 10 484 4393", + "+31-10-4844393", + "+31 10 429 0178", + "+31 10 429 01 78", + "+31 10 481 0973", + "+31 10 4810973", + "+31 10 480 7206", + "+31 10 4807206", + "+31 10 842 4987", + "+31-10-842 49 87", + "+31 10 481 3803", + "+31 10 4813803", + "+31 10 410 1467", + "+31 10 410 14 67", + "+31 10 237 2214", + "+31 10 2372214", + "+31 10 480 5236", + "+31 10 480 52 36", + "+31 10 481 3997", + "+31-10- 481 39 97", + "+31 10 481 5149", + "+31 10 481 51 49", + "+31 10 481 9090", + "+31 10 4819090", + "+31 10 481 4577", + "+31104814577", + "+31 10 481 7695", + "+31-10-4817695", + "+31 6 42325706", + "+31 6 423 25 706", + "+31 10 843 0309", + "+31 10 8430309", + "+31 10 870 0800", + "+31 10 870 08 00", + "+31 10 481 3189", + "+31 10 4813189", + "+31 10 485 1648", + "+31-10-485 16 48", + "+31 6 45076044", + "+31-6-450 760 44", + "+31 10 795 4714", + "+31-10-79 54 714", + "+31 10 303 1364", + "+31-10-3031364", + "+31 10 230 6157", + "+31-10-230 61 57", + "+31 10 452 0914", + "+31-10-4520914", + "+31 10 484 9303", + "+31 10 4849303", + "+31 10 450 0080", + "0104500080", + "+31 10 451 2512", + "+31104512512", + "+31 10 750 7435", + "010-7507435", + "+31 10 451 2683", + "+31104512683", + "+31 10 737 0366", + "+31107370366", + "+31 10 450 8968", + "+31104508968", + "+31 10 458 3266", + "010-458 32 66", + "+31 10 286 5959", + "+31102865959", + "+31 10 450 7840", + "+31104507840", + "+31 182 507 418", + "0182-507418", + "+31 182 511 785", + "+31(0)182-511785", + "+31 182 511 120", + "+31(0)182-511120", + "+31 182 581 188", + "+31(0)182-581188", + "+31 182 752 134", + "+31(0)182-752134", + "+31 182 521 811", + "+31(0)182-521811", + "+31 182 769 015", + "+31(0)182-769015", + "+31 182 516 414", + "+31(0)182-516414", + "+31 88 770 6068", + "088 - 7706068", + "+31 182 582 749", + "+31(0)182-582749", + "+31 182 523 992", + "+31(0)182-523992", + "+31 182 687 231", + "+31(0)182-687231", + "+31 182 605 695", + "+31(0)182-605695", + "+31 182 785 392", + "+31(0)182-785392", + "+31 182 689 633", + "+31(0)182689633", + "+31 182 786 338", + "+31(0)182-786338", + "+31 182 518 741", + "+31(0)182-518741", + "+31 182 518 736", + "+31(0)182-518736", + "+31 182 521 127", + "+31 (0)182 521127", + "+31 182 516 613", + "+31(0)182-516613", + "+31 182 523 334", + "+31 (0) 182523334", + "+31 182 516 033", + "+31(0)182-516033", + "+31 182 514 110", + "+31(0)182514110", + "+31 182 513 217", + "+31 182513217", + "+31 180 523 356", + "+31 (0)180 523356", + "+31 6 22992694", + "06-22992694", + "+31 182 512 391", + "+31(0)182-512391", + "+31 182 516 082", + "+31(0)182-516082", + "+31 182 512 576", + "+31(0)182-512576", + "+31 182 788 112", + "+31 (0)182 788112", + "+31 182 528 097", + "0182-528097", + "+31 182 599 573", + "+31(0)182-599573", + "+31 182 549 805", + "+31(0)182-549 805", + "+31 182 507 184", + "+31(0)182-507184", + "+31 182 820 389", + "+31(0)182-820389", + "+31 182 711 590", + "+31(0)182-711590", + "+31 182 689 056", + "+31(0)182-689056", + "+31 182 512 360", + "+31(0)182-512360", + "+31 6 15386063", + "+31 (0)6 15386063", + "+31 182 523 120", + "+31(0)182-523120", + "+31 182 672 499", + "+31(0)182-672499", + "+31 182 581 980", + "+31 (0)182 581980", + "+31 6 24750842", + "+31(0)6-24750842", + "+31 182 514 269", + "+31(0)182-514269", + "+31 182 752 006", + "+31(0)182-752006", + "+31 182 527 644", + "+31(0)182-527644", + "+31 6 10833582", + "06-10833582", + "+31 182 518 320", + "+31(0)182-518320", + "+31 182 359 039", + "+31(0)182-359039", + "+31 182 686 976", + "+31 182 686976", + "+31 182 232 024", + "+31 (0)182 – 23 20 24", + "+31 182 605 844", + "+31(0)182-605844", + "+31 182 523 053", + "+31 182 523053", + "+31 182 605 177", + "+31(0)182-605177", + "+31 182 515 888", + "+31(0)182-515888", + "+31 182 507 265", + "+31(0)182-507265", + "+31 182 232 036", + "+31(0)182-232036", + "+31 182 512 593", + "+31(0)182-512 593", + "+31 182 670 650", + "+31(0)182-670650", + "+31 182 504 411", + "+31(0)182-504411", + "+31 182 512 421", + "+31(0)182-512421", + "+31 182 599 787", + "+31 (0)182 599787", + "+31 182 769 066", + "+31(0)182-769066", + "+31 182 527 168", + "+31 (0)182 527168", + "+31 6 14579535", + "+31(0)6-14579535", + "+31 182 529 733", + "+31(0)182-529733", + "+31 182 769 103", + "+31 (0)182 769103", + "+31 182 729 112", + "+31(0)182-729112", + "+31 88 322 5139", + "+31(0)88-3225139", + "+31 182 528 007", + "+31(0)182-528007", + "+31 182 580 313", + "+31(0)182-580313", + "+31 182 599 495", + "+31(0)182-599495", + "+31 182 525 900", + "+31(0)182-525900", + "+31 182 515 192", + "+31(0)182 515192", + "+31 182 860 004", + "+31(0)182-860004", + "+31 6 49423660", + "+31(0)6-49423660", + "+31 182 550 822", + "+31(0)182 55 08 22", + "+31 182 767 004", + "+31(0)182-767004", + "+31 182 599 866", + "+31(0)182-599866", + "+31 182 551 333", + "+31(0)182-551333", + "+31 182 752 003", + "+31(0)18-2752003", + "+31 182 581 958", + "+31 (0)182 581958", + "+31 182 524 894", + "+31(0)182-524894", + "+31 182 785 714", + "+31(0)182 785 714", + "+31 182 605 655", + "+31 (0)182 605655", + "+31 182 769 105", + "+31(0)182-769105", + "+31 182 516 595", + "+31(0)182-516595", + "+31 182 603 085", + "0182 60 30 85", + "+31 182 602 994", + "+31(0)182 602 994", + "+31 182 528 470", + "+31(0)182 - 52 84 70", + "+31 182 687 216", + "+31(0)182-687216", + "+31 182 760 176", + "+31(0)182-760176", + "+31 182 528 738", + "+31(0)182-528738", + "+31 182 811 812", + "+31(0)182-811812", + "+31 182 585 657", + "+31(0)182-585657", + "+31 182 529 870", + "+31(0)182-529870", + "+31 182 752 129", + "+31(0)182-752129", + "+31 182 517 126", + "+31(0)182-517126", + "+31 182 515 196", + "+31(0)182-515196", + "+31 182 582 718", + "+31(0)182-582718", + "+31 182 527 969", + "+31(0)182-527969", + "+31 182 513 017", + "+31(0)182-513017", + "+31 182 522 819", + "+31(0)182-522819", + "+31 182 769 147", + "+31(0)182-769147", + "+31 182 522 433", + "+31(0)182-522433", + "+31 182 583 011", + "+31 (0)182 583011", + "+31 182 521 074", + "+31 (0)182 521074", + "+31 182 513 862", + "+31(0)182-513862", + "+31 182 549 626", + "+31 (0)182 549626", + "+31 182 599 995", + "+31(0)182 599 995", + "+31 182 518 100", + "+31(0)182-518100", + "+31 182 524 466", + "+31(0)182-524466", + "+31 182 581 429", + "+31(0)182-581429", + "+31 182 514 131", + "+31(0)182-514131", + "+31 182 513 260", + "+31182513260", + "+31 10 290 7732", + "+31 10 2907732", + "+31 10 290 8008", + "+31 10 2908008", + "+31 182 751 859", + "+31 (0)182 751859", + "+31 182 510 523", + "0182 - 510 523", + "+31 10 291 6161", + "+31102916161", + "+31 10 240 4600", + "+31-10-2404600", + "+31 6 23852381", + "+31623852381", + "+31 10 210 3254", + "+31102103254", + "+31 10 410 2300", + "+31104102300", + "+31 10 229 3915", + "+31102293915", + "+31 6 34009311", + "+31634009311", + "+31 10 341 4428", + "+31103414428", + "+31 10 737 0614", + "+31107370614", + "+31 10 737 1941", + "+31107371941", + "+31 10 481 1055", + "+31104811055", + "+31 10 480 0781", + "+31104800781", + "+31 10 480 4305", + "+31104804305", + "+31 10 210 2913", + "+31102102913", + "+31 10 481 6698", + "+31104816698", + "+31 10 481 1650", + "+31 10 48 11 650", + "+31 10 480 8763", + "+31 10 4808763", + "+31 10 751 2445", + "+31 10 751 24 45", + "+31 10 210 3536", + "+31 10 2103536", + "+31 6 41174371", + "+31641174371", + "+31 6 36422725", + "+31636422725", + "+31 10 245 7145", + "+31102457145", + "+31 10 458 0008", + "+31 10 4580008", + "+31 10 291 6770", + "+31 10 2916770", + "+31 10 419 2884", + "+31 10 4192884", + "+31 10 415 8805", + "(010) 415 88 05", + "+31 10 462 0010", + "+31 104 620 010", + "+31 10 737 0239", + "+31 10 7370239", + "+31 10 245 1800", + "010 - 245 1800", + "+31 10 415 4422", + "+31 10 415 44 22", + "+31 10 269 6302", + "010-2696302", + "+31 10 429 1525", + "+31 10 4291525", + "+31 10 437 1016", + "+31(0)10-4371016", + "+31 10 450 3015", + "+31104503015", + "+31 10 451 7107", + "+31104517107", + "+31 10 451 2336", + "+31104512336", + "+31 6 47898182", + "+31647898182", + "+31 10 450 6066", + "+31104506066", + "+31 10 226 3802", + "010 226 3802", + "+31 6 51799199", + "+31 651 799 199", + "+31 6 53285383", + "+31 6 53 28 53 83", + "+31 10 273 4106", + "+31102734106", + "+31 6 28337154", + "+31628337154", + "+31 10 432 4955", + "+31 10 432 49 55", + "+31 6 24768557", + "+31-6-24768557", + "+31 6 87360204", + "+31-6-87 360 204", + "+31 6 51842373", + "+31 651842373", + "+31 10 741 0420", + "+31 10 7410420", + "+31 10 419 6679", + "+31-10-4196679", + "+31 10 417 4000", + "+31 10 4174000", + "+31 10 760 0065", + "+31 10 760 00 65", + "+31 10 766 1766", + "010 766 1766", + "+31 88 810 0899", + "+31 88 810 08 99", + "+31 10 483 1441", + "+31 10 483 14 41", + "+31 10 483 0110", + "+31 10 4830110", + "+31 10 482 1423", + "+31 10 48 21 423", + "+31 10 479 9631", + "+31 10 479 96 31", + "+31 10 292 3630", + "+31 10 292 36 30", + "+31 10 479 7800", + "+31 10 479 78 00", + "+31 6 17167242", + "+31617167242", + "+31 10 479 0500", + "+31 10 4790500", + "+31 10 482 6427", + "+31 10 48 26 427", + "+31 10 437 3582", + "+31 10 4373582", + "+31 10 479 3853", + "+31104793853", + "+31 10 292 7523", + "+31 10 2927523", + "+31 6 38933334", + "+31 6 389 3333 4", + "+31 10 483 6363", + "+31104836363", + "+31 10 483 1044", + "+31104831044", + "+31 10 482 6228", + "+31104826228", + "+31 10 479 4502", + "+31104794502", + "+31 10 482 2766", + "+31104822766", + "+31 10 310 6282", + "+31103106282", + "+31 6 22255101", + "0622255101", + "+31 182 300 383", + "+31 (0)182 300383", + "+31 10 466 1066", + "010-4661066", + "+31 10 413 2625", + "+31 10 413 26 25", + "+31 10 300 7135", + "+31 10 300 71 35", + "+31 10 244 5777", + "+31 10 24 45 777", + "+31 10 717 1805", + "+31107171805", + "+31 10 476 3015", + "0104763015", + "+31 10 307 3142", + "+31103073142", + "+31 10 484 4400", + "010 484 4400", + "+31 10 433 2241", + "0104332241", + "+31 10 213 6300", + "010 213 6300", + "+31 180 757 171", + "+31180757171", + "+31 182 519 339", + "0182-519339", + "+31 182 518 995", + "0182-518995", + "+31 182 525 215", + "+31 (0)182 525215", + "+31 183 712 911", + "+31 183 712911", + "+31 182 397 160", + "0182 397160", + "+31 10 415 8388", + "010 - 4158388", + "+31 10 476 5558", + "0104765558", + "+31 182 516 349", + "+31 182 516349", + "+31 182 541 800", + "+31(0)182-541800", + "+31 182 372 623", + "+31(0)182 372623", + "+31 182 686 807", + "+31(0)182 686807", + "+31 182 541 599", + "+31(0)182 541599", + "+31 182 820 100", + "+31 (0)182 820100", + "+31 182 684 888", + "+31(0)182 684888", + "+31 183 564 557", + "0031183564557", + "+31 182 379 375", + "+31 (0) 182 379 375", + "+31 10 425 7579", + "010 - 425 75 79", + "+31 10 477 2395", + "+31-10-4772395", + "+31 10 476 4141", + "+31 010 476 4141", + "+31 10 440 1660", + "+31 10 440 16 60", + "+31 183 589 524", + "+31 183589524", + "+31 183 581 308", + "+31 183 58 13 08", + "+31 184 659 011", + "+31 184659011", + "+31 184 654 127", + "+31184654127", + "+31 180 312 706", + "0180312706", + "+31 10 242 9910", + "+31102429910", + "+31 10 224 8500", + "+31 (0) 10 2248500", + "+31 88 811 6600", + "+31 (0) 88 811 6600", + "+31 900 8844", + "09008844", + "+31 10 240 9999", + "+31 (0)10 2409999", + "+31 10 212 1665", + "+31102121665", + "+31 10 412 3598", + "+31 10 4123598", + "+31 182 526 373", + "+31(0)182-526373", + "+31 10 453 7200", + "+31 10 4537200", + "+31 10 225 0705", + "+31102250705", + "+31 10 413 5454", + "+31-10-4135454", + "+31 10 452 2704", + "+31 10 452 27 04", + "+31 10 411 0755", + "+31 10 411 07 55", + "+31 10 414 2692", + "+31 10 4142692", + "+31 10 412 6910", + "+31 10 4126910", + "+31 10 412 4431", + "+31 10 4124431", + "+31 10 414 1404", + "+31 010 414 1404", + "+31 10 503 6327", + "+31 10 503 63 27", + "+31 10 236 1389", + "+31 (0)102361389", + "+31 10 466 0486", + "+31104660486", + "+31 6 87286120", + "+31 6 87 28 61 20", + "+31 10 411 1411", + "+3110 411 1411", + "+31 10 466 9630", + "+31104669630", + "+31 10 422 0000", + "+31104220000", + "+31 10 737 1383", + "+31 10 737 13 83", + "+31 10 841 7961", + "+31 10-8417961", + "+31 10 422 7855", + "010-4227855", + "+31 10 422 2148", + "+31104222148", + "+31 10 418 1500", + "+31 10 4181500", + "+31 10 422 7477", + "+31104227477", + "+31 10 422 4375", + "010-4224375", + "+31 10 418 1883", + "+31 10 4181883", + "+31 10 300 7193", + "+31 10 300 71 93", + "+31 10 418 1364", + "+31 10 418 13 64", + "+31 180 516 233", + "+31 18 0516 233", + "+31 180 511 755", + "0180-511755", + "+31 182 743 061", + "0182-743061", + "+31 182 351 331", + "+31 182 351331", + "+31 180 661 551", + "+31-180-661551", + "+31 6 26739190", + "+31626739190", + "+31 180 665 644", + "+31-180-665644", + "+31 6 30037885", + "+31-6-3003 7885", + "+31 6 51261768", + "06 51261768", + "+31 78 691 2294", + "+31 78 6912294", + "+31 78 693 1777", + "+31786931777", + "+31 78 691 3488", + "+31 78 6913488", + "+31 78 691 8050", + "+31 78 691 80 50", + "+31 78 615 3531", + "+31 78 6153531", + "+31 180 472 657", + "0180472657", + "+31 800 8702020", + "08008702020", + "+31 78 691 7656", + "+31 786917656", + "+31 10 249 0632", + "+31 10 2490632", + "+31 10 316 0548", + "+31 10 3160548", + "+31 6 41224634", + "+31 6 4122 4634", + "+31 182 381 001", + "0182-381001", + "+31 182 382 371", + "+31 182 382371", + "+31 182 383 099", + "+31182 383099", + "+31 182 786 967", + "+31182786967", + "+31 88 007 0172", + "+31880070172", + "+31 182 382 959", + "+31182 382959", + "+31 78 693 4525", + "+31786934525", + "+31 78 691 8653", + "+31786918653", + "+31 182 351 617", + "0182 351 617", + "+31 182 346 600", + "+31 (0)182 346600", + "+31 182 342 548", + "+31 (0)182 342548", + "+31 180 681 607", + "31-180-681607", + "+31 180 681 581", + "+31 180 681581", + "+31 180 681 992", + "+31 180 681992", + "+31 6 14762739", + "06 1476 2739", + "+31 180 660 970", + "0180 - 660 970", + "+31 183 582 175", + "+31 183 582175", + "+31 10 223 7860", + "+31 10 - 223 78 60", + "+31 10 790 0130", + "+31 10 - 79 00 130", + "+31 10 477 5802", + "+31104775802", + "+31 10 444 5690", + "0031 (0)10 4445690", + "+31 10 762 0711", + "+31107620711", + "+31 10 213 0853", + "+31-10-213 08 53", + "+31 15 256 4330", + "+31(0)15-2564330", + "+31 6 28364838", + "0628364838", + "+31 10 203 8923", + "010 203 89 23", + "+31 10 307 3474", + "010 - 3073474", + "+31 6 84350641", + "0684350641", + "+31 10 414 4698", + "010-4144698", + "+31 10 213 0200", + "010-2130200", + "+31 6 12899656", + "+31-6-12899656", + "+31 10 414 7479", + "+31-10-414 74 79", + "+31 10 213 3846", + "+31-10-213 38 46", + "+31 10 414 0326", + "010 414 0326", + "+31 10 213 2687", + "010 - 21 326 87", + "+31 10 413 3000", + "010-4133000", + "+31 10 206 5151", + "010 2065151", + "+31 10 413 9770", + "010-4139770", + "+31 10 473 7674", + "+31 10 4737674", + "+31 6 42123398", + "+31642123398", + "+31 15 760 0090", + "+31157600090", + "+31 10 249 9028", + "+31 10 2499028", + "+31 10 474 8491", + "+31 10 4748491", + "+31 10 474 3822", + "+31 10 4743822", + "+31 15 212 9277", + "+31 15 212 92 77", + "+31 15 212 1568", + "+31 15 2121568", + "+31 6 45467545", + "+31 6 45 46 75 45", + "+31 6 26012827", + "+31 6 2601 2827", + "+31 15 214 6523", + "+31 15 2146523", + "+31 15 213 5616", + "+31 15 - 213 56 16", + "+31 15 285 2125", + "+31 15 285 21 25", + "+31 6 24136805", + "+31 6 241 36 805", + "+31 15 219 0190", + "+31 15 2190190", + "+31 15 212 3689", + "+31 15 212 36 89", + "+31 6 40566262", + "+ 31 6 40 56 6262", + "+31 15 750 5142", + "+31 15 7505142", + "+31 6 18508270", + "+31 618508270", + "+31 88 269 3150", + "+31 88 269 31 50", + "+31 15 212 6959", + "+31 15 2126959", + "+31 15 257 5542", + "+31 15 2575542", + "+31 10 720 0945", + "+31-10-7200945", + "+31 10 414 0025", + "+31-10-4140025", + "+31 10 413 8465", + "+31-10-413 84 65", + "+31 15 213 4548", + "+31 15 2134548", + "+31 15 369 9541", + "0153699541", + "+31 15 369 3832", + "+31 15 3693832", + "+31 10 229 2614", + "+31 10 229 26 14", + "+31 6 14884345", + "+31-6-14884345", + "+31 10 471 1920", + "+31104711920", + "+31 15 820 0269", + "+31 15 8200 269", + "+31 10 483 1575", + "+31-10-4831575", + "+31 184 678 043", + "+31184678043", + "+31 6 50670495", + "06 506 704 95", + "+31 10 438 1744", + "+31 10 438 17 44", + "+31 10 479 0857", + "+31-10-4790857", + "+31 10 483 2293", + "+31-10-4832293", + "+31 10 482 0867", + "+31-10-4820867", + "+31 10 444 4603", + "+31-10-4444603", + "+31 10 482 8422", + "+31-10-4828422", + "+31 10 482 6464", + "+31-10–4826464", + "+31 10 482 7369", + "+31-10-4827369", + "+31 10 763 1251", + "0107631251", + "+31 15 212 3565", + "+31 15 2123565", + "+31 10 752 3079", + "+31 10 752 30 79", + "+31 180 518 929", + "+31180518929", + "+31 15 213 1426", + "+31 15 2131426", + "+31 15 222 0034", + "+31152220034", + "+31 10 462 7783", + "+31104627783", + "+31 10 737 1611", + "+31107371611", + "+31 182 383 282", + "+31(0)182-383282", + "+31 180 410 250", + "+31 180 410250", + "+31 10 450 2433", + "+31 10 4502433", + "+31 10 413 9656", + "+31 (0)10 413 9656", + "+31 180 412 570", + "+31 180 41 25 70", + "+31 10 420 0830", + "+31 (0) 10 4200 830", + "+31 10 495 1199", + "+31-10-495.11.99", + "+31 6 46421700", + "+31-6-46421700", + "+31 180 663 983", + "+31180663983", + "+31 10 485 9078", + "+31 10 48 59 078", + "+31 10 818 4392", + "+31 010 818 4392", + "+31 88 313 4625", + "+31 88 3134625", + "+31 10 202 5633", + "+31-10-2025633", + "+31 15 212 5760", + "+31 15 2125760", + "+31 15 285 5111", + "0152855111", + "+31 10 486 4100", + "+31 10 486 41 00", + "+31 88 256 9201", + "0031 882569201", + "+31 10 426 2584", + "+31 10 4262584", + "+31 15 257 0678", + "+31 15 2570678", + "+31 15 262 8160", + "+31152628160", + "+31 15 212 0162", + "+31 15 2120162", + "+31 10 436 0042", + "+31-10-436 00 42", + "+31 15 261 2442", + "+31 15 261 24 42", + "+31 88 007 0214", + "0880070214", + "+31 15 256 9050", + "0152569050", + "+31 184 681 500", + "+31 184 681500", + "+31 10 477 2071", + "+31 10 4772071", + "+31 10 476 9368", + "0104769368", + "+31 88 650 0000", + "+31886500000", + "+31 15 262 8089", + "0152628089", + "+31 10 765 0396", + "+31107650396", + "+31 10 416 2380", + "+31 (0)10 416 23 80", + "+33 1 52 51 19 30", + "+33 15 2511930", + "+31 6 84113997", + "+31684113997", + "+31 6 26666966", + "0031626666966", + "+31 180 437 778", + "+31180437778", + "+31 10 340 3039", + "+31103403039", + "+31 180 631 111", + "+31 (0)180 631111", + "+31 10 511 0545", + "+310105110545", + "+31 10 786 2909", + "010 786 2909", + "+31 10 741 0099", + "010 – 7410099", + "+31 10 413 9683", + "010 413 96 83", + "+31 10 414 0099", + "+31 (0)10 4140099", + "+31 10 226 5648", + "010-226 56 48", + "+31 15 369 2478", + "+31 15 3692478", + "+31 10 210 5547", + "010 - 210 5547", + "+31 10 236 4550", + "010-2364550", + "+31 10 237 3177", + "010 - 2 373 1 77", + "+31 10 203 6633", + "+31 10 203 66 33", + "+31 6 49887438", + "0649887438", + "+31 6 42019286", + "06 42019286", + "+31 10 310 7952", + "010-3107952", + "+31 6 44192218", + "0644192218", + "+31 6 23739970", + "0623739970", + "+31 10 236 3931", + "+31(0)10 - 236 39 31", + "+31 6 13733805", + "06-13733805", + "+31 10 414 4823", + "010-4144823", + "+31 10 230 7072", + "010- 2307072", + "+31 10 202 6244", + "010 202 62 44", + "+31 10 450 6555", + "+31 10 450 65 55", + "+31 10 258 3381", + "+31 10 2583381", + "+31 10 481 4197", + "+31 10 481 41 97", + "+31 10 425 9033", + "+31 10 4259033", + "+31 10 419 3581", + "+31 10 419 35 81", + "+31 10 419 1166", + "+31 10 419 11 66", + "+31 10 467 1222", + "+31 10 4671222", + "+31 10 222 9747", + "+31 10 2229747", + "+31 180 617 141", + "+31180617141", + "+31 15 261 2772", + "+31 15 2612772", + "+31 180 794 517", + "+31 18 079 4517", + "+31 15 257 1805", + "015 2571805", + "+31 10 261 5300", + "+31 10 2615300", + "+31 10 450 6428", + "0104506428", + "+31 10 410 0125", + "+31104100125", + "+31 15 212 5519", + "+31 (0)15-2125519", + "+31 15 887 9914", + "+31 15 8879914", + "+31 180 612 100", + "+31-180-612100", + "+31 6 81776621", + "+31 6 81 77 66 21", + "+31 180 623 167", + "+31(0)180-623167", + "+31 180 769 035", + "+31(0)180-769035", + "+31 10 413 1167", + "+31 10 4131167", + "+31 10 820 9784", + "0108209784", + "+31 182 514 551", + "+31(0)182-514551", + "+31 182 513 068", + "+31(0)182-513068", + "+31 15 887 1034", + "015 - 8871034", + "+31 10 413 3344", + "0104133344", + "+31 6 24902454", + "+31 624 902 454", + "+31 10 423 3233", + "+31 10 4233 233", + "+31 10 414 3142", + "010 414 31 42", + "+31 10 844 9140", + "+31108449140", + "+31 10 412 6658", + "+31-10-412 66 58", + "+31 6 82802060", + "+31 682802060", + "+31 78 691 9530", + "+31 78 6919530", + "+31 78 691 2428", + "+31 78 6912428", + "+31 10 465 6410", + "+31 10 465 64 10", + "+31 10 485 4015", + "+31104854015", + "+31 10 485 4096", + "+31 (0)10 4854096", + "+31 10 485 7900", + "+31 10 4857900", + "+31 6 24351927", + "+31 (0)6-24351927", + "+31 10 482 8333", + "+31 10 4828333", + "+31 180 511 437", + "+31 180 511437", + "+31 10 245 9455", + "+31 10 2459455", + "+31 10 737 1238", + "+31(0)10-7371238", + "+31 15 364 2016", + "015-3642016", + "+31 15 262 1616", + "015-2621616", + "+31 180 532 880", + "+31(0)180-532880", + "+31 15 364 3787", + "+31 15 36 437 87", + "+31 10 418 7700", + "010-4187700", + "+31 10 285 4141", + "+31102854141", + "+31 10 418 1017", + "010-4181017", + "+31 10 422 6026", + "010-4226026", + "+31 6 46151677", + "+31 6 46 15 16 77", + "+31 15 213 0527", + "+31 15 2130527", + "+31 15 720 0815", + "+31 15 7200815", + "+31 15 214 5335", + "+31 15 214 53 35", + "+31 182 515 457", + "+31(0)182 515457", + "+31 180 851 722", + "+310180851722", + "+31 10 220 6610", + "+31(0)10-2206610", + "+31 6 15118248", + "0615118248", + "+31 10 484 3401", + "+31104843401", + "+31 10 243 0638", + "+31(0)102430638", + "+31 10 226 1347", + "+31 (0)10 22 613 47", + "+31 6 12526790", + "+316 125 26 790", + "+31 10 477 1637", + "+31104771637", + "+31 10 414 7600", + "+31104147600", + "+31 10 293 7171", + "+31102937171", + "+31 10 411 3413", + "+31104113413", + "+31 10 222 3335", + "+31 10 2223335", + "+31 10 737 1219", + "+31 (0)10 737 12 19", + "+31 10 410 2192", + "+31(0)104102192", + "+31 10 237 3444", + "+31102373444", + "+31 10 495 5354", + "+31104955354", + "+31 10 485 5110", + "+31104855110", + "+31 10 419 2758", + "+31104192758", + "+31 10 484 5076", + "+31104845076", + "+31 10 484 5664", + "+31 10 484 56 64", + "+31 6 57477010", + "0031657477010", + "+31 10 414 9710", + "010 - 414 9710", + "+31 6 47214749", + "0647214749", + "+31 10 426 0822", + "+31104260822", + "+31 6 13142506", + "+31 06 1314 2506", + "+31 180 621 400", + "+31180621400", + "+31 180 532 361", + "+31180532361", + "+31 10 213 0995", + "+31 10 2130995", + "+31 6 51344771", + "06-51344771", + "+31 10 200 4069", + "010 200 4069", + "+31 182 581 730", + "+31 (0)182 581730", + "+31 10 850 0678", + "0108500678", + "+31 10 213 5308", + "+31 10 2135308", + "+31 10 213 6596", + "+31-10-2136596", + "+31 10 870 1810", + "+31(0)10-8701810", + "+31 10 420 7836", + "+31(0)10-4207836", + "+31 10 293 0808", + "+31102930808", + "+31 10 737 0031", + "+31-10-737 0031", + "+31 10 410 3208", + "+31 10 410 32 08", + "+31 10 304 6063", + "+31 (0) 10 304 6063", + "+31 10 419 0402", + "+31-10-4190402", + "+31 10 290 0381", + "010 29 00 381", + "+31 15 369 0632", + "+31 15 3690632", + "+31 10 310 6284", + "+31-10-3106284", + "+319001238226", + "+31 10 483 2511", + "+31 10 483 25 11", + "+31 10 206 7333", + "+31 10 206 73 33", + "+31 88 011 4000", + "+31 (0) 88 011 4000", + "+31 10 737 0011", + "010 - 7370011", + "+31 6 30759318", + "+31 6 3075 9318", + "+31 10 766 0077", + "+31 010-7660077", + "+31 10 474 6013", + "+31104746013", + "+31 10 474 5714", + "+31104745714", + "+31 10 447 0870", + "010 – 4470 870", + "+31 15 214 1799", + "+31 15 2141799", + "+31 10 480 3615", + "+31-10-480 36 15", + "+31 10 203 7920", + "0102037920", + "+31 184 651 407", + "+31 184 651407", + "+31 10 486 1102", + "+31 10 4861102", + "+31 182 605 665", + "+31 182 605665", + "+31 10 521 4183", + "+31 10 521 41 83", + "+31 10 742 1920", + "+31-10-7421920", + "+31 10 420 0430", + "+31-10-420 04 30", + "+31 800 2352249", + "+318002352249", + "+31 10 452 9912", + "+31 10 452 99 12", + "+31 10 483 8084", + "+31-10-4838084", + "+31 6 25237375", + "+31625237375", + "+31 15 303 0055", + "+31153030055", + "+31 15 256 5100", + "+31 15 256 51 00", + "+31 15 306 0125", + "015-3060125", + "+31 6 40963431", + "+31 (0)6 40963431", + "+31 15 213 5866", + "+31 15 2135866", + "+31 15 212 6012", + "+31 15 212 60 12", + "+31 88 798 5132", + "+31 88 7985132", + "+31 6 87971860", + "+31 687971860", + "+31 15 889 3041", + "+31 15 8893041", + "+31 15 261 5731", + "+31 15 2615731", + "+31 182 514 792", + "+31 (0)182 514792", + "+31 183 625 825", + "+31183625825", + "+31 6 19480499", + "+31 (0)6 19480499", + "+31 6 57198182", + "+31 (0)6 57198182", + "+31 15 212 9492", + "+31 15 2129492", + "+31 78 691 3054", + "+31 78 6913054", + "+31 180 660 200", + "+31-180-660200", + "+31 182 580 850", + "+31(0)182-580850", + "+31 10 473 4629", + "+31 10 4734629", + "+31 15 516 0905", + "+31 15 5160905", + "+31 10 486 6529", + "+31 10 4866529", + "+31 10 467 3747", + "+31 10 4673747", + "+31 6 84418496", + "+31 (0) 684 418 496", + "+31 6 81222281", + "+31 681 222 281", + "+31 10 426 7675", + "+31 104267675", + "+31 15 261 0277", + "+31 15 2610277", + "+31 6 41502971", + "+31 641502971", + "+31 10 237 4755", + "+31102374755", + "+31 10 268 8148", + "+31 10 2688148", + "+31 10 292 9379", + "+31-10-2929379", + "+31 15 284 1000", + "+31 15 2841000", + "+31 10 482 3466", + "+31 10 482 34 66", + "+31 6 31967042", + "+31 631967042", + "+31 181 442 244", + "+31181442244", + "+31 15 257 8617", + "+31 15 257 86 17", + "+31 10 214 1624", + "+31102141624", + "+31 10 310 6288", + "+31 10 3106288", + "+31 10 841 5666", + "+31 10 841 56 66", + "+31 10 737 1589", + "+31 10 737 15 89", + "+31 10 230 7177", + "+31 10 230 71 77", + "+31 78 620 3000", + "+31 78 6203000", + "+31 88 313 0000", + "+31 88 313 00 00", + "+31 15 213 3433", + "+31152133433", + "+31 183 581 855", + "+31 183 581855", + "+31 183 589 288", + "+31 183 589288", + "+31 183 581 578", + "+31 183 581578", + "+31 88 542 6363", + "+31885426363", + "+31 15 219 0092", + "+31 152190092", + "+31 184 692 770", + "+31 184 692770", + "+31 15 212 2793", + "+31152122793", + "+31 15 212 0948", + "+31 15 2120948", + "+31 78 684 6930", + "+31-78-6846930", + "+31 15 887 9727", + "+31 158879727", + "+31 78 615 1400", + "+31 78 6151400", + "+31 15 271 3050", + "015-2713050", + "+31 10 266 1111", + "010-2661111", + "+31 10 242 8811", + "010-2428811", + "+31 10 411 6330", + "010 4116330", + "+31 10 264 0440", + "010-2640440", + "+31 10 288 7358", + "010-2887358", + "+31 10 511 9555", + "010-5119555", + "+31 10 202 2182", + "010-2022182", + "+31 10 288 1128", + "010-2881128", + "+31 10 310 0701", + "+31103100701", + "+31 10 316 6610", + "+31 10 3166610", + "+31 10 240 9215", + "+31 10 2409215", + "+31 15 257 3488", + "+31 15 2573488", + "+31 15 361 0000", + "+31 15 3610000", + "+31 15 257 0625", + "+31 15 257 06 25", + "+31 15 256 9968", + "+31 15 2569968", + "+31 15 212 2125", + "+31 (0)15 2122125", + "+31 15 284 7999", + "+31152847999", + "+31 10 427 8199", + "+31 10 427 81 99", + "+31 15 278 2442", + "+31 15 278 24 42", + "+31 10 286 1770", + "+31 10 2861770", + "+31 10 413 5498", + "+31 (0)10 4135498", + "+31 15 215 8593", + "+31 15 2158593", + "+31 10 438 6965", + "+31 10 4386965", + "+31 10 438 2505", + "+31 10 4382505", + "+31 10 416 1488", + "+31 10 4161488", + "+31 10 310 7910", + "+31 10 3107910", + "+31 15 278 3042", + "+31 (0)15 2783042", + "+31 10 261 3338", + "+31102613338", + "+31 6 38937083", + "+31-6 38937083", + "+31 182 513 096", + "+31 182 513096", + "+31 6 39 60 56 50", + "+31 6 24571522", + "0624571522", + "+31 15 214 0177", + "+31 (0)15 214 01 77", + "+31 6 46105406", + "0646105406", + "+31 10 737 0845", + "010 7370845", + "+31 10 484 0200", + "+31 10 4840200", + "+31 10 427 0424", + "+31 10 4270424", + "+31 10 484 5724", + "+31 10 484 57 24", + "+31 10 265 7517", + "010 265 75 17", + "+31 6 84382677", + "+31 6 84 38 26 77", + "+31 10 402 6200", + "+31 10 4026200", + "+31 6 22346896", + "06-22346896", + "010 - 226 38 68", + "+31 6 28328713", + "+31 6 2832 8713", + "+31 6 22321349", + "+31 6 2232 1349", + "+31 183 581 214", + "+31 183 581214", + "+31 10 415 3247", + "+31 10 4153247", + "+31 88 775 5444", + "+31 8 8775 5444", + "+31 182 517 800", + "+31 182 517800", + "+31 182 210 211", + "+31182210211", + "+31 255 346 417", + "+31255346417", + "+31 10 262 1000", + "+31 10 2621000", + "+31 6 51873097", + "+31 651873097", + "+31 70 320 7071", + "+31 70 3207071", + "+31 6 51446858", + "+31 651446858", + "+31 85 303 2813", + "+31 85 3032 813", + "+31 6 26199977", + "+31626199977", + "+31 6 25389037", + "+310625389037", + "+31 10 224 6224", + "+31 10 2246224", + "+31 6 14378613", + "+31 6 143 78 613", + "+31 10 483 5578", + "+31 10 483 55 78", + "+31 10 818 4219", + "+31 10 818 42 19", + "+31 10 785 1945", + "+31-10-7851945", + "+31 10 438 1805", + "010-4381805", + "+31 10 438 8118", + "+31-10-4388118", + "+31 10 438 3999", + "+31-10-4383999", + "+31 182 221 018", + "+31 182-221018", + "+31 10 251 8076", + "+31 10 251 80 76", + "+31 10 422 3517", + "+31 10 4223517", + "+31 182 514 702", + "+31 (0)182 - 514 702", + "+31 182 513 359", + "0182-513359", + "+31 6 10928291", + "+31 6 109 28 291", + "+31 6 53857069", + "+31 6 53 857 069", + "+31 6 12032331", + "0031612032331", + "+31 10 280 0136", + "+31 10 2800136", + "+31 6 84618496", + "+31 684 618 496", + "+31 85 130 9264", + "+31 85 1309 264", + "+31 10 412 5484", + "+31 10 4125484", + "+31180472657", + "+31 182 583 162", + "+31(0)182-583162", + "+31 10 200 4498", + "010 200 44 98", + "+31 10 268 0905", + "010 268 0905", + "+31 10 200 4295", + "010-200 4295", + "+31 15 2131000", + "+31 10 475 5255", + "+31104755255", + "+31 10 285 9966", + "+31102859966", + "+31 85 020 0196", + "+31 850200196", + "+31 15 212 3574", + "+31 15 2123574", + "+31 15 214 3577", + "+31 152143577", + "+31 10 820 8787", + "010 820 8787", + "+31 10 450 3950", + "010 - 450 39 50", + "+31 85 784 7636", + "+31 85 7847636", + "+31 15 744 0130", + "+31157440130", + "+31 15 212 0619", + "+31 152120619", + "+31 15 212 2123", + "+31 15 21 22 123", + "+31 15 260 6227", + "+31 (0)15 260 6227", + "+31 15 251 2840", + "+31152512840", + "+31 152002181", + "+31 10 229 1425", + "010 229 1425", + "+31 79 763 2019", + "+31 79 7632019", + "+31 10 307 5801", + "+31.10.3075801" + ], + "route": [ + "bicycle" + ], + "office": [ + "estate_agent", + "it", + "company", + "government", + "travel_agent", + "employment_agency", + "diplomatic", + "advertising_agency", + "catering", + "accountant", + "therapist", + "lawyer", + "yes", + "engineering_consultancy", + "newspaper", + "architect", + "web_design", + "design", + "foundation", + "educational_institution", + "research", + "camping", + "association", + "union", + "coworking" + ], + "amenity": [ + "driving_school", + "fast_food", + "restaurant", + "cafe", + "dentist", + "doctors", + "social_facility", + "community_centre", + "school", + "bar", + "university", + "pharmacy", + "cinema", + "pub", + "casino", + "bicycle_parking", + "nightclub", + "theatre", + "stripclub", + "post_office", + "veterinary", + "car_wash", + "studio", + "townhall", + "bank", + "kindergarten", + "fuel", + "childcare", + "ice_cream", + "place_of_worship", + "food_court", + "car_rental", + "police", + "baby_hatch", + "office", + "charging_station", + "dancing_school", + "recycling", + "bench" + ], + "landuse": [ + "grass" + ], + "leisure": [ + "fitness_centre", + "adult_gaming_centre", + "sports_centre", + "pitch", + "playground", + "marina", + "miniature_golf", + "amusement_arcade" + ], + "natural": [ + "water" + ], + "tourism": [ + "hostel", + "hotel", + "museum", + "apartment", + "chalet", + "gallery", + "camp_site", + "guest_house", + "attraction" + ], + "building": [ + "house", + "yes", + "commercial", + "industrial" + ], + "man_made": [ + "works" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.241261279961052, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "create": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6 + }, + "id": 122030608 + } + }, + { + "id": 122028815, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8564201, + 51.1408666 + ], + [ + 4.871259, + 51.1408666 + ], + [ + 4.871259, + 51.1653003 + ], + [ + 4.8564201, + 51.1653003 + ], + [ + 4.8564201, + 51.1408666 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T14:23:43Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4046738", + "Gbg/4046987", + "Gbg/6508546", + "Gbg/4046992", + "Gbg/4047530", + "Gbg/4047067", + "Gbg/4047065", + "Gbg/4047066", + "Gbg/4046994", + "Gbg/4046993", + "Gbg/4046990", + "Gbg/4012884", + "Gbg/4011268", + "Gbg/4046989", + "Gbg/6757850", + "Gbg/4047005", + "Gbg/4047528", + "Gbg/4047529", + "Gbg/4011267", + "Gbg/1661766", + "Gbg/4011259", + "Gbg/4011257", + "Gbg/4011262", + "Gbg/1661425", + "Gbg/4011258", + "Gbg/4011260", + "Gbg/4011263" + ], + "source:geometry:date": [ + "2013-01-16", + "2018-10-24", + "2013-02-20", + "2013-01-07", + "2020-03-16", + "2015-11-24", + "2014-12-04", + "2017-03-01", + "2009-07-13" + ] + }, + "create": 221, + "modify": 162, + "delete": 2, + "area": 0.000362569230929939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 135, + "theme": "grb", + "delete": 2, + "import": 19, + "locale": "nl", + "imagery": "AGIV", + "conflation": 54 + }, + "id": 122028815 + } + }, + { + "id": 122028580, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8564663, + 51.1431593 + ], + [ + 4.8587494, + 51.1431593 + ], + [ + 4.8587494, + 51.1442007 + ], + [ + 4.8564663, + 51.1442007 + ], + [ + 4.8564663, + 51.1431593 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T14:18:09Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "apartments", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4046947", + "Gbg/4046946", + "Gbg/5167725", + "Gbg/4046953", + "Gbg/4046933", + "Gbg/4046954", + "Gbg/5403716", + "Gbg/4046951", + "Gbg/4046952", + "Gbg/5403840", + "Gbg/4046932", + "Gbg/4046950", + "Gbg/5403771", + "Gbg/5403717", + "Gbg/4046945", + "Gbg/4046719", + "Gbg/4046985", + "Gbg/4046971" + ], + "source:geometry:date": [ + "2017-03-01", + "2013-02-20", + "2015-11-24", + "2018-10-24", + "2015-05-06", + "2013-01-16" + ] + }, + "create": 54, + "modify": 169, + "delete": 0, + "area": 0.00000237762033999576, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 153, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 36 + }, + "id": 122028580 + } + }, + { + "id": 122025572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3273499, + 51.158443 + ], + [ + 3.3387447, + 51.158443 + ], + [ + 3.3387447, + 51.1700391 + ], + [ + 3.3273499, + 51.1700391 + ], + [ + 3.3273499, + 51.158443 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T13:16:46Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "hiking", + "foot" + ], + "highway": [ + "service", + "footway", + "cycleway", + "track", + "unclassified", + "tertiary" + ], + "survey:date": [ + "2022-06-06" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000132135240279979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 122025572 + } + }, + { + "id": 122024785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T13:01:48Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/DCrqlvQ.jpg" + ], + "amenity": [ + "toilets" + ], + "description": [ + "In parking Sint-Pietersplein" + ], + "changing_table": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 3 + }, + "id": 122024785 + } + }, + { + "id": 122022132, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2821246, + 47.7948169 + ], + [ + -4.2821246, + 47.7948169 + ], + [ + -4.2821246, + 47.7948169 + ], + [ + -4.2821246, + 47.7948169 + ], + [ + -4.2821246, + 47.7948169 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T12:08:58Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 122022132 + } + }, + { + "id": 122021602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5550015, + 46.0550267 + ], + [ + 14.5559456, + 46.0550267 + ], + [ + 14.5559456, + 46.0557296 + ], + [ + 14.5550015, + 46.0557296 + ], + [ + 14.5550015, + 46.0550267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stepc", + "uid": "13911774", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T11:59:03Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "pitch" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.63607890000192e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122021602 + } + }, + { + "id": 122021344, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ], + [ + 3.7255707, + 51.0426904 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T11:54:03Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "-1" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 6 + }, + "id": 122021344 + } + }, + { + "id": 122020831, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1419604, + 52.404133 + ], + [ + 14.1419604, + 52.404133 + ], + [ + 14.1419604, + 52.404133 + ], + [ + 14.1419604, + 52.404133 + ], + [ + 14.1419604, + 52.404133 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFW OWS", + "uid": "16214974", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T11:43:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122020831 + } + }, + { + "id": 122020359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kudlav", + "uid": "3272933", + "editor": "iD 2.20.4", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Bing Maps Aerial", + "date": "2022-06-06T11:33:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "File:Rozhledna vinařství Altenberg Vini.jpg" + ], + "tourism": [ + "viewpoint" + ], + "man_made": [ + "tower" + ], + "wikimedia_commons": [ + "File:Rozhledna vinařství Altenberg Vini.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://www.openstreetmap.org/edit", + "locale": "cs", + "hashtags": "#MapComplete;#observation_towers", + "changesets_count": 1664 + }, + "id": 122020359 + } + }, + { + "id": 122020332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ], + [ + 16.7387959, + 48.9499483 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kudlav", + "uid": "3272933", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T11:33:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "locale": "en", + "imagery": "osm", + "link-image": 1 + }, + "id": 122020332 + } + }, + { + "id": 122020331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2895791, + 49.8934254 + ], + [ + 2.2895791, + 49.8934254 + ], + [ + 2.2895791, + 49.8934254 + ], + [ + 2.2895791, + 49.8934254 + ], + [ + 2.2895791, + 49.8934254 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T11:33:07Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "service:bicycle:tools": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "id": 122020331 + } + }, + { + "id": 122019338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5627204, + 46.0564451 + ], + [ + 14.5627204, + 46.0564451 + ], + [ + 14.5627204, + 46.0564451 + ], + [ + 14.5627204, + 46.0564451 + ], + [ + 14.5627204, + 46.0564451 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stepc", + "uid": "13911774", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T11:10:50Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+386 41 571 797" + ], + "amenity": [ + "cafe" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122019338 + } + }, + { + "id": 122017390, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8561849, + 51.1412927 + ], + [ + 4.8611186, + 51.1412927 + ], + [ + 4.8611186, + 51.1450713 + ], + [ + 4.8561849, + 51.1450713 + ], + [ + 4.8561849, + 51.1412927 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T10:25:38Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "insurance" + ], + "amenity": [ + "pub", + "restaurant" + ], + "building": [ + "yes", + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4047196", + "Gbg/4047198", + "Gbg/4046718", + "Gbg/4047195", + "Gbg/4047184", + "Gbg/4046895", + "Gbg/4047199", + "Gbg/4928287", + "Gbg/4047441", + "Gbg/6508595", + "Gbg/4047443", + "Gbg/5862290", + "Gbg/4047437", + "Gbg/4046988", + "Gbg/4047423", + "Gbg/4047432", + "Gbg/4047435", + "Gbg/6803191", + "Gbg/6803120", + "Gbg/5167711", + "Gbg/4046724", + "Gbg/4046735", + "Gbg/4046722", + "Gbg/4046721", + "Gbg/4046720", + "Gbg/4047033", + "Gbg/4047032" + ], + "source:geometry:date": [ + "2013-02-20", + "2015-11-24", + "2017-03-01", + "2018-10-24", + "2013-01-16", + "2014-12-04", + "2020-06-05" + ] + }, + "create": 264, + "modify": 156, + "delete": 0, + "area": 0.0000186424788199863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 135, + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "AGIV", + "conflation": 54 + }, + "id": 122017390 + } + }, + { + "id": 122012198, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4342187, + 50.8140204 + ], + [ + 4.4342187, + 50.8140204 + ], + [ + 4.4342187, + 50.8140204 + ], + [ + 4.4342187, + 50.8140204 + ], + [ + 4.4342187, + 50.8140204 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T08:43:04Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ESQw2nL.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122012198 + } + }, + { + "id": 122011281, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.743345, + 51.1368258 + ], + [ + 2.743345, + 51.1368258 + ], + [ + 2.743345, + 51.1368258 + ], + [ + 2.743345, + 51.1368258 + ], + [ + 2.743345, + 51.1368258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "thierydem", + "uid": "13422761", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T08:22:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/SDawbBJ.jpg" + ], + "image:0": [ + "https://i.imgur.com/yZdXM9j.jpg" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "Gemaakt uit hout en metaal" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 122011281 + } + }, + { + "id": 122009699, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3308996, + 50.9955922 + ], + [ + 3.3317836, + 50.9955922 + ], + [ + 3.3317836, + 50.9960695 + ], + [ + 3.3308996, + 50.9960695 + ], + [ + 3.3308996, + 50.9955922 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-06T07:46:55Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "school" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 4.21933200000063e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "id": 122009699 + } + }, + { + "id": 121999758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0668139, + 14.5858935 + ], + [ + 121.0670321, + 14.5858935 + ], + [ + 121.0670321, + 14.5860848 + ], + [ + 121.0668139, + 14.5860848 + ], + [ + 121.0668139, + 14.5858935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T01:38:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "nightclub" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "Mo 00:00-06:00; We 22:00-00:00; Th-Su 00:00-06:00, 23:30-00:00", + "Th-Su 23:30-06:00" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.1741660001374e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "lgbtmap", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 121999758 + } + }, + { + "id": 121999500, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -118.3549412, + 33.8046779 + ], + [ + -118.3538743, + 33.8046779 + ], + [ + -118.3538743, + 33.8120849 + ], + [ + -118.3549412, + 33.8120849 + ], + [ + -118.3549412, + 33.8046779 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Devolved", + "uid": "663717", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-06T01:18:28Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "lit": [ + "yes" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "website": [ + "https://www.torranceca.gov/Home/Components/FacilityDirectory/FacilityDirectory/1062/1094", + "https://www.torranceca.gov/Home/Components/FacilityDirectory/FacilityDirectory/1034/1094" + ], + "wheelchair": [ + "yes" + ], + "opening_hours": [ + "sunrise-sunset" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000790252829998489, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "id": 121999500 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-07.json b/Docs/Tools/stats/stats.2022-6-07.json new file mode 100644 index 0000000000..7858886b44 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-07.json @@ -0,0 +1,2291 @@ +{ + "features": [ + { + "id": 122091476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.327347, + 51.0025795 + ], + [ + 3.4001605, + 51.0025795 + ], + [ + 3.4001605, + 51.0409394 + ], + [ + 3.327347, + 51.0409394 + ], + [ + 3.327347, + 51.0025795 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T22:05:33Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "customers" + ], + "amenity": [ + "recycling", + "bicycle_parking" + ], + "barrier": [ + "bollard", + "block" + ], + "bicycle": [ + "yes" + ], + "bollard": [ + "fixed" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "grass" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00279311857864972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 30, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 2, + "change_within_500m": 1, + "change_within_1000m": 24 + }, + "id": 122091476 + } + }, + { + "id": 122091029, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2324725, + -39.8438323 + ], + [ + -73.2318097, + -39.8438323 + ], + [ + -73.2318097, + -39.8434581 + ], + [ + -73.2324725, + -39.8434581 + ], + [ + -73.2324725, + -39.8438323 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T21:41:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/LEOTNzQ.jpg", + "https://i.imgur.com/qHdNjIE.jpg", + "https://i.imgur.com/gvmYarL.jpg", + "https://i.imgur.com/m6eKenw.jpg" + ], + "image:0": [ + "https://i.imgur.com/ITXf7BT.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.4801976000229e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 5, + "change_within_50m": 1, + "change_within_100m": 2 + }, + "id": 122091029 + } + }, + { + "id": 122090831, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8534166, + 51.1403898 + ], + [ + 4.8672537, + 51.1403898 + ], + [ + 4.8672537, + 51.1508842 + ], + [ + 4.8534166, + 51.1508842 + ], + [ + 4.8534166, + 51.1403898 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T21:31:24Z", + "reviewed_features": [], + "tag_changes": { + "uid": [ + "138772" + ], + "user": [ + "lodde1949" + ], + "amenity": [ + "restaurant" + ], + "version": [ + "1" + ], + "building": [ + "yes", + "house", + "industrial", + "school", + "apartments", + "roof" + ], + "changeset": [ + "31261231" + ], + "timestamp": [ + "2015-05-18T17:05:23Z" + ], + "addr:street": [ + "Tramstraat", + "Stadsestraat" + ], + "addr:housenumber": [ + "9", + "7", + "29", + "5", + "26", + "13" + ], + "source:geometry:ref": [ + "Gbg/5403772", + "Gbg/4047080", + "Gbg/6507758", + "Gbg/4047079", + "Gbg/4050185", + "Gbg/4046599", + "Gbg/4046661", + "Gbg/4047579", + "Gbg/4046595", + "Gbg/4046737", + "Gbg/4046598", + "Gbg/4928279", + "Gbg/4046596", + "Gbg/4047078", + "Gbg/4046716", + "Gbg/4678994", + "Gbg/4046926", + "Gbg/4047116", + "Gbg/4047011", + "Gbg/4047012", + "Gbg/5862462", + "Gbg/4047009", + "Gbg/4047006", + "Gbg/5403850", + "Gbg/4047030", + "Gbg/4047099", + "Gbg/4047028", + "Gbg/4047013", + "Gbg/4047025", + "Gbg/4045401", + "Gbg/6508515", + "Gbg/5862497", + "Gbg/4047523", + "Gbg/4048021", + "Gbg/4045400", + "Gbg/6507816", + "Gbg/5862468", + "Gbg/4047026", + "Gbg/5862458", + "Gbg/5862568", + "Gbg/4047014", + "Gbg/4047008", + "Gbg/4046584", + "Gbg/6508569", + "Gbg/5862507", + "Gbg/5862478", + "Gbg/4046618", + "Gbg/4047492", + "Gbg/4047046", + "Gbg/4047034", + "Gbg/4046972", + "Gbg/4047045", + "Gbg/4046970", + "Gbg/4047031", + "Gbg/4046969", + "Gbg/4046968", + "Gbg/4046966", + "Gbg/4046965", + "Gbg/4046897", + "Gbg/4046898", + "Gbg/4046927", + "Gbg/4047447", + "Gbg/4047444", + "Gbg/4047573", + "Gbg/4047445", + "Gbg/4045380", + "Gbg/4045379", + "Gbg/4045378", + "Gbg/5403729", + "Gbg/4047458", + "Gbg/4045386", + "Gbg/7020169", + "Gbg/4045405", + "Gbg/4045384", + "Gbg/4045404", + "Gbg/4045391", + "Gbg/4045402", + "Gbg/4928244", + "Gbg/4045403", + "Gbg/4045407", + "Gbg/4047453", + "Gbg/4928291", + "Gbg/4047500", + "Gbg/4047448", + "Gbg/4047499", + "Gbg/5748701", + "Gbg/5862526", + "Gbg/4045399", + "Gbg/4046664", + "Gbg/4928241", + "Gbg/4046577", + "Gbg/4046564", + "Gbg/4046675", + "Gbg/4046597", + "Gbg/4046662", + "Gbg/4046576", + "Gbg/4046563", + "Gbg/4046562", + "Gbg/4046580", + "Gbg/5862263", + "Gbg/5862303" + ], + "source:geometry:date": [ + "2015-11-24", + "2013-01-16", + "2021-09-10", + "2013-02-20", + "2014-12-04", + "2014-05-02", + "2017-03-01", + "2021-10-25", + "2018-10-24", + "2020-06-05", + "2019-09-04", + "2016-11-07" + ] + }, + "create": 875, + "modify": 626, + "delete": 8, + "area": 0.000145212062239984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 524, + "theme": "grb", + "answer": 8, + "delete": 8, + "import": 65, + "locale": "nl", + "imagery": "osm", + "conflation": 202, + "change_over_5000m": 21 + }, + "id": 122090831 + } + }, + { + "id": 122090694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8650895, + 51.1405746 + ], + [ + 4.8688227, + 51.1405746 + ], + [ + 4.8688227, + 51.141861 + ], + [ + 4.8650895, + 51.141861 + ], + [ + 4.8650895, + 51.1405746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T21:25:03Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/4045445", + "Gbg/4045395", + "Gbg/4045446", + "Gbg/4045396", + "Gbg/4045397", + "Gbg/4045398", + "Gbg/4048017", + "Gbg/4045410", + "Gbg/4047572", + "Gbg/4045409", + "Gbg/4045412", + "Gbg/4045390", + "Gbg/6666972" + ], + "source:geometry:date": [ + "2013-02-20", + "2013-01-16", + "2019-09-04", + "2020-06-05" + ] + }, + "create": 77, + "modify": 86, + "delete": 0, + "area": 0.00000480238847999234, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 73, + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 26, + "change_over_5000m": 8 + }, + "id": 122090694 + } + }, + { + "id": 122089456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2875992, + 44.5145978 + ], + [ + 11.2875992, + 44.5145978 + ], + [ + 11.2875992, + 44.5145978 + ], + [ + 11.2875992, + 44.5145978 + ], + [ + 11.2875992, + 44.5145978 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T20:44:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 122089456 + } + }, + { + "id": 122088227, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3832963, + 48.4612764 + ], + [ + 2.6650256, + 48.4612764 + ], + [ + 2.6650256, + 48.8665597 + ], + [ + 2.3832963, + 48.8665597 + ], + [ + 2.3832963, + 48.4612764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miggaz elquez", + "uid": "11237080", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T20:07:50Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes", + "no" + ], + "access": [ + "yes" + ], + "noname": [ + "yes" + ], + "landuse": [ + "forest" + ], + "leisure": [ + "sports_centre", + "pitch" + ], + "climbing": [ + "area" + ], + "climbing:speed": [ + "no" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.11418018041069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing", + "theme": "climbing", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 122088227 + } + }, + { + "id": 122087315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2920195, + 50.8541295 + ], + [ + 3.2922748, + 50.8541295 + ], + [ + 3.2922748, + 50.8542807 + ], + [ + 3.2920195, + 50.8542807 + ], + [ + 3.2920195, + 50.8541295 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T19:42:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 1, + "area": 3.86013599994199e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 9, + "theme": "grb", + "delete": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 122087315 + } + }, + { + "id": 122086838, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.6769297, + 49.5971426 + ], + [ + 0.6769297, + 49.5971426 + ], + [ + 0.6769297, + 49.5971426 + ], + [ + 0.6769297, + 49.5971426 + ], + [ + 0.6769297, + 49.5971426 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T19:29:01Z", + "reviewed_features": [], + "tag_changes": { + "defibrillator:location:en": [ + "Next to the main entrance" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122086838 + } + }, + { + "id": 122085495, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3895836, + 49.1273138 + ], + [ + 2.5713717, + 49.1273138 + ], + [ + 2.5713717, + 49.2033922 + ], + [ + 2.3895836, + 49.2033922 + ], + [ + 2.3895836, + 49.1273138 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T19:00:44Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school", + "social_facility", + "hospital" + ], + "highway": [ + "secondary", + "primary", + "residential", + "tertiary", + "footway", + "service", + "pedestrian", + "track" + ], + "landuse": [ + "forest" + ], + "tourism": [ + "museum" + ], + "building": [ + "yes", + "school" + ], + "name:etymology:wikidata": [ + "Q680897", + "Q1052", + "Q752088", + "Q2042", + "Q940694", + "Q130272", + "Q518512", + "Q312391", + "Q535", + "Q179888", + "Q223274", + "Q752093", + "Q1332127", + "Q41269", + "Q126675", + "Q622365", + "Q331087", + "Q90", + "Q797108", + "Q2185", + "Q181269", + "Q27619343", + "Q49752", + "Q849", + "Q18420", + "Q191408", + "Q4700", + "Q182791", + "Q191305", + "Q501", + "Q735370", + "Q289801", + "Q462644", + "Q35548", + "Q675687", + "Q243212", + "Q207958", + "Q232972", + "Q236630", + "Q755", + "Q42247", + "Q126668", + "Q846750" + ] + }, + "create": 0, + "modify": 159, + "delete": 0, + "area": 0.01383014778704, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 205, + "locale": "fr", + "imagery": "osm" + }, + "id": 122085495 + } + }, + { + "id": 122084191, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8106191, + 51.1862576 + ], + [ + 2.8106191, + 51.1862576 + ], + [ + 2.8106191, + 51.1862576 + ], + [ + 2.8106191, + 51.1862576 + ], + [ + 2.8106191, + 51.1862576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T18:32:50Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "tgenotmiddelkerke@gmail.com" + ], + "phone": [ + "+32 473 19 10 41" + ], + "amenity": [ + "cafe" + ], + "website": [ + "https://menucards.cc/tgenot" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 5, + "locale": "en", + "imagery": "osmfr" + }, + "id": 122084191 + } + }, + { + "id": 122083968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7701384, + 51.150808 + ], + [ + 4.7827953, + 51.150808 + ], + [ + 4.7827953, + 51.1546206 + ], + [ + 4.7701384, + 51.1546206 + ], + [ + 4.7701384, + 51.150808 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T18:26:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000482556969400449, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2, + "change_within_50m": 3 + }, + "id": 122083968 + } + }, + { + "id": 122081062, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2072767, + 51.2087986 + ], + [ + 3.2203682, + 51.2087986 + ], + [ + 3.2203682, + 51.2147055 + ], + [ + 3.2072767, + 51.2147055 + ], + [ + 3.2072767, + 51.2087986 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T16:57:42Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Kleuterschool Lenteweelde", + "KLeuterschool Lenteweelde" + ], + "email": [ + "info@basisschoolzandstraat.be" + ], + "phone": [ + "+32 50 31 69 02" + ], + "amenity": [ + "school", + "kindergarten" + ], + "website": [ + "https://basisschoolzandstraat.be/kleuterafdeling-lenteweelde/" + ], + "isced:2011:level": [ + "primary" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000773301813499908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "schools", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122081062 + } + }, + { + "id": 122080366, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2277688, + -39.8299036 + ], + [ + -73.2277688, + -39.8299036 + ], + [ + -73.2277688, + -39.8299036 + ], + [ + -73.2277688, + -39.8299036 + ], + [ + -73.2277688, + -39.8299036 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T16:34:08Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122080366 + } + }, + { + "id": 122079812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2406011, + -39.8348573 + ], + [ + -73.2398255, + -39.8348573 + ], + [ + -73.2398255, + -39.8299529 + ], + [ + -73.2406011, + -39.8299529 + ], + [ + -73.2406011, + -39.8348573 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T16:16:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Yzee5xW.jpg", + "https://i.imgur.com/H1aLJ9W.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000380385264005673, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "id": 122079812 + } + }, + { + "id": 122079049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7268178, + 50.9788521 + ], + [ + 3.7268178, + 50.9788521 + ], + [ + 3.7268178, + 50.9788521 + ], + [ + 3.7268178, + 50.9788521 + ], + [ + 3.7268178, + 50.9788521 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sanbock", + "uid": "16217340", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T15:52:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122079049 + } + }, + { + "id": 122074440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.676549, + 49.597014 + ], + [ + 0.677171, + 49.597014 + ], + [ + 0.677171, + 49.59731 + ], + [ + 0.676549, + 49.59731 + ], + [ + 0.676549, + 49.597014 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T14:05:37Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.84111999999221e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 5 + }, + "id": 122074440 + } + }, + { + "id": 122072244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.817955, + 39.1908737 + ], + [ + -76.8174342, + 39.1908737 + ], + [ + -76.8174342, + 39.1930628 + ], + [ + -76.817955, + 39.1930628 + ], + [ + -76.817955, + 39.1908737 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PlugInSites", + "uid": "10651792", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T13:08:16Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "capacity": [ + "8", + "10" + ], + "motorcar": [ + "yes" + ], + "socket:type1": [ + "6" + ], + "socket:chademo": [ + "1", + "2" + ], + "socket:type1_cable": [ + "1" + ], + "socket:type1_combo": [ + "1" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000114008328000978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations", + "move": 1, + "theme": "charging_stations", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "geodata.md.gov-MD_SixInchImagery", + "move:node/8306579613": "improve_accuracy" + }, + "id": 122072244 + } + }, + { + "id": 122071748, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2404072, + -39.8389723 + ], + [ + -73.2353665, + -39.8389723 + ], + [ + -73.2353665, + -39.8344011 + ], + [ + -73.2404072, + -39.8344011 + ], + [ + -73.2404072, + -39.8389723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T12:55:57Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dUqY2sQ.jpg", + "https://i.imgur.com/R7cciT3.jpg", + "https://i.imgur.com/tODrb7w.jpg" + ], + "image:0": [ + "https://i.imgur.com/NvqOaIc.jpg", + "https://i.imgur.com/wxFeFZk.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000230420478400466, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 5 + }, + "id": 122071748 + } + }, + { + "id": 122070986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6258769, + 47.3026532 + ], + [ + 9.6582578, + 47.3026532 + ], + [ + 9.6582578, + 47.3134028 + ], + [ + 9.6258769, + 47.3134028 + ], + [ + 9.6258769, + 47.3026532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T12:36:14Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary" + ], + "maxspeed": [ + "40", + "60" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000348081722639897, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/maxspeed.html", + "theme": "maxspeed", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "id": 122070986 + } + }, + { + "id": 122070809, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.869787, + 51.1001285 + ], + [ + 4.9965656, + 51.1001285 + ], + [ + 4.9965656, + 51.169646 + ], + [ + 4.869787, + 51.169646 + ], + [ + 4.869787, + 51.1001285 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T12:32:07Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "guest_house" + ], + "building": [ + "yes", + "house", + "roof" + ], + "addr:street": [ + "Geelseweg" + ], + "addr:housenumber": [ + "6" + ], + "source:geometry:ref": [ + "Gbg/5860852", + "Gbg/4011757", + "Gbg/4011252", + "Gbg/4011255", + "Gbg/4011256", + "Gbg/4011808", + "Gbg/4011809", + "Gbg/5862436", + "Gbg/4011811", + "Gbg/4011261", + "Gbg/4011764", + "Gbg/4011765", + "Gbg/4011761", + "Gbg/6508584", + "Gbg/4011759", + "Gbg/5862322", + "Gbg/4011791", + "Gbg/5862332", + "Gbg/4011253", + "Gbg/4011767", + "Gbg/4011812", + "Gbg/4011859", + "Gbg/4011813", + "Gbg/4011858", + "Gbg/4011814", + "Gbg/4011857", + "Gbg/4011769", + "Gbg/4011251", + "Gbg/4011793", + "Gbg/4011768", + "Gbg/4011846", + "Gbg/4011794", + "Gbg/4011770", + "Gbg/4011795", + "Gbg/4011860", + "Gbg/3948439", + "Gbg/5862440", + "Gbg/3948441", + "Gbg/4011266", + "Gbg/4011265", + "Gbg/6989642", + "Gbg/4011826", + "Gbg/4011825", + "Gbg/4010930", + "Gbg/4010929", + "Gbg/4010891", + "Gbg/4010928", + "Gbg/4010890", + "Gbg/4011843", + "Gbg/4011839", + "Gbg/7019864" + ], + "source:geometry:date": [ + "2017-03-01", + "2013-01-07", + "2018-10-24", + "2020-06-05", + "2013-02-20", + "2012-11-15", + "2021-10-25", + "2021-09-10" + ] + }, + "create": 719, + "modify": 311, + "delete": 0, + "area": 0.00881333132550048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 260, + "theme": "grb", + "import": 76, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "id": 122070809 + } + }, + { + "id": 122070222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8085759, + 51.060356 + ], + [ + 3.9005582, + 51.060356 + ], + [ + 3.9005582, + 51.1359634 + ], + [ + 3.8085759, + 51.1359634 + ], + [ + 3.8085759, + 51.060356 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Lochristi", + "uid": "16225274", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T12:17:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets", + "bench", + "charging_station" + ] + }, + "create": 25, + "modify": 11, + "delete": 0, + "area": 0.00695454254902022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 42, + "create": 25, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 122070222 + } + }, + { + "id": 122066667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4161362, + 54.7781596 + ], + [ + 9.4161362, + 54.7781596 + ], + [ + 9.4161362, + 54.7781596 + ], + [ + 9.4161362, + 54.7781596 + ], + [ + 9.4161362, + 54.7781596 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T10:58:28Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/BXZUA4X.jpg" + ], + "phone": [ + "+49 7063 93 33333" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "no" + ], + "socket:chademo": [ + "1" + ], + "socket:type2_cable": [ + "1" + ], + "socket:type2_combo": [ + "1" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122066667 + } + }, + { + "id": 122061460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.800595, + 49.4297481 + ], + [ + 0.800595, + 49.4297481 + ], + [ + 0.800595, + 49.4297481 + ], + [ + 0.800595, + 49.4297481 + ], + [ + 0.800595, + 49.4297481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T09:09:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 122061460 + } + }, + { + "id": 122060732, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.9699054, + 43.2056138 + ], + [ + -3.9543808, + 43.2056138 + ], + [ + -3.9543808, + 43.2156776 + ], + [ + -3.9699054, + 43.2156776 + ], + [ + -3.9699054, + 43.2056138 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-07T08:58:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000156236469479961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 6, + "create": 3, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "id": 122060732 + } + }, + { + "id": 122058595, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9055048, + 51.1054154 + ], + [ + 4.9055048, + 51.1054154 + ], + [ + 4.9055048, + 51.1054154 + ], + [ + 4.9055048, + 51.1054154 + ], + [ + 4.9055048, + 51.1054154 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T08:16:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 7, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122058595 + } + }, + { + "id": 122047161, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.2650738, + -32.9929502 + ], + [ + -71.2650738, + -32.9929502 + ], + [ + -71.2650738, + -32.9929502 + ], + [ + -71.2650738, + -32.9929502 + ], + [ + -71.2650738, + -32.9929502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-07T01:00:20Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/MDUSqpW.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 122047161 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-08.json b/Docs/Tools/stats/stats.2022-6-08.json new file mode 100644 index 0000000000..c3a3ef7731 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-08.json @@ -0,0 +1,2680 @@ +{ + "features": [ + { + "id": 122139207, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4370604, + 51.1943747 + ], + [ + 4.5055194, + 51.1943747 + ], + [ + 4.5055194, + 51.2494346 + ], + [ + 4.4370604, + 51.2494346 + ], + [ + 4.4370604, + 51.1943747 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T23:47:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "residential", + "tertiary", + "secondary_link", + "secondary", + "unclassified", + "service", + "path" + ], + "name:etymology:wikidata": [ + "Q79058", + "Q37340", + "Q112294580", + "Q108019", + "Q126916", + "Q3271482", + "Q194012", + "Q1863253", + "Q1150", + "Q2062015", + "Q469580", + "Q19835682", + "Q98793975", + "Q50411812", + "Q152457", + "Q60050545", + "Q97495842", + "Q95961727", + "Q112294248", + "Q818804", + "Q18575616", + "Q96654538", + "Q112295114", + "Q12091", + "Q364139", + "Q106851", + "Q270658", + "Q2029739", + "Q112295829", + "Q174353", + "Q2554516", + "Q2180803", + "Q2658124" + ] + }, + "create": 0, + "modify": 152, + "delete": 0, + "area": 0.00376934569410022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 214, + "locale": "nl", + "imagery": "osm" + }, + "id": 122139207 + } + }, + { + "id": 122138896, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0551319, + 51.0268174 + ], + [ + 4.6881214, + 51.0268174 + ], + [ + 4.6881214, + 51.2051151 + ], + [ + 4.0551319, + 51.2051151 + ], + [ + 4.0551319, + 51.0268174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T23:19:37Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "proposed:cyclestreet": [ + "yes" + ] + }, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.112860571974151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "split": 2, + "theme": "cyclestreets", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "id": 122138896 + } + }, + { + "id": 122138772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8092537, + 51.1859369 + ], + [ + 2.8092537, + 51.1859369 + ], + [ + 2.8092537, + 51.1859369 + ], + [ + 2.8092537, + 51.1859369 + ], + [ + 2.8092537, + 51.1859369 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T23:06:18Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "locale": "en", + "imagery": "AGIV", + "deletion": 1, + "change_over_5000m": 1, + "deletion:node/9804602914": "duplicate" + }, + "id": 122138772 + } + }, + { + "id": 122137360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.5055717, + 49.3994916 + ], + [ + 9.5055717, + 49.3994916 + ], + [ + 9.5055717, + 49.3994916 + ], + [ + 9.5055717, + 49.3994916 + ], + [ + 9.5055717, + 49.3994916 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T21:48:23Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UtFSq5G.jpg" + ], + "amenity": [ + "toilets" + ], + "changing_table": [ + "yes" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "changing_table:location": [ + "wheelchair_toilet" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "id": 122137360 + } + }, + { + "id": 122137291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2361997, + 50.735887 + ], + [ + 4.2372955, + 50.735887 + ], + [ + 4.2372955, + 50.7365914 + ], + [ + 4.2361997, + 50.7365914 + ], + [ + 4.2361997, + 50.735887 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T21:45:48Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Cheers", + "Maurice Café" + ], + "shop": [ + "jewelry" + ], + "amenity": [ + "cafe", + "pub", + "bar" + ], + "website": [ + "https://www.isis-sieraden.be", + "https://mokkadis.be", + "http://users.telenet.be/mokkadis", + "https://www.bistro-servais.be", + "https://www.facebook.com/profile.php?id=100076154600869" + ] + }, + "create": 0, + "modify": 4, + "delete": 1, + "area": 7.71881520003855e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 4, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/5578933391": "shop_closed" + }, + "id": 122137291 + } + }, + { + "id": 122137120, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3853843, + 49.1836641 + ], + [ + 2.4627891, + 49.1836641 + ], + [ + 2.4627891, + 49.2259051 + ], + [ + 2.3853843, + 49.2259051 + ], + [ + 2.3853843, + 49.1836641 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T21:38:55Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "tertiary", + "secondary", + "residential", + "service", + "primary", + "unclassified", + "track", + "footway" + ], + "name:etymology:wikidata": [ + "Q2042", + "Q331087", + "Q675687", + "Q1335541", + "Q529", + "Q1631", + "Q449", + "Q5593", + "Q622365", + "Q253224", + "Q47162", + "Q18404", + "Q7327", + "Q152176", + "Q207958", + "Q493", + "Q1666", + "Q752088", + "Q1332424", + "Q150662", + "Q12688", + "Q658479", + "Q235863", + "Q3372335", + "Q44197" + ] + }, + "create": 0, + "modify": 46, + "delete": 0, + "area": 0.00326965615679978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 56, + "locale": "fr", + "imagery": "osm" + }, + "id": 122137120 + } + }, + { + "id": 122136918, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2358517, + 50.7359498 + ], + [ + 4.2401831, + 50.7359498 + ], + [ + 4.2401831, + 50.7424454 + ], + [ + 4.2358517, + 50.7424454 + ], + [ + 4.2358517, + 50.7359498 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T21:30:15Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Sterckx Motors", + "Volvo", + "Eva!", + "Eva", + "Luc Lerinckx Juweelcreatie" + ], + "shop": [ + "bakery", + "car", + "computer", + "interior_decoration", + "clothes", + "jewelry", + "chocolate", + "alcohol" + ], + "website": [ + "https://josselocus.be", + "https://www.sterckx-desmet.be", + "https://www.bitz.be", + "https://www.evainterieur.be", + "https://www.headline-fashion.be", + "https://www.isis-sieraden.be", + "https://www.valentinobelgium.com" + ] + }, + "create": 1, + "modify": 12, + "delete": 0, + "area": 0.0000281350418400032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "move": 1, + "theme": "shops", + "answer": 12, + "create": 1, + "locale": "en", + "imagery": "osm", + "move:node/5578933403": "relocated" + }, + "id": 122136918 + } + }, + { + "id": 122135851, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8588161, + 51.1446856 + ], + [ + 4.8592921, + 51.1446856 + ], + [ + 4.8592921, + 51.1448464 + ], + [ + 4.8588161, + 51.1448464 + ], + [ + 4.8588161, + 51.1446856 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T20:53:34Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/7020191" + ], + "source:geometry:date": [ + "2021-10-25" + ] + }, + "create": 0, + "modify": 14, + "delete": 0, + "area": 7.65407999981719e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 13, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 122135851 + } + }, + { + "id": 122135850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2960599, + 50.9337078 + ], + [ + 5.3320527, + 50.9337078 + ], + [ + 5.3320527, + 50.9469161 + ], + [ + 5.2960599, + 50.9469161 + ], + [ + 5.2960599, + 50.9337078 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T20:53:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station", + "bench" + ] + }, + "create": 7, + "modify": 12, + "delete": 0, + "area": 0.00047540370024008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 4, + "theme": "toerisme_vlaanderen", + "answer": 25, + "create": 7, + "locale": "nl", + "imagery": "AGIV", + "move:node/9803297653": "improve_accuracy", + "move:node/9804784310": "improve_accuracy", + "move:node/9804798084": "improve_accuracy", + "move:node/9804809539": "improve_accuracy" + }, + "id": 122135850 + } + }, + { + "id": 122135797, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T20:51:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/", + "move": 13, + "theme": "grb", + "locale": "nl", + "conflation": 2 + }, + "id": 122135797 + } + }, + { + "id": 122135332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2307223, + 50.724896 + ], + [ + 4.2562248, + 50.724896 + ], + [ + 4.2562248, + 50.7425791 + ], + [ + 4.2307223, + 50.7425791 + ], + [ + 4.2307223, + 50.724896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T20:33:55Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "primary", + "living_street", + "service", + "construction", + "pedestrian" + ], + "name:etymology:wikidata": [ + "Q19587858", + "Q106785062", + "Q2030421", + "Q152457", + "Q2568789", + "Q235186", + "Q312857", + "Q638560", + "Q231171", + "Q11120" + ] + }, + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000450963257749981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 33, + "locale": "en", + "imagery": "osm" + }, + "id": 122135332 + } + }, + { + "id": 122135079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1722494, + 50.789615 + ], + [ + 5.1806376, + 50.789615 + ], + [ + 5.1806376, + 50.8044022 + ], + [ + 5.1722494, + 50.8044022 + ], + [ + 5.1722494, + 50.789615 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T20:26:02Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "florist" + ], + "office": [ + "security" + ], + "amenity": [ + "school", + "community_centre", + "car_wash", + "social_facility" + ], + "building": [ + "yes", + "house", + "castle", + "detached", + "school", + "warehouse", + "commercial", + "roof" + ], + "historic": [ + "castle" + ], + "addr:street": [ + "Naamsesteenweg", + "Montenakenweg", + "Bevingen-Centrum" + ], + "addr:housenumber": [ + "319", + "145", + "12" + ], + "source:geometry:ref": [ + "Gbg/4658946", + "Gbg/171909", + "Gbg/169774", + "Gbg/168389", + "Gbg/157160", + "Gbg/150585", + "Gbg/168404", + "Gbg/168427", + "Gbg/166438", + "Gbg/168405", + "Gbg/6459426", + "Gbg/170689", + "Gbg/5687010", + "Gbg/6459443", + "Gbg/165798", + "Gbg/171904", + "Gbg/157073", + "Gbg/165803", + "Gbg/4657798", + "Gbg/6459452", + "Gbg/153057", + "Gbg/4665355", + "Gbg/158638", + "Gbg/171893", + "Gbg/171771", + "Gbg/158653", + "Gbg/158658", + "Gbg/4664582", + "Gbg/6817319", + "Gbg/6461547", + "Gbg/170714", + "Gbg/165260", + "Gbg/165256", + "Gbg/158662", + "Gbg/153054", + "Gbg/151601", + "Gbg/171765", + "Gbg/165261", + "Gbg/4665773", + "Gbg/164924", + "Gbg/149787", + "Gbg/149786", + "Gbg/4664249", + "Gbg/165801", + "Gbg/4664000", + "Gbg/164910", + "Gbg/170599", + "Gbg/6461545", + "Gbg/6461546", + "Gbg/158648", + "Gbg/6459401", + "Gbg/165252", + "Gbg/158819", + "Gbg/170583", + "Gbg/164922", + "Gbg/164906", + "Gbg/163922", + "Gbg/170594", + "Gbg/170713", + "Gbg/159522", + "Gbg/151770", + "Gbg/164919", + "Gbg/4666627", + "Gbg/4666556", + "Gbg/4665881", + "Gbg/4665628", + "Gbg/4663722", + "Gbg/4664338", + "Gbg/165231", + "Gbg/165273", + "Gbg/164916", + "Gbg/164917", + "Gbg/171797", + "Gbg/155113", + "Gbg/4665589", + "Gbg/164915", + "Gbg/165234", + "Gbg/165246", + "Gbg/165223", + "Gbg/151777", + "Gbg/171798", + "Gbg/164918", + "Gbg/158644", + "Gbg/165251", + "Gbg/165305", + "Gbg/153062", + "Gbg/164925", + "Gbg/4665945", + "Gbg/165249", + "Gbg/5102480", + "Gbg/155115", + "Gbg/4665694", + "Gbg/3362867", + "Gbg/4663853", + "Gbg/151775", + "Gbg/4664884", + "Gbg/170591", + "Gbg/158815", + "Gbg/4665204", + "Gbg/4665853", + "Gbg/162744", + "Gbg/4665338", + "Gbg/170597", + "Gbg/159524", + "Gbg/165247", + "Gbg/165264", + "Gbg/165794", + "Gbg/171769", + "Gbg/4664618", + "Gbg/6459442", + "Gbg/168384", + "Gbg/166435", + "Gbg/168394", + "Gbg/166433", + "Gbg/4657729", + "Gbg/168385", + "Gbg/4657724", + "Gbg/152614", + "Gbg/166434", + "Gbg/168396", + "Gbg/154739", + "Gbg/154740", + "Gbg/168426", + "Gbg/168393", + "Gbg/168400", + "Gbg/154741", + "Gbg/168399", + "Gbg/168432", + "Gbg/166066", + "Gbg/168429", + "Gbg/168430", + "Gbg/168425", + "Gbg/6459424", + "Gbg/5686373", + "Gbg/4657851", + "Gbg/6459417", + "Gbg/5685396", + "Gbg/164911", + "Gbg/163923", + "Gbg/4664727", + "Gbg/4663763", + "Gbg/1675731", + "Gbg/4665303", + "Gbg/155111", + "Gbg/170593", + "Gbg/4663875", + "Gbg/4664776", + "Gbg/165229", + "Gbg/151766", + "Gbg/151765", + "Gbg/165230", + "Gbg/155112", + "Gbg/6933503", + "Gbg/170587", + "Gbg/170589", + "Gbg/170596", + "Gbg/170590" + ], + "source:geometry:date": [ + "2014-04-28", + "2015-03-04", + "2003-06-04", + "2002-11-20", + "2019-02-01", + "2016-09-16", + "2018-09-12", + "2020-06-30", + "2017-02-27", + "2020-03-06", + "2008-09-03", + "2012-06-19", + "2021-04-15" + ] + }, + "create": 1945, + "modify": 1148, + "delete": 9, + "area": 0.000124037991040002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/grb.html", + "move": 1005, + "theme": "grb", + "delete": 9, + "import": 241, + "locale": "nl", + "imagery": "osm", + "conflation": 324 + }, + "id": 122135079 + } + }, + { + "id": 122134771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2401776, + 50.7332319 + ], + [ + 4.2401776, + 50.7332319 + ], + [ + 4.2401776, + 50.7332319 + ], + [ + 4.2401776, + 50.7332319 + ], + [ + 4.2401776, + 50.7332319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T20:18:12Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_box" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122134771 + } + }, + { + "id": 122133216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5404782, + 53.0068111 + ], + [ + 6.5404782, + 53.0068111 + ], + [ + 6.5404782, + 53.0068111 + ], + [ + 6.5404782, + 53.0068111 + ], + [ + 6.5404782, + 53.0068111 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T19:36:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_assen.html", + "theme": "waste_assen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "id": 122133216 + } + }, + { + "id": 122132348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8092456, + 51.1859252 + ], + [ + 2.8092537, + 51.1859252 + ], + [ + 2.8092537, + 51.1859369 + ], + [ + 2.8092456, + 51.1859369 + ], + [ + 2.8092456, + 51.1859252 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T19:09:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 9.47700000147429e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 2, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "id": 122132348 + } + }, + { + "id": 122132177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5650606, + 53.0179937 + ], + [ + 6.5890172, + 53.0179937 + ], + [ + 6.5890172, + 53.0302306 + ], + [ + 6.5650606, + 53.0302306 + ], + [ + 6.5650606, + 53.0179937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T19:05:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 15, + "modify": 6, + "delete": 0, + "area": 0.000293154518540117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_assen.html", + "theme": "waste_assen", + "answer": 30, + "create": 15, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 15, + "change_within_500m": 10, + "change_within_1000m": 6, + "change_within_5000m": 14 + }, + "id": 122132177 + } + }, + { + "id": 122129585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8232621, + 51.1725686 + ], + [ + 4.8350242, + 51.1725686 + ], + [ + 4.8350242, + 51.1772723 + ], + [ + 4.8232621, + 51.1772723 + ], + [ + 4.8232621, + 51.1725686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T18:00:21Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified" + ], + "maxspeed": [ + "30" + ], + "cyclestreet": [ + "yes" + ], + "overtaking:motor_vehicle": [ + "no" + ] + }, + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.0000553253897700052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 27, + "locale": "nl", + "imagery": "osm" + }, + "id": 122129585 + } + }, + { + "id": 122123900, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3945297, + 51.0354229 + ], + [ + 3.3945688, + 51.0354229 + ], + [ + 3.3945688, + 51.0355697 + ], + [ + 3.3945297, + 51.0355697 + ], + [ + 3.3945297, + 51.0354229 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T15:24:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xFMacSL.jpg" + ], + "amenity": [ + "recycling", + "waste_basket" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 5.73988000011557e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_1000m": 3 + }, + "id": 122123900 + } + }, + { + "id": 122122133, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T14:45:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 122122133 + } + }, + { + "id": 122120290, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6267417, + 45.4922516 + ], + [ + 9.645282, + 45.4922516 + ], + [ + 9.645282, + 45.5061411 + ], + [ + 9.6267417, + 45.5061411 + ], + [ + 9.6267417, + 45.4922516 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T14:01:19Z", + "reviewed_features": [], + "tag_changes": { + "place": [ + "square" + ], + "amenity": [ + "school" + ], + "highway": [ + "tertiary", + "residential", + "pedestrian", + "unclassified", + "service" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q2851732", + "Q267304", + "Q3614311", + "Q3725967", + "Q3069001", + "Q36488", + "Q964822", + "Q539", + "Q3742833", + "Q307", + "Q1377734", + "Q25106", + "Q1713223" + ] + }, + "create": 0, + "modify": 46, + "delete": 0, + "area": 0.000257515496849953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 54, + "locale": "it", + "imagery": "osm", + "change_within_500m": 2, + "change_within_1000m": 34, + "change_within_5000m": 18 + }, + "id": 122120290 + } + }, + { + "id": 122119953, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.2657573, + -33.0041202 + ], + [ + -71.2657573, + -33.0041202 + ], + [ + -71.2657573, + -33.0041202 + ], + [ + -71.2657573, + -33.0041202 + ], + [ + -71.2657573, + -33.0041202 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T13:53:23Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/snIdbHn.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 122119953 + } + }, + { + "id": 122117816, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.7658936, + 49.5279586 + ], + [ + 0.7659726, + 49.5279586 + ], + [ + 0.7659726, + 49.5280028 + ], + [ + 0.7658936, + 49.5280028 + ], + [ + 0.7658936, + 49.5279586 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T13:00:28Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "wheelchair": [ + "yes" + ], + "toilets:position": [ + "seated;urinal" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.49180000039211e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "id": 122117816 + } + }, + { + "id": 122117794, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.7659234, + 49.52796 + ], + [ + 0.7659234, + 49.52796 + ], + [ + 0.7659234, + 49.52796 + ], + [ + 0.7659234, + 49.52796 + ], + [ + 0.7659234, + 49.52796 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T12:59:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/T1jEjaU.jpg" + ], + "access": [ + "yes" + ], + "indoor": [ + "no" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 4 + }, + "id": 122117794 + } + }, + { + "id": 122110716, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2138433, + 51.1896262 + ], + [ + 3.217567, + 51.1896262 + ], + [ + 3.217567, + 51.1951561 + ], + [ + 3.2138433, + 51.1951561 + ], + [ + 3.2138433, + 51.1896262 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T10:16:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "highway": [ + "service" + ], + "building": [ + "school", + "university", + "yes", + "dormitory", + "roof", + "house" + ], + "addr:street": [ + "Groene-Poortdreef" + ], + "addr:housenumber": [ + "17A" + ], + "source:geometry:ref": [ + "Gbg/3086126", + "Gbg/3087368", + "Gbg/4559952", + "Gbg/4559792", + "Gbg/3087367", + "Gbg/3087383", + "Gbg/5585852", + "Gbg/3087382", + "Gbg/3087393", + "Gbg/3087991", + "Gbg/6489736", + "Gbg/3087381", + "Gbg/5261566", + "Gbg/6489341" + ], + "source:geometry:date": [ + "2017-04-14", + "2014-02-06", + "2011-05-09", + "2018-10-02", + "2015-07-09" + ] + }, + "create": 217, + "modify": 231, + "delete": 0, + "area": 0.0000205916886299947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 217, + "theme": "grb", + "import": 9, + "locale": "en", + "imagery": "AGIV", + "conflation": 28, + "change_over_5000m": 9 + }, + "id": 122110716 + } + }, + { + "id": 122107836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3378272, + 50.9326832 + ], + [ + 5.3378272, + 50.9326832 + ], + [ + 5.3378272, + 50.9326832 + ], + [ + 5.3378272, + 50.9326832 + ], + [ + 5.3378272, + 50.9326832 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T09:18:09Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+32 11 33 44 27" + ], + "amenity": [ + "fast_food" + ], + "diet:halal": [ + "no" + ], + "diet:vegan": [ + "limited" + ], + "wheelchair": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "limited" + ], + "service:electricity": [ + "no" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 7 + }, + "id": 122107836 + } + }, + { + "id": 122107681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8115141, + 51.1868906 + ], + [ + 2.8116784, + 51.1868906 + ], + [ + 2.8116784, + 51.1869799 + ], + [ + 2.8115141, + 51.1869799 + ], + [ + 2.8115141, + 51.1868906 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-451400969", + "name": "Zeedijk casino west", + "osm_id": 451400969, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "building": "yes" + } + } + ], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T09:15:05Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "A mapcomplete user marked this feature to be deleted (disused)" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "disused:amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.4671989999828e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "locale": "nl", + "imagery": "osm", + "soft-delete": 1, + "change_within_25m": 1, + "soft-delete:way/451400969": "disused" + }, + "id": 122107681 + } + }, + { + "id": 122107613, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7869007, + 51.2707367 + ], + [ + 4.7869007, + 51.2707367 + ], + [ + 4.7869007, + 51.2707367 + ], + [ + 4.7869007, + 51.2707367 + ], + [ + 4.7869007, + 51.2707367 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T09:13:32Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info.kribbels@gmail.com" + ], + "phone": [ + "+32 470 63 55 95" + ], + "amenity": [ + "childcare" + ], + "website": [ + "https://kribbels.be/" + ], + "capacity": [ + "25" + ], + "opening_hours": [ + "Mo-Fr 07:00-18:00" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/feature/schools/schools.html", + "theme": "schools", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 10 + }, + "id": 122107613 + } + }, + { + "id": 122104382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3211951, + 50.9385987 + ], + [ + 5.3211951, + 50.9385987 + ], + [ + 5.3211951, + 50.9385987 + ], + [ + 5.3211951, + 50.9385987 + ], + [ + 5.3211951, + 50.9385987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T07:59:54Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "caravan_site" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 122104382 + } + }, + { + "id": 122103459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2954249, + 50.9462374 + ], + [ + 5.2960808, + 50.9462374 + ], + [ + 5.2960808, + 50.9468614 + ], + [ + 5.2954249, + 50.9468614 + ], + [ + 5.2954249, + 50.9462374 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T07:35:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.0928160000124e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 2, + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4, + "move:node/9803248578": "improve_accuracy", + "move:node/9803265676": "improve_accuracy" + }, + "id": 122103459 + } + }, + { + "id": 122102126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.29547, + 50.9337132 + ], + [ + 5.3489235, + 50.9337132 + ], + [ + 5.3489235, + 50.9469742 + ], + [ + 5.29547, + 50.9469742 + ], + [ + 5.29547, + 50.9337132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-08T07:06:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets", + "bench", + "charging_station" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "no" + ], + "toilets:paper_supplied": [ + "yes" + ], + "changing_table:location": [ + "wheelchair_toilet" + ] + }, + "create": 6, + "modify": 18, + "delete": 0, + "area": 0.000708846863499996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 5, + "theme": "toerisme_vlaanderen", + "answer": 30, + "create": 2, + "import": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 6, + "change_within_25m": 38, + "change_within_50m": 3, + "move:node/9803202605": "improve_accuracy", + "move:node/9803234395": "improve_accuracy", + "move:node/9803251849": "improve_accuracy", + "move:node/9803325145": "improve_accuracy", + "move:node/9803327251": "improve_accuracy", + "import:node/9803202605": "source: https://osm.org/note/3044138", + "import:node/9803234395": "source: https://osm.org/note/3044372", + "import:node/9803251849": "source: https://osm.org/note/3044605", + "import:node/9803325145": "source: https://osm.org/note/3044722" + }, + "id": 122102126 + } + }, + { + "id": 122094629, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7059525, + 50.8814895 + ], + [ + 4.7059525, + 50.8814895 + ], + [ + 4.7059525, + 50.8814895 + ], + [ + 4.7059525, + 50.8814895 + ], + [ + 4.7059525, + 50.8814895 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-08T01:55:57Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+32 16 24 81 44" + ], + "amenity": [ + "childcare", + "kindergarten" + ], + "website": [ + "https://www.zorgleuven.be/de-ketteflet" + ], + "capacity": [ + "60" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "schools", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122094629 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-09.json b/Docs/Tools/stats/stats.2022-6-09.json new file mode 100644 index 0000000000..2e6b69f179 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-09.json @@ -0,0 +1,1624 @@ +{ + "features": [ + { + "id": 122185440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8754132, + 53.1031751 + ], + [ + 6.8754686, + 53.1031751 + ], + [ + 6.8754686, + 53.103208 + ], + [ + 6.8754132, + 53.103208 + ], + [ + 6.8754132, + 53.1031751 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "the-wouter", + "uid": "16051141", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T22:26:11Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "path" + ], + "image:streetsign": [ + "https://i.imgur.com/cTCEpFn.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.82266000004081e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122185440 + } + }, + { + "id": 122181171, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5534107, + 47.2144086 + ], + [ + -1.5534107, + 47.2144086 + ], + [ + -1.5534107, + 47.2144086 + ], + [ + -1.5534107, + 47.2144086 + ], + [ + -1.5534107, + 47.2144086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T19:47:11Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/eUvXSHj.jpg" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 1 + }, + "id": 122181171 + } + }, + { + "id": 122179854, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2409344, + -39.838186 + ], + [ + -73.2409344, + -39.838186 + ], + [ + -73.2409344, + -39.838186 + ], + [ + -73.2409344, + -39.838186 + ], + [ + -73.2409344, + -39.838186 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T19:02:54Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/0HeIoEj.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 122179854 + } + }, + { + "id": 122175443, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3877842, + 51.0406256 + ], + [ + 3.3937737, + 51.0406256 + ], + [ + 3.3937737, + 51.0448744 + ], + [ + 3.3877842, + 51.0448744 + ], + [ + 3.3877842, + 51.0406256 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T17:01:31Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "De Kiem" + ], + "phone": [ + "+32 474 46 80 64" + ], + "amenity": [ + "childcare", + "school" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000254481875999954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/feature/schools/education.html", + "theme": "education", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122175443 + } + }, + { + "id": 122174009, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T16:24:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122174009 + } + }, + { + "id": 122173872, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T16:21:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 122173872 + } + }, + { + "id": 122173749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.6167004, + 39.3246027 + ], + [ + -76.6167004, + 39.3246027 + ], + [ + -76.6167004, + 39.3246027 + ], + [ + -76.6167004, + 39.3246027 + ], + [ + -76.6167004, + 39.3246027 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T16:17:44Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122173749 + } + }, + { + "id": 122170491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0998607, + 49.4405031 + ], + [ + 1.0998607, + 49.4405031 + ], + [ + 1.0998607, + 49.4405031 + ], + [ + 1.0998607, + 49.4405031 + ], + [ + 1.0998607, + 49.4405031 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T14:56:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/eLYIai2.jpg" + ], + "access": [ + "yes" + ], + "indoor": [ + "no" + ], + "defibrillator:location:en": [ + "In the public space, though there are doors that might close at night" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 122170491 + } + }, + { + "id": 122164228, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.824643, + 51.0435709 + ], + [ + 4.8248164, + 51.0435709 + ], + [ + 4.8248164, + 51.0437957 + ], + [ + 4.824643, + 51.0437957 + ], + [ + 4.824643, + 51.0435709 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T12:37:03Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "email": [ + "info@harmonie6.be" + ], + "access": [ + "customers" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "website": [ + "https://harmonie6.be/" + ], + "operator": [ + "Harmonie6" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.89803199995558e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 122164228 + } + }, + { + "id": 122163677, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0887631, + 49.4393812 + ], + [ + 1.0887631, + 49.4393812 + ], + [ + 1.0887631, + 49.4393812 + ], + [ + 1.0887631, + 49.4393812 + ], + [ + 1.0887631, + 49.4393812 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T12:26:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated" + ], + "toilets:paper_supplied": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 2 + }, + "id": 122163677 + } + }, + { + "id": 122161774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5576502, + 51.2632364 + ], + [ + 4.5576502, + 51.2632364 + ], + [ + 4.5576502, + 51.2632364 + ], + [ + 4.5576502, + 51.2632364 + ], + [ + 4.5576502, + 51.2632364 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T11:50:03Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122161774 + } + }, + { + "id": 122159995, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7053098, + 51.0493961 + ], + [ + 3.7053098, + 51.0493961 + ], + [ + 3.7053098, + 51.0493961 + ], + [ + 3.7053098, + 51.0493961 + ], + [ + 3.7053098, + 51.0493961 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T11:10:38Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/PG33Cqj.jpg" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "yes" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 122159995 + } + }, + { + "id": 122159985, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T11:10:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 122159985 + } + }, + { + "id": 122158920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8496758, + 51.1434717 + ], + [ + 4.8526365, + 51.1434717 + ], + [ + 4.8526365, + 51.1448111 + ], + [ + 4.8496758, + 51.1448111 + ], + [ + 4.8496758, + 51.1434717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T10:46:46Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/4046287", + "Gbg/4046288", + "Gbg/4046406", + "Gbg/4046394", + "Gbg/4046405", + "Gbg/4679014", + "Gbg/4678991", + "Gbg/4928202", + "Gbg/4928285", + "Gbg/4928284", + "Gbg/4928354", + "Gbg/4046515", + "Gbg/4928353", + "Gbg/4928286", + "Gbg/4928352" + ], + "source:geometry:date": [ + "2013-01-16", + "2014-05-02", + "2014-12-04", + "2015-11-24" + ] + }, + "create": 162, + "modify": 86, + "delete": 0, + "area": 0.00000396556157999739, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 71, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "AGIV", + "conflation": 30 + }, + "id": 122158920 + } + }, + { + "id": 122157868, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T10:23:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 8, + "theme": "grb", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 122157868 + } + }, + { + "id": 122156656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8232621, + 51.1725686 + ], + [ + 4.8293037, + 51.1725686 + ], + [ + 4.8293037, + 51.1762064 + ], + [ + 4.8232621, + 51.1762064 + ], + [ + 4.8232621, + 51.1725686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T10:01:36Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "cyclestreet": [ + "yes" + ], + "proposed:cyclestreet": [ + "yes" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000219781324799982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "id": 122156656 + } + }, + { + "id": 122152916, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5403154, + 53.0062866 + ], + [ + 6.5419927, + 53.0062866 + ], + [ + 6.5419927, + 53.008672 + ], + [ + 6.5403154, + 53.008672 + ], + [ + 6.5403154, + 53.0062866 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T08:44:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.00000400103141999019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_assen.html", + "theme": "waste_assen", + "answer": 10, + "create": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 15 + }, + "id": 122152916 + } + }, + { + "id": 122152215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8518876, + 51.1381527 + ], + [ + 4.8635753, + 51.1381527 + ], + [ + 4.8635753, + 51.1438597 + ], + [ + 4.8518876, + 51.1438597 + ], + [ + 4.8518876, + 51.1381527 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T08:32:04Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "shed", + "roof" + ], + "addr:street": [ + "Kattebos", + "Noorderwijkseweg" + ], + "addr:housenumber": [ + "11", + "21", + "23", + "9", + "8" + ], + "source:geometry:ref": [ + "Gbg/4050877", + "Gbg/4050162", + "Gbg/4049610", + "Gbg/4050159", + "Gbg/6803213", + "Gbg/4046474", + "Gbg/4046473", + "Gbg/4049609", + "Gbg/4046485", + "Gbg/4046472", + "Gbg/4046467", + "Gbg/4046468", + "Gbg/4047081", + "Gbg/4046469", + "Gbg/4046470", + "Gbg/4046454", + "Gbg/4047068", + "Gbg/4047069", + "Gbg/7020155", + "Gbg/4047051", + "Gbg/4047053", + "Gbg/4047533", + "Gbg/4047532", + "Gbg/4047052", + "Gbg/4047531", + "Gbg/4047534", + "Gbg/4047054", + "Gbg/4047098", + "Gbg/4046973", + "Gbg/4046986", + "Gbg/4050788", + "Gbg/4047102", + "Gbg/7020158", + "Gbg/4050015", + "Gbg/4047096", + "Gbg/4050791", + "Gbg/4050878", + "Gbg/4050794", + "Gbg/4050879", + "Gbg/4046974", + "Gbg/4047479", + "Gbg/4047478", + "Gbg/4047477", + "Gbg/4047476", + "Gbg/4047474", + "Gbg/4046921", + "Gbg/4046922", + "Gbg/4046917", + "Gbg/6508543" + ], + "source:geometry:date": [ + "2013-02-20", + "2020-06-05", + "2018-10-24", + "2013-01-16", + "2021-10-25", + "2017-03-01" + ] + }, + "create": 421, + "modify": 287, + "delete": 1, + "area": 0.0000667017039000092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 236, + "theme": "grb", + "answer": 2, + "delete": 1, + "import": 43, + "locale": "nl", + "imagery": "AGIV", + "conflation": 98 + }, + "id": 122152215 + } + }, + { + "id": 122149555, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8618612, + 51.1396283 + ], + [ + 4.8728473, + 51.1396283 + ], + [ + 4.8728473, + 51.1434947 + ], + [ + 4.8618612, + 51.1434947 + ], + [ + 4.8618612, + 51.1396283 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-09T07:32:54Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "roof" + ], + "addr:housenumber": [ + "51H-51I", + "51E" + ], + "source:geometry:ref": [ + "Gbg/4050729", + "Gbg/4045411", + "Gbg/4045490", + "Gbg/4048324", + "Gbg/4045491", + "Gbg/4045489", + "Gbg/4045488", + "Gbg/4045487", + "Gbg/4045485", + "Gbg/4045371", + "Gbg/6757851", + "Gbg/4047463", + "Gbg/4047462", + "Gbg/4047461", + "Gbg/4047460", + "Gbg/4045377", + "Gbg/4045376", + "Gbg/4045375", + "Gbg/4045374", + "Gbg/4045373", + "Gbg/4045406", + "Gbg/4045392", + "Gbg/4045383", + "Gbg/4045382", + "Gbg/4045381", + "Gbg/4047449", + "Gbg/4047503", + "Gbg/4047504", + "Gbg/4047464", + "Gbg/4928209", + "Gbg/4047466", + "Gbg/4047451", + "Gbg/4047450", + "Gbg/4045370", + "Gbg/4045369", + "Gbg/4048323", + "Gbg/5403734" + ], + "source:geometry:date": [ + "2013-02-20", + "2013-01-16", + "2018-10-24", + "2014-12-04", + "2015-11-24", + "2020-03-16", + "2017-03-01" + ] + }, + "create": 509, + "modify": 213, + "delete": 2, + "area": 0.0000424766570399977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 170, + "theme": "grb", + "answer": 4, + "delete": 2, + "import": 60, + "locale": "nl", + "imagery": "AGIV", + "conflation": 74 + }, + "id": 122149555 + } + }, + { + "id": 122142707, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.4009265, + 30.1727932 + ], + [ + -96.4007639, + 30.1727932 + ], + [ + -96.4007639, + 30.1728819 + ], + [ + -96.4009265, + 30.1728819 + ], + [ + -96.4009265, + 30.1727932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pmc_", + "uid": "9622052", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T04:18:38Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.44226199995009e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 122142707 + } + }, + { + "id": 122140479, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6200059, + -33.4148321 + ], + [ + -70.6200059, + -33.4148321 + ], + [ + -70.6200059, + -33.4148321 + ], + [ + -70.6200059, + -33.4148321 + ], + [ + -70.6200059, + -33.4148321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T01:55:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/3d0JJSH.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "cyclosm", + "add-image": 1 + }, + "id": 122140479 + } + }, + { + "id": 122139690, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.85226, + 56.2639233 + ], + [ + 43.85226, + 56.2639233 + ], + [ + 43.85226, + 56.2639233 + ], + [ + 43.85226, + 56.2639233 + ], + [ + 43.85226, + 56.2639233 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-09T00:33:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "ru", + "imagery": "osm", + "deletion": 1, + "deletion:node/9805191833": "testing point" + }, + "id": 122139690 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-10.json b/Docs/Tools/stats/stats.2022-6-10.json new file mode 100644 index 0000000000..781e9e2a95 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-10.json @@ -0,0 +1,1979 @@ +{ + "features": [ + { + "id": 122231328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T23:16:18Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q158783" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 122231328 + } + }, + { + "id": 122230162, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.8424125, + 14.6225377 + ], + [ + 121.0229434, + 14.6225377 + ], + [ + 121.0229434, + 21.047906 + ], + [ + 105.8424125, + 21.047906 + ], + [ + 105.8424125, + 14.6225377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #lgbtmap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T22:04:56Z", + "reviewed_features": [], + "tag_changes": { + "lgbtq": [ + "welcome", + "primary" + ], + "amenity": [ + "nightclub", + "doctors" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 97.5405020220305, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "move": 1, + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm", + "move:node/7785286853": "improve_accuracy" + }, + "id": 122230162 + } + }, + { + "id": 122229746, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.1686859, + 57.1481249 + ], + [ + -2.0972841, + 57.1481249 + ], + [ + -2.0972841, + 57.1615556 + ], + [ + -2.1686859, + 57.1615556 + ], + [ + -2.1686859, + 57.1481249 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T21:46:21Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "tourism": [ + "museum" + ], + "building": [ + "yes" + ], + "historic": [ + "house" + ], + "name:etymology:wikidata": [ + "Q333158", + "Q76096305" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000958976155260047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 122229746 + } + }, + { + "id": 122228138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2407642, + -39.8384601 + ], + [ + -73.2406007, + -39.8384601 + ], + [ + -73.2406007, + -39.8378809 + ], + [ + -73.2407642, + -39.8378809 + ], + [ + -73.2407642, + -39.8384601 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T20:54:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UNjl9HG.jpg", + "https://i.imgur.com/lSGkh5X.jpg", + "https://i.imgur.com/ssqWqTg.jpg", + "https://i.imgur.com/Z9tOrVZ.jpg", + "https://i.imgur.com/nr3cG0P.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 9.46991999991327e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 6 + }, + "id": 122228138 + } + }, + { + "id": 122225738, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5592003, + 47.2201371 + ], + [ + -1.5592003, + 47.2201371 + ], + [ + -1.5592003, + 47.2201371 + ], + [ + -1.5592003, + 47.2201371 + ], + [ + -1.5592003, + 47.2201371 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T19:37:58Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/qK9NyIF.jpg" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 122225738 + } + }, + { + "id": 122222605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2329093, + -39.8430851 + ], + [ + -73.2328892, + -39.8430851 + ], + [ + -73.2328892, + -39.8430166 + ], + [ + -73.2329093, + -39.8430166 + ], + [ + -73.2329093, + -39.8430851 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T18:12:24Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.37685000012245e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "move": 1, + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "move:node/9809414573": "improve_accuracy" + }, + "id": 122222605 + } + }, + { + "id": 122220184, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7175367, + 51.0541085 + ], + [ + 3.7175367, + 51.0541085 + ], + [ + 3.7175367, + 51.0541085 + ], + [ + 3.7175367, + 51.0541085 + ], + [ + 3.7175367, + 51.0541085 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T17:06:09Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "musical_instrument" + ], + "image": [ + "https://i.imgur.com/v0TlWE9.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 122220184 + } + }, + { + "id": 122219073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7003829, + 51.0569982 + ], + [ + 3.7003829, + 51.0569982 + ], + [ + 3.7003829, + 51.0569982 + ], + [ + 3.7003829, + 51.0569982 + ], + [ + 3.7003829, + 51.0569982 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T16:34:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "bookcases", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 122219073 + } + }, + { + "id": 122217937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7004877, + 51.0539611 + ], + [ + 3.7181733, + 51.0539611 + ], + [ + 3.7181733, + 51.0580016 + ], + [ + 3.7004877, + 51.0580016 + ], + [ + 3.7004877, + 51.0539611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-451518902", + "name": "Fenix", + "osm_id": 451518902, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": { + "building": "house" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T16:04:52Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "woestgent@gmail.com" + ], + "fixme": [ + "A mapcomplete user marked this feature to be deleted (shop_closed)" + ], + "image": [ + "https://i.imgur.com/FaHzHVC.jpg" + ], + "phone": [ + "+32 9 278 07 78" + ], + "amenity": [ + "restaurant", + "fast_food" + ], + "website": [ + "https://www.afoodaffair.be" + ], + "building": [ + "house" + ], + "takeaway": [ + "yes" + ], + "opening_hours": [ + "Tu-Sa 18:00-23:00;", + "Mo-Tu 10:00-22:00; We 10:00-15:00; Fr 15:00-22:00; Sa-Su 09:00-22:00" + ], + "disused:amenity": [ + "restaurant" + ] + }, + "create": 3, + "modify": 8, + "delete": 1, + "area": 0.000071458666799912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 9, + "create": 3, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 2, + "soft-delete": 1, + "change_over_5000m": 3, + "change_within_25m": 8, + "change_within_50m": 1, + "change_within_1000m": 4, + "deletion:node/3874321408": "not found", + "soft-delete:way/451518902": "shop_closed" + }, + "id": 122217937 + } + }, + { + "id": 122216870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9947182, + 48.5009505 + ], + [ + 8.9972653, + 48.5009505 + ], + [ + 8.9972653, + 48.5016851 + ], + [ + 8.9947182, + 48.5016851 + ], + [ + 8.9947182, + 48.5009505 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T15:39:28Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "avenue", + "garden" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q26899", + "Q128116", + "Q179729" + ] + }, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000187109966000394, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 13, + "create": 1, + "locale": "de", + "imagery": "Mapbox", + "change_over_5000m": 1, + "change_within_25m": 13 + }, + "id": 122216870 + } + }, + { + "id": 122213710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3988523, + 51.0428931 + ], + [ + 3.3990562, + 51.0428931 + ], + [ + 3.3990562, + 51.043249 + ], + [ + 3.3988523, + 51.043249 + ], + [ + 3.3988523, + 51.0428931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T14:25:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 0, + "delete": 5, + "area": 7.25680100004241e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 5, + "locale": "en", + "imagery": "osm", + "deletion": 3, + "change_over_5000m": 4, + "change_within_1000m": 2, + "deletion:node/9808902593": "testing point", + "deletion:node/9808982539": "testing point", + "deletion:node/9808991733": "testing point" + }, + "id": 122213710 + } + }, + { + "id": 122213663, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T14:24:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/index.html", + "theme": "personal", + "create": 2, + "locale": "en", + "change_over_5000m": 2 + }, + "id": 122213663 + } + }, + { + "id": 122213659, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T14:24:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 122213659 + } + }, + { + "id": 122213649, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T14:23:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 122213649 + } + }, + { + "id": 122212270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7039876, + 51.0531516 + ], + [ + 3.7049667, + 51.0531516 + ], + [ + 3.7049667, + 51.0533878 + ], + [ + 3.7039876, + 51.0533878 + ], + [ + 3.7039876, + 51.0531516 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T13:49:11Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "private" + ], + "leisure": [ + "pitch" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.31263420003257e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "id": 122212270 + } + }, + { + "id": 122211833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.2291585, + 49.4256414 + ], + [ + 0.2291585, + 49.4256414 + ], + [ + 0.2291585, + 49.4256414 + ], + [ + 0.2291585, + 49.4256414 + ], + [ + 0.2291585, + 49.4256414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T13:36:59Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "customers" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 122211833 + } + }, + { + "id": 122210761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7297377, + 51.0494191 + ], + [ + 3.7297377, + 51.0494191 + ], + [ + 3.7297377, + 51.0494191 + ], + [ + 3.7297377, + 51.0494191 + ], + [ + 3.7297377, + 51.0494191 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jade@imec", + "uid": "15978511", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T13:08:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9808648106": "testing point" + }, + "id": 122210761 + } + }, + { + "id": 122210551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4674591, + -34.6283054 + ], + [ + -58.4408721, + -34.6283054 + ], + [ + -58.4408721, + -34.6179786 + ], + [ + -58.4674591, + -34.6179786 + ], + [ + -58.4674591, + -34.6283054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T13:03:14Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "signal" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00027455863160003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 14, + "create": 2, + "locale": "en", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 2, + "change_within_25m": 10, + "change_within_500m": 4 + }, + "id": 122210551 + } + }, + { + "id": 122210523, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 28.9328599, + 41.0316444 + ], + [ + 28.950323, + 41.0316444 + ], + [ + 28.950323, + 41.0408105 + ], + [ + 28.9328599, + 41.0408105 + ], + [ + 28.9328599, + 41.0316444 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "asturksever", + "uid": "2111087", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T13:02:31Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "residential", + "footway" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000160068520910033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 122210523 + } + }, + { + "id": 122206084, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.7722558, + 45.1082329 + ], + [ + 7.7757239, + 45.1082329 + ], + [ + 7.7757239, + 45.1133767 + ], + [ + 7.7722558, + 45.1133767 + ], + [ + 7.7722558, + 45.1082329 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "granduca67", + "uid": "1751359", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T11:19:24Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000178392127800217, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 14, + "create": 3, + "locale": "it", + "imagery": "Mapbox" + }, + "id": 122206084 + } + }, + { + "id": 122203701, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5391031, + 52.9782414 + ], + [ + 6.5800242, + 52.9782414 + ], + [ + 6.5800242, + 53.0086999 + ], + [ + 6.5391031, + 53.0086999 + ], + [ + 6.5391031, + 52.9782414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T10:19:20Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "fee": [ + "yes" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "maxstay": [ + "unlimited" + ], + "network": [ + "Allego" + ], + "scooter": [ + "no" + ], + "capacity": [ + "2" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "yes" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "2" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "no" + ], + "brand:wikidata": [ + "Q75560554" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 11, + "modify": 9, + "delete": 1, + "area": 0.00124639532435008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 25, + "create": 11, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_over_5000m": 11, + "change_within_5000m": 16, + "deletion:node/9808305816": "testing point" + }, + "id": 122203701 + } + }, + { + "id": 122203639, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3991782, + 51.0427633 + ], + [ + 3.3991911, + 51.0427633 + ], + [ + 3.3991911, + 51.0427702 + ], + [ + 3.3991782, + 51.0427702 + ], + [ + 3.3991782, + 51.0427633 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T10:17:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 2, + "modify": 4, + "delete": 1, + "area": 8.90100000302656e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7, + "deletion:node/9808316723": "testing point" + }, + "id": 122203639 + } + }, + { + "id": 122203568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3933813, + 51.2121445 + ], + [ + 4.3973422, + 51.2121445 + ], + [ + 4.3973422, + 51.2142061 + ], + [ + 4.3933813, + 51.2142061 + ], + [ + 4.3933813, + 51.2121445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CDVSRGETHRJHR", + "uid": "16249063", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T10:16:03Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000081657914399904, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 6, + "create": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 122203568 + } + }, + { + "id": 122200450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.7269685, + 49.5209019 + ], + [ + 0.7274794, + 49.5209019 + ], + [ + 0.7274794, + 49.5211095 + ], + [ + 0.7269685, + 49.5211095 + ], + [ + 0.7269685, + 49.5209019 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T09:12:20Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/rBZaEir.jpg" + ], + "image:0": [ + "https://i.imgur.com/TpFZyRP.jpg" + ], + "image:1": [ + "https://i.imgur.com/6zCGvZf.jpg" + ], + "tourism": [ + "caravan_site" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.06062840001571e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 3 + }, + "id": 122200450 + } + }, + { + "id": 122194875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5523874, + 47.2451549 + ], + [ + -1.5523874, + 47.2451549 + ], + [ + -1.5523874, + 47.2451549 + ], + [ + -1.5523874, + 47.2451549 + ], + [ + -1.5523874, + 47.2451549 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T07:02:46Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "0" + ], + "access": [ + "yes" + ], + "indoor": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 122194875 + } + }, + { + "id": 122191993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.130819, + 50.9333265 + ], + [ + 3.1311877, + 50.9333265 + ], + [ + 3.1311877, + 50.9334467 + ], + [ + 3.130819, + 50.9334467 + ], + [ + 3.130819, + 50.9333265 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 132, + "name": "Mapbox: Other" + } + ], + "tags": [], + "features": [ + { + "url": "way-1068394199", + "note": "Duplicate", + "osm_id": 1068394199, + "reasons": [ + 132 + ], + "version": 1 + } + ], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-10T05:46:58Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ] + }, + "create": 21, + "modify": 0, + "delete": 0, + "area": 4.43177399992001e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 122191993 + } + }, + { + "id": 122187206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2427978, + 50.7334942 + ], + [ + 4.2471698, + 50.7334942 + ], + [ + 4.2471698, + 50.7353737 + ], + [ + 4.2427978, + 50.7353737 + ], + [ + 4.2427978, + 50.7334942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-10T00:46:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ], + "isced:2011:level": [ + "vocational_lower_secondary;vocational_upper_secondary" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000821717399997402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/feature/schools/education.html", + "theme": "education", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122187206 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-11.json b/Docs/Tools/stats/stats.2022-6-11.json new file mode 100644 index 0000000000..ffbe2bcdff --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-11.json @@ -0,0 +1,1559 @@ +{ + "features": [ + { + "id": 122262388, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GHOSTsama", + "uid": "15422751", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-11T19:43:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/MkT1UEt.jpg" + ], + "natural": [ + "tree" + ], + "leaf_cycle": [ + "evergreen" + ] + }, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 122262388 + } + }, + { + "id": 122250140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.1010462, + 51.8823722 + ], + [ + -2.1010462, + 51.8823722 + ], + [ + -2.1010462, + 51.8823722 + ], + [ + -2.1010462, + 51.8823722 + ], + [ + -2.1010462, + 51.8823722 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T13:43:04Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "hairdresser" + ], + "phone": [ + "+44 7726612982" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 122250140 + } + }, + { + "id": 122244324, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T10:47:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", + "theme": "cafes_and_pubs", + "answer": 20, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 20 + }, + "id": 122244324 + } + }, + { + "id": 122243633, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1419917, + 50.6924385 + ], + [ + 3.1460139, + 50.6924385 + ], + [ + 3.1460139, + 50.6926954 + ], + [ + 3.1419917, + 50.6926954 + ], + [ + 3.1419917, + 50.6924385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-11T10:27:36Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "operator": [ + "privée" + ], + "camera:type": [ + "fixed" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "outdoor" + ], + "camera:direction": [ + "179" + ], + "surveillance:type": [ + "camera" + ], + "surveillance:zone": [ + "entrance" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000103330317998608, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 8, + "create": 2, + "locale": "fr", + "imagery": "osm" + }, + "id": 122243633 + } + }, + { + "id": 122243627, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5947756, + 51.1817298 + ], + [ + 4.6020666, + 51.1817298 + ], + [ + 4.6020666, + 51.1849816 + ], + [ + 4.5947756, + 51.1849816 + ], + [ + 4.5947756, + 51.1817298 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T10:27:26Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary", + "residential" + ], + "proposed:cyclestreet": [ + "yes" + ], + "cyclestreet:start_date": [ + "2022-07-01" + ] + }, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000237088738000058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 17, + "locale": "nl", + "imagery": "osm" + }, + "id": 122243627 + } + }, + { + "id": 122243501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.2017185, + 49.7080053 + ], + [ + 0.2017185, + 49.7080053 + ], + [ + 0.2017185, + 49.7080053 + ], + [ + 0.2017185, + 49.7080053 + ], + [ + 0.2017185, + 49.7080053 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T10:23:25Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "lit": [ + "no" + ], + "image": [ + "https://i.imgur.com/C5V1UDi.jpg" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "12" + ], + "min_age": [ + "2" + ], + "surface": [ + "Artificial grass" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/playgrounds.html", + "theme": "playgrounds", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "id": 122243501 + } + }, + { + "id": 122243349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3655406, + 52.1482692 + ], + [ + 13.3655406, + 52.1482692 + ], + [ + 13.3655406, + 52.1482692 + ], + [ + 13.3655406, + 52.1482692 + ], + [ + 13.3655406, + 52.1482692 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T10:19:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122243349 + } + }, + { + "id": 122240937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7270072, + 51.0557241 + ], + [ + 3.7270072, + 51.0557241 + ], + [ + 3.7270072, + 51.0557241 + ], + [ + 3.7270072, + 51.0557241 + ], + [ + 3.7270072, + 51.0557241 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T09:17:11Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122240937 + } + }, + { + "id": 122240058, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7728781, + 51.1384228 + ], + [ + 2.7728781, + 51.1384228 + ], + [ + 2.7728781, + 51.1384228 + ], + [ + 2.7728781, + 51.1384228 + ], + [ + 2.7728781, + 51.1384228 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:53:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/t0a5BCO.jpg" + ], + "access": [ + "yes" + ], + "indoor": [ + "no" + ], + "image:0": [ + "https://i.imgur.com/VgSRM00.jpg" + ], + "survey:date": [ + "2022-06-10" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 122240058 + } + }, + { + "id": 122239828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.676327, + 49.5789009 + ], + [ + 0.6763485, + 49.5789009 + ], + [ + 0.6763485, + 49.5789061 + ], + [ + 0.676327, + 49.5789061 + ], + [ + 0.676327, + 49.5789009 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:44:06Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.11799999931645e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 1, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "id": 122239828 + } + }, + { + "id": 122239607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7271349, + 51.1384157 + ], + [ + 2.7728864, + 51.1384157 + ], + [ + 2.7728864, + 51.1495046 + ], + [ + 2.7271349, + 51.1495046 + ], + [ + 2.7271349, + 51.1384157 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:36:10Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/8byaRLO.jpg", + "https://i.imgur.com/UEFQ7xb.jpg", + "https://i.imgur.com/jiQZ0qG.jpg", + "https://i.imgur.com/DU85Auh.jpg", + "https://i.imgur.com/FNtaipH.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "playground", + "picnic_table" + ], + "operator": [ + "Stad Nieuwpoort" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000507333808349873, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 8 + }, + "id": 122239607 + } + }, + { + "id": 122239596, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2783017, + 50.7922022 + ], + [ + 4.2844293, + 50.7922022 + ], + [ + 4.2844293, + 50.7968073 + ], + [ + 4.2783017, + 50.7968073 + ], + [ + 4.2783017, + 50.7922022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:35:44Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "operator": [ + "Gemeente" + ] + }, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0000282182107599953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 14, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 14 + }, + "id": 122239596 + } + }, + { + "id": 122239427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7326543, + 51.1465674 + ], + [ + 2.7326543, + 51.1465674 + ], + [ + 2.7326543, + 51.1465674 + ], + [ + 2.7326543, + 51.1465674 + ], + [ + 2.7326543, + 51.1465674 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:30:09Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dn8JXdh.jpg" + ], + "amenity": [ + "drinking_water" + ], + "mapillary": [ + "1781670295346694" + ], + "survey:date": [ + "2022-06-10" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 122239427 + } + }, + { + "id": 122239207, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7323308, + 51.1467587 + ], + [ + 2.7323308, + 51.1467587 + ], + [ + 2.7323308, + 51.1467587 + ], + [ + 2.7323308, + 51.1467587 + ], + [ + 2.7323308, + 51.1467587 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:23:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ], + "image:0": [ + "https://i.imgur.com/L6AfxJj.jpg" + ], + "image:1": [ + "https://i.imgur.com/hKNiVCu.jpg" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2 + }, + "id": 122239207 + } + }, + { + "id": 122238710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.38339, + 50.8606546 + ], + [ + 4.38339, + 50.8606546 + ], + [ + 4.38339, + 50.8606546 + ], + [ + 4.38339, + 50.8606546 + ], + [ + 4.38339, + 50.8606546 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T08:04:24Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/BffRpz3.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 122238710 + } + }, + { + "id": 122238370, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6503974, + 48.3854422 + ], + [ + 13.6503974, + 48.3854422 + ], + [ + 13.6503974, + 48.3854422 + ], + [ + 13.6503974, + 48.3854422 + ], + [ + 13.6503974, + 48.3854422 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T07:49:58Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds", + "theme": "playgrounds", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 4 + }, + "id": 122238370 + } + }, + { + "id": 122236225, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T06:21:32Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+32 472 37 33 06" + ], + "amenity": [ + "cafe" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "id": 122236225 + } + }, + { + "id": 122236189, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T06:19:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 122236189 + } + }, + { + "id": 122236165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ], + [ + 3.3985404, + 51.0404438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T06:18:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 122236165 + } + }, + { + "id": 122235625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.241626, + -39.8378774 + ], + [ + -73.2395732, + -39.8378774 + ], + [ + -73.2395732, + -39.8332694 + ], + [ + -73.241626, + -39.8332694 + ], + [ + -73.241626, + -39.8378774 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T05:58:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dRZdOau.jpg", + "https://i.imgur.com/BTF5onu.jpg", + "https://i.imgur.com/kHaGDeO.jpg", + "https://i.imgur.com/koBPxzC.jpg", + "https://i.imgur.com/9Xc8t4i.jpg", + "https://i.imgur.com/aq5UHsn.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.00000945930240001544, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "create": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 8, + "change_over_5000m": 1, + "change_within_1000m": 4, + "change_within_5000m": 3 + }, + "id": 122235625 + } + }, + { + "id": 122233973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0312258, + 14.6416487 + ], + [ + 121.0312308, + 14.6416487 + ], + [ + 121.0312308, + 14.6417085 + ], + [ + 121.0312258, + 14.6417085 + ], + [ + 121.0312258, + 14.6416487 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-11T04:14:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.99000000098509e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "move": 1, + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "locale": "en", + "imagery": "osm", + "move:node/7134466090": "improve_accuracy" + }, + "id": 122233973 + } + }, + { + "id": 122233202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 85.3100405, + 27.7160656 + ], + [ + 85.3100405, + 27.7160656 + ], + [ + 85.3100405, + 27.7160656 + ], + [ + 85.3100405, + 27.7160656 + ], + [ + 85.3100405, + 27.7160656 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 4", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-11T02:47:12Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Pink Tiffanys" + ], + "amenity": [ + "pub" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 4", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122233202 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-12.json b/Docs/Tools/stats/stats.2022-6-12.json new file mode 100644 index 0000000000..d8948e2770 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-12.json @@ -0,0 +1,3052 @@ +{ + "features": [ + { + "id": 122299850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1967126, + 56.144065 + ], + [ + 10.2185732, + 56.144065 + ], + [ + 10.2185732, + 56.177055 + ], + [ + 10.1967126, + 56.177055 + ], + [ + 10.1967126, + 56.144065 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T22:37:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_rental" + ] + }, + "create": 0, + "modify": 0, + "delete": 8, + "area": 0.000721181194000117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "locale": "en", + "imagery": "osm", + "deletion": 8, + "deletion:node/799423820": "disused", + "deletion:node/799423823": "disused", + "deletion:node/1241055888": "disused", + "deletion:node/1241055896": "disused", + "deletion:node/1241055902": "shop_closed", + "deletion:node/1241055910": "shop_closed", + "deletion:node/1241055923": "disused", + "deletion:node/1241055930": "shop_closed" + }, + "id": 122299850 + } + }, + { + "id": 122298206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7085348, + 50.7669909 + ], + [ + 3.7085348, + 50.7669909 + ], + [ + 3.7085348, + 50.7669909 + ], + [ + 3.7085348, + 50.7669909 + ], + [ + 3.7085348, + 50.7669909 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T21:10:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 122298206 + } + }, + { + "id": 122297961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7069604, + 51.0294678 + ], + [ + 3.7072366, + 51.0294678 + ], + [ + 3.7072366, + 51.0296766 + ], + [ + 3.7069604, + 51.0296766 + ], + [ + 3.7069604, + 51.0294678 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T20:59:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.76705600008122e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122297961 + } + }, + { + "id": 122297789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0998057, + 52.3834279 + ], + [ + 10.0998064, + 52.3834279 + ], + [ + 10.0998064, + 52.3834331 + ], + [ + 10.0998057, + 52.3834331 + ], + [ + 10.0998057, + 52.3834279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eq9RxsEL", + "uid": "6337397", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T20:50:38Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:count": [ + "1" + ], + "light:method": [ + "discharge" + ], + "light:direction": [ + "172" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.64000000336237e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 1, + "theme": "street_lighting", + "answer": 3, + "locale": "de", + "imagery": "osm", + "move:node/9674010052": "improve_accuracy" + }, + "id": 122297789 + } + }, + { + "id": 122296228, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9631281, + 48.0620481 + ], + [ + -2.9467708, + 48.0620481 + ], + [ + -2.9467708, + 48.0752211 + ], + [ + -2.9631281, + 48.0752211 + ], + [ + -2.9631281, + 48.0620481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T19:48:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "tertiary", + "residential", + "living_street" + ], + "name:etymology:wikidata": [ + "Q274344", + "Q1290", + "Q15975", + "Q2714608", + "Q49767", + "Q2908", + "Q487523", + "Q535", + "Q188697", + "Q311854", + "Q6527", + "Q3079979", + "Q179680", + "Q9191", + "Q448", + "Q9068", + "Q70326", + "Q43444", + "Q602468", + "Q219621", + "Q493", + "Q298394", + "Q41568", + "Q3132164", + "Q9711", + "Q153232", + "Q34670" + ] + }, + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.000215474712900032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 41, + "locale": "fr", + "imagery": "osm" + }, + "id": 122296228 + } + }, + { + "id": 122295144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.4519133, + 43.6080802 + ], + [ + 1.4519133, + 43.6080802 + ], + [ + 1.4519133, + 43.6080802 + ], + [ + 1.4519133, + 43.6080802 + ], + [ + 1.4519133, + 43.6080802 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T19:15:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 122295144 + } + }, + { + "id": 122292236, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T17:51:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/trees.html", + "theme": "trees", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122292236 + } + }, + { + "id": 122290058, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9865728, + 49.4043395 + ], + [ + 0.9865728, + 49.4043395 + ], + [ + 0.9865728, + 49.4043395 + ], + [ + 0.9865728, + 49.4043395 + ], + [ + 0.9865728, + 49.4043395 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T16:50:05Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/o6JwSSZ.jpg" + ], + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous", + "evergreen" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 122290058 + } + }, + { + "id": 122289566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2846318, + 51.3400385 + ], + [ + 3.285466, + 51.3400385 + ], + [ + 3.285466, + 51.340155 + ], + [ + 3.2846318, + 51.340155 + ], + [ + 3.2846318, + 51.3400385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T16:38:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets", + "bicycle_rental" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 9.71843000035697e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 11, + "import:node/9812712386": "source: https://osm.org/note/3161457" + }, + "id": 122289566 + } + }, + { + "id": 122289234, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3953495, + 50.8442672 + ], + [ + 4.4356207, + 50.8442672 + ], + [ + 4.4356207, + 50.8529547 + ], + [ + 4.3953495, + 50.8529547 + ], + [ + 4.3953495, + 50.8442672 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T16:29:07Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "SK15" + ], + "name": [ + "Milcamps I" + ], + "image": [ + "https://i.imgur.com/clcNmf9.jpg", + "https://i.imgur.com/XX3z779.jpg" + ], + "charge": [ + "60 EUR/year" + ], + "amenity": [ + "bicycle_parking" + ], + "website": [ + "https://app.cycloparking.brussels/parkings" + ], + "capacity": [ + "5" + ], + "operator": [ + "parking.brussels" + ], + "operator:type": [ + "public" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000349856050000028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_5000m": 2 + }, + "id": 122289234 + } + }, + { + "id": 122288474, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2582681, + 51.3445375 + ], + [ + 3.2582681, + 51.3445375 + ], + [ + 3.2582681, + 51.3445375 + ], + [ + 3.2582681, + 51.3445375 + ], + [ + 3.2582681, + 51.3445375 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T16:12:58Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "convenience" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122288474 + } + }, + { + "id": 122287147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7202609, + 51.0125173 + ], + [ + 5.7202609, + 51.0125173 + ], + [ + 5.7202609, + 51.0125173 + ], + [ + 5.7202609, + 51.0125173 + ], + [ + 5.7202609, + 51.0125173 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T15:42:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122287147 + } + }, + { + "id": 122287114, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T15:41:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 122287114 + } + }, + { + "id": 122287110, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T15:41:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 122287110 + } + }, + { + "id": 122286252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7199919, + 51.0198821 + ], + [ + 5.7199919, + 51.0198821 + ], + [ + 5.7199919, + 51.0198821 + ], + [ + 5.7199919, + 51.0198821 + ], + [ + 5.7199919, + 51.0198821 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T15:22:44Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@hotel-beau-sejour.be" + ], + "phone": [ + "+32 89 75 77 91" + ], + "amenity": [ + "restaurant" + ], + "website": [ + "https://www.hotel-beau-sejour.be/restaurant/" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 122286252 + } + }, + { + "id": 122286129, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cubbe", + "uid": "10604125", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T15:20:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122286129 + } + }, + { + "id": 122285804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9865728, + 49.4043395 + ], + [ + 0.9865835, + 49.4043395 + ], + [ + 0.9865835, + 49.4043761 + ], + [ + 0.9865728, + 49.4043761 + ], + [ + 0.9865728, + 49.4043395 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T15:13:57Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_cycle": [ + "evergreen" + ] + }, + "create": 0, + "modify": 1, + "delete": 1, + "area": 3.91620000011864e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 2, + "deletion:node/9812384017": "duplicate" + }, + "id": 122285804 + } + }, + { + "id": 122284259, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2957147, + 51.2771474 + ], + [ + 3.2957147, + 51.2771474 + ], + [ + 3.2957147, + 51.2771474 + ], + [ + 3.2957147, + 51.2771474 + ], + [ + 3.2957147, + 51.2771474 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T14:39:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 122284259 + } + }, + { + "id": 122281801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7176901, + 51.0154131 + ], + [ + 5.7177679, + 51.0154131 + ], + [ + 5.7177679, + 51.0154822 + ], + [ + 5.7176901, + 51.0154822 + ], + [ + 5.7176901, + 51.0154131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:40:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket", + "waste_disposal" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.37597999978291e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122281801 + } + }, + { + "id": 122281762, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:40:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1 + }, + "id": 122281762 + } + }, + { + "id": 122281708, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7178102, + 51.015712 + ], + [ + 5.7178102, + 51.015712 + ], + [ + 5.7178102, + 51.015712 + ], + [ + 5.7178102, + 51.015712 + ], + [ + 5.7178102, + 51.015712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:38:57Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 122281708 + } + }, + { + "id": 122281668, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:38:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1 + }, + "id": 122281668 + } + }, + { + "id": 122281633, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:37:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "cafes_and_pubs", + "answer": 6, + "locale": "en", + "imagery": "AGIV", + "change_within_500m": 6 + }, + "id": 122281633 + } + }, + { + "id": 122281429, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1979386, + 50.9068532 + ], + [ + 4.1983591, + 50.9068532 + ], + [ + 4.1983591, + 50.9071942 + ], + [ + 4.1979386, + 50.9071942 + ], + [ + 4.1979386, + 50.9068532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:32:59Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/sD8Nygb.jpg" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "operator": [ + "Gemeente Asse" + ], + "wheelchair": [ + "limited" + ], + "opening_hours": [ + "sunrise-sunset" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.43390499999706e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 122281429 + } + }, + { + "id": 122281252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9865728, + 49.4043395 + ], + [ + 0.9865835, + 49.4043395 + ], + [ + 0.9865835, + 49.4043761 + ], + [ + 0.9865728, + 49.4043761 + ], + [ + 0.9865728, + 49.4043395 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:29:55Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.91620000011864e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/trees.html", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 2 + }, + "id": 122281252 + } + }, + { + "id": 122280884, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T13:22:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "cafes_and_pubs", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_500m": 8 + }, + "id": 122280884 + } + }, + { + "id": 122277981, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.3304607, + -42.889 + ], + [ + 147.3318368, + -42.889 + ], + [ + 147.3318368, + -42.8870022 + ], + [ + 147.3304607, + -42.8870022 + ], + [ + 147.3304607, + -42.889 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T12:10:06Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "hello@lnbsalamanca.com.au", + "devilskitchencafe@gmail.com" + ], + "fixme": [ + "Freeform tag `cuisine` used, to be doublechecked" + ], + "phone": [ + "+61 3 6169 9596", + "+61 474 858 727" + ], + "amenity": [ + "fast_food", + "restaurant" + ], + "cuisine": [ + "Fried Chicken" + ], + "website": [ + "https://www.facebook.com/LnBSalmanca", + "https://www.devilskitchencafe.com/" + ], + "delivery": [ + "no" + ], + "takeaway": [ + "only", + "yes" + ], + "diet:halal": [ + "no" + ], + "diet:vegan": [ + "limited" + ], + "wheelchair": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo 10:30-15:00; Tu-Th 10:30-20:00; Fr 10:30-00:00; Sa 00:00-02:30, 18:00-00:00; Su 00:00-04:30", + "Mo-We 07:00-14:30; Th-Fr 07:00-14:30, 17:00-20:00" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "no", + "limited" + ], + "service:electricity": [ + "no" + ] + }, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00000274917257998201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "id": 122277981 + } + }, + { + "id": 122275498, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T10:58:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/index.html", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "en", + "change_within_500m": 2 + }, + "id": 122275498 + } + }, + { + "id": 122275496, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T10:58:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/index.html", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "en", + "change_within_500m": 2 + }, + "id": 122275496 + } + }, + { + "id": 122275323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2547153, + -42.7910902 + ], + [ + 147.2548038, + -42.7910902 + ], + [ + 147.2548038, + -42.7906926 + ], + [ + 147.2547153, + -42.7906926 + ], + [ + 147.2547153, + -42.7910902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T10:52:59Z", + "reviewed_features": [], + "tag_changes": { + "power": [ + "generator" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.51876000015143e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/openwindpowermap.html", + "theme": "openwindpowermap", + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122275323 + } + }, + { + "id": 122274792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2515119, + -42.7913231 + ], + [ + 147.2557077, + -42.7913231 + ], + [ + 147.2557077, + -42.7866899 + ], + [ + 147.2515119, + -42.7866899 + ], + [ + 147.2515119, + -42.7913231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T10:36:40Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "supermarket", + "butcher", + "bakery", + "alcohol", + "hairdresser" + ], + "phone": [ + "+61 3 6227 4836", + "+61 3 6249 3679", + "+61 3 6249 9117", + "+61 3 6249 9266", + "+61 3 6249 2613" + ], + "website": [ + "https://www.claremontplaza.com.au/store/claremont-plaza-meats", + "https://www.bakersdelight.com.au/bakery-locator/claremont-plaza/", + "https://store.bws.com.au/storelocator/tas-claremont-7147", + "https://www.facebook.com/lorrainescoiffure" + ], + "building": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Su 07:00-19:30", + "Mo-Fr 06:00-18:00; Sa 08:00-18:00; Su 06:00-18:00", + "Mo 09:00-18:00; Tu-Th 09:00-20:00; Fr-Sa 09:00-21:00; Su 09:00-19:00", + "Mo-Th 09:00-21:00; Fr-Su 09:00-22:00", + "Tu-Fr 09:00-17:00; Sa 09:00-13:00" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.0000194399805599605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "id": 122274792 + } + }, + { + "id": 122274572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2179935, + 49.1467403 + ], + [ + 9.2185476, + 49.1467403 + ], + [ + 9.2185476, + 49.1472093 + ], + [ + 9.2179935, + 49.1472093 + ], + [ + 9.2179935, + 49.1467403 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maleasy", + "uid": "134587", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T10:28:20Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.59872900001592e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 3 + }, + "id": 122274572 + } + }, + { + "id": 122274526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2470021, + -42.7905268 + ], + [ + 147.2470021, + -42.7905268 + ], + [ + 147.2470021, + -42.7905268 + ], + [ + 147.2470021, + -42.7905268 + ], + [ + 147.2470021, + -42.7905268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T10:26:36Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@coffeeonwyndham.com" + ], + "amenity": [ + "cafe" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Fr 07:30-15:00; Sa 08:00-14:00" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 122274526 + } + }, + { + "id": 122274466, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2456137, + -42.7802331 + ], + [ + 147.2457441, + -42.7802331 + ], + [ + 147.2457441, + -42.7801364 + ], + [ + 147.2456137, + -42.7801364 + ], + [ + 147.2456137, + -42.7802331 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T10:24:25Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.26096799980558e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 122274466 + } + }, + { + "id": 122273277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2466809, + -42.7907617 + ], + [ + 147.2549555, + -42.7907617 + ], + [ + 147.2549555, + -42.7814506 + ], + [ + 147.2466809, + -42.7814506 + ], + [ + 147.2466809, + -42.7907617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T09:50:14Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+61 3 6275 2476" + ], + "amenity": [ + "fast_food", + "restaurant" + ], + "building": [ + "yes" + ], + "delivery": [ + "yes", + "no" + ], + "takeaway": [ + "only", + "yes" + ], + "diet:halal": [ + "no" + ], + "diet:vegan": [ + "no" + ], + "wheelchair": [ + "yes", + "no" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Su 16:00-21:30", + "Tu 16:30-20:30; We-Th 11:30-14:00, 16:30-20:30; Fr 11:30-14:00, 16:30-21:00; Sa 16:30-21:00; Su 16:30-20:30", + "Mo-Su 10:00-22:00", + "Mo-Th 16:30-21:00; Fr-Sa 16:30-22:00; Su 16:30-21:00" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "limited", + "yes" + ] + }, + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.0000770456280599167, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 36, + "locale": "en", + "imagery": "osm" + }, + "id": 122273277 + } + }, + { + "id": 122271628, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 146.7045822, + -42.7977902 + ], + [ + 147.2530024, + -42.7977902 + ], + [ + 147.2530024, + -42.480241 + ], + [ + 146.7045822, + -42.480241 + ], + [ + 146.7045822, + -42.7977902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T09:04:07Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "claremont.college@education.tas.gov.au", + "austins.ferry.primary@education.tas.gov.au", + "ouse.district.school@education.tas.gov.au" + ], + "phone": [ + "+61 3 6249 6868", + "+61 3 6275 7222", + "+61 3 6287 1259" + ], + "amenity": [ + "school" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.174150395773844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "schools", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "id": 122271628 + } + }, + { + "id": 122269081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.24835, + 40.9349495 + ], + [ + 14.2637055, + 40.9349495 + ], + [ + 14.2637055, + 40.9387268 + ], + [ + 14.24835, + 40.9387268 + ], + [ + 14.24835, + 40.9349495 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Acheloo", + "uid": "11366923", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T07:47:51Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "access": [ + "yes" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water", + "bicycle_parking" + ], + "bicycle_parking": [ + "wall_loops" + ], + "service:bicycle:repair": [ + "yes" + ], + "service:bicycle:retail": [ + "yes" + ], + "service:bicycle:second_hand": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000058002330149937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122269081 + } + }, + { + "id": 122268781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3227124, + 51.098602 + ], + [ + 3.3242065, + 51.098602 + ], + [ + 3.3242065, + 51.0991898 + ], + [ + 3.3227124, + 51.0991898 + ], + [ + 3.3227124, + 51.098602 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T07:38:47Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 40, + "modify": 0, + "delete": 0, + "area": 8.78231979997187e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm" + }, + "id": 122268781 + } + }, + { + "id": 122268077, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3727788, + 51.0717884 + ], + [ + 3.3775341, + 51.0717884 + ], + [ + 3.3775341, + 51.0767843 + ], + [ + 3.3727788, + 51.0767843 + ], + [ + 3.3727788, + 51.0717884 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T07:13:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/s3BAzqp.jpg", + "https://i.imgur.com/prUSpQ4.jpg", + "https://i.imgur.com/q41wY7s.jpg" + ], + "amenity": [ + "bench" + ], + "barrier": [ + "kissing_gate" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000237570032699883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 122268077 + } + }, + { + "id": 122267883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3628822, + 51.0683517 + ], + [ + 3.3628822, + 51.0683517 + ], + [ + 3.3628822, + 51.0683517 + ], + [ + 3.3628822, + 51.0683517 + ], + [ + 3.3628822, + 51.0683517 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T07:07:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122267883 + } + }, + { + "id": 122267607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3621004, + 51.0691329 + ], + [ + 3.3733461, + 51.0691329 + ], + [ + 3.3733461, + 51.0720567 + ], + [ + 3.3621004, + 51.0720567 + ], + [ + 3.3621004, + 51.0691329 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-12T06:58:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/s3BAzqp.jpg", + "https://i.imgur.com/thEWljK.jpg" + ], + "barrier": [ + "kissing_gate", + "gate" + ], + "survey:date": [ + "2022-06-11" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000328801776599751, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 122267607 + } + }, + { + "id": 122267335, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3621513, + 51.0690331 + ], + [ + 3.3792932, + 51.0690331 + ], + [ + 3.3792932, + 51.0778989 + ], + [ + 3.3621513, + 51.0778989 + ], + [ + 3.3621513, + 51.0690331 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T06:49:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YY1HISk.jpg" + ], + "route": [ + "foot", + "hiking" + ], + "image:0": [ + "https://i.imgur.com/GDFLtJq.jpg" + ], + "survey:date": [ + "2022-06-11", + "2022-03-05", + "2021-06-09" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000151976657020044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 122267335 + } + }, + { + "id": 122266562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.9490715, + 47.5519293 + ], + [ + 7.9490715, + 47.5519293 + ], + [ + 7.9490715, + 47.5519293 + ], + [ + 7.9490715, + 47.5519293 + ], + [ + 7.9490715, + 47.5519293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KaiPankrath", + "uid": "4067009", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T06:23:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/XDixEO5.jpg" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122266562 + } + }, + { + "id": 122266264, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.9485755, + 47.5509676 + ], + [ + 7.9485755, + 47.5509676 + ], + [ + 7.9485755, + 47.5509676 + ], + [ + 7.9485755, + 47.5509676 + ], + [ + 7.9485755, + 47.5509676 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KaiPankrath", + "uid": "4067009", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-12T06:12:47Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/XpC64Ym.jpg" + ], + "amenity": [ + "fountain" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122266264 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-13.json b/Docs/Tools/stats/stats.2022-6-13.json new file mode 100644 index 0000000000..62b674b2cd --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-13.json @@ -0,0 +1,1287 @@ +{ + "features": [ + { + "id": 122342463, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2884077, + 50.949072 + ], + [ + 3.288568, + 50.949072 + ], + [ + 3.288568, + 50.9490762 + ], + [ + 3.2884077, + 50.9490762 + ], + [ + 3.2884077, + 50.949072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T20:30:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/259uKHx.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "cargo_bike": [ + "yes" + ], + "bicycle_parking": [ + "wall_loops" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.73259999895257e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 122342463 + } + }, + { + "id": 122342462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2886765, + 50.9488389 + ], + [ + 3.2886765, + 50.9488389 + ], + [ + 3.2886765, + 50.9488389 + ], + [ + 3.2886765, + 50.9488389 + ], + [ + 3.2886765, + 50.9488389 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T20:30:18Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ], + "image:1": [ + "https://i.imgur.com/YhF2GPS.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", + "theme": "charging_stations", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 122342462 + } + }, + { + "id": 122339711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2884077, + 50.949072 + ], + [ + 3.288568, + 50.949072 + ], + [ + 3.288568, + 50.9490762 + ], + [ + 3.2884077, + 50.9490762 + ], + [ + 3.2884077, + 50.949072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T19:17:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.73259999895257e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "id": 122339711 + } + }, + { + "id": 122339561, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2876135, + 50.9487953 + ], + [ + 3.2886542, + 50.9487953 + ], + [ + 3.2886542, + 50.9491349 + ], + [ + 3.2876135, + 50.9491349 + ], + [ + 3.2876135, + 50.9487953 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T19:13:17Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 3.53421719996493e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "answer": 5, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 9 + }, + "id": 122339561 + } + }, + { + "id": 122338849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2886765, + 50.9486973 + ], + [ + 3.2887396, + 50.9486973 + ], + [ + 3.2887396, + 50.9488389 + ], + [ + 3.2886765, + 50.9488389 + ], + [ + 3.2886765, + 50.9486973 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T18:56:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 2, + "modify": 8, + "delete": 0, + "area": 8.93495999997767e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", + "theme": "charging_stations", + "answer": 24, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5, + "change_over_5000m": 2, + "change_within_25m": 29 + }, + "id": 122338849 + } + }, + { + "id": 122338737, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0539164, + 48.37938 + ], + [ + 4.3393348, + 48.37938 + ], + [ + 4.3393348, + 50.836412 + ], + [ + -0.0539164, + 50.836412 + ], + [ + -0.0539164, + 48.37938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T18:53:41Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "socket:type2": [ + "2", + "1" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 10.7943587824384, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", + "theme": "charging_stations", + "answer": 21, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 19, + "change_within_5000m": 2 + }, + "id": 122338737 + } + }, + { + "id": 122334705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7102741, + 51.0231119 + ], + [ + 3.7102741, + 51.0231119 + ], + [ + 3.7102741, + 51.0231119 + ], + [ + 3.7102741, + 51.0231119 + ], + [ + 3.7102741, + 51.0231119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T17:10:26Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "community_centre" + ], + "leisure": [ + "hackerspace" + ], + "service:3dprinter": [ + "yes" + ], + "service:lasercutter": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/hackerspaces", + "theme": "hackerspaces", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 122334705 + } + }, + { + "id": 122325255, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6057277, + 50.8831336 + ], + [ + 5.7047072, + 50.8831336 + ], + [ + 5.7047072, + 50.9240128 + ], + [ + 5.6057277, + 50.9240128 + ], + [ + 5.6057277, + 50.8831336 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kovna", + "uid": "16268733", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-13T13:04:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00404620277639989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3 + }, + "id": 122325255 + } + }, + { + "id": 122325192, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.557196, + -34.639823 + ], + [ + -58.5393499, + -34.639823 + ], + [ + -58.5393499, + -34.6395757 + ], + [ + -58.557196, + -34.6395757 + ], + [ + -58.557196, + -34.639823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T13:02:13Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "C 78", + "A 90" + ], + "note": [ + "Eliminar ref" + ], + "railway": [ + "signal" + ], + "railway:signal:main:ref": [ + "C 82" + ], + "railway:signal:route:ref": [ + "C 82-2" + ], + "railway:signal:route:caption": [ + "A" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000044133405299654, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 6 + }, + "id": 122325192 + } + }, + { + "id": 122324459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0539164, + 48.37938 + ], + [ + -0.0539164, + 48.37938 + ], + [ + -0.0539164, + 48.37938 + ], + [ + -0.0539164, + 48.37938 + ], + [ + -0.0539164, + 48.37938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T12:41:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 122324459 + } + }, + { + "id": 122324144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0545587, + 48.3795824 + ], + [ + -0.053921, + 48.3795824 + ], + [ + -0.053921, + 48.3823148 + ], + [ + -0.0545587, + 48.3823148 + ], + [ + -0.0545587, + 48.3795824 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T12:33:19Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "image": [ + "https://i.imgur.com/ak0nGFA.jpg" + ], + "charge": [ + "5 EUR" + ], + "toilets": [ + "yes" + ], + "tourism": [ + "caravan_site" + ], + "power_supply": [ + "no" + ], + "internet_access": [ + "no" + ], + "permanent_camping": [ + "no" + ], + "sanitary_dump_station": [ + "no" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000017424514800041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/campersite.html", + "theme": "campersite", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8, + "change_within_50m": 1 + }, + "id": 122324144 + } + }, + { + "id": 122322337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7872984, + 51.0982081 + ], + [ + 5.7873004, + 51.0982081 + ], + [ + 5.7873004, + 51.0982109 + ], + [ + 5.7872984, + 51.0982109 + ], + [ + 5.7872984, + 51.0982081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "emilinthelowlands", + "uid": "12764098", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-13T11:54:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "recycling:glass_bottles": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.59999999517063e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 1, + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9782507539": "improve_accuracy" + }, + "id": 122322337 + } + }, + { + "id": 122321882, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.2851418, + 46.8275559 + ], + [ + -71.2851418, + 46.8275559 + ], + [ + -71.2851418, + 46.8275559 + ], + [ + -71.2851418, + 46.8275559 + ], + [ + -71.2851418, + 46.8275559 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cdagenais", + "uid": "11446867", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-13T11:44:54Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "phone": [ + "+1 877 683 3338" + ], + "website": [ + "https://www.magasin-echo-sports.ca/" + ], + "service:bicycle:rental": [ + "no" + ], + "service:bicycle:repair": [ + "yes" + ], + "service:bicycle:retail": [ + "yes" + ], + "service:bicycle:second_hand": [ + "yes" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 122321882 + } + }, + { + "id": 122314712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5344204, + 52.9880367 + ], + [ + 6.5479498, + 52.9880367 + ], + [ + 6.5479498, + 53.0076046 + ], + [ + 6.5344204, + 53.0076046 + ], + [ + 6.5344204, + 52.9880367 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T09:10:46Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ], + "not:vending": [ + "dog_excrement_bag" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000264741946259968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste_assen.html", + "theme": "waste_assen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 122314712 + } + }, + { + "id": 122312262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3969668, + 51.0420686 + ], + [ + 3.3969668, + 51.0420686 + ], + [ + 3.3969668, + 51.0420686 + ], + [ + 3.3969668, + 51.0420686 + ], + [ + 3.3969668, + 51.0420686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-13T08:11:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/benches.html", + "theme": "benches", + "create": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 2, + "deletion:node/9813966121": "testing point" + }, + "id": 122312262 + } + }, + { + "id": 122308771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.881643, + 41.6497421 + ], + [ + -0.8763617, + 41.6497421 + ], + [ + -0.8763617, + 41.6513323 + ], + [ + -0.881643, + 41.6513323 + ], + [ + -0.881643, + 41.6497421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jaimeMF", + "uid": "706423", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-13T06:46:25Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "living_street", + "pedestrian", + "residential" + ], + "name:etymology:wikidata": [ + "Q45581" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000839832326001331, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "id": 122308771 + } + }, + { + "id": 122308178, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.2102971, + 56.1396582 + ], + [ + 10.2102971, + 56.1396582 + ], + [ + 10.2102971, + 56.1396582 + ], + [ + 10.2102971, + 56.1396582 + ], + [ + 10.2102971, + 56.1396582 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-13T06:33:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_rental" + ] + }, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 1, + "deletion:node/1241055903": "shop_closed" + }, + "id": 122308178 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-14.json b/Docs/Tools/stats/stats.2022-6-14.json new file mode 100644 index 0000000000..1eda93849b --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-14.json @@ -0,0 +1,1723 @@ +{ + "features": [ + { + "id": 122390594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.72737, + -37.1330066 + ], + [ + -72.72737, + -37.1330066 + ], + [ + -72.72737, + -37.1330066 + ], + [ + -72.72737, + -37.1330066 + ], + [ + -72.72737, + -37.1330066 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T21:30:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xILBBWB.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 122390594 + } + }, + { + "id": 122389273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0852049, + 51.3213528 + ], + [ + 5.0865031, + 51.3213528 + ], + [ + 5.0865031, + 51.3220015 + ], + [ + 5.0852049, + 51.3220015 + ], + [ + 5.0852049, + 51.3213528 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T20:45:12Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/CifS46b.jpg" + ], + "image:0": [ + "https://i.imgur.com/XyXDh43.jpg" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.42142339999011e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 122389273 + } + }, + { + "id": 122388502, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9679636, + 48.0482398 + ], + [ + -2.945866, + 48.0482398 + ], + [ + -2.945866, + 48.0739192 + ], + [ + -2.9679636, + 48.0739192 + ], + [ + -2.9679636, + 48.0482398 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T20:21:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "secondary", + "primary", + "residential", + "unclassified", + "service", + "footway", + "living_street", + "path" + ], + "name:etymology:wikidata": [ + "Q2475967", + "Q379693", + "Q81114", + "Q446435", + "Q632", + "Q1248451", + "Q85", + "Q2773178", + "Q1178", + "Q360312", + "Q251037", + "Q520977", + "Q3176402", + "Q56158", + "Q18434", + "Q3087522", + "Q151164", + "Q1379409", + "Q1151", + "Q191974", + "Q3142036", + "Q158768", + "Q529", + "Q33977", + "Q201143", + "Q194436", + "Q2706190", + "Q517", + "Q3167875", + "Q315708", + "Q1719774", + "Q1382004", + "Q4700", + "Q7226", + "Q2042", + "Q180278", + "Q104919", + "Q376383", + "Q233488", + "Q155144", + "Q3185261", + "Q3363340", + "Q333388", + "Q3292391", + "Q555329", + "Q29558817", + "Q959708" + ] + }, + "create": 0, + "modify": 85, + "delete": 0, + "area": 0.000567453109440028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 98, + "locale": "fr", + "imagery": "osm" + }, + "id": 122388502 + } + }, + { + "id": 122387518, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4174461, + 48.7098 + ], + [ + 9.4174461, + 48.7098 + ], + [ + 9.4174461, + 48.7098 + ], + [ + 9.4174461, + 48.7098 + ], + [ + 9.4174461, + 48.7098 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T19:49:49Z", + "reviewed_features": [], + "tag_changes": { + "brand": [ + "Schwalbe" + ], + "image": [ + "https://i.imgur.com/Rn9KVrg.jpg" + ], + "amenity": [ + "vending_machine" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122387518 + } + }, + { + "id": 122386964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.417752, + 48.7098313 + ], + [ + 9.5277506, + 48.7098313 + ], + [ + 9.5277506, + 48.8069158 + ], + [ + 9.417752, + 48.8069158 + ], + [ + 9.417752, + 48.7098313 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T19:35:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/G1h4Nqk.jpg", + "https://i.imgur.com/AYPZ2d4.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0106791590817, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 4 + }, + "id": 122386964 + } + }, + { + "id": 122386738, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1481999, + 50.684898 + ], + [ + 3.1482804, + 50.684898 + ], + [ + 3.1482804, + 50.6849983 + ], + [ + 3.1481999, + 50.6849983 + ], + [ + 3.1481999, + 50.684898 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T19:29:15Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 4, + "modify": 5, + "delete": 0, + "area": 8.0741499999925e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 13, + "create": 4, + "locale": "fr", + "imagery": "osm" + }, + "id": 122386738 + } + }, + { + "id": 122384113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3956886, + 51.0383525 + ], + [ + 3.3969571, + 51.0383525 + ], + [ + 3.3969571, + 51.0389624 + ], + [ + 3.3956886, + 51.0389624 + ], + [ + 3.3956886, + 51.0383525 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T18:24:44Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "tertiary" + ], + "cycleway": [ + "separate" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.73658150000571e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", + "theme": "cycle_infra", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 2 + }, + "id": 122384113 + } + }, + { + "id": 122382077, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6958357, + 51.9971968 + ], + [ + 5.6958357, + 51.9971968 + ], + [ + 5.6958357, + 51.9971968 + ], + [ + 5.6958357, + 51.9971968 + ], + [ + 5.6958357, + 51.9971968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Friendly_Ghost", + "uid": "10875409", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T17:27:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122382077 + } + }, + { + "id": 122381843, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Friendly_Ghost", + "uid": "10875409", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T17:21:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122381843 + } + }, + { + "id": 122381837, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Friendly_Ghost", + "uid": "10875409", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T17:20:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122381837 + } + }, + { + "id": 122381818, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Friendly_Ghost", + "uid": "10875409", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T17:20:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 122381818 + } + }, + { + "id": 122380045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2407107, + -39.8384085 + ], + [ + -73.2407107, + -39.8384085 + ], + [ + -73.2407107, + -39.8384085 + ], + [ + -73.2407107, + -39.8384085 + ], + [ + -73.2407107, + -39.8384085 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T16:35:43Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/EplCHlr.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1, + "change_within_1000m": 1 + }, + "id": 122380045 + } + }, + { + "id": 122372833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2022475, + 51.1793305 + ], + [ + 3.2022475, + 51.1793305 + ], + [ + 3.2022475, + 51.1793305 + ], + [ + 3.2022475, + 51.1793305 + ], + [ + 3.2022475, + 51.1793305 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Dewaele", + "uid": "16278274", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T12:55:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122372833 + } + }, + { + "id": 122372460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3931593, + 51.0408675 + ], + [ + 3.3981476, + 51.0408675 + ], + [ + 3.3981476, + 51.0426304 + ], + [ + 3.3931593, + 51.0426304 + ], + [ + 3.3931593, + 51.0408675 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T12:45:51Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "tertiary", + "residential" + ], + "cycleway": [ + "no" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000879387407001381, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", + "theme": "cycle_infra", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122372460 + } + }, + { + "id": 122367655, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T11:00:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122367655 + } + }, + { + "id": 122363488, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0797582, + 48.3500943 + ], + [ + -0.0797582, + 48.3500943 + ], + [ + -0.0797582, + 48.3500943 + ], + [ + -0.0797582, + 48.3500943 + ], + [ + -0.0797582, + 48.3500943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T09:31:07Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 122363488 + } + }, + { + "id": 122363116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.8267538, + 14.6234142 + ], + [ + 121.0303851, + 14.6234142 + ], + [ + 121.0303851, + 21.0363791 + ], + [ + 105.8267538, + 21.0363791 + ], + [ + 105.8267538, + 14.6234142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T09:25:14Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "bar" + ], + "highway": [ + "residential", + "service", + "tertiary", + "trunk" + ], + "smoking": [ + "yes" + ], + "building": [ + "yes", + "house" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 97.5003538794414, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 122363116 + } + }, + { + "id": 122361377, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0837439, + 48.3475701 + ], + [ + -0.0824967, + 48.3475701 + ], + [ + -0.0824967, + 48.3480657 + ], + [ + -0.0837439, + 48.3480657 + ], + [ + -0.0837439, + 48.3475701 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T08:53:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 6.18112320000876e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_500m": 2 + }, + "id": 122361377 + } + }, + { + "id": 122360242, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0796938, + 48.3498921 + ], + [ + -0.0796938, + 48.3498921 + ], + [ + -0.0796938, + 48.3498921 + ], + [ + -0.0796938, + 48.3498921 + ], + [ + -0.0796938, + 48.3498921 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T08:27:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "id": 122360242 + } + }, + { + "id": 122359546, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3364569, + 50.8163983 + ], + [ + 4.4182727, + 50.8163983 + ], + [ + 4.4182727, + 50.8794374 + ], + [ + 4.3364569, + 50.8794374 + ], + [ + 4.3364569, + 50.8163983 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pierre Raeymaekers", + "uid": "16276205", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T08:12:32Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "service:bicycle:pump": [ + "no", + "yes" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 4, + "delete": 2, + "area": 0.00515759439777981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "deletion:node/6329699865": "not found", + "deletion:node/8972946744": "not found" + }, + "id": 122359546 + } + }, + { + "id": 122358017, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7048762, + 45.1841152 + ], + [ + 5.7048762, + 45.1841152 + ], + [ + 5.7048762, + 45.1841152 + ], + [ + 5.7048762, + 45.1841152 + ], + [ + 5.7048762, + 45.1841152 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T07:37:05Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/", + "theme": "artwork", + "create": 1, + "locale": "en", + "change_over_5000m": 1 + }, + "id": 122358017 + } + }, + { + "id": 122353667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9959896, + 48.5000304 + ], + [ + 8.9960794, + 48.5000304 + ], + [ + 8.9960794, + 48.5001894 + ], + [ + 8.9959896, + 48.5001894 + ], + [ + 8.9959896, + 48.5000304 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T06:05:13Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 1.42781999996167e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 9, + "create": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "id": 122353667 + } + }, + { + "id": 122350494, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4850392, + 51.2419034 + ], + [ + 4.4926604, + 51.2419034 + ], + [ + 4.4926604, + 51.2445003 + ], + [ + 4.4850392, + 51.2445003 + ], + [ + 4.4850392, + 51.2419034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-14T04:17:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ], + "cyclestreet": [ + "yes", + "proposed" + ], + "overtaking:motor_vehicle": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000197914942800026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 122350494 + } + }, + { + "id": 122347684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.6939475, + -33.6421079 + ], + [ + -71.5812088, + -33.6421079 + ], + [ + -71.5812088, + -33.3269074 + ], + [ + -71.6939475, + -33.3269074 + ], + [ + -71.6939475, + -33.6421079 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-14T01:02:03Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Cuerpo de Bomberos de Santo Domingo", + "Bomberos de Santo Domingo", + "Segunda Compañía del Cuerpo de Bomberos de El Tabo", + "Bomberos Las Cruces 2da Compañía", + "Primera Compañía del Cuerpo de Bomberos de El Tabo", + "Bomberos El Tabo 1ra Compañía", + "Primera Compañía del Cuerpo de Bomberos de El Quisco", + "Bomberos El Quisco", + "Segunda Compañía del Cuerpo de Bomberos de Algarrobo", + "Segunda Compañia de Algarrobo , Bomberos Mirasol", + "Segunda Compañía del Cuerpo de Bomberos de San Antonio", + "2da COmpañia de Bomberos de San Antonio", + "Primera Compañía del Cuerpo de Bomberos de Algarrobo", + "Bomberos Algarrobo", + "Cuarta Compañía del Cuerpo de Bomberos de San Antonio", + "Bomberos", + "Primera Compañía del Cuerpo de Bomberos de San Antonio", + "Primera Compañia de Bomberos, \"CBSA\"", + "Segunda Compañía del Cuerpo de Bomberos de El Quisco", + "Tercera Compañía del Cuerpo de Bomberos de San Antonio", + "3ra compañia de bomberos", + "se" + ], + "amenity": [ + "fire_station" + ], + "building": [ + "yes" + ], + "addr:street": [ + "German Brain Pomerenke 4481" + ] + }, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0355352946093477, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 13, + "locale": "es", + "imagery": "HDM_HOT", + "change_over_5000m": 13 + }, + "id": 122347684 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-15.json b/Docs/Tools/stats/stats.2022-6-15.json new file mode 100644 index 0000000000..b671cd89b7 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-15.json @@ -0,0 +1,2205 @@ +{ + "features": [ + { + "id": 122437607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1778339, + 56.1527777 + ], + [ + 10.2125497, + 56.1527777 + ], + [ + 10.2125497, + 56.1722354 + ], + [ + 10.1778339, + 56.1722354 + ], + [ + 10.1778339, + 56.1527777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T22:43:46Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_rental" + ] + }, + "create": 0, + "modify": 0, + "delete": 8, + "area": 0.0006754896216599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 8, + "deletion:node/803851516": "disused", + "deletion:node/903444744": "shop_closed", + "deletion:node/1241055899": "shop_closed", + "deletion:node/1241055900": "shop_closed", + "deletion:node/1241055907": "shop_closed", + "deletion:node/1241055909": "disused", + "deletion:node/1241055922": "shop_closed", + "deletion:node/1241055926": "shop_closed" + }, + "id": 122437607 + } + }, + { + "id": 122434611, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6807709, + 51.0489011 + ], + [ + 3.681615, + 51.0489011 + ], + [ + 3.681615, + 51.0500726 + ], + [ + 3.6807709, + 51.0500726 + ], + [ + 3.6807709, + 51.0489011 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T20:46:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/TgUhHgH.jpg" + ], + "image:0": [ + "https://i.imgur.com/tVq69Kh.jpg" + ], + "image:1": [ + "https://i.imgur.com/m6D2Js5.jpg" + ], + "image:2": [ + "https://i.imgur.com/x67ueEO.jpg" + ], + "leisure": [ + "sports_centre" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.88863149998027e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "locale": "en", + "imagery": "osm", + "add-image": 4, + "change_within_25m": 4 + }, + "id": 122434611 + } + }, + { + "id": 122433835, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2860799, + 48.6521488 + ], + [ + 9.2860799, + 48.6521488 + ], + [ + 9.2860799, + 48.6521488 + ], + [ + 9.2860799, + 48.6521488 + ], + [ + 9.2860799, + 48.6521488 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T20:21:22Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "species:wikidata": [ + "Q147525" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 122433835 + } + }, + { + "id": 122431594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0161957, + 48.4889956 + ], + [ + 9.0199033, + 48.4889956 + ], + [ + 9.0199033, + 48.4925024 + ], + [ + 9.0161957, + 48.4925024 + ], + [ + 9.0161957, + 48.4889956 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T19:05:34Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "service", + "path" + ], + "name:etymology:wikidata": [ + "Q106723", + "Q2712245", + "Q37030", + "Q2594", + "Q6722" + ] + }, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0000130018116799824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 19, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 12, + "change_within_5000m": 7 + }, + "id": 122431594 + } + }, + { + "id": 122431229, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7511479, + 51.0615903 + ], + [ + 3.7511479, + 51.0615903 + ], + [ + 3.7511479, + 51.0615903 + ], + [ + 3.7511479, + 51.0615903 + ], + [ + 3.7511479, + 51.0615903 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T18:52:44Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "direction": [ + "131" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/benches.html", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 122431229 + } + }, + { + "id": 122429682, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2862096, + 48.6522933 + ], + [ + 9.2882414, + 48.6522933 + ], + [ + 9.2882414, + 48.6534148 + ], + [ + 9.2862096, + 48.6534148 + ], + [ + 9.2862096, + 48.6522933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T18:00:10Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/RyiSadi.jpg" + ], + "level": [ + "0" + ], + "access": [ + "yes" + ], + "survey:date": [ + "2022-06-15" + ], + "opening_hours": [ + "24/7" + ], + "defibrillator:location": [ + "Im Vorraum" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000227866370000837, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 8 + }, + "id": 122429682 + } + }, + { + "id": 122425359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2936269, + 48.6497762 + ], + [ + 9.3004037, + 48.6497762 + ], + [ + 9.3004037, + 48.651989 + ], + [ + 9.2936269, + 48.651989 + ], + [ + 9.2936269, + 48.6497762 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T15:59:15Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/MoAQs11.jpg", + "https://i.imgur.com/OsYldzG.jpg", + "https://i.imgur.com/6ISqSqg.jpg" + ], + "phone": [ + "+49 421 51005555" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "maxstay": [ + "240 minutes" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "no" + ], + "socket:type2_combo": [ + "1" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000149957030400177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 9, + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 12 + }, + "id": 122425359 + } + }, + { + "id": 122424938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3630013, + 52.0948879 + ], + [ + 13.3772922, + 52.0948879 + ], + [ + 13.3772922, + 52.1040406 + ], + [ + 13.3630013, + 52.1040406 + ], + [ + 13.3630013, + 52.0948879 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ebihardy", + "uid": "263464", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T15:48:13Z", + "reviewed_features": [], + "tag_changes": { + "fire_hydrant:diameter": [ + "80" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000130800320429907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122424938 + } + }, + { + "id": 122424567, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2592342, + 50.8387195 + ], + [ + 4.259478, + 50.8387195 + ], + [ + 4.259478, + 50.8390814 + ], + [ + 4.2592342, + 50.8390814 + ], + [ + 4.2592342, + 50.8387195 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T15:37:46Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 4, + "modify": 1, + "delete": 0, + "area": 8.82312199985514e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "id": 122424567 + } + }, + { + "id": 122424495, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2590918, + 50.8388438 + ], + [ + 4.2591878, + 50.8388438 + ], + [ + 4.2591878, + 50.8388516 + ], + [ + 4.2590918, + 50.8388516 + ], + [ + 4.2590918, + 50.8388438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T15:35:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "capacity": [ + "6", + "5", + "20", + "10" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.48799999883725e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_50m": 1 + }, + "id": 122424495 + } + }, + { + "id": 122423571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6984956, + 46.697127 + ], + [ + -0.6982933, + 46.697127 + ], + [ + -0.6982933, + 46.6974565 + ], + [ + -0.6984956, + 46.6974565 + ], + [ + -0.6984956, + 46.697127 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T15:12:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "sanitary_dump_station" + ], + "tourism": [ + "caravan_site" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 6.66578499998804e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 11, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 5, + "change_within_50m": 6 + }, + "id": 122423571 + } + }, + { + "id": 122423528, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0749865, + 49.9159915 + ], + [ + 7.0749865, + 49.9159915 + ], + [ + 7.0749865, + 49.9159915 + ], + [ + 7.0749865, + 49.9159915 + ], + [ + 7.0749865, + 49.9159915 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "J@n@ncy", + "uid": "16287818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T15:11:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 122423528 + } + }, + { + "id": 122422530, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7065071, + 51.0429488 + ], + [ + 3.7065071, + 51.0429488 + ], + [ + 3.7065071, + 51.0429488 + ], + [ + 3.7065071, + 51.0429488 + ], + [ + 3.7065071, + 51.0429488 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T14:48:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 2 + }, + "id": 122422530 + } + }, + { + "id": 122422045, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lefuturiste", + "uid": "2444262", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T14:34:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122422045 + } + }, + { + "id": 122421802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.605144, + 46.7913485 + ], + [ + -0.605144, + 46.7913485 + ], + [ + -0.605144, + 46.7913485 + ], + [ + -0.605144, + 46.7913485 + ], + [ + -0.605144, + 46.7913485 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T14:27:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 122421802 + } + }, + { + "id": 122420750, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.1681653, + 44.0127823 + ], + [ + -73.1681653, + 44.0127823 + ], + [ + -73.1681653, + 44.0127823 + ], + [ + -73.1681653, + 44.0127823 + ], + [ + -73.1681653, + 44.0127823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Adam Franco", + "uid": "27832", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T14:02:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/6192577523": "shop_closed" + }, + "id": 122420750 + } + }, + { + "id": 122419683, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7596484, + 51.0072161 + ], + [ + 3.7597463, + 51.0072161 + ], + [ + 3.7597463, + 51.0072887 + ], + [ + 3.7596484, + 51.0072887 + ], + [ + 3.7596484, + 51.0072161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jade@imec", + "uid": "15978511", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T13:39:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 7.10753999959175e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 122419683 + } + }, + { + "id": 122417099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4153043, + 51.4736593 + ], + [ + 7.4195084, + 51.4736593 + ], + [ + 7.4195084, + 51.4739147 + ], + [ + 7.4153043, + 51.4739147 + ], + [ + 7.4153043, + 51.4736593 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobiasff3200", + "uid": "4970449", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T12:37:43Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ], + "crossing:island": [ + "no", + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000107372714000145, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122417099 + } + }, + { + "id": 122416962, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4175045, + 51.4737642 + ], + [ + 7.4175571, + 51.4737642 + ], + [ + 7.4175571, + 51.4748228 + ], + [ + 7.4175045, + 51.4748228 + ], + [ + 7.4175045, + 51.4737642 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobiasff3200", + "uid": "4970449", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T12:34:48Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "surveillance:zone": [ + "entrance", + "parking" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.56823600000919e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122416962 + } + }, + { + "id": 122416802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4131988, + 51.4923416 + ], + [ + 7.4131988, + 51.4923416 + ], + [ + 7.4131988, + 51.4923416 + ], + [ + 7.4131988, + 51.4923416 + ], + [ + 7.4131988, + 51.4923416 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobiasff3200", + "uid": "4970449", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T12:31:56Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "no" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122416802 + } + }, + { + "id": 122416624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4149736, + 51.4921812 + ], + [ + 7.4156364, + 51.4921812 + ], + [ + 7.4156364, + 51.4926634 + ], + [ + 7.4149736, + 51.4926634 + ], + [ + 7.4149736, + 51.4921812 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobiasff3200", + "uid": "4970449", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T12:28:51Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged", + "overhead", + "sliding" + ], + "entrance": [ + "main", + "yes", + "secondary" + ], + "automatic_door": [ + "motion" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 3.1960216000059e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 10, + "locale": "de", + "imagery": "osm" + }, + "id": 122416624 + } + }, + { + "id": 122412473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0165399, + 48.4896028 + ], + [ + 9.018972, + 48.4896028 + ], + [ + 9.018972, + 48.4925024 + ], + [ + 9.0165399, + 48.4925024 + ], + [ + 9.0165399, + 48.4896028 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T11:03:30Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "service" + ], + "image:streetsign": [ + "https://i.imgur.com/ZXDykTG.jpg", + "https://i.imgur.com/3ZHGxDh.jpg", + "https://i.imgur.com/w95hJmP.jpg", + "https://i.imgur.com/tkMEw8z.jpg", + "https://i.imgur.com/Uabo2Ow.jpg" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000705211715999825, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "locale": "de", + "imagery": "osm", + "add-image": 5, + "change_within_25m": 4, + "change_within_50m": 1 + }, + "id": 122412473 + } + }, + { + "id": 122411347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5997966, + 50.8352532 + ], + [ + 3.8280271, + 50.8352532 + ], + [ + 3.8280271, + 50.8945268 + ], + [ + 3.5997966, + 50.8945268 + ], + [ + 3.5997966, + 50.8352532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T10:39:35Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary", + "primary", + "unclassified", + "path", + "living_street" + ], + "name:etymology:wikidata": [ + "Q173219", + "Q3044", + "Q2483859", + "Q435844", + "Q16917", + "Q18115325", + "Q2566545", + "Q127849", + "Q36380", + "Q111429432", + "Q17590", + "Q13121", + "Q3133", + "Q109631591", + "Q43084", + "Q37620", + "Q2627945", + "Q156099", + "Q157449", + "Q156207", + "Q377071", + "Q158286", + "Q25243", + "Q158617", + "Q158758", + "Q670040", + "Q81666", + "Q641734", + "Q2371457", + "Q2515436", + "Q1397", + "Q171892", + "Q26354", + "Q5986917", + "Q192190", + "Q145781", + "Q206998", + "Q193891", + "Q164294", + "Q124862", + "Q783972", + "Q3858258", + "Q3263875", + "Q189393", + "Q2627259", + "Q49996262", + "Q205265" + ] + }, + "create": 0, + "modify": 94, + "delete": 0, + "area": 0.013528043364801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 124, + "locale": "nl", + "imagery": "osm" + }, + "id": 122411347 + } + }, + { + "id": 122408336, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0717094, + 45.771781 + ], + [ + 3.0717094, + 45.771781 + ], + [ + 3.0717094, + 45.771781 + ], + [ + 3.0717094, + 45.771781 + ], + [ + 3.0717094, + 45.771781 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fabien1309", + "uid": "2195037", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T09:32:12Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122408336 + } + }, + { + "id": 122408295, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0652147, + 14.6311332 + ], + [ + 121.0652307, + 14.6311332 + ], + [ + 121.0652307, + 14.6311589 + ], + [ + 121.0652147, + 14.6311589 + ], + [ + 121.0652147, + 14.6311332 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T09:31:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "community_centre" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.11200000059531e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "move": 1, + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "locale": "en", + "imagery": "osm", + "move:node/7785465087": "improve_accuracy" + }, + "id": 122408295 + } + }, + { + "id": 122408154, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0612466, + 45.7672029 + ], + [ + 3.0717334, + 45.7672029 + ], + [ + 3.0717334, + 45.7746514 + ], + [ + 3.0612466, + 45.7746514 + ], + [ + 3.0612466, + 45.7672029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fabien1309", + "uid": "2195037", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T09:28:39Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000781109298000238, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122408154 + } + }, + { + "id": 122406965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.7771511, + 43.3562489 + ], + [ + -3.7771511, + 43.3562489 + ], + [ + -3.7771511, + 43.3562489 + ], + [ + -3.7771511, + 43.3562489 + ], + [ + -3.7771511, + 43.3562489 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T09:01:30Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122406965 + } + }, + { + "id": 122403779, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-15T07:51:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT", + "change_within_25m": 1 + }, + "id": 122403779 + } + }, + { + "id": 122402015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.3111936, + 48.2103579 + ], + [ + 16.3111936, + 48.2103579 + ], + [ + 16.3111936, + 48.2103579 + ], + [ + 16.3111936, + 48.2103579 + ], + [ + 16.3111936, + 48.2103579 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dosenpfand", + "uid": "484548", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T07:13:51Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122402015 + } + }, + { + "id": 122401974, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.308395, + 48.2092858 + ], + [ + 16.308395, + 48.2092858 + ], + [ + 16.308395, + 48.2092858 + ], + [ + 16.308395, + 48.2092858 + ], + [ + 16.308395, + 48.2092858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dosenpfand", + "uid": "484548", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-15T07:12:57Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122401974 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-16.json b/Docs/Tools/stats/stats.2022-6-16.json new file mode 100644 index 0000000000..b6207a12e6 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-16.json @@ -0,0 +1,2634 @@ +{ + "features": [ + { + "id": 122484714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1660144, + 50.40552 + ], + [ + 4.3050607, + 50.40552 + ], + [ + 4.3050607, + 50.477711 + ], + [ + 4.1660144, + 50.477711 + ], + [ + 4.1660144, + 50.40552 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Liwott", + "uid": "11408459", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T23:19:04Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "pedestrian", + "primary" + ], + "name:etymology:wikidata": [ + "Q55008046", + "Q39614", + "Q83407", + "Q1210", + "Q81046" + ] + }, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0100378914432996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 18, + "locale": "fr", + "imagery": "osm" + }, + "id": 122484714 + } + }, + { + "id": 122480484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5363338, + 51.0715118 + ], + [ + 3.5367279, + 51.0715118 + ], + [ + 3.5367279, + 51.071906 + ], + [ + 3.5363338, + 51.071906 + ], + [ + 3.5363338, + 51.0715118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T20:24:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 18, + "modify": 0, + "delete": 0, + "area": 1.55354219998061e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 122480484 + } + }, + { + "id": 122479307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9861814, + 48.037554 + ], + [ + -2.9563273, + 48.037554 + ], + [ + -2.9563273, + 48.0678644 + ], + [ + -2.9861814, + 48.0678644 + ], + [ + -2.9861814, + 48.037554 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T19:45:59Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "unclassified", + "residential", + "secondary", + "service" + ], + "railway": [ + "abandoned" + ], + "name:etymology:wikidata": [ + "Q232873", + "Q274251", + "Q334965", + "Q12688", + "Q2475967", + "Q253224", + "Q171730", + "Q680897", + "Q326724", + "Q537061", + "Q622365", + "Q2979", + "Q437983", + "Q206832", + "Q1760271", + "Q47162", + "Q200639", + "Q440", + "Q188971", + "Q3292642", + "Q4583", + "Q386438", + "Q2850234", + "Q106126", + "Q41269", + "Q123041", + "Q63704", + "Q437091", + "Q3275603", + "Q1393036", + "Q2750648", + "Q41921", + "Q3816", + "Q7197", + "Q34189", + "Q81685", + "Q7504", + "Q454", + "Q212620", + "Q271991", + "Q56158", + "Q254", + "Q236438", + "Q745809", + "Q216092", + "Q358167", + "Q208230", + "Q106208", + "Q8750", + "Q39607", + "Q18425", + "Q1248451", + "Q675" + ] + }, + "create": 0, + "modify": 104, + "delete": 0, + "area": 0.000904889712639932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 131, + "locale": "fr", + "imagery": "osm" + }, + "id": 122479307 + } + }, + { + "id": 122478970, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.868887, + 56.2621938 + ], + [ + 43.8690754, + 56.2621938 + ], + [ + 43.8690754, + 56.2622843 + ], + [ + 43.868887, + 56.2622843 + ], + [ + 43.868887, + 56.2621938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T19:35:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.70501999996971e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "create": 2, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 122478970 + } + }, + { + "id": 122478078, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 32.5614162, + -25.9752822 + ], + [ + 32.5802851, + -25.9752822 + ], + [ + 32.5802851, + -25.9563718 + ], + [ + 32.5614162, + -25.9563718 + ], + [ + 32.5614162, + -25.9752822 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T19:12:28Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "primary", + "secondary", + "tertiary", + "residential", + "unclassified" + ], + "name:etymology:wikidata": [ + "Q953", + "Q6297989", + "Q9061", + "Q212955", + "Q110111587", + "Q173017", + "Q574", + "Q219918", + "Q181665", + "Q155402" + ] + }, + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000356818446560008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 30, + "locale": "nl", + "imagery": "osm" + }, + "id": 122478078 + } + }, + { + "id": 122476559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2390368, + -39.8441918 + ], + [ + -73.2380048, + -39.8441918 + ], + [ + -73.2380048, + -39.8436441 + ], + [ + -73.2390368, + -39.8436441 + ], + [ + -73.2390368, + -39.8441918 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T18:38:08Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/vOlZbgh.jpg", + "https://i.imgur.com/zpjHJ9m.jpg", + "https://i.imgur.com/B3Zngwe.jpg", + "https://i.imgur.com/MIYZwSW.jpg", + "https://i.imgur.com/p6g7gsk.jpg", + "https://i.imgur.com/LTBZ01P.jpg" + ], + "image:0": [ + "https://i.imgur.com/ocehgOl.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.65226399995719e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 7 + }, + "id": 122476559 + } + }, + { + "id": 122472487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2394819, + 50.729113 + ], + [ + 4.2420922, + 50.729113 + ], + [ + 4.2420922, + 50.7323659 + ], + [ + 4.2394819, + 50.7323659 + ], + [ + 4.2394819, + 50.729113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T16:41:57Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "butcher", + "optician", + "locksmith" + ], + "website": [ + "https://www.daisyrene.be", + "https://www.optiekduyck.be" + ] + }, + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.00000849104486999827, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 9, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122472487 + } + }, + { + "id": 122467629, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3871002, + 50.9392074 + ], + [ + 3.4196851, + 50.9392074 + ], + [ + 3.4196851, + 50.9642508 + ], + [ + 3.3871002, + 50.9642508 + ], + [ + 3.3871002, + 50.9392074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T14:29:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000816036684660048, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "move:node/9822866193": "improve_accuracy" + }, + "id": 122467629 + } + }, + { + "id": 122465539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 31.0105706, + -29.859793 + ], + [ + 31.035474, + -29.859793 + ], + [ + 31.035474, + -29.8513743 + ], + [ + 31.0105706, + -29.8513743 + ], + [ + 31.0105706, + -29.859793 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:42:19Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "trunk", + "tertiary", + "primary", + "secondary", + "residential" + ], + "name:etymology:wikidata": [ + "Q573160", + "Q42282200", + "Q1187368", + "Q1177117", + "Q14948988", + "Q561520", + "Q5086065", + "Q2739759" + ] + }, + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.000209654253579996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 95, + "locale": "nl", + "imagery": "osm" + }, + "id": 122465539 + } + }, + { + "id": 122465423, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5986106, + -34.6452867 + ], + [ + -58.5072673, + -34.6452867 + ], + [ + -58.5072673, + -34.6368719 + ], + [ + -58.5986106, + -34.6368719 + ], + [ + -58.5986106, + -34.6452867 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T13:39:10Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "HD 81", + "A 50", + "HD 82" + ], + "railway": [ + "signal" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000768635600839717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 122465423 + } + }, + { + "id": 122464908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6884799, + 51.3974184 + ], + [ + 4.6884799, + 51.3974184 + ], + [ + 4.6884799, + 51.3974184 + ], + [ + 4.6884799, + 51.3974184 + ], + [ + 4.6884799, + 51.3974184 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:25:22Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "surveillance": [ + "public" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464908 + } + }, + { + "id": 122464896, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:24:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464896 + } + }, + { + "id": 122464873, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:24:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464873 + } + }, + { + "id": 122464859, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:23:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464859 + } + }, + { + "id": 122464853, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:23:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464853 + } + }, + { + "id": 122464852, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:23:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464852 + } + }, + { + "id": 122464837, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:23:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464837 + } + }, + { + "id": 122464609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6884799, + 51.394376 + ], + [ + 4.7618276, + 51.394376 + ], + [ + 4.7618276, + 51.4022528 + ], + [ + 4.6884799, + 51.4022528 + ], + [ + 4.6884799, + 51.394376 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T13:17:58Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.000577745163359873, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 8, + "create": 4, + "locale": "nl", + "imagery": "osm" + }, + "id": 122464609 + } + }, + { + "id": 122464315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7262543, + 51.0505823 + ], + [ + 3.7269832, + 51.0505823 + ], + [ + 3.7269832, + 51.0519426 + ], + [ + 3.7262543, + 51.0519426 + ], + [ + 3.7262543, + 51.0505823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T13:10:01Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "sidewalk": [ + "both" + ], + "sidewalk:left": [ + "yes" + ], + "sidewalk:right": [ + "yes" + ], + "sidewalk:left:width": [ + "1.6" + ], + "sidewalk:right:width": [ + "1.8" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.91522669995995e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sidewalks.html", + "theme": "sidewalks", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 122464315 + } + }, + { + "id": 122463829, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3338459, + 51.0113061 + ], + [ + 5.3338459, + 51.0113061 + ], + [ + 5.3338459, + 51.0113061 + ], + [ + 5.3338459, + 51.0113061 + ], + [ + 5.3338459, + 51.0113061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T12:58:52Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122463829 + } + }, + { + "id": 122457994, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6977147, + 50.9247161 + ], + [ + 4.7042432, + 50.9247161 + ], + [ + 4.7042432, + 50.9266477 + ], + [ + 4.6977147, + 50.9266477 + ], + [ + 4.6977147, + 50.9247161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T10:46:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000126104505999928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 2 + }, + "id": 122457994 + } + }, + { + "id": 122457242, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6863146, + 51.0025472 + ], + [ + 5.6863146, + 51.0025472 + ], + [ + 5.6863146, + 51.0025472 + ], + [ + 5.6863146, + 51.0025472 + ], + [ + 5.6863146, + 51.0025472 + ] + ] + ] + }, + "properties": { + "check_user": "Pieter Vander Vennet", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RLKM_Nationaal Park Hoge Kempen", + "uid": "14021086", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T10:30:45Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-06-16T12:27:06.300878Z", + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 122457242 + } + }, + { + "id": 122457016, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7050791, + 50.9255003 + ], + [ + 4.7050791, + 50.9255003 + ], + [ + 4.7050791, + 50.9255003 + ], + [ + 4.7050791, + 50.9255003 + ], + [ + 4.7050791, + 50.9255003 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T10:25:54Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122457016 + } + }, + { + "id": 122456889, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7048569, + 50.9255274 + ], + [ + 4.70527, + 50.9255274 + ], + [ + 4.70527, + 50.9256863 + ], + [ + 4.7048569, + 50.9256863 + ], + [ + 4.7048569, + 50.9255274 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T10:22:59Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 3, + "modify": 3, + "delete": 0, + "area": 6.56415900008961e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "id": 122456889 + } + }, + { + "id": 122456781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7051418, + 50.9254531 + ], + [ + 4.705721, + 50.9254531 + ], + [ + 4.705721, + 50.9262445 + ], + [ + 4.7051418, + 50.9262445 + ], + [ + 4.7051418, + 50.9254531 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T10:20:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.58378880002268e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "id": 122456781 + } + }, + { + "id": 122456057, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.996746, + 48.5025309 + ], + [ + 8.9967714, + 48.5025309 + ], + [ + 8.9967714, + 48.5025407 + ], + [ + 8.996746, + 48.5025407 + ], + [ + 8.996746, + 48.5025309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T10:05:34Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.48920000022975e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "move:node/9822274396": "improve_accuracy" + }, + "id": 122456057 + } + }, + { + "id": 122455998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2538523, + -42.7910709 + ], + [ + 147.2544475, + -42.7910709 + ], + [ + 147.2544475, + -42.7894611 + ], + [ + 147.2538523, + -42.7894611 + ], + [ + 147.2538523, + -42.7910709 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T10:04:15Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Claremont Newspower", + "Claremont Village Newsagency" + ], + "shop": [ + "alcohol", + "newsagent", + "hardware", + "charity" + ], + "website": [ + "https://www.facebook.com/claremontchainsawsandmowers/", + "https://www.vinnies.org.au/shops/view/456" + ], + "building": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Sa 10:00-20:00; Su 11:00-19:00", + "Mo-Sa 07:30-17:30", + "Mo-Fr 08:30-17:00; Sa 09:00-12:00", + "Mo-Sa 09:00-17:00" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 9.58152959990026e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 122455998 + } + }, + { + "id": 122455625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 147.2534253, + -42.7911945 + ], + [ + 147.2538454, + -42.7911945 + ], + [ + 147.2538454, + -42.789267 + ], + [ + 147.2534253, + -42.789267 + ], + [ + 147.2534253, + -42.7911945 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NoCashMoney", + "uid": "15814196", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T09:56:10Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+61 3 6249 4401" + ], + "amenity": [ + "restaurant" + ], + "website": [ + "https://www.pekingrestauranttasmania.com.au/" + ], + "building": [ + "yes" + ], + "takeaway": [ + "yes" + ], + "diet:halal": [ + "no" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Fr 11:00-14:00, 16:30-20:30; Sa 16:30-22:00; Su 16:30-20:30", + "Tu-Su 17:00-20:30" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "yes" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 8.09742749971919e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 122455625 + } + }, + { + "id": 122454666, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7050399, + 50.918039 + ], + [ + 4.7150767, + 50.918039 + ], + [ + 4.7150767, + 50.9257407 + ], + [ + 4.7050399, + 50.9257407 + ], + [ + 4.7050399, + 50.918039 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T09:37:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.0000773004225599833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 17, + "create": 8, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 8, + "change_within_25m": 17 + }, + "id": 122454666 + } + }, + { + "id": 122452556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3751324, + 52.6524856 + ], + [ + 13.3753226, + 52.6524856 + ], + [ + 13.3753226, + 52.6546777 + ], + [ + 13.3751324, + 52.6546777 + ], + [ + 13.3751324, + 52.6524856 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T08:52:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.16937420001423e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122452556 + } + }, + { + "id": 122452393, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7068088, + 50.8941826 + ], + [ + 4.7068088, + 50.8941826 + ], + [ + 4.7068088, + 50.8941826 + ], + [ + 4.7068088, + 50.8941826 + ], + [ + 4.7068088, + 50.8941826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T08:48:55Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 122452393 + } + }, + { + "id": 122451034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8663013, + 56.2511462 + ], + [ + 43.8663013, + 56.2511462 + ], + [ + 43.8663013, + 56.2511462 + ], + [ + 43.8663013, + 56.2511462 + ], + [ + 43.8663013, + 56.2511462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T08:24:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "create": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122451034 + } + }, + { + "id": 122449944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1921615, + 56.1297989 + ], + [ + 10.2024156, + 56.1297989 + ], + [ + 10.2024156, + 56.1460626 + ], + [ + 10.1921615, + 56.1460626 + ], + [ + 10.1921615, + 56.1297989 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lostmonkey", + "uid": "3401037", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-16T08:02:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_rental" + ] + }, + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.000166769606170048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 3, + "deletion:node/1241055895": "shop_closed", + "deletion:node/1241055897": "shop_closed", + "deletion:node/1241055924": "shop_closed" + }, + "id": 122449944 + } + }, + { + "id": 122449328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7026976, + 50.8791716 + ], + [ + 4.7026976, + 50.8791716 + ], + [ + 4.7026976, + 50.8791716 + ], + [ + 4.7026976, + 50.8791716 + ], + [ + 4.7026976, + 50.8791716 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T07:49:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 10, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10 + }, + "id": 122449328 + } + }, + { + "id": 122447827, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9904262, + 48.498149 + ], + [ + 8.9934869, + 48.498149 + ], + [ + 8.9934869, + 48.4993719 + ], + [ + 8.9904262, + 48.4993719 + ], + [ + 8.9904262, + 48.498149 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T07:16:49Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q26899", + "Q26745", + "Q42292", + "Q468664", + "Q158752" + ] + }, + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.00000374293003000671, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 11, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10, + "change_within_100m": 1, + "change_within_500m": 1, + "move:node/9821706815": "improve_accuracy" + }, + "id": 122447827 + } + }, + { + "id": 122446861, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3254, + 48.6382579 + ], + [ + 9.3259881, + 48.6382579 + ], + [ + 9.3259881, + 48.6384273 + ], + [ + 9.3254, + 48.6384273 + ], + [ + 9.3254, + 48.6382579 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T06:55:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VoC1SY6.jpg" + ], + "amenity": [ + "parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.96241399983375e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 122446861 + } + }, + { + "id": 122444802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.7837658, + 48.415843 + ], + [ + 9.7837658, + 48.415843 + ], + [ + 9.7837658, + 48.415843 + ], + [ + 9.7837658, + 48.415843 + ], + [ + 9.7837658, + 48.415843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-16T06:06:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/AmbWLlU.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 122444802 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-17.json b/Docs/Tools/stats/stats.2022-6-17.json new file mode 100644 index 0000000000..aca576e707 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-17.json @@ -0,0 +1,1353 @@ +{ + "features": [ + { + "id": 122520479, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3339576, + 48.6267009 + ], + [ + 9.3339576, + 48.6267009 + ], + [ + 9.3339576, + 48.6267009 + ], + [ + 9.3339576, + 48.6267009 + ], + [ + 9.3339576, + 48.6267009 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-17T18:46:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ED3KV4H.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 5 + }, + "id": 122520479 + } + }, + { + "id": 122518353, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2336831, + 50.7352605 + ], + [ + 5.4448757, + 50.7352605 + ], + [ + 5.4448757, + 51.2316527 + ], + [ + 4.2336831, + 51.2316527 + ], + [ + 4.2336831, + 50.7352605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T17:33:18Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Slaapcomfort Verdoodt", + "Slaapcomfor Verdoodt" + ], + "shop": [ + "herbalist", + "bed", + "computer" + ], + "website": [ + "https://www.herboristeriekruidotheek.be" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.601226559337714, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122518353 + } + }, + { + "id": 122518122, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2373773, + 50.7357214 + ], + [ + 4.3298196, + 50.7357214 + ], + [ + 4.3298196, + 50.7873888 + ], + [ + 4.2373773, + 50.7873888 + ], + [ + 4.2373773, + 50.7357214 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T17:28:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ], + "website": [ + "https://dendragee.be" + ] + }, + "create": 1, + "modify": 1, + "delete": 1, + "area": 0.00477625329101996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9825985060": "duplicate" + }, + "id": 122518122 + } + }, + { + "id": 122518011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2375024, + 50.737326 + ], + [ + 4.3298149, + 50.737326 + ], + [ + 4.3298149, + 50.7873829 + ], + [ + 4.2375024, + 50.7873829 + ], + [ + 4.2375024, + 50.737326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T17:26:32Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Chupito", + "Sol y Sombra" + ], + "fixme": [ + "Freeform tag `cuisine` used, to be doublechecked" + ], + "amenity": [ + "restaurant" + ], + "cuisine": [ + "spanish" + ], + "website": [ + "https://www.chupito.be" + ] + }, + "create": 1, + "modify": 2, + "delete": 1, + "area": 0.00462087758124943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9825975765": "duplicate" + }, + "id": 122518011 + } + }, + { + "id": 122517017, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -82.3650067, + 23.0607835 + ], + [ + -82.3648173, + 23.0607835 + ], + [ + -82.3648173, + 23.0609485 + ], + [ + -82.3650067, + 23.0609485 + ], + [ + -82.3650067, + 23.0607835 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GHOSTsama", + "uid": "15422751", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T17:03:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/01L65cc.jpg", + "https://i.imgur.com/EqlXJmR.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.12509999992411e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "id": 122517017 + } + }, + { + "id": 122512675, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3298082, + 50.7873786 + ], + [ + 4.3298082, + 50.7873786 + ], + [ + 4.3298082, + 50.7873786 + ], + [ + 4.3298082, + 50.7873786 + ], + [ + 4.3298082, + 50.7873786 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T15:05:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9825649497": "duplicate" + }, + "id": 122512675 + } + }, + { + "id": 122511972, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2331137, + 50.734135 + ], + [ + 4.2331137, + 50.734135 + ], + [ + 4.2331137, + 50.734135 + ], + [ + 4.2331137, + 50.734135 + ], + [ + 4.2331137, + 50.734135 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7390437018", + "name": "Marcelis", + "osm_id": 7390437018, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "office_supply" + } + } + ], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T14:47:32Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Marcelis", + "Marselis" + ], + "shop": [ + "office_supply" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122511972 + } + }, + { + "id": 122508929, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9816598, + 48.0602723 + ], + [ + -2.9451706, + 48.0602723 + ], + [ + -2.9451706, + 48.0824562 + ], + [ + -2.9816598, + 48.0824562 + ], + [ + -2.9816598, + 48.0602723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T13:21:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "secondary", + "residential", + "steps", + "footway" + ], + "railway": [ + "abandoned" + ], + "name:etymology:wikidata": [ + "Q2038", + "Q70423982", + "Q3150", + "Q176271", + "Q171480", + "Q295090", + "Q7226", + "Q134114", + "Q274251", + "Q107343710", + "Q3371499", + "Q3141517", + "Q15407202", + "Q298051", + "Q132684", + "Q288394", + "Q236630", + "Q12431", + "Q16945181", + "Q17362349", + "Q34189", + "Q161955", + "Q862935", + "Q295830", + "Q2097468", + "Q462604", + "Q454199", + "Q2834988", + "Q42037", + "Q47162", + "Q312391" + ] + }, + "create": 0, + "modify": 47, + "delete": 0, + "area": 0.000809472763880064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 56, + "locale": "fr", + "imagery": "osm" + }, + "id": 122508929 + } + }, + { + "id": 122508729, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4244979, + 52.535006 + ], + [ + 13.4244979, + 52.535006 + ], + [ + 13.4244979, + 52.535006 + ], + [ + 13.4244979, + 52.535006 + ], + [ + 13.4244979, + 52.535006 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annika_atip:tap", + "uid": "15923056", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T13:15:05Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122508729 + } + }, + { + "id": 122506026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3271183, + 48.6320977 + ], + [ + 9.3271183, + 48.6320977 + ], + [ + 9.3271183, + 48.6320977 + ], + [ + 9.3271183, + 48.6320977 + ], + [ + 9.3271183, + 48.6320977 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-17T12:07:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YhahocC.jpg" + ], + "amenity": [ + "charging_station" + ], + "capacity": [ + "2" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 122506026 + } + }, + { + "id": 122501165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6809335, + 51.4000407 + ], + [ + 4.6809335, + 51.4000407 + ], + [ + 4.6809335, + 51.4000407 + ], + [ + 4.6809335, + 51.4000407 + ], + [ + 4.6809335, + 51.4000407 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "itchyenscratchy", + "uid": "16294949", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T10:04:43Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 122501165 + } + }, + { + "id": 122498455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.221397, + 48.8076975 + ], + [ + 9.221397, + 48.8076975 + ], + [ + 9.221397, + 48.8076975 + ], + [ + 9.221397, + 48.8076975 + ], + [ + 9.221397, + 48.8076975 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annika_atip:tap", + "uid": "15923056", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T09:03:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9824824866": "testing point" + }, + "id": 122498455 + } + }, + { + "id": 122494778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-17T07:31:46Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "denotation": [ + "avenue" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122494778 + } + }, + { + "id": 122492727, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9952776, + 48.499564 + ], + [ + 8.9978336, + 48.499564 + ], + [ + 8.9978336, + 48.5014061 + ], + [ + 8.9952776, + 48.5014061 + ], + [ + 8.9952776, + 48.499564 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-17T06:39:23Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "garden" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q26899", + "Q46871", + "Q47161" + ] + }, + "create": 4, + "modify": 9, + "delete": 0, + "area": 0.00000470840759999406, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 17, + "create": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 14, + "change_within_50m": 3 + }, + "id": 122492727 + } + }, + { + "id": 122488273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.509301, + -31.9103469 + ], + [ + -71.509301, + -31.9103469 + ], + [ + -71.509301, + -31.9103469 + ], + [ + -71.509301, + -31.9103469 + ], + [ + -71.509301, + -31.9103469 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T04:03:20Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ccZgA4a.jpg" + ], + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q290967" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 122488273 + } + }, + { + "id": 122486466, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.6765481, + -39.1032046 + ], + [ + -72.6755476, + -39.1032046 + ], + [ + -72.6755476, + -39.1029944 + ], + [ + -72.6765481, + -39.1029944 + ], + [ + -72.6765481, + -39.1032046 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Edny", + "uid": "16299351", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T01:43:56Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved", + "needleleaved" + ], + "denotation": [ + "park" + ], + "leaf_cycle": [ + "evergreen", + "deciduous" + ], + "species:wikidata": [ + "Q1107183", + "Q61105", + "Q156687", + "Q26899" + ] + }, + "create": 0, + "modify": 12, + "delete": 0, + "area": 2.10305099998677e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 15, + "locale": "es", + "imagery": "osm" + }, + "id": 122486466 + } + }, + { + "id": 122485848, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.565468, + -37.0942463 + ], + [ + -72.565468, + -37.0942463 + ], + [ + -72.565468, + -37.0942463 + ], + [ + -72.565468, + -37.0942463 + ], + [ + -72.565468, + -37.0942463 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-17T00:40:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/MeK07D5.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 122485848 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-18.json b/Docs/Tools/stats/stats.2022-6-18.json new file mode 100644 index 0000000000..9874fa2a94 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-18.json @@ -0,0 +1,1154 @@ +{ + "features": [ + { + "id": 122560842, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3919891, + 50.8330631 + ], + [ + 4.3997536, + 50.8330631 + ], + [ + 4.3997536, + 50.8387971 + ], + [ + 4.3919891, + 50.8387971 + ], + [ + 4.3919891, + 50.8330631 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DAKAR01", + "uid": "14345865", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T21:00:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.0000445216430000326, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "locale": "fr", + "imagery": "AGIV", + "deletion": 3, + "deletion:node/9408613172": "not found", + "deletion:node/9408613173": "not found", + "deletion:node/9408656868": "not found" + }, + "id": 122560842 + } + }, + { + "id": 122551662, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.348199, + 54.4475529 + ], + [ + -0.9611895, + 54.4475529 + ], + [ + -0.9611895, + 54.5819933 + ], + [ + -1.348199, + 54.5819933 + ], + [ + -1.348199, + 54.4475529 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-356021359", + "name": "Middlesbrough Road", + "osm_id": 356021359, + "reasons": [ + 91 + ], + "version": 5, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T15:49:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "trunk", + "primary", + "tertiary", + "unclassified", + "residential" + ], + "name:etymology:wikidata": [ + "Q171866", + "Q2929357", + "Q20972980", + "Q641274", + "Q207380", + "Q667", + "Q6553810", + "Q5951097", + "Q1193749" + ] + }, + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.052029711983801, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 93, + "locale": "en", + "imagery": "osm" + }, + "id": 122551662 + } + }, + { + "id": 122550540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7314569, + 45.1819934 + ], + [ + 5.7342598, + 45.1819934 + ], + [ + 5.7342598, + 45.1821399 + ], + [ + 5.7314569, + 45.1821399 + ], + [ + 5.7314569, + 45.1819934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "camagrr", + "uid": "14089990", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T15:09:57Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 3, + "modify": 0, + "delete": 0, + "area": 4.10624849998869e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "create": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 122550540 + } + }, + { + "id": 122549736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2705637, + 47.7951175 + ], + [ + -4.2705637, + 47.7951175 + ], + [ + -4.2705637, + 47.7951175 + ], + [ + -4.2705637, + 47.7951175 + ], + [ + -4.2705637, + 47.7951175 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T14:44:33Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "Freeform field used for access - doublecheck the value" + ], + "level": [ + "0" + ], + "access": [ + "Uniquement durant les offices" + ], + "wheelchair": [ + "limited" + ], + "survey:date": [ + "2022-12-06" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 4 + }, + "id": 122549736 + } + }, + { + "id": 122547293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3312751, + 48.6262617 + ], + [ + 9.3312751, + 48.6262617 + ], + [ + 9.3312751, + 48.6262617 + ], + [ + 9.3312751, + 48.6262617 + ], + [ + 9.3312751, + 48.6262617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T13:28:09Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/inOvosf.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 122547293 + } + }, + { + "id": 122546842, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9700075, + 48.0604674 + ], + [ + -2.9442436, + 48.0604674 + ], + [ + -2.9442436, + 48.0829517 + ], + [ + -2.9700075, + 48.0829517 + ], + [ + -2.9700075, + 48.0604674 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T13:13:47Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary", + "residential", + "pedestrian" + ], + "name:etymology:wikidata": [ + "Q46490", + "Q983629", + "Q755", + "Q26026", + "Q754863", + "Q316536", + "Q2946681", + "Q166171", + "Q312391" + ] + }, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.000579283256770051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 18, + "locale": "fr", + "imagery": "osm" + }, + "id": 122546842 + } + }, + { + "id": 122546812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7022171, + 49.2752682 + ], + [ + -0.7022171, + 49.2752682 + ], + [ + -0.7022171, + 49.2752682 + ], + [ + -0.7022171, + 49.2752682 + ], + [ + -0.7022171, + 49.2752682 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T13:13:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 122546812 + } + }, + { + "id": 122545077, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.8167698, + 49.4154719 + ], + [ + 6.8643013, + 49.4154719 + ], + [ + 6.8643013, + 49.4389674 + ], + [ + 6.8167698, + 49.4389674 + ], + [ + 6.8167698, + 49.4154719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rlp839", + "uid": "1687312", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T12:29:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00111677635825013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 7, + "create": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 122545077 + } + }, + { + "id": 122543157, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2127069, + 51.0381417 + ], + [ + 3.2129567, + 51.0381417 + ], + [ + 3.2129567, + 51.0382825 + ], + [ + 3.2127069, + 51.0382825 + ], + [ + 3.2127069, + 51.0381417 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T11:33:37Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@cuisinekwizien.be" + ], + "phone": [ + "+32 51 43 81 78" + ], + "amenity": [ + "restaurant" + ], + "website": [ + "https://www.cuisinekwizien.be/" + ], + "building": [ + "yes" + ], + "delivery": [ + "no" + ], + "takeaway": [ + "no" + ], + "wheelchair": [ + "limited" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Tu 12:00-14:00; Th-Fr 12:00-14:00, 19:00-21:00; Sa 19:00-21:00" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 3.51718400009754e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "id": 122543157 + } + }, + { + "id": 122539368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.3492832, + 43.6133601 + ], + [ + 1.3492832, + 43.6133601 + ], + [ + 1.3492832, + 43.6133601 + ], + [ + 1.3492832, + 43.6133601 + ], + [ + 1.3492832, + 43.6133601 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T09:42:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 122539368 + } + }, + { + "id": 122536617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1445189, + 51.1716739 + ], + [ + 4.1445189, + 51.1716739 + ], + [ + 4.1445189, + 51.1716739 + ], + [ + 4.1445189, + 51.1716739 + ], + [ + 4.1445189, + 51.1716739 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T08:32:50Z", + "reviewed_features": [], + "tag_changes": { + "automatic_door": [ + "motion" + ], + "wikimedia_commons": [ + "File:Station Sint-Niklaas Gebouw.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm", + "link-image": 1 + }, + "id": 122536617 + } + }, + { + "id": 122535437, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.1161631, + 46.5735192 + ], + [ + -0.551544, + 46.5735192 + ], + [ + -0.551544, + 47.4236221 + ], + [ + -1.1161631, + 47.4236221 + ], + [ + -1.1161631, + 46.5735192 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T07:58:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/urDbrZw.jpg" + ], + "amenity": [ + "sanitary_dump_station" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.479984334305392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 122535437 + } + }, + { + "id": 122535005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.7720067, + 50.0466357 + ], + [ + 7.7720485, + 50.0466357 + ], + [ + 7.7720485, + 50.0466736 + ], + [ + 7.7720067, + 50.0466736 + ], + [ + 7.7720067, + 50.0466357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-18T07:45:22Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/lzsowY8.jpg" + ], + "seats": [ + "2" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "tourism": [ + "viewpoint" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "32" + ], + "survey:date": [ + "2022-06-18" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.58421999980119e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "EsriWorldImagery", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 122535005 + } + }, + { + "id": 122533419, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.7502177, + 54.508819 + ], + [ + -1.3364187, + 54.508819 + ], + [ + -1.3364187, + 54.8861873 + ], + [ + -1.7502177, + 54.8861873 + ], + [ + -1.7502177, + 54.508819 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-18T06:48:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "community_centre", + "school" + ], + "highway": [ + "unclassified", + "primary", + "secondary", + "residential", + "footway" + ], + "name:etymology:wikidata": [ + "Q6032672", + "Q179815", + "Q2462654", + "Q154938", + "Q6703353", + "Q662172", + "Q173869", + "Q692", + "Q5683", + "Q45546", + "Q179126", + "Q170208", + "Q25348", + "Q2724806", + "Q55805", + "Q41994", + "Q18789", + "Q19682", + "Q216373", + "Q19714", + "Q550995", + "Q19686", + "Q503262", + "Q127332", + "Q211519", + "Q37103", + "Q3243105", + "Q42462", + "Q2488588", + "Q4876218", + "Q34384", + "Q128550", + "Q36322", + "Q12004", + "Q131113", + "Q147184", + "Q2531508", + "Q866339", + "Q4831050", + "Q5051748", + "Q7682582", + "Q25403", + "Q79972" + ] + }, + "create": 0, + "modify": 103, + "delete": 0, + "area": 0.1561546251717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 123, + "locale": "en", + "imagery": "osm" + }, + "id": 122533419 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-19.json b/Docs/Tools/stats/stats.2022-6-19.json new file mode 100644 index 0000000000..8c0efd0458 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-19.json @@ -0,0 +1,1447 @@ +{ + "features": [ + { + "id": 122596396, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0634625, + 50.9218858 + ], + [ + 4.0634625, + 50.9218858 + ], + [ + 4.0634625, + 50.9218858 + ], + [ + 4.0634625, + 50.9218858 + ], + [ + 4.0634625, + 50.9218858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T23:37:31Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/vWt1pYl.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122596396 + } + }, + { + "id": 122594891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.8664639, + 52.4709723 + ], + [ + 12.8738566, + 52.4709723 + ], + [ + 12.8738566, + 52.5086948 + ], + [ + 12.8664639, + 52.5086948 + ], + [ + 12.8664639, + 52.4709723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nkarl7635atgmailcom", + "uid": "16319307", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-19T21:39:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.000278871125750025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122594891 + } + }, + { + "id": 122592354, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0907022, + 52.0947968 + ], + [ + 5.0907022, + 52.0947968 + ], + [ + 5.0907022, + 52.0947968 + ], + [ + 5.0907022, + 52.0947968 + ], + [ + 5.0907022, + 52.0947968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hackthemap", + "uid": "8722959", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-19T19:56:14Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:island": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122592354 + } + }, + { + "id": 122592126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6843392, + 50.1365595 + ], + [ + 8.733009, + 50.1365595 + ], + [ + 8.733009, + 50.1644248 + ], + [ + 8.6843392, + 50.1644248 + ], + [ + 8.6843392, + 50.1365595 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hackthemap", + "uid": "8722959", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-19T19:48:18Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "sports_centre" + ], + "building": [ + "yes" + ], + "climbing:sport": [ + "no" + ], + "climbing:boulder": [ + "yes" + ], + "climbing:toprope": [ + "no" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00135619857794007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "id": 122592126 + } + }, + { + "id": 122591482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3342117, + 48.6265894 + ], + [ + 9.3400298, + 48.6265894 + ], + [ + 9.3400298, + 48.6284135 + ], + [ + 9.3342117, + 48.6284135 + ], + [ + 9.3342117, + 48.6265894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T19:22:27Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/eyewny7.jpg", + "https://i.imgur.com/njdXXrW.jpg", + "https://i.imgur.com/5ZQhDkc.jpg" + ], + "amenity": [ + "charging_station" + ], + "capacity": [ + "1" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000106127962100034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 3 + }, + "id": 122591482 + } + }, + { + "id": 122587197, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9418156, + 51.3168686 + ], + [ + 4.9418156, + 51.3168686 + ], + [ + 4.9418156, + 51.3168686 + ], + [ + 4.9418156, + 51.3168686 + ], + [ + 4.9418156, + 51.3168686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T17:08:03Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/XJluYWN.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 122587197 + } + }, + { + "id": 122586466, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 103.0384728, + 13.3538336 + ], + [ + 103.0384728, + 13.3538336 + ], + [ + 103.0384728, + 13.3538336 + ], + [ + 103.0384728, + 13.3538336 + ], + [ + 103.0384728, + 13.3538336 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "choengbiy", + "uid": "16317899", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-19T16:48:16Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2 + }, + "id": 122586466 + } + }, + { + "id": 122586234, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2283248, + 48.6778739 + ], + [ + 9.2283248, + 48.6778739 + ], + [ + 9.2283248, + 48.6778739 + ], + [ + 9.2283248, + 48.6778739 + ], + [ + 9.2283248, + 48.6778739 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T16:41:11Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "supermarket" + ], + "image": [ + "https://i.imgur.com/FS03Tu6.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 122586234 + } + }, + { + "id": 122580429, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2164547, + 51.1950847 + ], + [ + 3.2164547, + 51.1950847 + ], + [ + 3.2164547, + 51.1950847 + ], + [ + 3.2164547, + 51.1950847 + ], + [ + 3.2164547, + 51.1950847 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.1", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:47:45Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "hello@mindandmakerspace.com" + ], + "phone": [ + "+32 50 68 26 95" + ], + "leisure": [ + "hackerspace" + ], + "service:3dprinter": [ + "yes" + ], + "service:lasercutter": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/hackerspaces.html", + "theme": "hackerspaces", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "id": 122580429 + } + }, + { + "id": 122580276, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8504051, + 60.327834 + ], + [ + 24.8525859, + 60.327834 + ], + [ + 24.8525859, + 60.3295044 + ], + [ + 24.8504051, + 60.3295044 + ], + [ + 24.8504051, + 60.327834 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scalarik", + "uid": "186981", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:43:16Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "highway": [ + "crossing", + "street_lamp", + "cycleway" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "straight_mast" + ], + "separation": [ + "kerb" + ], + "smoothness": [ + "excellent" + ], + "tactile_paving": [ + "no" + ], + "crossing:island": [ + "no" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000364280831999092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 11, + "locale": "en", + "imagery": "osm", + "change_within_25m": 9, + "change_within_50m": 2 + }, + "id": 122580276 + } + }, + { + "id": 122580177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8521056, + 60.3293556 + ], + [ + 24.8521056, + 60.3293556 + ], + [ + 24.8521056, + 60.3293556 + ], + [ + 24.8521056, + 60.3293556 + ], + [ + 24.8521056, + 60.3293556 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scalarik", + "uid": "186981", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:40:13Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "needleleaved" + ], + "denotation": [ + "park" + ], + "leaf_cycle": [ + "evergreen" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 122580177 + } + }, + { + "id": 122580108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8520654, + 60.3293443 + ], + [ + 24.8521403, + 60.3293443 + ], + [ + 24.8521403, + 60.3293661 + ], + [ + 24.8520654, + 60.3293661 + ], + [ + 24.8520654, + 60.3293443 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scalarik", + "uid": "186981", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:38:10Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "green" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.63281999987357e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 122580108 + } + }, + { + "id": 122580084, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8521223, + 60.3292124 + ], + [ + 24.8521223, + 60.3292124 + ], + [ + 24.8521223, + 60.3292124 + ], + [ + 24.8521223, + 60.3292124 + ], + [ + 24.8521223, + 60.3292124 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scalarik", + "uid": "186981", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:37:01Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122580084 + } + }, + { + "id": 122579644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8513636, + 60.3290519 + ], + [ + 24.852358, + 60.3290519 + ], + [ + 24.852358, + 60.3294715 + ], + [ + 24.8513636, + 60.3294715 + ], + [ + 24.8513636, + 60.3290519 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scalarik", + "uid": "186981", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:24:24Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "barrier": [ + "fence" + ], + "leisure": [ + "playground" + ], + "surface": [ + "fine_gravel" + ], + "operator": [ + "Vantaan kaupunki" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.17250239993558e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 122579644 + } + }, + { + "id": 122579325, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8492879, + 60.3288397 + ], + [ + 24.8503267, + 60.3288397 + ], + [ + 24.8503267, + 60.3295204 + ], + [ + 24.8492879, + 60.3295204 + ], + [ + 24.8492879, + 60.3288397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scalarik", + "uid": "186981", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T13:16:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "yes" + ], + "bicycle_parking": [ + "wall_loops" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.07111159996447e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 4 + }, + "id": 122579325 + } + }, + { + "id": 122578230, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.9693098, + 40.3543024 + ], + [ + 28.9013204, + 40.3543024 + ], + [ + 28.9013204, + 41.0236898 + ], + [ + 27.9693098, + 41.0236898 + ], + [ + 27.9693098, + 40.3543024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bbtns1", + "uid": "5132923", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T12:44:41Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ], + "bollard": [ + "flexible" + ], + "highway": [ + "traffic_signals", + "crossing" + ], + "crossing": [ + "unmarked", + "uncontrolled", + "marked" + ], + "tactile_paving": [ + "no", + "yes" + ], + "button_operated": [ + "yes" + ], + "crossing:island": [ + "no", + "yes" + ], + "maxwidth:physical": [ + "0.3" + ], + "red_turn:right:bicycle": [ + "no" + ], + "red_turn:straight:bicycle": [ + "no" + ] + }, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.623876152306437, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra", + "theme": "cycle_infra", + "answer": 37, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 6 + }, + "id": 122578230 + } + }, + { + "id": 122576949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7540083, + 53.094533 + ], + [ + 13.7540083, + 53.094533 + ], + [ + 13.7540083, + 53.094533 + ], + [ + 13.7540083, + 53.094533 + ], + [ + 13.7540083, + 53.094533 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T12:04:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122576949 + } + }, + { + "id": 122574235, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4726843, + 49.1047123 + ], + [ + 8.474601, + 49.1047123 + ], + [ + 8.474601, + 49.1048168 + ], + [ + 8.4726843, + 49.1048168 + ], + [ + 8.4726843, + 49.1047123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "k4pl4n", + "uid": "11229531", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-19T10:34:46Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "sidewalk:left": [ + "yes" + ], + "sidewalk:right": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.00295149998274e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sidewalks.html", + "theme": "sidewalks", + "answer": 2, + "locale": "en", + "imagery": "EsriWorldImageryClarity" + }, + "id": 122574235 + } + }, + { + "id": 122571316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.2260245, + 43.6437654 + ], + [ + 1.2260245, + 43.6437654 + ], + [ + 1.2260245, + 43.6437654 + ], + [ + 1.2260245, + 43.6437654 + ], + [ + 1.2260245, + 43.6437654 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-19T08:53:12Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "id": 122571316 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-20.json b/Docs/Tools/stats/stats.2022-6-20.json new file mode 100644 index 0000000000..4c4fada9d6 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-20.json @@ -0,0 +1,1111 @@ +{ + "features": [ + { + "id": 122640479, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0376711, + 50.7742844 + ], + [ + 3.0376711, + 50.7742844 + ], + [ + 3.0376711, + 50.7742844 + ], + [ + 3.0376711, + 50.7742844 + ], + [ + 3.0376711, + 50.7742844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-20T22:05:37Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9834595164": "source: https://osm.org/note/3156436" + }, + "id": 122640479 + } + }, + { + "id": 122639064, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.373757, + 50.9509636 + ], + [ + 5.373757, + 50.9509636 + ], + [ + 5.373757, + 50.9509636 + ], + [ + 5.373757, + 50.9509636 + ], + [ + 5.373757, + 50.9509636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T20:57:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6 + }, + "id": 122639064 + } + }, + { + "id": 122638880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0748208, + 51.1042735 + ], + [ + 5.0748208, + 51.1042735 + ], + [ + 5.0748208, + 51.1042735 + ], + [ + 5.0748208, + 51.1042735 + ], + [ + 5.0748208, + 51.1042735 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T20:50:11Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "import:node/9834337616": "source: https://osm.org/note/3143410" + }, + "id": 122638880 + } + }, + { + "id": 122636657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3553743, + 50.9451473 + ], + [ + 3.3553743, + 50.9451473 + ], + [ + 3.3553743, + 50.9451473 + ], + [ + 3.3553743, + 50.9451473 + ], + [ + 3.3553743, + 50.9451473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T19:34:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/e1pxHw5.jpg" + ], + "amenity": [ + "post_box" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122636657 + } + }, + { + "id": 122635551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3550763, + 50.9362062 + ], + [ + 3.4739958, + 50.9362062 + ], + [ + 3.4739958, + 50.9455926 + ], + [ + 3.3550763, + 50.9455926 + ], + [ + 3.3550763, + 50.9362062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T18:54:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/b1WU9lT.jpg" + ], + "amenity": [ + "charging_station" + ], + "image:0": [ + "https://i.imgur.com/6oMfJt3.jpg" + ], + "image:1": [ + "https://i.imgur.com/7dxtbEX.jpg" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00111622599479962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "id": 122635551 + } + }, + { + "id": 122634743, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2875906, + 50.9327435 + ], + [ + 3.4744269, + 50.9327435 + ], + [ + 3.4744269, + 50.9490403 + ], + [ + 3.2875906, + 50.9490403 + ], + [ + 3.2875906, + 50.9327435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T18:25:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/oBrJtqy.jpg", + "https://i.imgur.com/6VUJuvK.jpg", + "https://i.imgur.com/idVtHWJ.jpg", + "https://i.imgur.com/nTkNjAy.jpg" + ], + "route": [ + "bicycle" + ], + "amenity": [ + "parking", + "toilets", + "bench", + "charging_station" + ], + "highway": [ + "residential" + ], + "leisure": [ + "picnic_table", + "playground" + ], + "building": [ + "yes" + ], + "mapillary": [ + "253560946526500" + ] + }, + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.00304483381383985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 15, + "import:node/9834136592": "source: https://osm.org/note/3099197", + "import:node/9834158215": "source: https://osm.org/note/3156368" + }, + "id": 122634743 + } + }, + { + "id": 122634050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3302641, + 53.2207045 + ], + [ + 6.3302641, + 53.2207045 + ], + [ + 6.3302641, + 53.2207045 + ], + [ + 6.3302641, + 53.2207045 + ], + [ + 6.3302641, + 53.2207045 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9834085168", + "osm_id": 9834085168, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T17:55:31Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 122634050 + } + }, + { + "id": 122633908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3303288, + 53.2192006 + ], + [ + 6.3319471, + 53.2192006 + ], + [ + 6.3319471, + 53.2195119 + ], + [ + 6.3303288, + 53.2195119 + ], + [ + 6.3303288, + 53.2192006 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T17:50:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.03776789999728e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "id": 122633908 + } + }, + { + "id": 122633789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3316374, + 53.2182724 + ], + [ + 6.3325207, + 53.2182724 + ], + [ + 6.3325207, + 53.2191517 + ], + [ + 6.3316374, + 53.2191517 + ], + [ + 6.3316374, + 53.2182724 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T17:45:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 7.76685690000935e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 6, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 8 + }, + "id": 122633789 + } + }, + { + "id": 122633579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3348922, + 53.2143438 + ], + [ + 6.3348922, + 53.2143438 + ], + [ + 6.3348922, + 53.2143438 + ], + [ + 6.3348922, + 53.2143438 + ], + [ + 6.3348922, + 53.2143438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T17:34:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122633579 + } + }, + { + "id": 122623273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.9581727, + 56.3395537 + ], + [ + 43.95821, + 56.3395537 + ], + [ + 43.95821, + 56.3395748 + ], + [ + 43.9581727, + 56.3395748 + ], + [ + 43.9581727, + 56.3395537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T13:00:00Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9M8IOMO.jpg", + "https://i.imgur.com/tE8ID5X.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "capacity": [ + "10" + ], + "bicycle_parking": [ + "wall_loops", + "stands" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 7.87029999973087e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 9 + }, + "id": 122623273 + } + }, + { + "id": 122623245, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bernhard Pranz", + "uid": "8164818", + "editor": "iD 2.21.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "basemap.at Orthofoto", + "date": "2022-06-20T12:59:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ], + "cuisine": [ + "heuriger" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://www.openstreetmap.org/edit", + "locale": "de", + "hashtags": "#MapComplete;#food", + "changesets_count": 2271 + }, + "id": 122623245 + } + }, + { + "id": 122623147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ], + [ + 16.1671892, + 47.954379 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bernhard Pranz", + "uid": "8164818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-20T12:57:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 122623147 + } + }, + { + "id": 122618532, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.4424681, + 40.1295472 + ], + [ + -76.4424681, + 40.1295472 + ], + [ + -76.4424681, + 40.1295472 + ], + [ + -76.4424681, + 40.1295472 + ], + [ + -76.4424681, + 40.1295472 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "millerdev", + "uid": "16323920", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-20T11:32:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "Mapbox" + }, + "id": 122618532 + } + }, + { + "id": 122603107, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ], + [ + 8.9965647, + 48.4999741 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-20T06:10:37Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q158746" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122603107 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-21.json b/Docs/Tools/stats/stats.2022-6-21.json new file mode 100644 index 0000000000..4921e1f9cf --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-21.json @@ -0,0 +1,759 @@ +{ + "features": [ + { + "id": 122681879, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4459796, + 52.4742489 + ], + [ + 13.4459796, + 52.4742489 + ], + [ + 13.4459796, + 52.4742489 + ], + [ + 13.4459796, + 52.4742489 + ], + [ + 13.4459796, + 52.4742489 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-21T19:07:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 122681879 + } + }, + { + "id": 122680288, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.7987028, + 41.6148739 + ], + [ + -4.7987028, + 41.6148739 + ], + [ + -4.7987028, + 41.6148739 + ], + [ + -4.7987028, + 41.6148739 + ], + [ + -4.7987028, + 41.6148739 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8867327536", + "name": "Ramón y Cajal- Antonio de Ulloa", + "osm_id": 8867327536, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": {} + } + ], + "user": "tigregti", + "uid": "15144964", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-21T18:27:24Z", + "reviewed_features": [], + "tag_changes": { + "emergency": [ + "fire_hydrant" + ], + "disused:emergency": [ + "fire_hydrant" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 3, + "locale": "en", + "imagery": "HDM_HOT", + "change_within_25m": 3 + }, + "id": 122680288 + } + }, + { + "id": 122670794, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2157004, + 51.1934736 + ], + [ + 3.2186749, + 51.1934736 + ], + [ + 3.2186749, + 51.1951561 + ], + [ + 3.2157004, + 51.1951561 + ], + [ + 3.2157004, + 51.1934736 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-21T14:02:26Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "university", + "college" + ], + "website": [ + "https://www.kuleuven.be/campussen/campus-brugge" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000500459625000357, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "education", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122670794 + } + }, + { + "id": 122664088, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5338753, + 53.2409037 + ], + [ + 6.5338753, + 53.2409037 + ], + [ + 6.5338753, + 53.2409037 + ], + [ + 6.5338753, + 53.2409037 + ], + [ + 6.5338753, + 53.2409037 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-21T11:44:09Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122664088 + } + }, + { + "id": 122661909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.988348, + 51.160445 + ], + [ + 4.9900166, + 51.160445 + ], + [ + 4.9900166, + 51.1615324 + ], + [ + 4.988348, + 51.1615324 + ], + [ + 4.988348, + 51.160445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-21T11:01:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ], + "highway": [ + "pedestrian" + ], + "leisure": [ + "outdoor_seating" + ], + "building": [ + "yes", + "commercial", + "house", + "roof" + ], + "historic": [ + "yes" + ], + "addr:housenumber": [ + "77;77A", + "77" + ], + "source:geometry:ref": [ + "Gbg/1692821", + "Gbg/1693523", + "Gbg/1693525", + "Gbg/5654012", + "Gbg/5654003", + "Gbg/1694221", + "Gbg/1694222", + "Gbg/1692822" + ], + "source:geometry:date": [ + "2009-06-05", + "2016-07-28", + "2017-11-20" + ] + }, + "create": 24, + "modify": 118, + "delete": 1, + "area": 0.0000018144356399925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 112, + "theme": "grb", + "answer": 4, + "delete": 1, + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 16 + }, + "id": 122661909 + } + }, + { + "id": 122655153, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9738208, + 50.9033628 + ], + [ + 5.1239452, + 50.9033628 + ], + [ + 5.1239452, + 51.1617729 + ], + [ + 4.9738208, + 51.1617729 + ], + [ + 4.9738208, + 50.9033628 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-21T08:48:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "townhall" + ], + "highway": [ + "service", + "footway" + ], + "building": [ + "roof", + "yes", + "house", + "construction", + "apartments", + "shed" + ], + "source:geometry:ref": [ + "Gbg/1693039", + "Gbg/1694801", + "Gbg/1692619", + "Gbg/1694796", + "Gbg/1694865", + "Gbg/1694864", + "Gbg/5123217", + "Gbg/1695756", + "Gbg/5123218", + "Gbg/1705428", + "Gbg/1706602", + "Gbg/1695034", + "Gbg/1695033", + "Gbg/1692618", + "Gbg/6150261", + "Gbg/6155194", + "Gbg/1694797", + "Gbg/1694814", + "Gbg/5404466", + "Gbg/1694809", + "Gbg/5124476", + "Gbg/1694822", + "Gba/110941", + "Gba/551056" + ], + "source:geometry:date": [ + "2009-06-05", + "2019-07-09", + "2015-03-30", + "2017-11-20", + "2021-07-05", + "2009-09-21", + "2021-10-22" + ] + }, + "create": 910, + "modify": 417, + "delete": 4, + "area": 0.0387936612164407, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 393, + "theme": "grb", + "answer": 1, + "delete": 4, + "import": 107, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "id": 122655153 + } + }, + { + "id": 122654914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9859398, + 51.1614131 + ], + [ + 4.9866147, + 51.1614131 + ], + [ + 4.9866147, + 51.1617837 + ], + [ + 4.9859398, + 51.1617837 + ], + [ + 4.9859398, + 51.1614131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-21T08:43:21Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "170", + "252", + "355" + ], + "survey:date": [ + "2022-06-21" + ] + }, + "create": 2, + "modify": 25, + "delete": 0, + "area": 2.50117940002443e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 36, + "create": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 122654914 + } + }, + { + "id": 122647591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9942575, + 48.4989551 + ], + [ + 8.9964013, + 48.4989551 + ], + [ + 8.9964013, + 48.4999939 + ], + [ + 8.9942575, + 48.4999939 + ], + [ + 8.9942575, + 48.4989551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-21T05:40:12Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "denotation": [ + "park", + "garden" + ], + "species:wikidata": [ + "Q145954", + "Q158785" + ] + }, + "create": 4, + "modify": 9, + "delete": 0, + "area": 0.00000222697943999288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 13, + "create": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 13 + }, + "id": 122647591 + } + }, + { + "id": 122643179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ], + [ + -73.2381516, + -39.8439309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-21T01:54:30Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q1486147" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr" + }, + "id": 122643179 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-22.json b/Docs/Tools/stats/stats.2022-6-22.json new file mode 100644 index 0000000000..758d9b45d2 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-22.json @@ -0,0 +1,1574 @@ +{ + "features": [ + { + "id": 122728566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2191963, + 51.2141962 + ], + [ + 3.2247595, + 51.2141962 + ], + [ + 3.2247595, + 51.2168146 + ], + [ + 3.2191963, + 51.2168146 + ], + [ + 3.2191963, + 51.2141962 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T20:41:08Z", + "reviewed_features": [], + "tag_changes": { + "school": [ + "middle_secondary;upper_secondary", + "primary", + "lower_secondary" + ], + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000145666828799757, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 6 + }, + "id": 122728566 + } + }, + { + "id": 122728251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T20:32:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "diet:vegan": [ + "limited" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 122728251 + } + }, + { + "id": 122723547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0319857, + 51.1057435 + ], + [ + 4.0872377, + 51.1057435 + ], + [ + 4.0872377, + 51.1232883 + ], + [ + 4.0319857, + 51.1232883 + ], + [ + 4.0319857, + 51.1057435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-22T18:22:19Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ] + }, + "create": 655, + "modify": 0, + "delete": 0, + "area": 0.000969385289599786, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 120, + "locale": "nl", + "imagery": "AIV_Wegenregister" + }, + "id": 122723547 + } + }, + { + "id": 122723250, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0862803, + 51.1115059 + ], + [ + 4.0953338, + 51.1115059 + ], + [ + 4.0953338, + 51.1142853 + ], + [ + 4.0862803, + 51.1142853 + ], + [ + 4.0862803, + 51.1115059 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-22T18:12:53Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "shed", + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/6676230" + ], + "source:geometry:date": [ + "2019-09-30", + "2012-02-20" + ] + }, + "create": 124, + "modify": 9, + "delete": 0, + "area": 0.0000251632979000112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "move": 8, + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 122723250 + } + }, + { + "id": 122723131, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3569772, + 51.0699609 + ], + [ + 3.3569772, + 51.0699609 + ], + [ + 3.3569772, + 51.0699609 + ], + [ + 3.3569772, + 51.0699609 + ], + [ + 3.3569772, + 51.0699609 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-22T18:09:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VwL5gTM.jpg" + ], + "amenity": [ + "post_box" + ], + "image:0": [ + "https://i.imgur.com/SvFF6f4.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_5000m": 2 + }, + "id": 122723131 + } + }, + { + "id": 122722357, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3571548, + 51.0696164 + ], + [ + 3.3571819, + 51.0696164 + ], + [ + 3.3571819, + 51.0696437 + ], + [ + 3.3571548, + 51.0696437 + ], + [ + 3.3571548, + 51.0696164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T17:46:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 7.3982999998223e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "move": 1, + "theme": "waste", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 9, + "move:node/9839412029": "improve_accuracy" + }, + "id": 122722357 + } + }, + { + "id": 122721308, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ], + [ + 3.7061055, + 51.0302433 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T17:19:31Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "inof@labicyclettepastabar.be" + ], + "image": [ + "https://i.imgur.com/8t3Eblq.jpg" + ], + "phone": [ + "+32 468 13 09 20" + ], + "amenity": [ + "fast_food" + ], + "website": [ + "https://la-bicyclette.be" + ], + "wheelchair": [ + "limited" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Th 17:15-20:30; Fr-Sa 17:15-21:00;" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "yes" + ], + "service:electricity": [ + "yes" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 9 + }, + "id": 122721308 + } + }, + { + "id": 122717917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0295793, + 38.8599969 + ], + [ + 0.0295793, + 38.8599969 + ], + [ + 0.0295793, + 38.8599969 + ], + [ + 0.0295793, + 38.8599969 + ], + [ + 0.0295793, + 38.8599969 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T15:45:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_disposal" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 122717917 + } + }, + { + "id": 122714144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7093993, + 51.0220244 + ], + [ + 3.7202272, + 51.0220244 + ], + [ + 3.7202272, + 51.0280527 + ], + [ + 3.7093993, + 51.0280527 + ], + [ + 3.7093993, + 51.0220244 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T14:00:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "university" + ], + "isced:2011:level": [ + "bachelor;master;doctorate" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000652738295700457, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "id": 122714144 + } + }, + { + "id": 122711801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0211198, + 38.8166826 + ], + [ + 0.0237013, + 38.8166826 + ], + [ + 0.0237013, + 38.8189087 + ], + [ + 0.0211198, + 38.8189087 + ], + [ + 0.0211198, + 38.8166826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T13:05:59Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "mall" + ], + "building": [ + "yes" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000574667715000375, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 6, + "create": 3, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 122711801 + } + }, + { + "id": 122710050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7500581, + 51.0603551 + ], + [ + 3.7500581, + 51.0603551 + ], + [ + 3.7500581, + 51.0603551 + ], + [ + 3.7500581, + 51.0603551 + ], + [ + 3.7500581, + 51.0603551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T12:27:08Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "pitch" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 2 + }, + "id": 122710050 + } + }, + { + "id": 122708926, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0201735, + 38.8168984 + ], + [ + 0.0244924, + 38.8168984 + ], + [ + 0.0244924, + 38.8183412 + ], + [ + 0.0201735, + 38.8183412 + ], + [ + 0.0201735, + 38.8168984 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T12:01:14Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "socket:type2": [ + "1" + ], + "socket:chademo": [ + "1" + ], + "socket:type2_combo": [ + "1" + ] + }, + "create": 1, + "modify": 12, + "delete": 0, + "area": 0.00000623130891999794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 14, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 9, + "change_within_500m": 5 + }, + "id": 122708926 + } + }, + { + "id": 122706352, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6465344, + 44.8022722 + ], + [ + -0.6465344, + 44.8022722 + ], + [ + -0.6465344, + 44.8022722 + ], + [ + -0.6465344, + 44.8022722 + ], + [ + -0.6465344, + 44.8022722 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-22T11:03:23Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "no" + ], + "opening_hours": [ + "24/7" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "id": 122706352 + } + }, + { + "id": 122703683, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3447361, + 50.948067 + ], + [ + 5.344776, + 50.948067 + ], + [ + 5.344776, + 50.9481079 + ], + [ + 5.3447361, + 50.9481079 + ], + [ + 5.3447361, + 50.948067 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T09:59:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 1.63190999979146e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "move": 1, + "theme": "food", + "answer": 9, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10, + "move:node/9838328438": "improve_accuracy" + }, + "id": 122703683 + } + }, + { + "id": 122703540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9839678, + 48.3993113 + ], + [ + 9.9839678, + 48.3993113 + ], + [ + 9.9839678, + 48.3993113 + ], + [ + 9.9839678, + 48.3993113 + ], + [ + 9.9839678, + 48.3993113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "claudia10", + "uid": "557496", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-22T09:55:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets", + "theme": "toilets", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 122703540 + } + }, + { + "id": 122697663, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3672555, + 50.9605987 + ], + [ + 5.3764991, + 50.9605987 + ], + [ + 5.3764991, + 50.9916554 + ], + [ + 5.3672555, + 50.9916554 + ], + [ + 5.3672555, + 50.9605987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T07:31:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ZcY6tFE.jpg", + "https://i.imgur.com/uknNbuo.jpg" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "82", + "80", + "71", + "147" + ], + "survey:date": [ + "2022-06-22" + ] + }, + "create": 7, + "modify": 37, + "delete": 0, + "area": 0.00028707571212002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 7, + "theme": "toerisme_vlaanderen", + "answer": 48, + "create": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 9, + "change_over_5000m": 7, + "change_within_25m": 56, + "change_within_50m": 8, + "move:node/6871835936": "improve_accuracy", + "move:node/9837972374": "improve_accuracy", + "move:node/9838005840": "improve_accuracy", + "move:node/9838020180": "improve_accuracy", + "move:node/9838037228": "improve_accuracy", + "move:node/9838061051": "improve_accuracy", + "move:node/9838148327": "improve_accuracy" + }, + "id": 122697663 + } + }, + { + "id": 122697102, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9098082, + 51.2229205 + ], + [ + 2.9237184, + 51.2229205 + ], + [ + 2.9237184, + 51.2353223 + ], + [ + 2.9098082, + 51.2353223 + ], + [ + 2.9098082, + 51.2229205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T07:20:44Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary", + "residential" + ], + "maxspeed": [ + "30" + ], + "cyclestreet": [ + "yes" + ], + "overtaking:motor_vehicle": [ + "no" + ] + }, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000172511518359987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 34, + "locale": "nl", + "imagery": "osm" + }, + "id": 122697102 + } + }, + { + "id": 122696750, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2322331, + -39.8193856 + ], + [ + -73.2306501, + -39.8193856 + ], + [ + -73.2306501, + -39.8187091 + ], + [ + -73.2322331, + -39.8187091 + ], + [ + -73.2322331, + -39.8193856 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T07:12:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jOPSD6K.jpg", + "https://i.imgur.com/CkhWjA2.jpg", + "https://i.imgur.com/FSzpg9j.jpg", + "https://i.imgur.com/ko6MRcg.jpg", + "https://i.imgur.com/3dDtaEg.jpg", + "https://i.imgur.com/Edrqmdj.jpg", + "https://i.imgur.com/wmkTLCc.jpg", + "https://i.imgur.com/YIavLmU.jpg", + "https://i.imgur.com/aQLeSzq.jpg", + "https://i.imgur.com/MVQ7MF6.jpg", + "https://i.imgur.com/qGr4DB8.jpg", + "https://i.imgur.com/NlOSYNx.jpg", + "https://i.imgur.com/9Mjhcrx.jpg", + "https://i.imgur.com/usLXWR9.jpg" + ], + "image:0": [ + "https://i.imgur.com/BlAK7kl.jpg", + "https://i.imgur.com/SViKOFn.jpg", + "https://i.imgur.com/upbVHbB.jpg" + ], + "natural": [ + "tree" + ], + "leaf_type": [ + "needleleaved", + "broadleaved" + ] + }, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00000107089949999341, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 17, + "change_within_5000m": 18 + }, + "id": 122696750 + } + }, + { + "id": 122696036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4043743, + 51.2137693 + ], + [ + 4.4050737, + 51.2137693 + ], + [ + 4.4050737, + 51.2145686 + ], + [ + 4.4043743, + 51.2145686 + ], + [ + 4.4043743, + 51.2137693 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Yann Vandamme", + "uid": "1678678", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-22T06:57:06Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.59030419998135e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 122696036 + } + }, + { + "id": 122692529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9942931, + 48.4994537 + ], + [ + 8.9944725, + 48.4994537 + ], + [ + 8.9944725, + 48.5002535 + ], + [ + 8.9942931, + 48.5002535 + ], + [ + 8.9942931, + 48.4994537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-22T05:25:46Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q47161" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.43484120000829e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122692529 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-23.json b/Docs/Tools/stats/stats.2022-6-23.json new file mode 100644 index 0000000000..b446c70651 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-23.json @@ -0,0 +1,2032 @@ +{ + "features": [ + { + "id": 122775602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2758302, + 53.211392 + ], + [ + 6.2797427, + 53.211392 + ], + [ + 6.2797427, + 53.2141752 + ], + [ + 6.2758302, + 53.2141752 + ], + [ + 6.2758302, + 53.211392 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T20:54:25Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "jankuipers@quadraten.nl", + "grootegast@sksg.nl" + ], + "phone": [ + "+31 594 612 880", + "+31 6 13932366" + ], + "amenity": [ + "school", + "kindergarten" + ], + "website": [ + "https://jankuipers.quadraten.nl/" + ], + "school:language": [ + "nl" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000108892700000131, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 5, + "change_within_5000m": 2 + }, + "id": 122775602 + } + }, + { + "id": 122775387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2668996, + 53.2066652 + ], + [ + 6.2768678, + 53.2066652 + ], + [ + 6.2768678, + 53.2126476 + ], + [ + 6.2668996, + 53.2126476 + ], + [ + 6.2668996, + 53.2066652 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T20:46:34Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "dir.christal@noorderbasis.nl", + "molenberg@quadraten.nl" + ], + "phone": [ + "+31 594 613 657", + "+31 594 612 661" + ], + "amenity": [ + "school" + ], + "website": [ + "https://www.basisschoolchristal.nl/", + "https://molenberg.quadraten.nl/" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "nl" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000596337596799318, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5, + "change_within_1000m": 6 + }, + "id": 122775387 + } + }, + { + "id": 122775052, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2514648, + 50.726025 + ], + [ + 4.2535312, + 50.726025 + ], + [ + 4.2535312, + 50.7272618 + ], + [ + 4.2514648, + 50.7272618 + ], + [ + 4.2514648, + 50.726025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T20:33:54Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000255572352000235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed", + "theme": "maxspeed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 122775052 + } + }, + { + "id": 122774261, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2098756, + 48.4952882 + ], + [ + 9.2098756, + 48.4952882 + ], + [ + 9.2098756, + 48.4952882 + ], + [ + 9.2098756, + 48.4952882 + ], + [ + 9.2098756, + 48.4952882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T20:08:11Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/52G3A7P.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 122774261 + } + }, + { + "id": 122774034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3417917, + 48.6285894 + ], + [ + 9.3417917, + 48.6285894 + ], + [ + 9.3417917, + 48.6285894 + ], + [ + 9.3417917, + 48.6285894 + ], + [ + 9.3417917, + 48.6285894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T19:59:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/U4h8W37.jpg" + ], + "rental": [ + "city_bike" + ], + "amenity": [ + "bicycle_rental" + ], + "bicycle_rental": [ + "docking_station" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 122774034 + } + }, + { + "id": 122773672, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2064388, + 48.4917557 + ], + [ + 9.2095283, + 48.4917557 + ], + [ + 9.2095283, + 48.4956488 + ], + [ + 9.2064388, + 48.4956488 + ], + [ + 9.2064388, + 48.4917557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T19:49:04Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/rzKt82x.jpg", + "https://i.imgur.com/AaYvP7Q.jpg" + ], + "access": [ + "yes" + ], + "charge": [ + "0,50 €" + ], + "amenity": [ + "toilets" + ], + "building": [ + "toilets" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + ";" + ], + "payment:cards": [ + "no" + ], + "changing_table": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000120277324499962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 122773672 + } + }, + { + "id": 122769747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2264482, + 48.4652879 + ], + [ + 9.2264482, + 48.4652879 + ], + [ + 9.2264482, + 48.4652879 + ], + [ + 9.2264482, + 48.4652879 + ], + [ + 9.2264482, + 48.4652879 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T18:03:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/gVshw0A.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "parking:fee": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 3 + }, + "id": 122769747 + } + }, + { + "id": 122767086, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9322319, + 49.2390306 + ], + [ + 11.9326973, + 49.2390306 + ], + [ + 11.9326973, + 49.2392907 + ], + [ + 11.9322319, + 49.2392907 + ], + [ + 11.9322319, + 49.2390306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PhilmacFLy", + "uid": "175489", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T16:35:08Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "4" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "94", + "86", + "180" + ], + "survey:date": [ + "2022-06-23" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.21050539999141e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 15, + "locale": "en", + "imagery": "osm", + "change_within_100m": 15 + }, + "id": 122767086 + } + }, + { + "id": 122765386, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4428435, + 51.4027986 + ], + [ + 4.4428435, + 51.4027986 + ], + [ + 4.4428435, + 51.4027986 + ], + [ + 4.4428435, + 51.4027986 + ], + [ + 4.4428435, + 51.4027986 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T15:46:14Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/sPtAR1h.jpg" + ], + "tourism": [ + "viewpoint" + ], + "man_made": [ + "tower" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122765386 + } + }, + { + "id": 122763270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.1163653, + 41.8641974 + ], + [ + -88.1163653, + 41.8641974 + ], + [ + -88.1163653, + 41.8641974 + ], + [ + -88.1163653, + 41.8641974 + ], + [ + -88.1163653, + 41.8641974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "markhiben", + "uid": "16343235", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T14:36:40Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122763270 + } + }, + { + "id": 122763113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.4810439, + 41.7369351 + ], + [ + -88.1506564, + 41.7369351 + ], + [ + -88.1506564, + 41.9428345 + ], + [ + -88.4810439, + 41.9428345 + ], + [ + -88.4810439, + 41.7369351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "markhiben", + "uid": "16343235", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T14:32:26Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0680265880175001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122763113 + } + }, + { + "id": 122758853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7474341, + 51.161204 + ], + [ + 4.7810713, + 51.161204 + ], + [ + 4.7810713, + 51.1652282 + ], + [ + 4.7474341, + 51.1652282 + ], + [ + 4.7474341, + 51.161204 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T12:44:25Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified", + "residential" + ], + "maxspeed": [ + "30", + "50" + ] + }, + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000135362820240114, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed", + "theme": "maxspeed", + "answer": 22, + "locale": "en", + "imagery": "osm" + }, + "id": 122758853 + } + }, + { + "id": 122758118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2435626, + 41.4511535 + ], + [ + 2.2438559, + 41.4511535 + ], + [ + 2.2438559, + 41.4515906 + ], + [ + 2.2435626, + 41.4515906 + ], + [ + 2.2435626, + 41.4511535 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9841433913", + "osm_id": 9841433913, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772131", + "osm_id": 8796772131, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9841450220", + "osm_id": 9841450220, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772118", + "osm_id": 8796772118, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772122", + "osm_id": 8796772122, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772117", + "osm_id": 8796772117, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9841435672", + "osm_id": 9841435672, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9841450219", + "osm_id": 9841450219, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772116", + "osm_id": 8796772116, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T12:27:07Z", + "reviewed_features": [], + "tag_changes": { + "source": [ + "survey" + ], + "natural": [ + "tree_stump", + "tree" + ] + }, + "create": 4, + "modify": 7, + "delete": 0, + "area": 1.28201430001675e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 14, + "create": 4, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "id": 122758118 + } + }, + { + "id": 122754165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.009974, + 51.1275383 + ], + [ + 5.0112598, + 51.1275383 + ], + [ + 5.0112598, + 51.1283572 + ], + [ + 5.009974, + 51.1283572 + ], + [ + 5.009974, + 51.1275383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T11:09:11Z", + "reviewed_features": [], + "tag_changes": { + "school": [ + "kindergarten;primary" + ], + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000105294162000806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education.html", + "theme": "education", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 2 + }, + "id": 122754165 + } + }, + { + "id": 122751770, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3986186, + 51.0365143 + ], + [ + 3.4053799, + 51.0365143 + ], + [ + 3.4053799, + 51.0395653 + ], + [ + 3.3986186, + 51.0395653 + ], + [ + 3.3986186, + 51.0365143 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T10:17:01Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified" + ], + "maxspeed": [ + "50", + "70" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000206287262999948, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 6 + }, + "id": 122751770 + } + }, + { + "id": 122748106, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2265457, + 48.4652708 + ], + [ + 9.2265643, + 48.4652708 + ], + [ + 9.2265643, + 48.4653109 + ], + [ + 9.2265457, + 48.4653109 + ], + [ + 9.2265457, + 48.4652708 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T09:08:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/TrOAqUR.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "opening_hours": [ + "24/7" + ], + "toilets:position": [ + "seated" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 7.45859999948238e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 9, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 11 + }, + "id": 122748106 + } + }, + { + "id": 122746332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.3225766, + 47.6490949 + ], + [ + -122.304651, + 47.6490949 + ], + [ + -122.304651, + 47.6531298 + ], + [ + -122.3225766, + 47.6531298 + ], + [ + -122.3225766, + 47.6490949 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Natfoot", + "uid": "567792", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-23T08:38:46Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000723280034400034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 10, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122746332 + } + }, + { + "id": 122741992, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.475949, + 51.0416184 + ], + [ + 4.475949, + 51.0416184 + ], + [ + 4.475949, + 51.0416184 + ], + [ + 4.475949, + 51.0416184 + ], + [ + 4.475949, + 51.0416184 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T07:07:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/d0OsEZh.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122741992 + } + }, + { + "id": 122740024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3264253, + 50.9927864 + ], + [ + 3.3937737, + 50.9927864 + ], + [ + 3.3937737, + 51.041708 + ], + [ + 3.3264253, + 51.041708 + ], + [ + 3.3264253, + 50.9927864 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T06:24:49Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "debron@molenland.be", + "sji@molenland.be", + "dekiem.ruiselede@3span.be", + "dester@molenland.be" + ], + "phone": [ + "+32 51 42 49 00", + "+32 51 40 03 30", + "+32 51 68 94 31", + "+32 51 40 05 68" + ], + "school": [ + "middle_secondary;upper_secondary;lower_secondary", + "lower_secondary", + "primary;kindergarten", + "lower_secondary;upper_secondary;middle_secondary", + "middle_secondary;upper_secondary" + ], + "amenity": [ + "school" + ], + "website": [ + "https://debrontielt.molenland.be", + "https://sjitielt.molenland.be/", + "https://www.dekiemruiselede.be", + "https://vtitielt.molenland.be" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "nl" + ] + }, + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.00329479148544, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/education.html", + "theme": "education", + "answer": 32, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 12, + "change_within_1000m": 6 + }, + "id": 122740024 + } + }, + { + "id": 122738829, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T05:55:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122738829 + } + }, + { + "id": 122738694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9958824, + 48.4996256 + ], + [ + 8.9958824, + 48.4996256 + ], + [ + 8.9958824, + 48.4996256 + ], + [ + 8.9958824, + 48.4996256 + ], + [ + 8.9958824, + 48.4996256 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T05:52:35Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:method": [ + "sodium" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122738694 + } + }, + { + "id": 122738650, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9953834, + 48.4995646 + ], + [ + 8.996301, + 48.4995646 + ], + [ + 8.996301, + 48.4996571 + ], + [ + 8.9953834, + 48.4996571 + ], + [ + 8.9953834, + 48.4995646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T05:51:12Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q148939" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 8.48780000009609e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 122738650 + } + }, + { + "id": 122736890, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T04:54:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 122736890 + } + }, + { + "id": 122736860, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6972996, + 50.5582658 + ], + [ + 4.6997854, + 50.5582658 + ], + [ + 4.6997854, + 50.5612141 + ], + [ + 4.6972996, + 50.5612141 + ], + [ + 4.6972996, + 50.5582658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.20.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T04:53:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "cargo_bike": [ + "yes" + ], + "capacity:cargo_bike": [ + "4" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000732888413999873, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 4 + }, + "id": 122736860 + } + }, + { + "id": 122732642, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1136883, + 38.5955834 + ], + [ + 0.1161793, + 38.5955834 + ], + [ + 0.1161793, + 38.8468319 + ], + [ + -0.1136883, + 38.8468319 + ], + [ + -0.1136883, + 38.5955834 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-23T00:05:49Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Col·legi d'Educació Infantil i Primària la Xara", + "CEIP La Xara", + "Col·legi d’Educació Infantil i Primària Mestral", + "Col·legi d’Educació Infantil i Primaria Mestral", + "Col·legi d’Educació Infantil i Primària l'Alfàs", + "CEIP L'Alfàs", + "Institut d’Educació Secudària Sorts de la Mar", + "Institut d’Educació Secudaria Sorts de la Mar", + "Col·legi d’Educació Infantil i Primària el Trinquet", + "CEIP el Trinquet", + "Col·legi d’Educació Infantil i Primària Pare Pere", + "CEIP Pare Pere", + "Institut d’Educació Secudària Historiador Chabás", + "IES Historiador Chabás" + ], + "email": [ + "03004259@edu.gva.es", + "03012943@gva.es", + "cdt_denia@turismecv.es", + "03015932@edu.gva.es", + "ceibombonets@gmail.com", + "03009993@edu.gva.es" + ], + "phone": [ + "+34 966 42 88 15", + "+34 965 78 81 02", + "+34 966 42 96 20", + "+34 966 42 84 50", + "+34 966 42 82 35", + "+34 966 17 42 22", + "+34 966 42 88 65" + ], + "amenity": [ + "school", + "college", + "kindergarten" + ], + "website": [ + "https://portal.edu.gva.es/ceiplaxara/", + "https://www.escuelapeluqueriaimpakto.es/", + "https://portal.edu.gva.es/fpadenia/", + "https://portal.edu.gva.es/iessortsdelamardenia/", + "https://portal.edu.gva.es/montgo/" + ], + "building": [ + "industrial" + ], + "capacity": [ + "74" + ], + "school:for": [ + "adults" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "norsk", + "catalan", + "spanish" + ] + }, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.057753889698599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 41, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 32 + }, + "id": 122732642 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-24.json b/Docs/Tools/stats/stats.2022-6-24.json new file mode 100644 index 0000000000..c864c07360 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-24.json @@ -0,0 +1,2000 @@ +{ + "features": [ + { + "id": 122821250, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2228057, + 51.2089484 + ], + [ + 3.2357936, + 51.2089484 + ], + [ + 3.2357936, + 51.2168146 + ], + [ + 3.2228057, + 51.2168146 + ], + [ + 3.2228057, + 51.2089484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T23:08:45Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Atheneum Brugge", + "Koninklijk Atheneum Brugge" + ], + "school": [ + "kindergarten;primary", + "lower_secondary;middle_secondary", + "lower_secondary" + ], + "amenity": [ + "school" + ], + "capacity": [ + "95" + ], + "school:for": [ + "ADHD;autism;learning_disabilities;special_needs", + "special_needs;learning_disabilities;autism;ADHD" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "dutch" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000102165418980031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/education.html", + "theme": "education", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 2, + "change_within_5000m": 5 + }, + "id": 122821250 + } + }, + { + "id": 122820823, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.572633, + 53.0176 + ], + [ + 6.5730084, + 53.0176 + ], + [ + 6.5730084, + 53.0176555 + ], + [ + 6.572633, + 53.0176555 + ], + [ + 6.572633, + 53.0176 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T22:40:13Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "H516", + "T285", + "H515", + "T284" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "bent_mast" + ], + "light:count": [ + "1" + ], + "light:colour": [ + "white" + ], + "light:method": [ + "LED" + ], + "light:direction": [ + "150", + "151" + ] + }, + "create": 0, + "modify": 17, + "delete": 0, + "area": 2.08346999980914e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/street_lighting.html", + "theme": "street_lighting", + "answer": 30, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 30 + }, + "id": 122820823 + } + }, + { + "id": 122814838, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.5019182, + 8.7126939 + ], + [ + 91.8950204, + 8.7126939 + ], + [ + 91.8950204, + 28.6451676 + ], + [ + 72.5019182, + 28.6451676 + ], + [ + 72.5019182, + 8.7126939 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-142616340", + "name": "Jawaharlal Nehru Road", + "osm_id": 142616340, + "reasons": [ + 91 + ], + "version": 11, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T18:56:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 122, + "delete": 0, + "area": 386.552499562912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 150, + "locale": "en", + "imagery": "osm" + }, + "id": 122814838 + } + }, + { + "id": 122814638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5846179, + 53.2174089 + ], + [ + 6.5846179, + 53.2174089 + ], + [ + 6.5846179, + 53.2174089 + ], + [ + 6.5846179, + 53.2174089 + ], + [ + 6.5846179, + 53.2174089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T18:50:08Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 122814638 + } + }, + { + "id": 122808887, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1196929, + 50.4427759 + ], + [ + 5.1196929, + 50.4427759 + ], + [ + 5.1196929, + 50.4427759 + ], + [ + 5.1196929, + 50.4427759 + ], + [ + 5.1196929, + 50.4427759 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T15:38:54Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/kgmrtHD.jpg" + ], + "amenity": [ + "charging_station" + ], + "image:0": [ + "https://i.imgur.com/1vpFfv6.jpg" + ], + "capacity": [ + "1" + ], + "socket:type2": [ + "1" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 5 + }, + "id": 122808887 + } + }, + { + "id": 122807311, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8275258, + 53.6634973 + ], + [ + -1.8275258, + 53.6634973 + ], + [ + -1.8275258, + 53.6634973 + ], + [ + -1.8275258, + 53.6634973 + ], + [ + -1.8275258, + 53.6634973 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrew Dunlop", + "uid": "53881", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T14:59:22Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "create": 1, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "id": 122807311 + } + }, + { + "id": 122807095, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8050709, + 53.6515705 + ], + [ + -1.8050709, + 53.6515705 + ], + [ + -1.8050709, + 53.6515705 + ], + [ + -1.8050709, + 53.6515705 + ], + [ + -1.8050709, + 53.6515705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrew Dunlop", + "uid": "53881", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T14:54:15Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "cyclosm" + }, + "id": 122807095 + } + }, + { + "id": 122806720, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.9733801, + 9.5780844 + ], + [ + 88.3662815, + 9.5780844 + ], + [ + 88.3662815, + 29.6993487 + ], + [ + 72.9733801, + 29.6993487 + ], + [ + 72.9733801, + 9.5780844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T14:44:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "hospital" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q237879" + ] + }, + "create": 0, + "modify": 90, + "delete": 0, + "area": 309.72463741324, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 126, + "locale": "en", + "imagery": "osm" + }, + "id": 122806720 + } + }, + { + "id": 122806335, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7207049, + 50.8477764 + ], + [ + 2.7258593, + 50.8477764 + ], + [ + 2.7258593, + 50.8548697 + ], + [ + 2.7207049, + 50.8548697 + ], + [ + 2.7207049, + 50.8477764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DieterWesttoer", + "uid": "13062237", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T14:33:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000036561705520008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9844320741": "source: https://osm.org/note/3156534" + }, + "id": 122806335 + } + }, + { + "id": 122806283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8036524, + 53.6515181 + ], + [ + -1.8019526, + 53.6515181 + ], + [ + -1.8019526, + 53.6536393 + ], + [ + -1.8036524, + 53.6536393 + ], + [ + -1.8036524, + 53.6515181 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrew Dunlop", + "uid": "53881", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T14:32:49Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "sidewalk:left": [ + "yes" + ], + "sidewalk:right": [ + "yes" + ] + }, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000360561576000849, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sidewalks", + "split": 3, + "theme": "sidewalks", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "id": 122806283 + } + }, + { + "id": 122804731, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.708674, + 51.0233465 + ], + [ + 3.7107242, + 51.0233465 + ], + [ + 3.7107242, + 51.0344481 + ], + [ + 3.708674, + 51.0344481 + ], + [ + 3.708674, + 51.0233465 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T13:54:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/fssWVN6.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000227605003199951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 10, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "id": 122804731 + } + }, + { + "id": 122801158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7179955, + 41.217311 + ], + [ + 1.7368586, + 41.217311 + ], + [ + 1.7368586, + 41.2234953 + ], + [ + 1.7179955, + 41.2234953 + ], + [ + 1.7179955, + 41.217311 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T12:23:21Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "highway": [ + "tertiary", + "residential" + ], + "maxspeed": [ + "50", + "30" + ] + }, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.000116655069330019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "split": 3, + "theme": "maxspeed", + "answer": 8, + "locale": "en", + "imagery": "osm", + "relation-fix": 1 + }, + "id": 122801158 + } + }, + { + "id": 122799647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4430142, + 52.5115736 + ], + [ + 13.4430142, + 52.5115736 + ], + [ + 13.4430142, + 52.5115736 + ], + [ + 13.4430142, + 52.5115736 + ], + [ + 13.4430142, + 52.5115736 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Huglu96", + "uid": "722577", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T11:44:09Z", + "reviewed_features": [], + "tag_changes": { + "lgbtq": [ + "gay", + "primary" + ], + "amenity": [ + "bar" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122799647 + } + }, + { + "id": 122798975, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7134098, + 51.0493596 + ], + [ + 3.7212673, + 51.0493596 + ], + [ + 3.7212673, + 51.0638231 + ], + [ + 3.7134098, + 51.0638231 + ], + [ + 3.7134098, + 51.0493596 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Yann Vandamme", + "uid": "1678678", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T11:28:01Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 15, + "modify": 17, + "delete": 0, + "area": 0.000113646951249985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 47, + "create": 15, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 122798975 + } + }, + { + "id": 122796496, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.700722, + 8.6868789 + ], + [ + 80.2511275, + 8.6868789 + ], + [ + 80.2511275, + 13.1438994 + ], + [ + 76.700722, + 13.1438994 + ], + [ + 76.700722, + 8.6868789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T10:29:02Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "road" + ], + "amenity": [ + "theatre", + "library", + "college", + "hospital" + ], + "highway": [ + "residential", + "living_street", + "secondary", + "primary", + "unclassified", + "tertiary", + "trunk", + "primary_link" + ], + "landuse": [ + "grass" + ], + "leisure": [ + "park" + ], + "tourism": [ + "zoo" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q522048", + "Q378404", + "Q2153", + "Q1001", + "Q138765", + "Q231690", + "Q9513", + "Q1047", + "Q737280", + "Q4593", + "Q2744225", + "Q1149", + "Q216239", + "Q2353373", + "Q237879" + ] + }, + "create": 0, + "modify": 71, + "delete": 0, + "area": 15.8242300968127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 93, + "locale": "en", + "imagery": "osm" + }, + "id": 122796496 + } + }, + { + "id": 122794617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.8147151, + 14.8594173 + ], + [ + 120.8147151, + 14.8594173 + ], + [ + 120.8147151, + 14.8594173 + ], + [ + 120.8147151, + 14.8594173 + ], + [ + 120.8147151, + 14.8594173 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "12mncereal", + "uid": "16359643", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T09:49:41Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "BulSu Bahaghari", + "Bulsu Bahaghari" + ], + "office": [ + "association" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122794617 + } + }, + { + "id": 122794320, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3662996, + 50.9297475 + ], + [ + 5.3667301, + 50.9297475 + ], + [ + 5.3667301, + 50.9300197 + ], + [ + 5.3662996, + 50.9300197 + ], + [ + 5.3662996, + 50.9297475 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T09:43:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.1718210000214e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 15, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 6, + "change_within_50m": 5, + "change_within_500m": 1 + }, + "id": 122794320 + } + }, + { + "id": 122793310, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.8319225, + 21.032908 + ], + [ + 105.8319412, + 21.032908 + ], + [ + 105.8319412, + 21.0329243 + ], + [ + 105.8319225, + 21.0329243 + ], + [ + 105.8319225, + 21.032908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T09:22:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ], + "opening_hours": [ + "Mo-Su 09:00-22:00;", + "Mo-Su 09:00-22:00" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.04810000012612e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "move": 1, + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 2, + "locale": "en", + "imagery": "osm", + "move:node/9805222041": "improve_accuracy" + }, + "id": 122793310 + } + }, + { + "id": 122792395, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5830412, + 53.2169605 + ], + [ + 6.5840552, + 53.2169605 + ], + [ + 6.5840552, + 53.2176068 + ], + [ + 6.5830412, + 53.2176068 + ], + [ + 6.5830412, + 53.2169605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T09:05:33Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 7, + "modify": 6, + "delete": 0, + "area": 6.55348199999409e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 14, + "create": 7, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 7, + "change_within_25m": 15 + }, + "id": 122792395 + } + }, + { + "id": 122792275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5838801, + 53.2169562 + ], + [ + 6.5838801, + 53.2169562 + ], + [ + 6.5838801, + 53.2169562 + ], + [ + 6.5838801, + 53.2169562 + ], + [ + 6.5838801, + 53.2169562 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T09:02:48Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122792275 + } + }, + { + "id": 122786051, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.331234, + 50.8769235 + ], + [ + 5.331234, + 50.8769235 + ], + [ + 5.331234, + 50.8769235 + ], + [ + 5.331234, + 50.8769235 + ], + [ + 5.331234, + 50.8769235 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "oli4maes", + "uid": "5482614", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T06:38:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9843295448": "source: https://osm.org/note/3044726" + }, + "id": 122786051 + } + }, + { + "id": 122782692, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.0539498, + -36.8271536 + ], + [ + -73.0539498, + -36.8271536 + ], + [ + -73.0539498, + -36.8271536 + ], + [ + -73.0539498, + -36.8271536 + ], + [ + -73.0539498, + -36.8271536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T04:48:19Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ZfWZThw.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "id": 122782692 + } + }, + { + "id": 122781993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0363956, + 14.6522853 + ], + [ + 121.0363956, + 14.6522853 + ], + [ + 121.0363956, + 14.6522853 + ], + [ + 121.0363956, + 14.6522853 + ], + [ + 121.0363956, + 14.6522853 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikko_tamura", + "uid": "2258022", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T04:17:42Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 122781993 + } + }, + { + "id": 122781189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.386939, + 52.6535987 + ], + [ + 13.386939, + 52.6535987 + ], + [ + 13.386939, + 52.6535987 + ], + [ + 13.386939, + 52.6535987 + ], + [ + 13.386939, + 52.6535987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-24T03:33:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122781189 + } + }, + { + "id": 122779083, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5544402, + 51.2353461 + ], + [ + 4.5564969, + 51.2353461 + ], + [ + 4.5564969, + 51.2366892 + ], + [ + 4.5544402, + 51.2366892 + ], + [ + 4.5544402, + 51.2353461 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T00:28:26Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@sint-ludgardis.be" + ], + "phone": [ + "+32 3 353 71 19" + ], + "school": [ + "kindergarten;primary" + ], + "amenity": [ + "school" + ], + "capacity": [ + "420" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "dutch" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000276235376999913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122779083 + } + }, + { + "id": 122778870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -49.3336252, + -25.4349445 + ], + [ + -49.3336252, + -25.4349445 + ], + [ + -49.3336252, + -25.4349445 + ], + [ + -49.3336252, + -25.4349445 + ], + [ + -49.3336252, + -25.4349445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Renato_M", + "uid": "324758", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-24T00:04:59Z", + "reviewed_features": [], + "tag_changes": { + "noname": [ + "yes" + ], + "natural": [ + "tree" + ], + "heritage": [ + "no" + ], + "denotation": [ + "natural_monument" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 122778870 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-25.json b/Docs/Tools/stats/stats.2022-6-25.json new file mode 100644 index 0000000000..ed64255b1e --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-25.json @@ -0,0 +1,2184 @@ +{ + "features": [ + { + "id": 122852090, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7164735, + 51.0397186 + ], + [ + 3.7164735, + 51.0397186 + ], + [ + 3.7164735, + 51.0397186 + ], + [ + 3.7164735, + 51.0397186 + ], + [ + 3.7164735, + 51.0397186 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T22:54:16Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "supermarket" + ], + "email": [ + "info@dunhuang.be" + ], + "website": [ + "https://dunhuang.be/", + "https://www.facebook.com/asian-food-store-dun-huang-285950958098604/" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Sa 09:30-18:30;" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 122852090 + } + }, + { + "id": 122850312, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6106598, + 52.2884206 + ], + [ + -1.6080202, + 52.2884206 + ], + [ + -1.6080202, + 52.2898221 + ], + [ + -1.6106598, + 52.2898221 + ], + [ + -1.6106598, + 52.2884206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T21:10:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.00000369939940000041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 9, + "import": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 122850312 + } + }, + { + "id": 122850293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6089311, + 52.2887118 + ], + [ + -1.6085081, + 52.2887118 + ], + [ + -1.6085081, + 52.2888829 + ], + [ + -1.6089311, + 52.2888829 + ], + [ + -1.6089311, + 52.2887118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T21:09:17Z", + "reviewed_features": [], + "tag_changes": { + "addr:street": [ + "Birmingham Road" + ], + "addr:housenumber": [ + "143" + ] + }, + "create": 3, + "modify": 4, + "delete": 0, + "area": 7.23752999981794e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 8, + "import": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 122850293 + } + }, + { + "id": 122848809, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.4548337, + 49.1354092 + ], + [ + 2.4732079, + 49.1354092 + ], + [ + 2.4732079, + 49.146275 + ], + [ + 2.4548337, + 49.146275 + ], + [ + 2.4548337, + 49.1354092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T20:06:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary", + "residential", + "track", + "service", + "footway" + ], + "name:etymology:wikidata": [ + "Q752093", + "Q145382", + "Q273239", + "Q60444375", + "Q192190", + "Q12004", + "Q58697", + "Q129324", + "Q168473", + "Q1400172", + "Q349", + "Q18498", + "Q131113", + "Q11748378", + "Q25239", + "Q81666", + "Q29838690", + "Q2957706" + ] + }, + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.000199650382360086, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 51, + "locale": "fr", + "imagery": "osm" + }, + "id": 122848809 + } + }, + { + "id": 122846671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.66316, + 51.0739649 + ], + [ + 2.66316, + 51.0739649 + ], + [ + 2.66316, + 51.0739649 + ], + [ + 2.66316, + 51.0739649 + ], + [ + 2.66316, + 51.0739649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T18:39:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/education.html", + "theme": "education", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_1000m": 1 + }, + "id": 122846671 + } + }, + { + "id": 122846614, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T18:37:24Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@b2bike.be" + ], + "phone": [ + "+32 3 689 49 77" + ], + "valves": [ + "sclaverand;dunlop;schrader" + ], + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/index.html", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "change_within_25m": 3 + }, + "id": 122846614 + } + }, + { + "id": 122845718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6589328, + 51.0809111 + ], + [ + 2.6589328, + 51.0809111 + ], + [ + 2.6589328, + 51.0809111 + ], + [ + 2.6589328, + 51.0809111 + ], + [ + 2.6589328, + 51.0809111 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T18:02:21Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "pitch" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", + "theme": "sport_pitches", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 122845718 + } + }, + { + "id": 122844691, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6524124, + 51.0793617 + ], + [ + 2.6830593, + 51.0793617 + ], + [ + 2.6830593, + 51.1273742 + ], + [ + 2.6524124, + 51.1273742 + ], + [ + 2.6524124, + 51.0793617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T17:27:48Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/3bT0Lxu.jpg" + ], + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station", + "bicycle_rental" + ], + "image:0": [ + "https://i.imgur.com/Om5El2w.jpg" + ], + "image:1": [ + "https://i.imgur.com/JFGc1rn.jpg" + ], + "leisure": [ + "playground" + ], + "manometer": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00147143428624997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 2, + "change_within_25m": 15 + }, + "id": 122844691 + } + }, + { + "id": 122843300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6085081, + 52.2882876 + ], + [ + -1.6073219, + 52.2882876 + ], + [ + -1.6073219, + 52.2887118 + ], + [ + -1.6085081, + 52.2887118 + ], + [ + -1.6085081, + 52.2882876 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T16:39:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 8, + "delete": 0, + "area": 5.03186040005657e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 12, + "import": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 10, + "change_within_50m": 2 + }, + "id": 122843300 + } + }, + { + "id": 122843152, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0427353, + 13.0200998 + ], + [ + 88.3673716, + 13.0200998 + ], + [ + 88.3673716, + 29.9601784 + ], + [ + 70.0427353, + 29.9601784 + ], + [ + 70.0427353, + 13.0200998 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T16:34:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 90, + "delete": 0, + "area": 310.420779238413, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 143, + "locale": "en", + "imagery": "osm" + }, + "id": 122843152 + } + }, + { + "id": 122842190, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7818369, + 51.0174231 + ], + [ + 4.7819817, + 51.0174231 + ], + [ + 4.7819817, + 51.0176644 + ], + [ + 4.7818369, + 51.0176644 + ], + [ + 4.7818369, + 51.0174231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dominique", + "uid": "125577", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T16:01:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "leisure": [ + "playground" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.49402399998956e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 122842190 + } + }, + { + "id": 122842168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4042603, + 52.5324627 + ], + [ + 13.4129034, + 52.5324627 + ], + [ + 13.4129034, + 52.5400811 + ], + [ + 13.4042603, + 52.5400811 + ], + [ + 13.4042603, + 52.5324627 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T16:01:06Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "tourism": [ + "information" + ], + "historic": [ + "yes" + ], + "mapillary": [ + "2884126671906417" + ], + "wikimedia_commons": [ + "File:Gedenkstätte Mauerfall 1989 Schwedter Straße Berlin 05.jpg" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000658465930399758, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "locale": "de", + "imagery": "osm", + "link-image": 2 + }, + "id": 122842168 + } + }, + { + "id": 122841333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6829574, + 51.1275467 + ], + [ + 2.6829574, + 51.1275467 + ], + [ + 2.6829574, + 51.1275467 + ], + [ + 2.6829574, + 51.1275467 + ], + [ + 2.6829574, + 51.1275467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T15:32:35Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 122841333 + } + }, + { + "id": 122841247, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3103573, + 50.8019612 + ], + [ + 4.3448063, + 50.8019612 + ], + [ + 4.3448063, + 50.8241078 + ], + [ + 4.3103573, + 50.8241078 + ], + [ + 4.3103573, + 50.8019612 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Archermonteyne", + "uid": "16369307", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T15:29:33Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:chain_tool": [ + "no" + ], + "service:bicycle:pump:operational_status": [ + "broken", + "operational" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000762928223399983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 14, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122841247 + } + }, + { + "id": 122839087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6118158, + 51.092757 + ], + [ + 2.6118158, + 51.092757 + ], + [ + 2.6118158, + 51.092757 + ], + [ + 2.6118158, + 51.092757 + ], + [ + 2.6118158, + 51.092757 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T14:22:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122839087 + } + }, + { + "id": 122837723, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6109969, + 51.0924297 + ], + [ + 2.6119903, + 51.0924297 + ], + [ + 2.6119903, + 51.0932462 + ], + [ + 2.6109969, + 51.0932462 + ], + [ + 2.6109969, + 51.0924297 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T13:39:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/HjkJnJo.jpg" + ], + "access": [ + "permit" + ], + "leisure": [ + "sports_centre" + ], + "building": [ + "yes" + ], + "climbing:speed": [ + "no" + ], + "climbing:sport": [ + "no" + ], + "climbing:length": [ + "12" + ], + "climbing:boulder": [ + "limited" + ], + "climbing:grade:french:max": [ + "8" + ], + "climbing:grade:french:min": [ + "3" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.11111100006201e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/climbing.html", + "theme": "climbing", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 8 + }, + "id": 122837723 + } + }, + { + "id": 122836314, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T12:48:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122836314 + } + }, + { + "id": 122835034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6719341, + 50.9434783 + ], + [ + 2.6719341, + 50.9434783 + ], + [ + 2.6719341, + 50.9434783 + ], + [ + 2.6719341, + 50.9434783 + ], + [ + 2.6719341, + 50.9434783 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T12:05:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 122835034 + } + }, + { + "id": 122835000, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ], + [ + 2.6524124, + 51.0794013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T12:04:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 122835000 + } + }, + { + "id": 122834302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.5820123, + 8.8821367 + ], + [ + 92.7362367, + 8.8821367 + ], + [ + 92.7362367, + 32.6724175 + ], + [ + 72.5820123, + 32.6724175 + ], + [ + 72.5820123, + 8.8821367 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-816782228", + "note": "Spam text reported in [\"name\",\"name:etymology:wikidata\"] tags in the feature", + "osm_id": 816782228, + "reasons": [ + 489 + ], + "version": 2 + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T11:40:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 167, + "delete": 0, + "area": 479.474657782212, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 189, + "locale": "en", + "imagery": "osm" + }, + "id": 122834302 + } + }, + { + "id": 122833536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8560741, + 56.2333536 + ], + [ + 43.8636848, + 56.2333536 + ], + [ + 43.8636848, + 56.2356865 + ], + [ + 43.8560741, + 56.2356865 + ], + [ + 43.8560741, + 56.2333536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T11:11:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Jw2atp1.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "capacity": [ + "8" + ], + "bicycle_parking": [ + "rack" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000177550020299939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 122833536 + } + }, + { + "id": 122833082, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.7510826, + 53.4802995 + ], + [ + 18.7534001, + 53.4802995 + ], + [ + 18.7534001, + 53.4840398 + ], + [ + 18.7510826, + 53.4840398 + ], + [ + 18.7510826, + 53.4802995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "macaddr", + "uid": "13378425", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T10:52:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000866814524999359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 122833082 + } + }, + { + "id": 122833024, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.7487037, + 53.4944466 + ], + [ + 18.7487037, + 53.4944466 + ], + [ + 18.7487037, + 53.4944466 + ], + [ + 18.7487037, + 53.4944466 + ], + [ + 18.7487037, + 53.4944466 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7177809157", + "osm_id": 7177809157, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "macaddr", + "uid": "13378425", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T10:49:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "binoculars" + ], + "direction": [ + "225" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 122833024 + } + }, + { + "id": 122829516, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9598022, + 51.100282 + ], + [ + 4.9598022, + 51.100282 + ], + [ + 4.9598022, + 51.100282 + ], + [ + 4.9598022, + 51.100282 + ], + [ + 4.9598022, + 51.100282 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T08:48:14Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/8o0dCIS.jpg" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "plastic" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 122829516 + } + }, + { + "id": 122827545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.9818475, + 52.2503103 + ], + [ + 7.0132913, + 52.2503103 + ], + [ + 7.0132913, + 52.27342 + ], + [ + 6.9818475, + 52.27342 + ], + [ + 6.9818475, + 52.2503103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeoHigh125", + "uid": "1240771", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T07:36:19Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified" + ], + "maxspeed": [ + "30", + "50", + "60" + ] + }, + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00072665678485997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "id": 122827545 + } + }, + { + "id": 122826903, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0338332, + 9.9387541 + ], + [ + 94.0940192, + 9.9387541 + ], + [ + 94.0940192, + 31.108065 + ], + [ + 70.0338332, + 31.108065 + ], + [ + 70.0338332, + 9.9387541 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T07:08:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 64, + "delete": 0, + "area": 509.337557745827, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 65, + "locale": "en", + "imagery": "osm" + }, + "id": 122826903 + } + }, + { + "id": 122826382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8609847, + 51.1438383 + ], + [ + 4.8683354, + 51.1438383 + ], + [ + 4.8683354, + 51.1484033 + ], + [ + 4.8609847, + 51.1484033 + ], + [ + 4.8609847, + 51.1438383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-25T06:40:47Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "hiking" + ], + "building": [ + "house", + "yes", + "garages", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4045203", + "Gbg/4045206", + "Gbg/4047766", + "Gbg/5860869", + "Gbg/5860879", + "Gbg/4045285", + "Gbg/4045266", + "Gbg/4045267", + "Gbg/7020189", + "Gbg/5861336", + "Gbg/4045204", + "Gbg/4045205", + "Gbg/4050425", + "Gbg/4045281" + ], + "source:geometry:date": [ + "2013-01-16", + "2015-11-24", + "2013-02-20", + "2017-03-01", + "2021-10-25" + ] + }, + "create": 367, + "modify": 84, + "delete": 0, + "area": 0.0000335559454999959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 73, + "theme": "grb", + "import": 63, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "id": 122826382 + } + }, + { + "id": 122824169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.6949651, + 12.9393592 + ], + [ + 77.6954749, + 12.9393592 + ], + [ + 77.6954749, + 12.9394618 + ], + [ + 77.6949651, + 12.9394618 + ], + [ + 77.6949651, + 12.9393592 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "uknown-gryphus", + "uid": "2425805", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T03:59:15Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "traffic_signals" + ], + "button_operated": [ + "no" + ], + "red_turn:right:bicycle": [ + "no" + ], + "red_turn:straight:bicycle": [ + "no" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.23054799988487e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122824169 + } + }, + { + "id": 122822795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.837143, + 40.7102097 + ], + [ + -73.836345, + 40.7102097 + ], + [ + -73.836345, + 40.7105789 + ], + [ + -73.837143, + 40.7105789 + ], + [ + -73.837143, + 40.7102097 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paulbrunner", + "uid": "15541433", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-25T01:31:16Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "fence" + ], + "leisure": [ + "dog_park" + ], + "small_dog": [ + "separate" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.94621600002383e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122822795 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-26.json b/Docs/Tools/stats/stats.2022-6-26.json new file mode 100644 index 0000000000..79ddd8cc6b --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-26.json @@ -0,0 +1,1698 @@ +{ + "features": [ + { + "id": 122881974, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0648796, + 50.9863293 + ], + [ + 5.0652078, + 50.9863293 + ], + [ + 5.0652078, + 50.9866009 + ], + [ + 5.0648796, + 50.9866009 + ], + [ + 5.0648796, + 50.9863293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T21:26:00Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "information" + ], + "building": [ + "public" + ], + "source:geometry:ref": [ + "Gbg/2140604" + ], + "source:geometry:date": [ + "2010-04-19" + ] + }, + "create": 9, + "modify": 7, + "delete": 0, + "area": 8.91391199991032e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 122881974 + } + }, + { + "id": 122881908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0656526, + 50.9881896 + ], + [ + 5.0656526, + 50.9881896 + ], + [ + 5.0656526, + 50.9881896 + ], + [ + 5.0656526, + 50.9881896 + ], + [ + 5.0656526, + 50.9881896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T21:21:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122881908 + } + }, + { + "id": 122879886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2269764, + 51.1929774 + ], + [ + 3.2269764, + 51.1929774 + ], + [ + 3.2269764, + 51.1929774 + ], + [ + 3.2269764, + 51.1929774 + ], + [ + 3.2269764, + 51.1929774 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T19:53:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 122879886 + } + }, + { + "id": 122879807, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2289143, + 51.192964 + ], + [ + 3.2289143, + 51.192964 + ], + [ + 3.2289143, + 51.192964 + ], + [ + 3.2289143, + 51.192964 + ], + [ + 3.2289143, + 51.192964 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T19:50:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "aed", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122879807 + } + }, + { + "id": 122879158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.556493, + 41.1293037 + ], + [ + -81.5526804, + 41.1293037 + ], + [ + -81.5526804, + 41.1300218 + ], + [ + -81.556493, + 41.1300218 + ], + [ + -81.556493, + 41.1293037 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alzyee", + "uid": "1219882", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-26T19:27:57Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000273782806000349, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 122879158 + } + }, + { + "id": 122877193, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2355769, + 51.1856173 + ], + [ + 3.2355769, + 51.1856173 + ], + [ + 3.2355769, + 51.1856173 + ], + [ + 3.2355769, + 51.1856173 + ], + [ + 3.2355769, + 51.1856173 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T18:16:50Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 122877193 + } + }, + { + "id": 122870580, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8411583, + 56.2366261 + ], + [ + 43.8411583, + 56.2366261 + ], + [ + 43.8411583, + 56.2366261 + ], + [ + 43.8411583, + 56.2366261 + ], + [ + 43.8411583, + 56.2366261 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-26T14:55:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122870580 + } + }, + { + "id": 122870355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.9994115, + 52.268054 + ], + [ + 7.0014721, + 52.268054 + ], + [ + 7.0014721, + 52.2724909 + ], + [ + 6.9994115, + 52.2724909 + ], + [ + 6.9994115, + 52.268054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeoHigh125", + "uid": "1240771", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T14:48:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000914267614000394, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122870355 + } + }, + { + "id": 122870318, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.0713319, + 48.8378932 + ], + [ + 2.086424, + 48.8378932 + ], + [ + 2.086424, + 48.8428033 + ], + [ + 2.0713319, + 48.8428033 + ], + [ + 2.0713319, + 48.8378932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "--bria--", + "uid": "16377634", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-26T14:47:16Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "library" + ], + "building": [ + "yes" + ], + "man_made": [ + "surveillance" + ], + "operator": [ + "mairie de bailly" + ], + "camera:type": [ + "fixed" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "public" + ], + "camera:direction": [ + "100" + ], + "surveillance:type": [ + "camera" + ], + "surveillance:zone": [ + "traffic" + ] + }, + "create": 6, + "modify": 14, + "delete": 0, + "area": 0.0000741037202099465, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 37, + "create": 9, + "locale": "fr", + "imagery": "osm" + }, + "id": 122870318 + } + }, + { + "id": 122868917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9810692, + 40.7299222 + ], + [ + -73.9810692, + 40.7299222 + ], + [ + -73.9810692, + 40.7299222 + ], + [ + -73.9810692, + 40.7299222 + ], + [ + -73.9810692, + 40.7299222 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "volt4ire", + "uid": "299452", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T14:05:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 4 + }, + "id": 122868917 + } + }, + { + "id": 122868281, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.5766567, + 51.0622524 + ], + [ + 2.5766567, + 51.0622524 + ], + [ + 2.5766567, + 51.0622524 + ], + [ + 2.5766567, + 51.0622524 + ], + [ + 2.5766567, + 51.0622524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T13:48:11Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 122868281 + } + }, + { + "id": 122867372, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.950655, + 51.1996368 + ], + [ + 4.9507675, + 51.1996368 + ], + [ + 4.9507675, + 51.1997267 + ], + [ + 4.950655, + 51.1997267 + ], + [ + 4.950655, + 51.1996368 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T13:18:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.01137499999013e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 6, + "move:node/9848052021": "improve_accuracy" + }, + "id": 122867372 + } + }, + { + "id": 122863186, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.9924083, + 52.2274236 + ], + [ + 7.04102, + 52.2274236 + ], + [ + 7.04102, + 52.2434473 + ], + [ + 6.9924083, + 52.2434473 + ], + [ + 6.9924083, + 52.2274236 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeoHigh125", + "uid": "1240771", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T10:48:39Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified" + ], + "maxspeed": [ + "30", + "60" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000778939297289899, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 122863186 + } + }, + { + "id": 122861803, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3936873, + 52.5202376 + ], + [ + 13.4274142, + 52.5202376 + ], + [ + 13.4274142, + 52.5519224 + ], + [ + 13.3936873, + 52.5519224 + ], + [ + 13.3936873, + 52.5202376 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-26T09:58:55Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "http://commons.wikimedia.org/wiki/File:Museumsinsel_Berlin_Reiterstandbild_Friedrich_Wilhelm_IV.jpg" + ], + "flickr": [ + "https://www.flickr.com/photos/22083482@N03/51969879348", + "https://www.flickr.com/photos/37174512@N03/48985511632" + ], + "tourism": [ + "artwork" + ], + "historic": [ + "memorial" + ], + "wikidata": [ + "Q28007035", + "Q24971191", + "Q109920244", + "Q95571931" + ], + "artist_name": [ + "Bert Neumann" + ], + "wikimedia_commons": [ + "File:Skulptur Arnimplatz (Prenz) Bettina Achim von Arnim&Michael Klein&1997.jpg", + "File:Friedrich Wilhelm IV - geo.hlipp.de - 38236.jpg", + "File:Skulptur Am Kupfergraben (Mitte) Hektor&Markus Lüpertz&2014.jpg", + "File:Mitte Pappelplatz Geldzählerbrunnen.jpg", + "File:Statue Prenzlauer Allee 80 (Prenz) Sportler&Margret Middell&1965.jpg", + "File:Skulptur Fröbelplatz (Prenz) Mädchen mit Spielelementen&Michael Klein&1982.jpg" + ] + }, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00106863008112001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "link-image": 9 + }, + "id": 122861803 + } + }, + { + "id": 122860428, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.4597654, + 8.4308168 + ], + [ + 94.2117479, + 8.4308168 + ], + [ + 94.2117479, + 32.3684658 + ], + [ + 70.4597654, + 32.3684658 + ], + [ + 70.4597654, + 8.4308168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-657413478", + "name": "M G road", + "osm_id": 657413478, + "reasons": [ + 91 + ], + "version": 4, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-28701490", + "name": "Mahatma Gandhi Road", + "osm_id": 28701490, + "reasons": [ + 91 + ], + "version": 13, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-388204150", + "name": "Mahatma Gandhi Road", + "osm_id": 388204150, + "reasons": [ + 91 + ], + "version": 7, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-115776397", + "name": "Mahatma Gandhi Road", + "osm_id": 115776397, + "reasons": [ + 91 + ], + "version": 24, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-849636689", + "note": "Spam text reported in [\"name\",\"name:etymology:wikidata\"] tags in the feature", + "osm_id": 849636689, + "reasons": [ + 489 + ], + "version": 2 + }, + { + "url": "way-305726143", + "name": "Mahatma Gandhi Road", + "osm_id": 305726143, + "reasons": [ + 91 + ], + "version": 15, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-388204148", + "name": "Mahatma Gandhi Road", + "osm_id": 388204148, + "reasons": [ + 91 + ], + "version": 5, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-26T09:12:48Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "wall" + ], + "highway": [ + "trunk", + "secondary" + ], + "leisure": [ + "sports_centre", + "park" + ], + "name:etymology:wikidata": [ + "Q2153" + ] + }, + "create": 0, + "modify": 626, + "delete": 0, + "area": 568.566620139143, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 857, + "locale": "en", + "imagery": "osm" + }, + "id": 122860428 + } + }, + { + "id": 122860275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5522197, + 52.6662758 + ], + [ + 13.5585915, + 52.6662758 + ], + [ + 13.5585915, + 52.6702936 + ], + [ + 13.5522197, + 52.6702936 + ], + [ + 13.5522197, + 52.6662758 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lm Goldbach", + "uid": "16375361", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T09:08:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 15, + "delete": 0, + "area": 0.0000256006180399989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122860275 + } + }, + { + "id": 122859998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9055055, + 51.1053873 + ], + [ + 4.9055055, + 51.1053873 + ], + [ + 4.9055055, + 51.1053873 + ], + [ + 4.9055055, + 51.1053873 + ], + [ + 4.9055055, + 51.1053873 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T08:59:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 6 + }, + "id": 122859998 + } + }, + { + "id": 122859932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0053827, + 50.3230578 + ], + [ + 5.0053827, + 50.3230578 + ], + [ + 5.0053827, + 50.3230578 + ], + [ + 5.0053827, + 50.3230578 + ], + [ + 5.0053827, + 50.3230578 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T08:57:22Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2p7GhD0.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 122859932 + } + }, + { + "id": 122858648, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.9909015, + 52.24604 + ], + [ + 7.0155284, + 52.24604 + ], + [ + 7.0155284, + 52.2737034 + ], + [ + 6.9909015, + 52.2737034 + ], + [ + 6.9909015, + 52.24604 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeoHigh125", + "uid": "1240771", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T08:09:53Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified", + "residential", + "tertiary" + ], + "maxspeed": [ + "50", + "30", + "60" + ] + }, + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.000681263785460048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 30, + "locale": "en", + "imagery": "osm", + "change_within_500m": 7, + "change_within_1000m": 7, + "change_within_5000m": 16 + }, + "id": 122858648 + } + }, + { + "id": 122858368, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T07:58:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122858368 + } + }, + { + "id": 122857582, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5504414, + 52.6702289 + ], + [ + 13.5504414, + 52.6702289 + ], + [ + 13.5504414, + 52.6702289 + ], + [ + 13.5504414, + 52.6702289 + ], + [ + 13.5504414, + 52.6702289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lm Goldbach", + "uid": "16375361", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-26T07:26:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122857582 + } + }, + { + "id": 122857255, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.559609, + 18.5450291 + ], + [ + 80.9361781, + 18.5450291 + ], + [ + 80.9361781, + 28.6688582 + ], + [ + 72.559609, + 28.6688582 + ], + [ + 72.559609, + 18.5450291 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-26T07:08:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "residential", + "secondary", + "tertiary", + "unclassified" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q2153" + ] + }, + "create": 0, + "modify": 30, + "delete": 0, + "area": 84.8029540127409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 32, + "locale": "en", + "imagery": "osm" + }, + "id": 122857255 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-27.json b/Docs/Tools/stats/stats.2022-6-27.json new file mode 100644 index 0000000000..2584e93334 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-27.json @@ -0,0 +1,985 @@ +{ + "features": [ + { + "id": 122929248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.160487, + 50.9922665 + ], + [ + 5.160487, + 50.9922665 + ], + [ + 5.160487, + 50.9922665 + ], + [ + 5.160487, + 50.9922665 + ], + [ + 5.160487, + 50.9922665 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T21:32:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 122929248 + } + }, + { + "id": 122929032, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0750291, + 50.9840998 + ], + [ + 5.0750291, + 50.9840998 + ], + [ + 5.0750291, + 50.9840998 + ], + [ + 5.0750291, + 50.9840998 + ], + [ + 5.0750291, + 50.9840998 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T21:24:24Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/OLrOh3B.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122929032 + } + }, + { + "id": 122924567, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3354218, + 46.9580443 + ], + [ + 8.4203968, + 46.9580443 + ], + [ + 8.4203968, + 46.9965873 + ], + [ + 8.3354218, + 46.9965873 + ], + [ + 8.3354218, + 46.9580443 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-27T19:07:29Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "hiking", + "bicycle" + ], + "amenity": [ + "fountain" + ], + "highway": [ + "footway", + "unclassified", + "secondary", + "tertiary" + ], + "name:etymology:wikidata": [ + "Q64599", + "Q64310", + "Q63931", + "Q64285", + "Q64567", + "Q43246" + ] + }, + "create": 0, + "modify": 123, + "delete": 0, + "area": 0.00327519142500036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 155, + "locale": "fr", + "imagery": "osm" + }, + "id": 122924567 + } + }, + { + "id": 122924064, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T18:57:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 122924064 + } + }, + { + "id": 122923456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.2490604, + 52.3756113 + ], + [ + -1.2475314, + 52.3756113 + ], + [ + -1.2475314, + 52.3848743 + ], + [ + -1.2490604, + 52.3848743 + ], + [ + -1.2490604, + 52.3756113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T18:43:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 16, + "delete": 0, + "area": 0.0000141631269999967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 28, + "import": 14, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 14, + "change_within_25m": 20, + "change_within_5000m": 8 + }, + "id": 122923456 + } + }, + { + "id": 122919237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8150413, + 47.2238518 + ], + [ + 8.8153967, + 47.2238518 + ], + [ + 8.8153967, + 47.2240285 + ], + [ + 8.8150413, + 47.2240285 + ], + [ + 8.8150413, + 47.2238518 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geonick", + "uid": "6087", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T16:54:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.279918000157e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 122919237 + } + }, + { + "id": 122917202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5699075, + 51.1342257 + ], + [ + 4.5699075, + 51.1342257 + ], + [ + 4.5699075, + 51.1342257 + ], + [ + 4.5699075, + 51.1342257 + ], + [ + 4.5699075, + 51.1342257 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T16:03:13Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "hackerspace" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/hackerspaces.html", + "theme": "hackerspaces", + "answer": 10, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 11 + }, + "id": 122917202 + } + }, + { + "id": 122916165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.253492, + 50.7393785 + ], + [ + 4.254875, + 50.7393785 + ], + [ + 4.254875, + 50.7401671 + ], + [ + 4.253492, + 50.7401671 + ], + [ + 4.253492, + 50.7393785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T15:33:49Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "kris.cooman@hhchalle.be" + ], + "phone": [ + "+32 2 305 79 47" + ], + "school": [ + "kindergarten" + ], + "amenity": [ + "school" + ], + "website": [ + "https://www.hhchalle.be/vondel/category/nieuws/vkl-nieuws/" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000109063380000034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122916165 + } + }, + { + "id": 122916111, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8331024, + 50.3199231 + ], + [ + 4.8341619, + 50.3199231 + ], + [ + 4.8341619, + 50.3205198 + ], + [ + 4.8331024, + 50.3205198 + ], + [ + 4.8331024, + 50.3199231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu Gaillet", + "uid": "287979", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T15:32:09Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "ecoledelamolignee.warnant@gmail.com" + ], + "phone": [ + "+32 82 61 28 44" + ], + "school": [ + "kindergarten;primary" + ], + "amenity": [ + "school" + ], + "website": [ + "https://www.ecoledewarnant.com/" + ], + "capacity": [ + "100" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "French" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.32203650002956e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 7 + }, + "id": 122916111 + } + }, + { + "id": 122914694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4633741, + -34.5475963 + ], + [ + -58.4633741, + -34.5475963 + ], + [ + -58.4633741, + -34.5475963 + ], + [ + -58.4633741, + -34.5475963 + ], + [ + -58.4633741, + -34.5475963 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T14:53:39Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "signal" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 5, + "create": 1, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "id": 122914694 + } + }, + { + "id": 122907297, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5944496, + 53.2385611 + ], + [ + 6.5944496, + 53.2385611 + ], + [ + 6.5944496, + 53.2385611 + ], + [ + 6.5944496, + 53.2385611 + ], + [ + 6.5944496, + 53.2385611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T12:02:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/tx0JBMN.jpg" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ], + "man_made": [ + "water_tap" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 122907297 + } + }, + { + "id": 122906015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.9876599, + 43.4162013 + ], + [ + -71.9872739, + 43.4162013 + ], + [ + -71.9872739, + 43.4165257 + ], + [ + -71.9876599, + 43.4165257 + ], + [ + -71.9876599, + 43.4162013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mapiate", + "uid": "12604637", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-27T11:36:32Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Tucker's", + "Tuckers" + ], + "amenity": [ + "restaurant" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.25218399998792e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "Mapbox" + }, + "id": 122906015 + } + }, + { + "id": 122895348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.2727753, + 51.4911096 + ], + [ + -0.2727753, + 51.4911096 + ], + [ + -0.2727753, + 51.4911096 + ], + [ + -0.2727753, + 51.4911096 + ], + [ + -0.2727753, + 51.4911096 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "atom oil", + "uid": "49665", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T07:51:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 2, + "import": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 122895348 + } + }, + { + "id": 122890001, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8365734, + 51.0835602 + ], + [ + 3.8365734, + 51.0835602 + ], + [ + 3.8365734, + 51.0835602 + ], + [ + 3.8365734, + 51.0835602 + ], + [ + 3.8365734, + 51.0835602 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-27T05:53:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "id": 122890001 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-28.json b/Docs/Tools/stats/stats.2022-6-28.json new file mode 100644 index 0000000000..d4e53ae26f --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-28.json @@ -0,0 +1,1773 @@ +{ + "features": [ + { + "id": 122978177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4796941, + 51.3550793 + ], + [ + 4.4796941, + 51.3550793 + ], + [ + 4.4796941, + 51.3550793 + ], + [ + 4.4796941, + 51.3550793 + ], + [ + 4.4796941, + 51.3550793 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T23:57:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "link-image": 2, + "import:node/9854536427": "source: https://osm.org/note/3143403" + }, + "id": 122978177 + } + }, + { + "id": 122972363, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3683369, + 52.5355765 + ], + [ + 13.3745747, + 52.5355765 + ], + [ + 13.3745747, + 52.5437088 + ], + [ + 13.3683369, + 52.5437088 + ], + [ + 13.3683369, + 52.5355765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T19:47:56Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "18" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "straight_mast", + "bent_mast" + ], + "light:count": [ + "1" + ], + "light:colour": [ + "orange", + "white" + ], + "light:method": [ + "gas", + "halogen", + "incandescent" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000507276609400063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 1, + "theme": "street_lighting", + "answer": 25, + "locale": "de", + "imagery": "osm", + "change_within_25m": 26, + "move:node/9072887735": "improve_accuracy" + }, + "id": 122972363 + } + }, + { + "id": 122972282, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.0996481, + 39.9855193 + ], + [ + -86.0996481, + 39.9855193 + ], + [ + -86.0996481, + 39.9855193 + ], + [ + -86.0996481, + 39.9855193 + ], + [ + -86.0996481, + 39.9855193 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T19:45:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 122972282 + } + }, + { + "id": 122969849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3914352, + 52.5035251 + ], + [ + 13.3922875, + 52.5035251 + ], + [ + 13.3922875, + 52.5050467 + ], + [ + 13.3914352, + 52.5050467 + ], + [ + 13.3914352, + 52.5035251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T18:42:41Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ], + "building": [ + "residential" + ], + "artist_name": [ + "John Hejduk" + ], + "artwork_type": [ + "sculpture" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000129685968000327, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 122969849 + } + }, + { + "id": 122969425, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 85.3123226, + 27.7134188 + ], + [ + 85.3123226, + 27.7134188 + ], + [ + 85.3123226, + 27.7134188 + ], + [ + 85.3123226, + 27.7134188 + ], + [ + 85.3123226, + 27.7134188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "shahgnp", + "uid": "16215173", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T18:32:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 122969425 + } + }, + { + "id": 122969252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4416698, + 51.2425369 + ], + [ + 4.4416698, + 51.2425369 + ], + [ + 4.4416698, + 51.2425369 + ], + [ + 4.4416698, + 51.2425369 + ], + [ + 4.4416698, + 51.2425369 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T18:27:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/fkP5413.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 122969252 + } + }, + { + "id": 122969040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4309258, + 50.9390764 + ], + [ + 5.4309258, + 50.9390764 + ], + [ + 5.4309258, + 50.9390764 + ], + [ + 5.4309258, + 50.9390764 + ], + [ + 5.4309258, + 50.9390764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T18:21:33Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/1RDIxwQ.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 122969040 + } + }, + { + "id": 122968650, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4849521, + 51.5597481 + ], + [ + 13.4851433, + 51.5597481 + ], + [ + 13.4851433, + 51.5598598 + ], + [ + 13.4849521, + 51.5598598 + ], + [ + 13.4849521, + 51.5597481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ronnsen79", + "uid": "15992654", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T18:08:10Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "water" + ], + "emergency": [ + "Nicht mehr vorhanden", + "fire_water_pond" + ], + "water_tank:volume": [ + "1" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.13570399997735e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122968650 + } + }, + { + "id": 122968636, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3689274, + 53.1575628 + ], + [ + 6.3779708, + 53.1575628 + ], + [ + 6.3779708, + 53.1586597 + ], + [ + 6.3689274, + 53.1586597 + ], + [ + 6.3689274, + 53.1575628 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T18:07:47Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "name:etymology:wikidata": [ + "Q2227764" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000991970546000302, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122968636 + } + }, + { + "id": 122968283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1896513, + 51.0148301 + ], + [ + 5.1991339, + 51.0148301 + ], + [ + 5.1991339, + 51.0214886 + ], + [ + 5.1896513, + 51.0214886 + ], + [ + 5.1896513, + 51.0148301 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T17:57:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/g1wyuGj.jpg", + "https://i.imgur.com/nS4dfKq.jpg" + ], + "route": [ + "hiking", + "foot" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000631398920999981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 122968283 + } + }, + { + "id": 122968053, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1800287, + 51.0102086 + ], + [ + 5.1800287, + 51.0102086 + ], + [ + 5.1800287, + 51.0102086 + ], + [ + 5.1800287, + 51.0102086 + ], + [ + 5.1800287, + 51.0102086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T17:52:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122968053 + } + }, + { + "id": 122966539, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0649207, + 50.9864937 + ], + [ + 5.0649207, + 50.9864937 + ], + [ + 5.0649207, + 50.9864937 + ], + [ + 5.0649207, + 50.9864937 + ], + [ + 5.0649207, + 50.9864937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T17:09:57Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YNdp0zq.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 122966539 + } + }, + { + "id": 122966477, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4488122, + 52.4513655 + ], + [ + 13.4488122, + 52.4513655 + ], + [ + 13.4488122, + 52.4513655 + ], + [ + 13.4488122, + 52.4513655 + ], + [ + 13.4488122, + 52.4513655 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex030", + "uid": "418040", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T17:08:04Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-06-28", + "2020-08-31" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 122966477 + } + }, + { + "id": 122965755, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2382943, + 52.758896 + ], + [ + 13.250764, + 52.758896 + ], + [ + 13.250764, + 52.765117 + ], + [ + 13.2382943, + 52.765117 + ], + [ + 13.2382943, + 52.758896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T16:47:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 11, + "delete": 0, + "area": 0.000077574003699959, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122965755 + } + }, + { + "id": 122963306, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1374851, + 39.9494081 + ], + [ + -86.1244897, + 39.9494081 + ], + [ + -86.1244897, + 40.0425404 + ], + [ + -86.1374851, + 40.0425404 + ], + [ + -86.1374851, + 39.9494081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9853684870", + "name": "Carmel Bike Share", + "osm_id": 9853684870, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-9853687394", + "name": "Carmel Bike Share", + "osm_id": 9853687394, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T15:35:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking", + "drinking_water", + "bicycle_library" + ] + }, + "create": 11, + "modify": 6, + "delete": 0, + "area": 0.00121029149142078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 19, + "create": 11, + "locale": "en", + "imagery": "USDA-NAIP", + "change_over_5000m": 11, + "change_within_5000m": 13 + }, + "id": 122963306 + } + }, + { + "id": 122962113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T15:02:40Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "changing_table": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 122962113 + } + }, + { + "id": 122961458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2368904, + 50.7355966 + ], + [ + 4.2368904, + 50.7355966 + ], + [ + 4.2368904, + 50.7355966 + ], + [ + 4.2368904, + 50.7355966 + ], + [ + 4.2368904, + 50.7355966 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T14:46:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/OpmIQbk.jpg" + ], + "amenity": [ + "bench" + ], + "direction": [ + "242" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 122961458 + } + }, + { + "id": 122961067, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2350762, + 50.7355539 + ], + [ + 4.2367925, + 50.7355539 + ], + [ + 4.2367925, + 50.7358757 + ], + [ + 4.2350762, + 50.7358757 + ], + [ + 4.2350762, + 50.7355539 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T14:38:07Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "image:0": [ + "https://i.imgur.com/LJaPaBw.jpg", + "https://i.imgur.com/AZvLfEb.jpg" + ], + "capacity": [ + "6", + "5" + ], + "cargo_bike": [ + "yes" + ], + "capacity:cargo_bike": [ + "3", + "1" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.52305340003117e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 9 + }, + "id": 122961067 + } + }, + { + "id": 122956870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1146272, + 40.0007143 + ], + [ + -86.0902806, + 40.0007143 + ], + [ + -86.0902806, + 40.00211 + ], + [ + -86.1146272, + 40.00211 + ], + [ + -86.1146272, + 40.0007143 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T13:03:07Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000339805496200828, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 14, + "create": 5, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "id": 122956870 + } + }, + { + "id": 122954524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1265289, + 52.0783022 + ], + [ + 5.1265289, + 52.0783022 + ], + [ + 5.1265289, + 52.0783022 + ], + [ + 5.1265289, + 52.0783022 + ], + [ + 5.1265289, + 52.0783022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T12:05:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 122954524 + } + }, + { + "id": 122947876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3688066, + 50.74495 + ], + [ + 3.3688066, + 50.74495 + ], + [ + 3.3688066, + 50.74495 + ], + [ + 3.3688066, + 50.74495 + ], + [ + 3.3688066, + 50.74495 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-28T09:40:59Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9852865729": "source: https://osm.org/note/3156356" + }, + "id": 122947876 + } + }, + { + "id": 122947761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.482082, + 43.637648 + ], + [ + 1.4822397, + 43.637648 + ], + [ + 1.4822397, + 43.6382385 + ], + [ + 1.482082, + 43.6382385 + ], + [ + 1.482082, + 43.637648 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Guyou", + "uid": "7273", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T09:38:48Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.31218500002886e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed", + "theme": "maxspeed", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 122947761 + } + }, + { + "id": 122945411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8716589, + 50.9795615 + ], + [ + 3.8924571, + 50.9795615 + ], + [ + 3.8924571, + 51.0056672 + ], + [ + 3.8716589, + 51.0056672 + ], + [ + 3.8716589, + 50.9795615 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T08:51:42Z", + "reviewed_features": [], + "tag_changes": { + "school": [ + "kindergarten", + "kindergarten;primary", + "primary;kindergarten" + ], + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "Dutch", + "dutch" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000542951569739904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122945411 + } + }, + { + "id": 122945100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.863106, + 56.2488845 + ], + [ + 43.863106, + 56.2488845 + ], + [ + 43.863106, + 56.2488845 + ], + [ + 43.863106, + 56.2488845 + ], + [ + 43.863106, + 56.2488845 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-28T08:45:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/krvTRhw.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 122945100 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-29.json b/Docs/Tools/stats/stats.2022-6-29.json new file mode 100644 index 0000000000..141b70d5a6 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-29.json @@ -0,0 +1,1916 @@ +{ + "features": [ + { + "id": 123022136, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:51:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "de", + "imagery": "HDM_HOT", + "change_within_50m": 1 + }, + "id": 123022136 + } + }, + { + "id": 123022095, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3753026, + 52.5692482 + ], + [ + 13.3756678, + 52.5692482 + ], + [ + 13.3756678, + 52.5693166 + ], + [ + 13.3753026, + 52.5693166 + ], + [ + 13.3753026, + 52.5692482 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:48:46Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.49796800013512e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123022095 + } + }, + { + "id": 123021994, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3755981, + 52.5695314 + ], + [ + 13.3755981, + 52.5695314 + ], + [ + 13.3755981, + 52.5695314 + ], + [ + 13.3755981, + 52.5695314 + ], + [ + 13.3755981, + 52.5695314 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:42:11Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "4" + ], + "amenity": [ + "bench" + ], + "direction": [ + "210" + ], + "survey:date": [ + "2022-06-29" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 123021994 + } + }, + { + "id": 123021791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3751053, + 52.5691908 + ], + [ + 13.3757563, + 52.5691908 + ], + [ + 13.3757563, + 52.5697711 + ], + [ + 13.3751053, + 52.5697711 + ], + [ + 13.3751053, + 52.5691908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:29:11Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "park", + "urban" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 51, + "delete": 1, + "area": 3.77775299997987e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 67, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 62, + "change_within_50m": 6, + "deletion:node/9172254141": "not found" + }, + "id": 123021791 + } + }, + { + "id": 123021781, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:28:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 123021781 + } + }, + { + "id": 123021737, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3750741, + 52.5696849 + ], + [ + 13.375553, + 52.5696849 + ], + [ + 13.375553, + 52.5697313 + ], + [ + 13.3750741, + 52.5697313 + ], + [ + 13.3750741, + 52.5696849 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:25:42Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "entrance": [ + "main", + "yes" + ], + "automatic_door": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.22209600010259e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "entrances", + "answer": 13, + "locale": "de", + "imagery": "osm", + "change_within_25m": 13 + }, + "id": 123021737 + } + }, + { + "id": 123021456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3675843, + 52.5691028 + ], + [ + 13.3797992, + 52.5691028 + ], + [ + 13.3797992, + 52.5716303 + ], + [ + 13.3675843, + 52.5716303 + ], + [ + 13.3675843, + 52.5691028 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T22:10:25Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "7", + "3", + "6", + "8", + "1", + "5", + "4", + "2", + "10", + "12" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "bent_mast", + "straight_mast" + ], + "light:count": [ + "1", + "4" + ], + "light:colour": [ + "white" + ], + "light:method": [ + "halogen", + "gas", + "LED", + "mercury" + ] + }, + "create": 7, + "modify": 58, + "delete": 0, + "area": 0.0000308731597499921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 143, + "create": 7, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 142, + "change_within_50m": 1 + }, + "id": 123021456 + } + }, + { + "id": 123018657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.369256, + 52.6313117 + ], + [ + 13.3768607, + 52.6313117 + ], + [ + 13.3768607, + 52.6359914 + ], + [ + 13.369256, + 52.6359914 + ], + [ + 13.369256, + 52.6313117 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T20:23:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 7, + "delete": 0, + "area": 0.0000355877145900305, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123018657 + } + }, + { + "id": 123016842, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.252917, + 52.3765004 + ], + [ + -1.252719, + 52.3765004 + ], + [ + -1.252719, + 52.3765311 + ], + [ + -1.252917, + 52.3765311 + ], + [ + -1.252917, + 52.3765004 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-29T19:32:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 6.07860000069576e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 8, + "import": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123016842 + } + }, + { + "id": 123015647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3318422, + 52.4735172 + ], + [ + 13.332421, + 52.4735172 + ], + [ + 13.332421, + 52.4756494 + ], + [ + 13.3318422, + 52.4756494 + ], + [ + 13.3318422, + 52.4735172 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wikinaut", + "uid": "120965", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-29T19:00:12Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-06-29", + "2020-06-18" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000123411735999809, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123015647 + } + }, + { + "id": 123014096, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8667483, + 56.2598101 + ], + [ + 43.8854509, + 56.2598101 + ], + [ + 43.8854509, + 56.2742227 + ], + [ + 43.8667483, + 56.2742227 + ], + [ + 43.8667483, + 56.2598101 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-29T18:19:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000269553092760066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 17, + "locale": "ru", + "imagery": "EsriWorldImageryClarity", + "add-image": 6 + }, + "id": 123014096 + } + }, + { + "id": 123013389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6137448, + 47.7819293 + ], + [ + 9.6137448, + 47.7819293 + ], + [ + 9.6137448, + 47.7819293 + ], + [ + 9.6137448, + 47.7819293 + ], + [ + 9.6137448, + 47.7819293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T17:55:21Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "0" + ], + "access": [ + "yes" + ], + "wheelchair": [ + "no" + ], + "survey:date": [ + "2022-06-29" + ], + "defibrillator:location": [ + "Rechts am Eingang" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 4 + }, + "id": 123013389 + } + }, + { + "id": 123012196, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2358278, + 52.7550958 + ], + [ + 13.2535406, + 52.7550958 + ], + [ + 13.2535406, + 52.7720546 + ], + [ + 13.2358278, + 52.7720546 + ], + [ + 13.2358278, + 52.7550958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T17:13:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 60, + "modify": 56, + "delete": 0, + "area": 0.000300387832639957, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123012196 + } + }, + { + "id": 123011018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5570506, + 53.01615 + ], + [ + 6.5570506, + 53.01615 + ], + [ + 6.5570506, + 53.01615 + ], + [ + 6.5570506, + 53.01615 + ], + [ + 6.5570506, + 53.01615 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22git .0", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T16:39:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste_assen.html", + "theme": "waste_assen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123011018 + } + }, + { + "id": 123010647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.555723, + 53.0090286 + ], + [ + 6.5669171, + 53.0090286 + ], + [ + 6.5669171, + 53.01615 + ], + [ + 6.555723, + 53.01615 + ], + [ + 6.555723, + 53.0090286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22git .0", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T16:27:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_disposal", + "waste_basket" + ] + }, + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.0000797176637400291, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste_assen.html", + "theme": "waste_assen", + "answer": 14, + "create": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_500m": 2, + "change_within_1000m": 10, + "change_within_5000m": 2 + }, + "id": 123010647 + } + }, + { + "id": 123008555, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2681166, + 53.2107031 + ], + [ + 6.2681166, + 53.2107031 + ], + [ + 6.2681166, + 53.2107031 + ], + [ + 6.2681166, + 53.2107031 + ], + [ + 6.2681166, + 53.2107031 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T15:31:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123008555 + } + }, + { + "id": 123006999, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8153621, + 51.1848734 + ], + [ + 2.8161858, + 51.1848734 + ], + [ + 2.8161858, + 51.1864325 + ], + [ + 2.8153621, + 51.1864325 + ], + [ + 2.8153621, + 51.1848734 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22git .0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T14:50:05Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "foot" + ], + "highway": [ + "residential" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000128423067000084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "split": 3, + "theme": "personal", + "answer": 1, + "locale": "en", + "imagery": "osm", + "relation-fix": 1, + "change_within_25m": 4 + }, + "id": 123006999 + } + }, + { + "id": 123006898, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8152563, + 51.1863733 + ], + [ + 2.8168622, + 51.1863733 + ], + [ + 2.8168622, + 51.1870705 + ], + [ + 2.8152563, + 51.1870705 + ], + [ + 2.8152563, + 51.1863733 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22git .0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T14:47:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing": [ + "uncontrolled" + ], + "tactile_paving": [ + "no" + ], + "crossing:island": [ + "no" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000111963347999614, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 13, + "locale": "en", + "imagery": "osm", + "change_within_50m": 7, + "change_within_100m": 6 + }, + "id": 123006898 + } + }, + { + "id": 123004687, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1297378, + 39.9740285 + ], + [ + -86.129696, + 39.9740285 + ], + [ + -86.129696, + 39.9757616 + ], + [ + -86.1297378, + 39.9757616 + ], + [ + -86.1297378, + 39.9740285 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9855850926", + "name": "Carmel Bike Share", + "osm_id": 9855850926, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T13:56:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_library", + "drinking_water" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 7.24435800090186e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "id": 123004687 + } + }, + { + "id": 123003798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3726726, + 50.9369797 + ], + [ + 4.3726726, + 50.9369797 + ], + [ + 4.3726726, + 50.9369797 + ], + [ + 4.3726726, + 50.9369797 + ], + [ + 4.3726726, + 50.9369797 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-29T13:33:48Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "fr", + "imagery": "AGIV", + "link-image": 1, + "import:node/9855796278": "source: https://osm.org/note/3084035" + }, + "id": 123003798 + } + }, + { + "id": 123002129, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1265885, + 40.0052251 + ], + [ + -86.1265885, + 40.0052251 + ], + [ + -86.1265885, + 40.0052251 + ], + [ + -86.1265885, + 40.0052251 + ], + [ + -86.1265885, + 40.0052251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T12:54:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123002129 + } + }, + { + "id": 123001445, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4291074, + 50.9236608 + ], + [ + 4.4291074, + 50.9236608 + ], + [ + 4.4291074, + 50.9236608 + ], + [ + 4.4291074, + 50.9236608 + ], + [ + 4.4291074, + 50.9236608 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T12:39:09Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dXCNSPg.jpg" + ], + "image:0": [ + "https://i.imgur.com/gQgtZDf.jpg" + ], + "leisure": [ + "playground" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_50m": 3 + }, + "id": 123001445 + } + }, + { + "id": 122998796, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0210153, + 47.5543206 + ], + [ + 10.0210153, + 47.5543206 + ], + [ + 10.0210153, + 47.5543206 + ], + [ + 10.0210153, + 47.5543206 + ], + [ + 10.0210153, + 47.5543206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T11:39:31Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Ef0gBj2.jpg" + ], + "access": [ + "yes" + ], + "indoor": [ + "no" + ], + "wheelchair": [ + "yes" + ], + "description": [ + "Per Rollstuhl via Aufzug hinter der Treppe" + ], + "survey:date": [ + "2022-06-29" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 6, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 7 + }, + "id": 122998796 + } + }, + { + "id": 122997347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2242369, + 52.7602301 + ], + [ + 13.265593, + 52.7602301 + ], + [ + 13.265593, + 52.781634 + ], + [ + 13.2242369, + 52.781634 + ], + [ + 13.2242369, + 52.7602301 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-29T11:07:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 70, + "modify": 64, + "delete": 0, + "area": 0.000885181828789856, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 122997347 + } + }, + { + "id": 122996837, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0209635, + 47.5537683 + ], + [ + 10.0251696, + 47.5537683 + ], + [ + 10.0251696, + 47.554363 + ], + [ + 10.0209635, + 47.554363 + ], + [ + 10.0209635, + 47.5537683 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-29T10:56:00Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "opening_hours": [ + "Mo-Su 07:00-20:00" + ], + "changing_table": [ + "yes" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ], + "changing_table:location": [ + "dedicated_room" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000250136767000218, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 7 + }, + "id": 122996837 + } + }, + { + "id": 122978497, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6153251, + 50.939041 + ], + [ + 4.6160349, + 50.939041 + ], + [ + 4.6160349, + 50.9393912 + ], + [ + 4.6153251, + 50.9393912 + ], + [ + 4.6153251, + 50.939041 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-29T00:26:49Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+32 16 60 20 59" + ], + "school": [ + "kindergarten;primary" + ], + "amenity": [ + "school" + ], + "website": [ + "https://www.go-spectrum.be/spectrum-buken/" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.48571959999852e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 122978497 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-30.json b/Docs/Tools/stats/stats.2022-6-30.json new file mode 100644 index 0000000000..0e886cc701 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-6-30.json @@ -0,0 +1,1640 @@ +{ + "features": [ + { + "id": 123064229, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1120733, + 38.8376833 + ], + [ + 0.1120733, + 38.8376833 + ], + [ + 0.1120733, + 38.8376833 + ], + [ + 0.1120733, + 38.8376833 + ], + [ + 0.1120733, + 38.8376833 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T23:35:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "recycling:clothes": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123064229 + } + }, + { + "id": 123062710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3705357, + 52.5637548 + ], + [ + 13.3706135, + 52.5637548 + ], + [ + 13.3706135, + 52.5638755 + ], + [ + 13.3705357, + 52.5638755 + ], + [ + 13.3705357, + 52.5637548 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T22:06:22Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.39046000024481e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 3, + "theme": "street_lighting", + "answer": 6, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 9, + "move:node/9859182147": "improve_accuracy", + "move:node/9859207883": "improve_accuracy" + }, + "id": 123062710 + } + }, + { + "id": 123060568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8590768, + 56.2553563 + ], + [ + 43.8590768, + 56.2553563 + ], + [ + 43.8590768, + 56.2553563 + ], + [ + 43.8590768, + 56.2553563 + ], + [ + 43.8590768, + 56.2553563 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T20:43:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2Rl4Wzu.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123060568 + } + }, + { + "id": 123058538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3582791, + 52.5738363 + ], + [ + 13.3588843, + 52.5738363 + ], + [ + 13.3588843, + 52.5742592 + ], + [ + 13.3582791, + 52.5742592 + ], + [ + 13.3582791, + 52.5738363 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T19:29:25Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "avenue" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q158746", + "Q159657", + "Q147064" + ] + }, + "create": 0, + "modify": 29, + "delete": 0, + "area": 2.55939079997552e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 42, + "locale": "de", + "imagery": "osm" + }, + "id": 123058538 + } + }, + { + "id": 123057475, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7428893, + 51.0861971 + ], + [ + 2.7429531, + 51.0861971 + ], + [ + 2.7429531, + 51.0862492 + ], + [ + 2.7428893, + 51.0862492 + ], + [ + 2.7428893, + 51.0861971 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T18:52:16Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 5, + "modify": 0, + "delete": 0, + "area": 3.32397999985555e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 123057475 + } + }, + { + "id": 123055599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3726202, + 52.5690062 + ], + [ + 13.3763133, + 52.5690062 + ], + [ + 13.3763133, + 52.569459 + ], + [ + 13.3726202, + 52.569459 + ], + [ + 13.3726202, + 52.5690062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T17:49:58Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "avenue" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q165321", + "Q127849" + ] + }, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00000167223568001837, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 24, + "locale": "de", + "imagery": "osm" + }, + "id": 123055599 + } + }, + { + "id": 123055172, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0636581, + 50.9064582 + ], + [ + 5.073856, + 50.9064582 + ], + [ + 5.073856, + 50.9097132 + ], + [ + 5.0636581, + 50.9097132 + ], + [ + 5.0636581, + 50.9064582 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T17:35:44Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ], + "building": [ + "yes", + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1906491" + ], + "source:geometry:date": [ + "2009-11-05" + ] + }, + "create": 2168, + "modify": 7, + "delete": 0, + "area": 0.0000331941644999588, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 6, + "theme": "grb", + "import": 287, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 123055172 + } + }, + { + "id": 123054665, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4231062, + 50.8767311 + ], + [ + 5.0686347, + 50.8767311 + ], + [ + 5.0686347, + 50.9601208 + ], + [ + 4.4231062, + 50.9601208 + ], + [ + 4.4231062, + 50.8767311 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T17:21:15Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "foot", + "bicycle" + ], + "highway": [ + "service", + "footway", + "path" + ], + "landuse": [ + "residential" + ], + "leisure": [ + "playground", + "picnic_table" + ], + "surface": [ + "grass" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.0538304279564486, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 4, + "locale": "nl", + "imagery": "osm", + "import:node/9858601475": "source: https://osm.org/note/3084052", + "import:node/9858655766": "source: https://osm.org/note/3090256", + "import:node/9858701842": "source: https://osm.org/note/3090290", + "import:node/9858712663": "source: https://osm.org/note/3084058" + }, + "id": 123054665 + } + }, + { + "id": 123052549, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5099199, + 51.0956401 + ], + [ + 4.513286, + 51.0956401 + ], + [ + 4.513286, + 51.0962469 + ], + [ + 4.5099199, + 51.0962469 + ], + [ + 4.5099199, + 51.0956401 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T16:22:50Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "building": [ + "yes", + "roof", + "house", + "garages" + ], + "addr:street": [ + "Kwakkelenberg" + ], + "addr:housenumber": [ + "1;3" + ], + "source:geometry:ref": [ + "Gbg/3188452", + "Gbg/3188505", + "Gbg/3188459", + "Gbg/3188458", + "Gbg/3188457", + "Gbg/3188456", + "Gbg/3188455", + "Gbg/3188454", + "Gbg/3188453", + "Gbg/3188451", + "Gbg/5741266" + ], + "source:geometry:date": [ + "2011-09-09", + "2016-11-17" + ] + }, + "create": 86, + "modify": 70, + "delete": 3, + "area": 0.00000204254947999971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 59, + "theme": "grb", + "delete": 3, + "import": 18, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 22 + }, + "id": 123052549 + } + }, + { + "id": 123051593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5090354, + 51.094467 + ], + [ + 4.514749, + 51.094467 + ], + [ + 4.514749, + 51.0964582 + ], + [ + 4.5090354, + 51.0964582 + ], + [ + 4.5090354, + 51.094467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T15:59:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school", + "social_facility" + ], + "building": [ + "yes", + "house", + "school", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3188463", + "Gbg/3188464", + "Gbg/3188465", + "Gbg/3188466", + "Gbg/3188467", + "Gbg/3188468", + "Gbg/3188462", + "Gbg/3188461", + "Gbg/3188512", + "Gbg/3188511", + "Gbg/5740828", + "Gbg/5740863", + "Gbg/3188848", + "Gbg/6187394", + "Gbg/3188509", + "Gbg/5740861", + "Gbg/6684401", + "Gbg/5740864" + ], + "source:geometry:date": [ + "2011-09-09", + "2021-11-03", + "2016-11-17", + "2019-10-22" + ] + }, + "create": 1248, + "modify": 93, + "delete": 0, + "area": 0.0000113769203199947, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 88, + "theme": "grb", + "import": 191, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 38 + }, + "id": 123051593 + } + }, + { + "id": 123051545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.510061, + 51.0951197 + ], + [ + 4.5112118, + 51.0951197 + ], + [ + 4.5112118, + 51.0965459 + ], + [ + 4.510061, + 51.0965459 + ], + [ + 4.510061, + 51.0951197 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T15:58:02Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "union" + ], + "amenity": [ + "school", + "social_facility" + ], + "building": [ + "house", + "school", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3188503" + ], + "source:geometry:date": [ + "2016-11-17" + ] + }, + "create": 52, + "modify": 40, + "delete": 0, + "area": 0.00000164127096000454, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 39, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 123051545 + } + }, + { + "id": 123049927, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2013467, + 51.1861083 + ], + [ + 3.2052964, + 51.1861083 + ], + [ + 3.2052964, + 51.1882058 + ], + [ + 3.2013467, + 51.1882058 + ], + [ + 3.2013467, + 51.1861083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T15:16:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "college" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000828449574999099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123049927 + } + }, + { + "id": 123049737, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4969133, + 52.5134543 + ], + [ + 13.5026875, + 52.5134543 + ], + [ + 13.5026875, + 52.5159314 + ], + [ + 13.4969133, + 52.5159314 + ], + [ + 13.4969133, + 52.5134543 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JayMClichtenberg", + "uid": "16411989", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T15:11:12Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-06-30", + "2021-06-29" + ], + "pump:status": [ + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000143032708200036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123049737 + } + }, + { + "id": 123047271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.9143375, + 45.7477523 + ], + [ + 11.0305442, + 45.7477523 + ], + [ + 11.0305442, + 45.7814051 + ], + [ + 10.9143375, + 45.7814051 + ], + [ + 10.9143375, + 45.7477523 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Luca 7213", + "uid": "6604740", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-06-30T14:08:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00391068083375983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123047271 + } + }, + { + "id": 123046909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2485726, + 50.7246783 + ], + [ + 4.2485726, + 50.7246783 + ], + [ + 4.2485726, + 50.7246783 + ], + [ + 4.2485726, + 50.7246783 + ], + [ + 4.2485726, + 50.7246783 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T13:58:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "id": 123046909 + } + }, + { + "id": 123039312, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ], + [ + 6.264015, + 53.2121552 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T10:45:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123039312 + } + }, + { + "id": 123038116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ], + [ + 6.2635859, + 53.2048097 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T10:14:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/HW5FnHc.jpg" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123038116 + } + }, + { + "id": 123037903, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2633648, + 53.204791 + ], + [ + 6.263577, + 53.204791 + ], + [ + 6.263577, + 53.2048875 + ], + [ + 6.2633648, + 53.2048875 + ], + [ + 6.2633648, + 53.204791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T10:09:24Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/L054lh4.jpg", + "https://i.imgur.com/Ui472ey.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.04772999995636e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 3, + "move:node/9785285079": "improve_accuracy" + }, + "id": 123037903 + } + }, + { + "id": 123031977, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5588303, + 53.0178338 + ], + [ + 6.5588748, + 53.0178338 + ], + [ + 6.5588748, + 53.0178713 + ], + [ + 6.5588303, + 53.0178713 + ], + [ + 6.5588303, + 53.0178338 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T07:41:45Z", + "reviewed_features": [], + "tag_changes": { + "tactile_paving": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.66875000019695e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 3 + }, + "id": 123031977 + } + }, + { + "id": 123023415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0251903, + 47.5533321 + ], + [ + 10.0251903, + 47.5533321 + ], + [ + 10.0251903, + 47.5533321 + ], + [ + 10.0251903, + 47.5533321 + ], + [ + 10.0251903, + 47.5533321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T00:42:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/EI4LgYQ.jpg" + ], + "amenity": [ + "charging_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 123023415 + } + }, + { + "id": 123023332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0251696, + 47.5537683 + ], + [ + 10.0251696, + 47.5537683 + ], + [ + 10.0251696, + 47.5537683 + ], + [ + 10.0251696, + 47.5537683 + ], + [ + 10.0251696, + 47.5537683 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-06-30T00:32:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Not0wk9.jpg" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "yes" + ], + "changing_table": [ + "yes" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "id": 123023332 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-01.json b/Docs/Tools/stats/stats.2022-7-01.json new file mode 100644 index 0000000000..3af24cbb93 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-01.json @@ -0,0 +1,3461 @@ +{ + "features": [ + { + "id": 123102504, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.606635, + 47.7848261 + ], + [ + 9.6067662, + 47.7848261 + ], + [ + 9.6067662, + 47.7849155 + ], + [ + 9.606635, + 47.7849155 + ], + [ + 9.606635, + 47.7848261 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T21:58:48Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/uiGbcfW.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "building": [ + "toilets" + ], + "toilets:handwashing": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.17292799998923e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123102504 + } + }, + { + "id": 123102333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6066708, + 47.7848909 + ], + [ + 9.6068181, + 47.7848909 + ], + [ + 9.6068181, + 47.7849922 + ], + [ + 9.6066708, + 47.7849922 + ], + [ + 9.6066708, + 47.7848909 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T21:51:11Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Ctx0k5z.jpg" + ], + "amenity": [ + "bicycle_parking" + ], + "building": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.49214899995942e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123102333 + } + }, + { + "id": 123102060, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6049025, + 47.7834979 + ], + [ + 9.6055492, + 47.7834979 + ], + [ + 9.6055492, + 47.7841719 + ], + [ + 9.6049025, + 47.7841719 + ], + [ + 9.6049025, + 47.7834979 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T21:38:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FFpAm1I.jpg" + ], + "amenity": [ + "parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.35875799998267e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123102060 + } + }, + { + "id": 123101845, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2614436, + 53.2052951 + ], + [ + 6.2614436, + 53.2052951 + ], + [ + 6.2614436, + 53.2052951 + ], + [ + 6.2614436, + 53.2052951 + ], + [ + 6.2614436, + 53.2052951 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T21:30:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123101845 + } + }, + { + "id": 123101816, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2614436, + 53.2052951 + ], + [ + 6.2766056, + 53.2052951 + ], + [ + 6.2766056, + 53.2135149 + ], + [ + 6.2614436, + 53.2135149 + ], + [ + 6.2614436, + 53.2052951 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T21:29:34Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000124628607599988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1, + "change_within_1000m": 3 + }, + "id": 123101816 + } + }, + { + "id": 123099712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1990302, + 51.3326933 + ], + [ + 3.2015021, + 51.3326933 + ], + [ + 3.2015021, + 51.3335272 + ], + [ + 3.1990302, + 51.3335272 + ], + [ + 3.1990302, + 51.3326933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T20:05:58Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FGnA00u.jpg" + ], + "seats": [ + "20" + ], + "colour": [ + "gray" + ], + "amenity": [ + "bench" + ], + "direction": [ + "156" + ], + "survey:date": [ + "2022-07-01" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000206131740999087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 16, + "create": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 19 + }, + "id": 123099712 + } + }, + { + "id": 123099673, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.803851, + 11.9180455 + ], + [ + 95.3110835, + 11.9180455 + ], + [ + 95.3110835, + 28.645127 + ], + [ + 72.803851, + 28.645127 + ], + [ + 72.803851, + 11.9180455 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T20:04:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 16, + "delete": 0, + "area": 376.480312366949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "id": 123099673 + } + }, + { + "id": 123098929, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.2558073, + 46.89458 + ], + [ + 8.4656997, + 46.89458 + ], + [ + 8.4656997, + 46.9974299 + ], + [ + 8.2558073, + 46.9974299 + ], + [ + 8.2558073, + 46.89458 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "node-471295293", + "name": "Buochs", + "osm_id": 471295293, + "reasons": [ + 87 + ], + "version": 12, + "primary_tags": { + "highway": "motorway_junction" + } + } + ], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T19:39:25Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "motorway_junction", + "secondary", + "unclassified", + "residential", + "tertiary", + "living_street" + ], + "name:etymology:wikidata": [ + "Q63964", + "Q64567", + "Q63931", + "Q64108", + "Q43246", + "Q99367828", + "Q69140", + "Q2169139" + ] + }, + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.0215874123507605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 174, + "locale": "fr", + "imagery": "osm" + }, + "id": 123098929 + } + }, + { + "id": 123098867, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3660334, + 46.9573002 + ], + [ + 8.3678968, + 46.9573002 + ], + [ + 8.3678968, + 46.9586627 + ], + [ + 8.3660334, + 46.9586627 + ], + [ + 8.3660334, + 46.9573002 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T19:38:02Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000253888249999998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 123098867 + } + }, + { + "id": 123098816, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.36547, + 46.9572396 + ], + [ + 8.3655354, + 46.9572396 + ], + [ + 8.3655354, + 46.9572806 + ], + [ + 8.36547, + 46.9572806 + ], + [ + 8.36547, + 46.9572396 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T19:36:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.68139999975378e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "fr", + "imagery": "osm" + }, + "id": 123098816 + } + }, + { + "id": 123098781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3646258, + 46.9572396 + ], + [ + 8.3655354, + 46.9572396 + ], + [ + 8.3655354, + 46.9611766 + ], + [ + 8.3646258, + 46.9611766 + ], + [ + 8.3646258, + 46.9572396 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T19:35:58Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000035810952000003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 123098781 + } + }, + { + "id": 123097417, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3512251, + 52.5722782 + ], + [ + 13.3731231, + 52.5722782 + ], + [ + 13.3731231, + 52.5749204 + ], + [ + 13.3512251, + 52.5749204 + ], + [ + 13.3512251, + 52.5722782 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:50:30Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0000578588956000865, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 11, + "create": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 11 + }, + "id": 123097417 + } + }, + { + "id": 123097318, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:46:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123097318 + } + }, + { + "id": 123097310, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:46:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123097310 + } + }, + { + "id": 123097301, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:46:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123097301 + } + }, + { + "id": 123097297, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:46:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123097297 + } + }, + { + "id": 123097150, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3480489, + 52.5752399 + ], + [ + 13.3487399, + 52.5752399 + ], + [ + 13.3487399, + 52.5758365 + ], + [ + 13.3480489, + 52.5758365 + ], + [ + 13.3480489, + 52.5752399 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:41:46Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "61" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "bent_mast" + ], + "light:count": [ + "9" + ], + "light:method": [ + "gas" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.12250600000903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 17, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 17 + }, + "id": 123097150 + } + }, + { + "id": 123097070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3480489, + 52.57561 + ], + [ + 13.3492394, + 52.57561 + ], + [ + 13.3492394, + 52.5758365 + ], + [ + 13.3480489, + 52.5758365 + ], + [ + 13.3480489, + 52.57561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:38:28Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "62" + ], + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "9" + ], + "light:method": [ + "gas" + ] + }, + "create": 0, + "modify": 4, + "delete": 1, + "area": 2.69648250004355e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 10, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 11, + "deletion:node/9725266729": "duplicate" + }, + "id": 123097070 + } + }, + { + "id": 123097044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3492207, + 52.5756478 + ], + [ + 13.3492394, + 52.5756478 + ], + [ + 13.3492394, + 52.5758229 + ], + [ + 13.3492207, + 52.5758229 + ], + [ + 13.3492207, + 52.5756478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:37:41Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "4" + ], + "light:method": [ + "gas" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.27437000000429e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 5 + }, + "id": 123097044 + } + }, + { + "id": 123096956, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.266119, + 50.7345064 + ], + [ + 6.009517, + 50.7345064 + ], + [ + 6.009517, + 51.120755 + ], + [ + 3.266119, + 51.120755 + ], + [ + 3.266119, + 50.7345064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:34:27Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "maxstay": [ + "unlimited" + ], + "network": [ + "Allego" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "yes", + "no" + ], + "payment:app": [ + "yes", + "no" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "2" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "no" + ], + "brand:wikidata": [ + "Q75560554" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 2, + "modify": 24, + "delete": 0, + "area": 1.0596336367428, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 34, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_over_5000m": 2, + "change_within_500m": 20 + }, + "id": 123096956 + } + }, + { + "id": 123096733, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3489755, + 52.5758229 + ], + [ + 13.3492207, + 52.5758229 + ], + [ + 13.3492207, + 52.5763354 + ], + [ + 13.3489755, + 52.5763354 + ], + [ + 13.3489755, + 52.5758229 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:27:16Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "59", + "56", + "57" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "straight_mast" + ], + "light:count": [ + "4" + ], + "light:colour": [ + "orange" + ], + "light:method": [ + "gas", + "mercury" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.25664999999902e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 19, + "locale": "de", + "imagery": "osm", + "change_within_25m": 19 + }, + "id": 123096733 + } + }, + { + "id": 123096629, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3493729, + 52.5755092 + ], + [ + 13.3495681, + 52.5755092 + ], + [ + 13.3495681, + 52.5758967 + ], + [ + 13.3493729, + 52.5758967 + ], + [ + 13.3493729, + 52.5755092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:22:50Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "52", + "55" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "bent_mast", + "straight_mast" + ], + "light:count": [ + "9", + "4" + ], + "light:method": [ + "gas" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.56400000005406e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 15, + "locale": "de", + "imagery": "osm", + "change_within_25m": 15 + }, + "id": 123096629 + } + }, + { + "id": 123096481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.349437, + 52.5753605 + ], + [ + 13.3511945, + 52.5753605 + ], + [ + 13.3511945, + 52.5755092 + ], + [ + 13.349437, + 52.5755092 + ], + [ + 13.349437, + 52.5753605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:17:39Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "48", + "46", + "44", + "50" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "bent_mast" + ], + "light:count": [ + "9" + ], + "light:method": [ + "gas" + ] + }, + "create": 0, + "modify": 10, + "delete": 0, + "area": 2.61340249994551e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 28, + "locale": "de", + "imagery": "osm", + "change_within_25m": 28 + }, + "id": 123096481 + } + }, + { + "id": 123096440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3511945, + 52.5753372 + ], + [ + 13.3516242, + 52.5753372 + ], + [ + 13.3516242, + 52.5753605 + ], + [ + 13.3511945, + 52.5753605 + ], + [ + 13.3511945, + 52.5753372 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:16:31Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "9" + ], + "light:method": [ + "gas" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.00120100009739e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4 + }, + "id": 123096440 + } + }, + { + "id": 123096273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1723883, + 38.7879042 + ], + [ + 0.1723883, + 38.7879042 + ], + [ + 0.1723883, + 38.7879042 + ], + [ + 0.1723883, + 38.7879042 + ], + [ + 0.1723883, + 38.7879042 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T18:10:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain", + "change_over_5000m": 1 + }, + "id": 123096273 + } + }, + { + "id": 123095949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3515054, + 52.57029 + ], + [ + 13.352942, + 52.57029 + ], + [ + 13.352942, + 52.5753372 + ], + [ + 13.3515054, + 52.5753372 + ], + [ + 13.3515054, + 52.57029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T17:58:19Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "34", + "36", + "30", + "32", + "10", + "38" + ], + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "light:lit": [ + "dusk-dawn" + ], + "lamp_mount": [ + "bent_mast" + ], + "light:count": [ + "9", + "2" + ], + "light:colour": [ + "orange" + ], + "light:method": [ + "gas" + ] + }, + "create": 5, + "modify": 22, + "delete": 0, + "area": 0.00000725080751999937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 55, + "create": 5, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 55 + }, + "id": 123095949 + } + }, + { + "id": 123095673, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8455725, + 56.2394391 + ], + [ + 43.8656933, + 56.2394391 + ], + [ + 43.8656933, + 56.2429602 + ], + [ + 43.8455725, + 56.2429602 + ], + [ + 43.8455725, + 56.2394391 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T17:48:23Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/oosJDfP.jpg", + "https://i.imgur.com/KKWGvmf.jpg", + "https://i.imgur.com/qU8VYuB.jpg", + "https://i.imgur.com/KFpUVks.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "capacity": [ + "20" + ] + }, + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.0000708473488799857, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 20, + "create": 3, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 6, + "change_over_5000m": 3, + "change_within_25m": 25 + }, + "id": 123095673 + } + }, + { + "id": 123095409, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8455725, + 56.2429602 + ], + [ + 43.8455725, + 56.2429602 + ], + [ + 43.8455725, + 56.2429602 + ], + [ + 43.8455725, + 56.2429602 + ], + [ + 43.8455725, + 56.2429602 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T17:39:52Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "capacity": [ + "5" + ], + "bicycle_parking": [ + "stands" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "ru", + "imagery": "CartoDB.Voyager" + }, + "id": 123095409 + } + }, + { + "id": 123094059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1103993, + 48.7279843 + ], + [ + 9.1109655, + 48.7279843 + ], + [ + 9.1109655, + 48.7285204 + ], + [ + 9.1103993, + 48.7285204 + ], + [ + 9.1103993, + 48.7279843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T16:57:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/BIIqhz7.jpg", + "https://i.imgur.com/WLkCKag.jpg", + "https://i.imgur.com/6fksA7o.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.0353981999964e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 3 + }, + "id": 123094059 + } + }, + { + "id": 123093627, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2182705, + 48.0879841 + ], + [ + 9.2188342, + 48.0879841 + ], + [ + 9.2188342, + 48.0882766 + ], + [ + 9.2182705, + 48.0882766 + ], + [ + 9.2182705, + 48.0879841 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T16:45:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5BaEVwW.jpg" + ], + "amenity": [ + "parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.64882250000478e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123093627 + } + }, + { + "id": 123093379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1118259, + 48.726658 + ], + [ + 9.1118259, + 48.726658 + ], + [ + 9.1118259, + 48.726658 + ], + [ + 9.1118259, + 48.726658 + ], + [ + 9.1118259, + 48.726658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T16:36:36Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/lzdeTHP.jpg" + ], + "amenity": [ + "toilets" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123093379 + } + }, + { + "id": 123087824, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4465267, + 52.54192 + ], + [ + 13.4465267, + 52.54192 + ], + [ + 13.4465267, + 52.54192 + ], + [ + 13.4465267, + 52.54192 + ], + [ + 13.4465267, + 52.54192 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annika_atip:tap", + "uid": "15923056", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T13:50:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123087824 + } + }, + { + "id": 123087463, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5931178, + 50.3632604 + ], + [ + 7.6049016, + 50.3632604 + ], + [ + 7.6049016, + 50.3640589 + ], + [ + 7.5931178, + 50.3640589 + ], + [ + 7.5931178, + 50.3632604 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T13:40:54Z", + "reviewed_features": [], + "tag_changes": { + "flickr": [ + "https://www.flickr.com/photos/28577026@N02/43997133060" + ], + "tourism": [ + "artwork" + ], + "wikimedia_commons": [ + "File:KO Bernar Venet Steel Arc.JPG" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000940936430002258, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "link-image": 2 + }, + "id": 123087463 + } + }, + { + "id": 123086886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4181462, + 52.532719 + ], + [ + 13.4185991, + 52.532719 + ], + [ + 13.4185991, + 52.5330975 + ], + [ + 13.4181462, + 52.5330975 + ], + [ + 13.4181462, + 52.532719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T13:23:41Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "pole" + ], + "lamp_mount": [ + "straight_mast" + ], + "light:count": [ + "2" + ], + "light:method": [ + "incandescent" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.71422649998073e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 11, + "create": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 12 + }, + "id": 123086886 + } + }, + { + "id": 123085602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5578251, + 53.2164783 + ], + [ + 6.5581499, + 53.2164783 + ], + [ + 6.5581499, + 53.2165313 + ], + [ + 6.5578251, + 53.2165313 + ], + [ + 6.5578251, + 53.2164783 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T12:49:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FkbpIAU.jpg", + "https://i.imgur.com/cXrjy3N.jpg" + ], + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 3, + "modify": 9, + "delete": 0, + "area": 1.72144000004111e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 10, + "create": 3, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "id": 123085602 + } + }, + { + "id": 123085581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5578491, + 53.2164214 + ], + [ + 6.5578491, + 53.2164214 + ], + [ + 6.5578491, + 53.2164214 + ], + [ + 6.5578491, + 53.2164214 + ], + [ + 6.5578491, + 53.2164214 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T12:48:59Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123085581 + } + }, + { + "id": 123085423, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5579427, + 53.2164358 + ], + [ + 6.5581787, + 53.2164358 + ], + [ + 6.5581787, + 53.216573 + ], + [ + 6.5579427, + 53.216573 + ], + [ + 6.5579427, + 53.2164358 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T12:44:04Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 5, + "modify": 6, + "delete": 0, + "area": 3.23791999994286e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 12, + "create": 5, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 5, + "change_within_25m": 12 + }, + "id": 123085423 + } + }, + { + "id": 123085257, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0211251, + 47.5541624 + ], + [ + 10.0211251, + 47.5541624 + ], + [ + 10.0211251, + 47.5541624 + ], + [ + 10.0211251, + 47.5541624 + ], + [ + 10.0211251, + 47.5541624 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T12:38:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123085257 + } + }, + { + "id": 123085164, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T12:35:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123085164 + } + }, + { + "id": 123078949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annika_atip:tap", + "uid": "15923056", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T09:59:05Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123078949 + } + }, + { + "id": 123073629, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ], + [ + 9.6435579, + 47.9524817 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T07:50:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/NJ1xRg8.jpg" + ], + "amenity": [ + "toilets" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "no" + ], + "toilets:handwashing": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123073629 + } + }, + { + "id": 123073404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1000365, + 38.8280344 + ], + [ + 0.1074928, + 38.8280344 + ], + [ + 0.1074928, + 38.8307725 + ], + [ + 0.1000365, + 38.8307725 + ], + [ + 0.1000365, + 38.8280344 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T07:44:47Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "image": [ + "https://i.imgur.com/Yv79pjd.jpg" + ], + "amenity": [ + "recycling" + ], + "highway": [ + "residential" + ], + "surface": [ + "asphalt" + ], + "location": [ + "overground" + ], + "maxspeed": [ + "30" + ], + "operator": [ + "Urbarser" + ], + "sidewalk": [ + "both", + "no" + ], + "smoothness": [ + "good" + ], + "cycleway:both": [ + "no" + ], + "maxspeed:type": [ + "sign", + "ES:urban" + ], + "recycling:glass": [ + "yes" + ], + "recycling:newspaper": [ + "yes" + ], + "sidewalk:both:surface": [ + "paving_stones" + ], + "recycling:plastic_bottles": [ + "yes" + ], + "recycling:beverage_cartons": [ + "yes" + ], + "recycling:plastic_packaging": [ + "yes" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.0000204160950300146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 10, + "create": 3, + "locale": "ca", + "imagery": "PNOA-Spain", + "add-image": 5, + "change_over_5000m": 3, + "change_within_25m": 11, + "change_within_50m": 4 + }, + "id": 123073404 + } + }, + { + "id": 123073149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6174626, + 47.780908 + ], + [ + 9.6179803, + 47.780908 + ], + [ + 9.6179803, + 47.7812937 + ], + [ + 9.6174626, + 47.7812937 + ], + [ + 9.6174626, + 47.780908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T07:38:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/lesbbkc.jpg" + ], + "leisure": [ + "playground" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.99676890001141e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 123073149 + } + }, + { + "id": 123071297, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6160285, + 47.7799357 + ], + [ + 9.6160285, + 47.7799357 + ], + [ + 9.6160285, + 47.7799357 + ], + [ + 9.6160285, + 47.7799357 + ], + [ + 9.6160285, + 47.7799357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T06:51:12Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dHH8pQp.jpg" + ], + "amenity": [ + "charging_station" + ], + "maxstay": [ + "120 minutes" + ], + "payment:app": [ + "no" + ], + "payment:cash": [ + "no" + ], + "payment:cards": [ + "no" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "es", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 3 + }, + "id": 123071297 + } + }, + { + "id": 123068416, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.7628554, + 9.4445638 + ], + [ + 88.4566087, + 9.4445638 + ], + [ + 88.4566087, + 30.3954896 + ], + [ + 71.7628554, + 30.3954896 + ], + [ + 71.7628554, + 9.4445638 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-01T05:17:58Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "road" + ], + "highway": [ + "secondary", + "residential" + ], + "name:etymology:wikidata": [ + "Q9513" + ] + }, + "create": 0, + "modify": 144, + "delete": 0, + "area": 349.749586711805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 190, + "locale": "en", + "imagery": "osm" + }, + "id": 123068416 + } + }, + { + "id": 123064756, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1358909, + 39.992737 + ], + [ + -86.1357989, + 39.992737 + ], + [ + -86.1357989, + 39.9927653 + ], + [ + -86.1358909, + 39.9927653 + ], + [ + -86.1358909, + 39.992737 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-01T00:21:44Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water", + "bicycle_parking" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.60360000061914e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 2, + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_5000m": 5, + "move:node/2881241124": "improve_accuracy" + }, + "id": 123064756 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-02.json b/Docs/Tools/stats/stats.2022-7-02.json new file mode 100644 index 0000000000..7c91435020 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-02.json @@ -0,0 +1,1930 @@ +{ + "features": [ + { + "id": 123132619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3495036, + 52.5769612 + ], + [ + 13.3495036, + 52.5769612 + ], + [ + 13.3495036, + 52.5769612 + ], + [ + 13.3495036, + 52.5769612 + ], + [ + 13.3495036, + 52.5769612 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T20:37:21Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 123132619 + } + }, + { + "id": 123132507, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moh glk", + "uid": "16199465", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T20:32:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "AGIV" + }, + "id": 123132507 + } + }, + { + "id": 123130543, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3037003, + 48.9013841 + ], + [ + 2.3202, + 48.9013841 + ], + [ + 2.3202, + 48.9093199 + ], + [ + 2.3037003, + 48.9093199 + ], + [ + 2.3037003, + 48.9013841 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T19:10:23Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary", + "unclassified" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000130938319259973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 14, + "locale": "fr", + "imagery": "osm" + }, + "id": 123130543 + } + }, + { + "id": 123130500, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3106976, + 48.900653 + ], + [ + 2.31104, + 48.900653 + ], + [ + 2.31104, + 48.9008521 + ], + [ + 2.3106976, + 48.9008521 + ], + [ + 2.3106976, + 48.900653 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T19:08:54Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "public" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "asphalt" + ], + "reservation": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.81718400011201e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 4, + "locale": "fr", + "imagery": "osm" + }, + "id": 123130500 + } + }, + { + "id": 123130452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3122323, + 48.9055118 + ], + [ + 2.31243, + 48.9055118 + ], + [ + 2.31243, + 48.9056411 + ], + [ + 2.3122323, + 48.9056411 + ], + [ + 2.3122323, + 48.9055118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T19:07:01Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ], + "opening_hours": [ + "PH open;" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.55626099995414e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 123130452 + } + }, + { + "id": 123130375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3116505, + 48.9051199 + ], + [ + 2.31243, + 48.9051199 + ], + [ + 2.31243, + 48.9056411 + ], + [ + 2.3116505, + 48.9056411 + ], + [ + 2.3116505, + 48.9051199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T19:03:50Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "8" + ], + "min_age": [ + "3" + ], + "surface": [ + "woodchips", + "sand" + ], + "operator": [ + "Mairie de Clichy" + ], + "opening_hours": [ + "sunrise-sunset", + "Mo-Su 09:00-19:30;PH open;" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 4.06275399995667e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 12, + "locale": "fr", + "imagery": "osm" + }, + "id": 123130375 + } + }, + { + "id": 123130341, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3117766, + 48.9051199 + ], + [ + 2.3121024, + 48.9051199 + ], + [ + 2.3121024, + 48.9053123 + ], + [ + 2.3117766, + 48.9053123 + ], + [ + 2.3117766, + 48.9051199 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T19:02:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.26839199987214e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 6, + "locale": "fr", + "imagery": "osm" + }, + "id": 123130341 + } + }, + { + "id": 123130285, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3172724, + 48.9018478 + ], + [ + 2.3172724, + 48.9018478 + ], + [ + 2.3172724, + 48.9018478 + ], + [ + 2.3172724, + 48.9018478 + ], + [ + 2.3172724, + 48.9018478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T19:00:21Z", + "reviewed_features": [], + "tag_changes": { + "rental": [ + "ebike;city_bike" + ], + "amenity": [ + "bicycle_rental" + ], + "payment:app": [ + "no" + ], + "payment:cash": [ + "no" + ], + "payment:cards": [ + "yes" + ], + "bicycle_rental": [ + "docking_station" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 123130285 + } + }, + { + "id": 123127334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5578491, + 53.2164214 + ], + [ + 6.5579427, + 53.2164214 + ], + [ + 6.5579427, + 53.2164358 + ], + [ + 6.5578491, + 53.2164358 + ], + [ + 6.5578491, + 53.2164214 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T17:12:23Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ], + "species:wikidata": [ + "Q157650" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.34783999978335e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3 + }, + "id": 123127334 + } + }, + { + "id": 123127068, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T17:01:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123127068 + } + }, + { + "id": 123124392, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.008867, + 51.1201825 + ], + [ + 6.009517, + 51.1201825 + ], + [ + 6.009517, + 51.120755 + ], + [ + 6.008867, + 51.120755 + ], + [ + 6.008867, + 51.1201825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T15:33:58Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "ref": [ + "04003534/04003590", + "EVW00092/EVW00093" + ], + "email": [ + "info@ev-wise.com" + ], + "image": [ + "https://i.imgur.com/ykIcVC1.jpg" + ], + "phone": [ + "+318000294601" + ], + "amenity": [ + "charging_station" + ], + "network": [ + "ShellRecharge", + "EV Wise" + ], + "website": [ + "https://pay.shellrecharge.com/" + ], + "socket:type2:output": [ + "22 kW" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 3.72125000002296e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123124392 + } + }, + { + "id": 123122965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3727955, + 50.8652223 + ], + [ + 4.3768895, + 50.8652223 + ], + [ + 4.3768895, + 50.8671496 + ], + [ + 4.3727955, + 50.8671496 + ], + [ + 4.3727955, + 50.8652223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AussieMoose", + "uid": "8481916", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T14:53:25Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:tools": [ + "no" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000007890366199994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123122965 + } + }, + { + "id": 123122612, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2967836, + 51.2315695 + ], + [ + 3.2968465, + 51.2315695 + ], + [ + 3.2968465, + 51.2316077 + ], + [ + 3.2967836, + 51.2316077 + ], + [ + 3.2967836, + 51.2315695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T14:43:17Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/EyNpSFB.jpg" + ], + "amenity": [ + "charging_station", + "toilets" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.4027799999258e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123122612 + } + }, + { + "id": 123120706, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2632479, + 51.2141668 + ], + [ + 3.2632479, + 51.2141668 + ], + [ + 3.2632479, + 51.2141668 + ], + [ + 3.2632479, + 51.2141668 + ], + [ + 3.2632479, + 51.2141668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T13:48:40Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "image": [ + "https://i.imgur.com/ZCKqElV.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 123120706 + } + }, + { + "id": 123118856, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1457578, + 48.7505944 + ], + [ + 9.1457578, + 48.7505944 + ], + [ + 9.1457578, + 48.7505944 + ], + [ + 9.1457578, + 48.7505944 + ], + [ + 9.1457578, + 48.7505944 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T12:44:12Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/pw6JP0R.jpg" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123118856 + } + }, + { + "id": 123118741, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1456259, + 48.7505944 + ], + [ + 9.1457578, + 48.7505944 + ], + [ + 9.1457578, + 48.7507249 + ], + [ + 9.1456259, + 48.7507249 + ], + [ + 9.1456259, + 48.7505944 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T12:40:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.72129500005273e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_within_25m": 6 + }, + "id": 123118741 + } + }, + { + "id": 123118710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1456259, + 48.7507249 + ], + [ + 9.1456259, + 48.7507249 + ], + [ + 9.1456259, + 48.7507249 + ], + [ + 9.1456259, + 48.7507249 + ], + [ + 9.1456259, + 48.7507249 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T12:39:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 123118710 + } + }, + { + "id": 123115749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.9352727, + 43.3113341 + ], + [ + -3.9352727, + 43.3113341 + ], + [ + -3.9352727, + 43.3113341 + ], + [ + -3.9352727, + 43.3113341 + ], + [ + -3.9352727, + 43.3113341 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T10:55:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123115749 + } + }, + { + "id": 123114381, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2335913, + 50.7345064 + ], + [ + 4.2335913, + 50.7345064 + ], + [ + 4.2335913, + 50.7345064 + ], + [ + 4.2335913, + 50.7345064 + ], + [ + 4.2335913, + 50.7345064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T10:10:13Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "ref": [ + "BEALLEGO001858" + ], + "phone": [ + "+32 800 78 192" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "maxstay": [ + "unlimited" + ], + "website": [ + "https://www.allego.eu/" + ], + "parking:fee": [ + "yes" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "2" + ], + "payment:cards": [ + "no" + ], + "brand:wikidata": [ + "Q75560554" + ], + "socket:type2:output": [ + "11 kW" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 12, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 123114381 + } + }, + { + "id": 123114043, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2215331, + 51.208375 + ], + [ + 3.2215331, + 51.208375 + ], + [ + 3.2215331, + 51.208375 + ], + [ + 3.2215331, + 51.208375 + ], + [ + 3.2215331, + 51.208375 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T10:00:47Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Jack Wolfskin", + "jack wolfskin" + ], + "shop": [ + "outdoor" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123114043 + } + }, + { + "id": 123113517, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6144978, + 47.7819559 + ], + [ + 9.6144978, + 47.7819559 + ], + [ + 9.6144978, + 47.7819559 + ], + [ + 9.6144978, + 47.7819559 + ], + [ + 9.6144978, + 47.7819559 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T09:42:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/e0lCzR9.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123113517 + } + }, + { + "id": 123113172, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.614654, + 47.7819341 + ], + [ + 9.614654, + 47.7819341 + ], + [ + 9.614654, + 47.7819341 + ], + [ + 9.614654, + 47.7819341 + ], + [ + 9.614654, + 47.7819341 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T09:31:49Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/C4uFzC5.jpg" + ], + "amenity": [ + "bicycle_rental" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123113172 + } + }, + { + "id": 123112961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7053477, + 51.0277952 + ], + [ + 3.7053477, + 51.0277952 + ], + [ + 3.7053477, + 51.0277952 + ], + [ + 3.7053477, + 51.0277952 + ], + [ + 3.7053477, + 51.0277952 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T09:26:16Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123112961 + } + }, + { + "id": 123112457, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.247939, + 52.7554902 + ], + [ + 13.2620746, + 52.7554902 + ], + [ + 13.2620746, + 52.7624618 + ], + [ + 13.247939, + 52.7624618 + ], + [ + 13.247939, + 52.7554902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T09:09:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 27, + "modify": 26, + "delete": 0, + "area": 0.0000985477489599958, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123112457 + } + }, + { + "id": 123111262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7028426, + 53.0771231 + ], + [ + 13.9823261, + 53.0771231 + ], + [ + 13.9823261, + 53.1742076 + ], + [ + 13.7028426, + 53.1742076 + ], + [ + 13.7028426, + 53.0771231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-02T08:27:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.0271335158557503, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123111262 + } + }, + { + "id": 123106267, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MapTheWalk", + "uid": "10499594", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T04:18:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "climbing", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123106267 + } + }, + { + "id": 123106266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 103.8482125, + 1.3040605 + ], + [ + 103.8642452, + 1.3040605 + ], + [ + 103.8642452, + 1.3077853 + ], + [ + 103.8482125, + 1.3077853 + ], + [ + 103.8482125, + 1.3040605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MapTheWalk", + "uid": "10499594", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-02T04:18:42Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "residential", + "footway", + "tertiary", + "pedestrian" + ] + }, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000597186009599854, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "id": 123106266 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-03.json b/Docs/Tools/stats/stats.2022-7-03.json new file mode 100644 index 0000000000..cdcca0b94c --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-03.json @@ -0,0 +1,2893 @@ +{ + "features": [ + { + "id": 123167136, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -6.2161179, + 53.3089194 + ], + [ + -6.2161179, + 53.3089194 + ], + [ + -6.2161179, + 53.3089194 + ], + [ + -6.2161179, + 53.3089194 + ], + [ + -6.2161179, + 53.3089194 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIrish", + "uid": "12410778", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T23:24:00Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123167136 + } + }, + { + "id": 123167114, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -6.2086915, + 53.30786 + ], + [ + -6.2086915, + 53.30786 + ], + [ + -6.2086915, + 53.30786 + ], + [ + -6.2086915, + 53.30786 + ], + [ + -6.2086915, + 53.30786 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIrish", + "uid": "12410778", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T23:22:09Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "bicycle_parking": [ + "stands", + "rack" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_100m": 2 + }, + "id": 123167114 + } + }, + { + "id": 123167073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -6.2083869, + 53.3081214 + ], + [ + -6.2083869, + 53.3081214 + ], + [ + -6.2083869, + 53.3081214 + ], + [ + -6.2083869, + 53.3081214 + ], + [ + -6.2083869, + 53.3081214 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIrish", + "uid": "12410778", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T23:18:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "174" + ], + "survey:date": [ + "2022-07-03" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_100m": 4 + }, + "id": 123167073 + } + }, + { + "id": 123164586, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3741275, + 48.5540099 + ], + [ + 9.3744414, + 48.5540099 + ], + [ + 9.3744414, + 48.5542547 + ], + [ + 9.3741275, + 48.5542547 + ], + [ + 9.3741275, + 48.5540099 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T20:41:29Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "image": [ + "https://i.imgur.com/c7pnXD9.jpg" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "14" + ], + "surface": [ + "woodchips" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.68427200013951e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123164586 + } + }, + { + "id": 123163942, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3594285, + 52.5658738 + ], + [ + 13.3594285, + 52.5658738 + ], + [ + 13.3594285, + 52.5658738 + ], + [ + 13.3594285, + 52.5658738 + ], + [ + 13.3594285, + 52.5658738 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T20:13:06Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123163942 + } + }, + { + "id": 123163740, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3748032, + 48.0986304 + ], + [ + 9.7901422, + 48.0986304 + ], + [ + 9.7901422, + 48.554133 + ], + [ + 9.3748032, + 48.554133 + ], + [ + 9.3748032, + 48.0986304 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T20:04:57Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/zvKyd6y.jpg" + ], + "highway": [ + "residential" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.189187994381401, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 123163740 + } + }, + { + "id": 123163227, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3747986, + 52.5676015 + ], + [ + 13.375926, + 52.5676015 + ], + [ + 13.375926, + 52.5680848 + ], + [ + 13.3747986, + 52.5680848 + ], + [ + 13.3747986, + 52.5676015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T19:45:15Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "1" + ], + "light:method": [ + "gas" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.44872419998798e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 9, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "id": 123163227 + } + }, + { + "id": 123163219, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T19:45:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123163219 + } + }, + { + "id": 123162947, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2156885, + 48.4903348 + ], + [ + 9.2157109, + 48.4903348 + ], + [ + 9.2157109, + 48.4903456 + ], + [ + 9.2156885, + 48.4903456 + ], + [ + 9.2156885, + 48.4903348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T19:35:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jvICoVr.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.41919999949964e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 123162947 + } + }, + { + "id": 123162744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3756681, + 52.5680848 + ], + [ + 13.3778496, + 52.5680848 + ], + [ + 13.3778496, + 52.5698178 + ], + [ + 13.3756681, + 52.5698178 + ], + [ + 13.3756681, + 52.5680848 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T19:27:29Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00000378053950000153, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 2, + "theme": "street_lighting", + "answer": 17, + "create": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 19, + "move:node/8697947638": "improve_accuracy" + }, + "id": 123162744 + } + }, + { + "id": 123161219, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.377824, + 52.5587976 + ], + [ + 13.3827014, + 52.5587976 + ], + [ + 13.3827014, + 52.5701098 + ], + [ + 13.377824, + 52.5701098 + ], + [ + 13.377824, + 52.5587976 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dignus est intrare", + "uid": "10343642", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T18:32:06Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000551741242799929, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 1, + "theme": "street_lighting", + "answer": 14, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 6, + "change_within_50m": 9, + "move:node/9864437530": "improve_accuracy" + }, + "id": 123161219 + } + }, + { + "id": 123158262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4237184, + 52.5639202 + ], + [ + 13.4237184, + 52.5639202 + ], + [ + 13.4237184, + 52.5639202 + ], + [ + 13.4237184, + 52.5639202 + ], + [ + 13.4237184, + 52.5639202 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tobias Moldenhauer", + "uid": "16439012", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T16:55:13Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-03" + ], + "pump:status": [ + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123158262 + } + }, + { + "id": 123157750, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3175, + 50.8520318 + ], + [ + 4.3176161, + 50.8520318 + ], + [ + 4.3176161, + 50.8520368 + ], + [ + 4.3175, + 50.8520368 + ], + [ + 4.3175, + 50.8520318 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T16:35:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 5.80500000186796e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/benches.html", + "theme": "benches", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 123157750 + } + }, + { + "id": 123157634, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3202102, + 50.8514867 + ], + [ + 4.3202102, + 50.8514867 + ], + [ + 4.3202102, + 50.8514867 + ], + [ + 4.3202102, + 50.8514867 + ], + [ + 4.3202102, + 50.8514867 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T16:31:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/XrT0Mx7.jpg" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123157634 + } + }, + { + "id": 123156215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.41946, + 52.4790857 + ], + [ + 13.41946, + 52.4790857 + ], + [ + 13.41946, + 52.4790857 + ], + [ + 13.41946, + 52.4790857 + ], + [ + 13.41946, + 52.4790857 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex030", + "uid": "418040", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T15:45:06Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-03", + "2019-09-01" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123156215 + } + }, + { + "id": 123153738, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5622452, + 52.4393887 + ], + [ + 13.569483, + 52.4393887 + ], + [ + 13.569483, + 52.4458415 + ], + [ + 13.5622452, + 52.4458415 + ], + [ + 13.5622452, + 52.4393887 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kimkeriki", + "uid": "16438105", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T14:34:37Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-03" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000467040758399892, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123153738 + } + }, + { + "id": 123153198, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4321689, + 52.4788977 + ], + [ + 13.4380643, + 52.4788977 + ], + [ + 13.4380643, + 52.4798437 + ], + [ + 13.4321689, + 52.4798437 + ], + [ + 13.4321689, + 52.4788977 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kjon", + "uid": "44217", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T14:20:14Z", + "reviewed_features": [], + "tag_changes": { + "flickr": [ + "https://www.flickr.com/photos/49828243@N08/36705719606" + ], + "tourism": [ + "artwork" + ], + "mapillary": [ + "809157710022314" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000557704840003601, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "link-image": 2 + }, + "id": 123153198 + } + }, + { + "id": 123149774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4671956, + 51.065357 + ], + [ + 3.4746039, + 51.065357 + ], + [ + 3.4746039, + 51.0690765 + ], + [ + 3.4671956, + 51.0690765 + ], + [ + 3.4671956, + 51.065357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T12:34:49Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/nHEPwRy.jpg", + "https://i.imgur.com/uDECgYi.jpg", + "https://i.imgur.com/I9pnd8C.jpg" + ], + "amenity": [ + "bench" + ], + "tourism": [ + "information" + ], + "material": [ + "wood" + ], + "survey:date": [ + "2022-07-03" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000275551718500181, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 123149774 + } + }, + { + "id": 123149564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.320623, + 50.8489438 + ], + [ + 4.320623, + 50.8489438 + ], + [ + 4.320623, + 50.8489438 + ], + [ + 4.320623, + 50.8489438 + ], + [ + 4.320623, + 50.8489438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T12:27:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 123149564 + } + }, + { + "id": 123149162, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3294941, + 44.4871598 + ], + [ + 11.3299597, + 44.4871598 + ], + [ + 11.3299597, + 44.4877772 + ], + [ + 11.3294941, + 44.4877772 + ], + [ + 11.3294941, + 44.4871598 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheRukk", + "uid": "10061533", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T12:16:34Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.87461439998124e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_within_1000m": 3 + }, + "id": 123149162 + } + }, + { + "id": 123149147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3294941, + 44.4877373 + ], + [ + 11.3295574, + 44.4877373 + ], + [ + 11.3295574, + 44.4877772 + ], + [ + 11.3294941, + 44.4877772 + ], + [ + 11.3294941, + 44.4877373 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheRukk", + "uid": "10061533", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T12:16:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.52566999986072e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_within_1000m": 3 + }, + "id": 123149147 + } + }, + { + "id": 123149031, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3203651, + 44.490995 + ], + [ + 11.3209578, + 44.490995 + ], + [ + 11.3209578, + 44.4911406 + ], + [ + 11.3203651, + 44.4911406 + ], + [ + 11.3203651, + 44.490995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheRukk", + "uid": "10061533", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T12:12:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 8.62971200020038e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 5, + "create": 2, + "locale": "it", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "id": 123149031 + } + }, + { + "id": 123149004, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3289586, + 44.487725 + ], + [ + 11.330827, + 44.487725 + ], + [ + 11.330827, + 44.4879142 + ], + [ + 11.3289586, + 44.4879142 + ], + [ + 11.3289586, + 44.487725 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheRukk", + "uid": "10061533", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T12:10:46Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "indoor": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.53501280002155e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_within_1000m": 3 + }, + "id": 123149004 + } + }, + { + "id": 123148929, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0965594, + 38.8252344 + ], + [ + 0.0965594, + 38.8252344 + ], + [ + 0.0965594, + 38.8252344 + ], + [ + 0.0965594, + 38.8252344 + ], + [ + 0.0965594, + 38.8252344 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T12:08:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123148929 + } + }, + { + "id": 123148490, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.6160606, + 8.449521 + ], + [ + 88.4083417, + 8.449521 + ], + [ + 88.4083417, + 28.643877 + ], + [ + 69.6160606, + 28.643877 + ], + [ + 69.6160606, + 8.449521 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T11:57:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 170, + "delete": 0, + "area": 379.498014585472, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 213, + "locale": "en", + "imagery": "osm" + }, + "id": 123148490 + } + }, + { + "id": 123147389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2363142, + 50.7315571 + ], + [ + 4.2363142, + 50.7315571 + ], + [ + 4.2363142, + 50.7315571 + ], + [ + 4.2363142, + 50.7315571 + ], + [ + 4.2363142, + 50.7315571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T11:19:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123147389 + } + }, + { + "id": 123146240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3094274, + 51.1985679 + ], + [ + 5.3094274, + 51.1985679 + ], + [ + 5.3094274, + 51.1985679 + ], + [ + 5.3094274, + 51.1985679 + ], + [ + 5.3094274, + 51.1985679 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T10:37:50Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1, + "import:node/9863653334": "source: https://osm.org/note/3044712" + }, + "id": 123146240 + } + }, + { + "id": 123146141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.580949, + 55.7050132 + ], + [ + 12.5845862, + 55.7050132 + ], + [ + 12.5845862, + 55.7089575 + ], + [ + 12.580949, + 55.7089575 + ], + [ + 12.580949, + 55.7050132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T10:35:48Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash;dog_excrement" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000143462079599762, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123146141 + } + }, + { + "id": 123140440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.947887, + 51.1943 + ], + [ + 4.9601409, + 51.1943 + ], + [ + 4.9601409, + 51.208044 + ], + [ + 4.947887, + 51.208044 + ], + [ + 4.947887, + 51.1943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T06:53:14Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "shed", + "farm", + "barn", + "farm_auxiliary", + "roof" + ], + "addr:housenumber": [ + "1;3", + "1-3" + ], + "source:geometry:ref": [ + "Gbg/1715790", + "Gbg/1716024", + "Gbg/1715793", + "Gbg/6642428", + "Gbg/1715803", + "Gbg/1714935", + "Gbg/1714961", + "Gbg/6642516", + "Gbg/1714958", + "Gbg/5125466", + "Gbg/1714970", + "Gbg/6155054", + "Gbg/1714957", + "Gbg/1714968", + "Gbg/1714954", + "Gbg/1714949", + "Gbg/1715828", + "Gbg/1715830", + "Gbg/6148789", + "Gbg/1714956", + "Gbg/1714967", + "Gbg/1714966", + "Gbg/6150228", + "Gbg/1714963", + "Gbg/1714962", + "Gbg/1714959", + "Gbg/1714965", + "Gbg/1714960", + "Gba/112532", + "Gbg/5125467", + "Gbg/1714953", + "Gbg/5125489" + ], + "source:geometry:date": [ + "2009-11-20", + "2017-11-20", + "2019-07-09", + "2016-07-28", + "2015-03-30" + ] + }, + "create": 79, + "modify": 269, + "delete": 4, + "area": 0.000168417601600034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 229, + "theme": "grb", + "answer": 10, + "delete": 4, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 64 + }, + "id": 123140440 + } + }, + { + "id": 123140244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9537241, + 51.2068044 + ], + [ + 4.9632136, + 51.2068044 + ], + [ + 4.9632136, + 51.2103981 + ], + [ + 4.9537241, + 51.2103981 + ], + [ + 4.9537241, + 51.2068044 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T06:42:21Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "sty", + "barn", + "farm_auxiliary", + "farm", + "house", + "shed", + "roof" + ], + "man_made": [ + "silo", + "water_tower" + ], + "addr:housenumber": [ + "3" + ], + "source:geometry:ref": [ + "Gbg/5654894", + "Gbg/1714976", + "Gbg/1714974", + "Gbg/1714977", + "Gbg/1714973", + "Gbg/1715007", + "Gbg/5122418", + "Gbg/1714975", + "Gbg/6642465", + "Gbg/1714972", + "Gbg/5122574", + "Gbg/1715009", + "Gbg/1715008", + "Gbg/1715005", + "Gbg/6153396", + "Gbg/1715833", + "Gbg/1716021", + "Gbg/1715836", + "Gbg/1714990", + "Gbg/1715006", + "Gbg/5655815", + "Gbg/6641867", + "Gbg/1715832" + ], + "not:addr:housenumber": [ + "yes" + ], + "source:geometry:date": [ + "2021-07-05", + "2017-11-20", + "2009-11-20", + "2015-03-30", + "2019-07-09", + "2020-03-16", + "2016-07-28" + ] + }, + "create": 73, + "modify": 212, + "delete": 2, + "area": 0.0000341024161499632, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 183, + "theme": "grb", + "answer": 10, + "delete": 2, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46 + }, + "id": 123140244 + } + }, + { + "id": 123140240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2198577, + 52.5939629 + ], + [ + 13.2811389, + 52.5939629 + ], + [ + 13.2811389, + 52.7328226 + ], + [ + 13.2198577, + 52.7328226 + ], + [ + 13.2198577, + 52.5939629 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T06:42:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 4, + "delete": 0, + "area": 0.00850948904763983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123140240 + } + }, + { + "id": 123140237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9624682, + 51.2048815 + ], + [ + 4.9632976, + 51.2048815 + ], + [ + 4.9632976, + 51.2063507 + ], + [ + 4.9624682, + 51.2063507 + ], + [ + 4.9624682, + 51.2048815 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T06:41:53Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/6154728", + "Gbg/1714991" + ], + "source:geometry:date": [ + "2019-07-09", + "2009-11-20" + ] + }, + "create": 8, + "modify": 14, + "delete": 0, + "area": 0.00000121855448000172, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 123140237 + } + }, + { + "id": 123140214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.4638212, + 8.5873931 + ], + [ + 83.3786225, + 8.5873931 + ], + [ + 83.3786225, + 30.4692452 + ], + [ + 70.4638212, + 30.4692452 + ], + [ + 70.4638212, + 8.5873931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-03T06:39:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "college" + ], + "name:etymology:wikidata": [ + "Q380148" + ] + }, + "create": 0, + "modify": 274, + "delete": 0, + "area": 282.599771947488, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 420, + "locale": "en", + "imagery": "osm" + }, + "id": 123140214 + } + }, + { + "id": 123139944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9622981, + 51.201115 + ], + [ + 4.9675775, + 51.201115 + ], + [ + 4.9675775, + 51.2053087 + ], + [ + 4.9622981, + 51.2053087 + ], + [ + 4.9622981, + 51.201115 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T06:24:21Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "barn", + "garage", + "farm", + "house", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1714994", + "Gbg/1715012", + "Gbg/1715026", + "Gbg/1715025", + "Gbg/6155239", + "Gbg/1715320", + "Gbg/1715345", + "Gbg/1715321", + "Gbg/1715330", + "Gbg/1715346", + "Gbg/1715329", + "Gbg/1714996", + "Gbg/1714993", + "Gbg/1715342", + "Gbg/1715343", + "Gbg/1715363", + "Gbg/1715344", + "Gbg/1715328", + "Gbg/5125480", + "Gbg/1715331", + "Gbg/1715362", + "Gbg/1715360", + "Gbg/1715359", + "Gbg/6151107", + "Gbg/1715361", + "Gbg/5125471", + "Gbg/1715365", + "Gbg/1715366", + "Gbg/1715370", + "Gbg/1715371", + "Gbg/1715368", + "Gbg/1715367" + ], + "source:geometry:date": [ + "2017-11-20", + "2009-11-20", + "2016-07-28", + "2015-03-30" + ] + }, + "create": 41, + "modify": 234, + "delete": 8, + "area": 0.00002214021978001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 198, + "theme": "grb", + "answer": 8, + "delete": 8, + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 64 + }, + "id": 123139944 + } + }, + { + "id": 123139711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9602097, + 51.2002157 + ], + [ + 4.9632375, + 51.2002157 + ], + [ + 4.9632375, + 51.202259 + ], + [ + 4.9602097, + 51.202259 + ], + [ + 4.9602097, + 51.2002157 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T06:08:21Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "shed", + "barn", + "garage", + "roof" + ], + "addr:housenumber": [ + "2;2A", + "2,2A" + ], + "source:geometry:ref": [ + "Gbg/1716029", + "Gbg/1715294", + "Gbg/1715292", + "Gbg/1715341", + "Gbg/1715291", + "Gbg/1715290", + "Gbg/1715358", + "Gbg/1715284", + "Gbg/1715282", + "Gbg/1715281", + "Gbg/1715280", + "Gbg/6154613", + "Gbg/5123524", + "Gbg/1715318", + "Gbg/1715317", + "Gbg/1715319", + "Gbg/1715324", + "Gbg/1715322", + "Gbg/5125472", + "Gbg/6149295", + "Gbg/6754435", + "Gbg/1715308", + "Gbg/6148996", + "Gbg/5122949", + "Gbg/1715295", + "Gbg/6150661", + "Gbg/1715323", + "Gbg/5123523", + "Gbg/5125479" + ], + "source:geometry:date": [ + "2009-11-20", + "2017-11-20", + "2015-03-30", + "2020-03-16" + ] + }, + "create": 90, + "modify": 221, + "delete": 4, + "area": 0.00000618670373999032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 188, + "theme": "grb", + "answer": 5, + "delete": 4, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 58, + "change_over_5000m": 8 + }, + "id": 123139711 + } + }, + { + "id": 123139277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9504124, + 51.1981015 + ], + [ + 4.9645443, + 51.1981015 + ], + [ + 4.9645443, + 51.2007677 + ], + [ + 4.9504124, + 51.2007677 + ], + [ + 4.9504124, + 51.1981015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-03T05:37:03Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "farm_auxiliary", + "house", + "farm", + "yes", + "shed", + "roof" + ], + "historic": [ + "windmill" + ], + "man_made": [ + "windmill" + ], + "source:geometry:ref": [ + "Gbg/1714938", + "Gbg/1714942", + "Gbg/1714937", + "Gbg/6149151", + "Gbg/1714921", + "Gbg/1715311", + "Gbg/1714916", + "Gbg/1714946", + "Gbg/6148954", + "Gbg/1714927", + "Gbg/1714923", + "Gbg/6966838", + "Gbg/1714933", + "Gbg/1714931", + "Gbg/1714928", + "Gbg/6482874", + "Gbg/5740435", + "Gbg/1715340", + "Gbg/1715352", + "Gbg/6154770", + "Gbg/1715353", + "Gbg/6155065", + "Gbg/1715299", + "Gbg/1715297", + "Gbg/1715296", + "Gbg/5125473", + "Gbg/1715309", + "Gbg/1715347", + "Gbg/1715334", + "Gbg/1715338", + "Gbg/1715304", + "Gbg/1715339", + "Gbg/1715349", + "Gbg/1715336", + "Gbg/1715303", + "Gbg/5125483", + "Gbg/1715355", + "Gbg/1715351", + "Gbg/1715302", + "Gbg/1715298", + "Gbg/5125476", + "Gbg/1714912", + "Gbg/1714943", + "Gbg/1714914", + "Gbg/1714941", + "Gbg/1714911", + "Gbg/1714917", + "Gbg/1714910", + "Gbg/1715354", + "Gbg/6152969", + "Gbg/5125474", + "Gbg/5740434", + "Gbg/1715312", + "Gbg/1714929", + "Gbg/6642385" + ], + "source:geometry:date": [ + "2016-07-28", + "2009-11-20", + "2017-11-20", + "2021-07-05", + "2019-07-09", + "2016-11-21", + "2015-11-26", + "2020-03-16", + "2015-03-30" + ] + }, + "create": 133, + "modify": 362, + "delete": 4, + "area": 0.0000376784717800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 306, + "theme": "grb", + "answer": 1, + "delete": 4, + "import": 13, + "locale": "nl", + "imagery": "AGIV", + "conflation": 110, + "change_over_5000m": 14 + }, + "id": 123139277 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-04.json b/Docs/Tools/stats/stats.2022-7-04.json new file mode 100644 index 0000000000..41e038c7ed --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-04.json @@ -0,0 +1,2571 @@ +{ + "features": [ + { + "id": 123209408, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3664911, + 46.9588001 + ], + [ + 8.36768, + 46.9588001 + ], + [ + 8.36768, + 46.9594729 + ], + [ + 8.3664911, + 46.9594729 + ], + [ + 8.3664911, + 46.9588001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/crossingtime.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T22:06:54Z", + "reviewed_features": [], + "tag_changes": { + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ], + "crossing_ref": [ + "zebra", + "tiger" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.99891920005003e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/crossingtime.json", + "answer": 4, + "locale": "es", + "imagery": "osm" + }, + "id": 123209408 + } + }, + { + "id": 123206929, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3761694, + 48.5556275 + ], + [ + 9.3761694, + 48.5556275 + ], + [ + 9.3761694, + 48.5556275 + ], + [ + 9.3761694, + 48.5556275 + ], + [ + 9.3761694, + 48.5556275 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T20:32:32Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/5ZTPAiP.jpg" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123206929 + } + }, + { + "id": 123205666, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3484428, + 50.8477606 + ], + [ + 4.348858, + 50.8477606 + ], + [ + 4.348858, + 50.8479394 + ], + [ + 4.3484428, + 50.8479394 + ], + [ + 4.3484428, + 50.8477606 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T19:51:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ], + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 7.42377600001896e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "create": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123205666 + } + }, + { + "id": 123204635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1454779, + 48.7505859 + ], + [ + 9.1454779, + 48.7505859 + ], + [ + 9.1454779, + 48.7505859 + ], + [ + 9.1454779, + 48.7505859 + ], + [ + 9.1454779, + 48.7505859 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T19:16:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/X6rL62j.jpg" + ], + "tourism": [ + "artwork" + ], + "artist_name": [ + "Peter Zeitler" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123204635 + } + }, + { + "id": 123203657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1676516, + 48.6924021 + ], + [ + 9.1676516, + 48.6924021 + ], + [ + 9.1676516, + 48.6924021 + ], + [ + 9.1676516, + 48.6924021 + ], + [ + 9.1676516, + 48.6924021 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T18:42:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/q4T5Sc6.jpg" + ], + "amenity": [ + "bicycle_rental" + ], + "bicycle_rental": [ + "docking_station" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123203657 + } + }, + { + "id": 123201766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4601745, + 51.2526896 + ], + [ + 4.4601745, + 51.2526896 + ], + [ + 4.4601745, + 51.2526896 + ], + [ + 4.4601745, + 51.2526896 + ], + [ + 4.4601745, + 51.2526896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T17:38:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/JeQAEZB.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 123201766 + } + }, + { + "id": 123201433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.4601455, + 8.4879636 + ], + [ + 88.3641121, + 8.4879636 + ], + [ + 88.3641121, + 30.3962191 + ], + [ + 70.4601455, + 30.3962191 + ], + [ + 70.4601455, + 8.4879636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T17:28:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 252, + "delete": 0, + "area": 392.244674736266, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 327, + "locale": "en", + "imagery": "osm" + }, + "id": 123201433 + } + }, + { + "id": 123199079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.5156385, + 51.079959 + ], + [ + 2.5156385, + 51.079959 + ], + [ + 2.5156385, + 51.079959 + ], + [ + 2.5156385, + 51.079959 + ], + [ + 2.5156385, + 51.079959 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9866215255", + "osm_id": 9866215255, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T16:09:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "binoculars" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123199079 + } + }, + { + "id": 123198591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9811683, + 51.1782001 + ], + [ + 4.9825296, + 51.1782001 + ], + [ + 4.9825296, + 51.1800383 + ], + [ + 4.9811683, + 51.1800383 + ], + [ + 4.9811683, + 51.1782001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T15:55:33Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1692174", + "Gbg/1692187", + "Gbg/1692172", + "Gbg/1692171", + "Gbg/1692097", + "Gbg/1692098", + "Gbg/1692179", + "Gbg/5123620", + "Gbg/6155259", + "Gbg/6928674", + "Gbg/1692188", + "Gbg/1692173", + "Gbg/6155361", + "Gbg/1692218", + "Gbg/1692216", + "Gbg/1692250" + ], + "source:geometry:date": [ + "2016-07-28", + "2009-02-20", + "2015-03-30", + "2017-11-20", + "2020-03-10", + "2020-03-16" + ] + }, + "create": 26, + "modify": 118, + "delete": 1, + "area": 0.00000250234166000251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 101, + "theme": "grb", + "answer": 1, + "delete": 1, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 32 + }, + "id": 123198591 + } + }, + { + "id": 123198570, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.980946, + 51.1800286 + ], + [ + 4.9820401, + 51.1800286 + ], + [ + 4.9820401, + 51.1801548 + ], + [ + 4.980946, + 51.1801548 + ], + [ + 4.980946, + 51.1800286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T15:54:55Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1692125", + "Gbg/6641794", + "Gbg/1692246" + ], + "source:geometry:date": [ + "2016-07-28", + "2019-07-09" + ] + }, + "create": 3, + "modify": 21, + "delete": 0, + "area": 1.38075419996503e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 18, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 123198570 + } + }, + { + "id": 123198326, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9807579, + 51.1798298 + ], + [ + 4.9822638, + 51.1798298 + ], + [ + 4.9822638, + 51.1810945 + ], + [ + 4.9807579, + 51.1810945 + ], + [ + 4.9807579, + 51.1798298 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T15:48:12Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "garage", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1692116", + "Gbg/5123004", + "Gbg/1692119", + "Gbg/1692115", + "Gbg/1692118", + "Gbg/6149078", + "Gbg/1692117", + "Gbg/5122647", + "Gbg/6150191", + "Gbg/1692244", + "Gbg/5124618", + "Gbg/6155007", + "Gbg/6151051", + "Gbg/6149623", + "Gbg/6256545", + "Gbg/6256546", + "Gba/661280" + ], + "source:geometry:date": [ + "2009-02-20", + "2019-07-09", + "2017-11-20", + "2016-07-28", + "2015-03-30", + "2018-04-09" + ] + }, + "create": 23, + "modify": 125, + "delete": 0, + "area": 0.00000190451172999983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 111, + "theme": "grb", + "answer": 4, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 34 + }, + "id": 123198326 + } + }, + { + "id": 123198317, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T15:47:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 123198317 + } + }, + { + "id": 123197824, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9779856, + 51.1729922 + ], + [ + 4.9829686, + 51.1729922 + ], + [ + 4.9829686, + 51.1815908 + ], + [ + 4.9779856, + 51.1815908 + ], + [ + 4.9779856, + 51.1729922 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T15:32:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ], + "leisure": [ + "outdoor_seating" + ], + "building": [ + "house", + "apartments", + "yes", + "shed", + "garage", + "roof" + ], + "addr:housenumber": [ + "31;31A", + "31,31A" + ], + "source:geometry:ref": [ + "Gbg/6154887", + "Gbg/1690639", + "Gbg/1690598", + "Gbg/6155371", + "Gbg/3534795", + "Gbg/6154705", + "Gbg/1690577", + "Gbg/1691405", + "Gbg/1692112", + "Gbg/1692110", + "Gbg/1692114", + "Gbg/1692113", + "Gbg/1692111", + "Gbg/1692109", + "Gbg/1689979", + "Gbg/1691395", + "Gbg/1691406", + "Gbg/5122649", + "Gbg/1691622", + "Gbg/1691407", + "Gbg/1691623", + "Gbg/1692165", + "Gbg/6154775", + "Gbg/1692095", + "Gbg/1691531", + "Gbg/5124669", + "Gbg/6152009", + "Gbg/5124663", + "Gbg/5123669", + "Gbg/5654173", + "Gbg/5127681", + "Gbg/6155502", + "Gbg/1692241", + "Gbg/6151666", + "Gbg/6149377", + "Gbg/1692236", + "Gbg/6149237", + "Gbg/6154936", + "Gbg/6154999", + "Gbg/1690646", + "Gbg/6155230", + "Gbg/1690637", + "Gbg/1690638", + "Gbg/6966433", + "Gba/110621" + ], + "source:geometry:date": [ + "2017-11-20", + "2021-07-05", + "2016-07-28", + "2012-10-10", + "2009-02-20", + "2015-03-30", + "2019-07-09" + ] + }, + "create": 145, + "modify": 377, + "delete": 16, + "area": 0.0000428468237999972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 326, + "theme": "grb", + "answer": 11, + "delete": 16, + "import": 14, + "locale": "nl", + "imagery": "AGIV", + "conflation": 90 + }, + "id": 123197824 + } + }, + { + "id": 123191932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5822797, + 53.2163377 + ], + [ + 6.5832587, + 53.2163377 + ], + [ + 6.5832587, + 53.2166336 + ], + [ + 6.5822797, + 53.2166336 + ], + [ + 6.5822797, + 53.2163377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T13:20:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.89686100004599e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2 + }, + "id": 123191932 + } + }, + { + "id": 123191890, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T13:19:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "image:2": [ + "https://i.imgur.com/ME9dmCc.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1 + }, + "id": 123191890 + } + }, + { + "id": 123191863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ], + [ + 6.5812226, + 53.2166886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T13:19:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2 + }, + "id": 123191863 + } + }, + { + "id": 123191667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5808984, + 53.2163321 + ], + [ + 6.5824943, + 53.2163321 + ], + [ + 6.5824943, + 53.2169115 + ], + [ + 6.5808984, + 53.2169115 + ], + [ + 6.5808984, + 53.2163321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T13:13:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 9.24664459999052e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2 + }, + "id": 123191667 + } + }, + { + "id": 123190566, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T12:43:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_within_25m": 2 + }, + "id": 123190566 + } + }, + { + "id": 123190523, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T12:42:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_within_25m": 2 + }, + "id": 123190523 + } + }, + { + "id": 123190511, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T12:42:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_within_25m": 2 + }, + "id": 123190511 + } + }, + { + "id": 123190494, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T12:41:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_within_25m": 1 + }, + "id": 123190494 + } + }, + { + "id": 123190472, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T12:41:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "create": 2, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_over_5000m": 2 + }, + "id": 123190472 + } + }, + { + "id": 123190471, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.9937018, + 49.356321 + ], + [ + 5.9937018, + 49.356321 + ], + [ + 5.9937018, + 49.356321 + ], + [ + 5.9937018, + 49.356321 + ], + [ + 5.9937018, + 49.356321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T12:41:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 123190471 + } + }, + { + "id": 123189685, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.5979106, + 9.9048858 + ], + [ + 88.640686, + 9.9048858 + ], + [ + 88.640686, + 30.9137291 + ], + [ + 72.5979106, + 30.9137291 + ], + [ + 72.5979106, + 9.9048858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-296648846", + "name": "Rani Jhansi Road", + "osm_id": 296648846, + "reasons": [ + 91 + ], + "version": 13, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T12:21:19Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "road", + "bus" + ], + "office": [ + "yes" + ], + "amenity": [ + "hospital", + "school", + "college" + ], + "barrier": [ + "wall" + ], + "highway": [ + "residential", + "unclassified", + "tertiary", + "service", + "secondary_link", + "secondary", + "living_street", + "mini_roundabout", + "primary", + "trunk" + ], + "landuse": [ + "industrial" + ], + "leisure": [ + "park" + ], + "natural": [ + "water" + ], + "building": [ + "yes", + "commercial" + ], + "name:etymology:wikidata": [ + "Q2721961", + "Q467207", + "Q8597", + "Q3631340", + "Q151164", + "Q336268", + "Q2044389", + "Q604647" + ] + }, + "create": 0, + "modify": 432, + "delete": 0, + "area": 337.040154475695, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 568, + "locale": "en", + "imagery": "osm" + }, + "id": 123189685 + } + }, + { + "id": 123186721, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3683552, + 50.8362534 + ], + [ + 4.3697627, + 50.8362534 + ], + [ + 4.3697627, + 50.8375215 + ], + [ + 4.3683552, + 50.8375215 + ], + [ + 4.3683552, + 50.8362534 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T11:21:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "name:etymology:wikidata": [ + "Q2869302" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000178485075000609, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123186721 + } + }, + { + "id": 123185883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6303094, + 50.7737438 + ], + [ + 5.6303094, + 50.7737438 + ], + [ + 5.6303094, + 50.7737438 + ], + [ + 5.6303094, + 50.7737438 + ], + [ + 5.6303094, + 50.7737438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T11:07:08Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/j4trE3c.jpg" + ], + "seats": [ + "5" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "no" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 123185883 + } + }, + { + "id": 123185039, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T10:52:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 123185039 + } + }, + { + "id": 123184977, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.9936655, + 49.3563223 + ], + [ + 5.9936655, + 49.3563223 + ], + [ + 5.9936655, + 49.3563223 + ], + [ + 5.9936655, + 49.3563223 + ], + [ + 5.9936655, + 49.3563223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T10:51:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 123184977 + } + }, + { + "id": 123182646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913992, + 50.1303574 + ], + [ + 8.6913992, + 50.1303574 + ], + [ + 8.6913992, + 50.1303574 + ], + [ + 8.6913992, + 50.1303574 + ], + [ + 8.6913992, + 50.1303574 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T10:06:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123182646 + } + }, + { + "id": 123182334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6918914, + 50.1303454 + ], + [ + 9.1023197, + 50.1303454 + ], + [ + 9.1023197, + 50.2891232 + ], + [ + 8.6918914, + 50.2891232 + ], + [ + 8.6918914, + 50.1303454 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T09:59:41Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle", + "hiking", + "bus", + "train", + "tracks" + ], + "amenity": [ + "parking", + "bench" + ], + "barrier": [ + "fence" + ], + "highway": [ + "residential", + "track", + "unclassified", + "path" + ], + "landuse": [ + "cemetery" + ], + "leisure": [ + "picnic_table" + ], + "railway": [ + "rail" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0651669025317385, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 4, + "create": 2, + "locale": "de", + "imagery": "osm", + "move:node/9865496705": "improve_accuracy" + }, + "id": 123182334 + } + }, + { + "id": 123182193, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8475558, + 52.8271882 + ], + [ + 13.8475558, + 52.8271882 + ], + [ + 13.8475558, + 52.8271882 + ], + [ + 13.8475558, + 52.8271882 + ], + [ + 13.8475558, + 52.8271882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T09:56:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123182193 + } + }, + { + "id": 123178163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2324958, + 52.747863 + ], + [ + 13.2439891, + 52.747863 + ], + [ + 13.2439891, + 52.7564169 + ], + [ + 13.2324958, + 52.7564169 + ], + [ + 13.2324958, + 52.747863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T08:15:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.0000983125388699452, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123178163 + } + }, + { + "id": 123176729, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3966043, + 45.4399591 + ], + [ + 4.3966043, + 45.4399591 + ], + [ + 4.3966043, + 45.4399591 + ], + [ + 4.3966043, + 45.4399591 + ], + [ + 4.3966043, + 45.4399591 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ciaoQuentin", + "uid": "641871", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T07:40:25Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "sourisverte@heureux-cyclage.org" + ], + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "valves": [ + "sclaverand;schrader" + ], + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "yes" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:tools": [ + "yes" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "fr.ign.bdortho" + }, + "id": 123176729 + } + }, + { + "id": 123175700, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0594795, + 48.8368773 + ], + [ + 10.061313, + 48.8368773 + ], + [ + 10.061313, + 48.8379511 + ], + [ + 10.0594795, + 48.8379511 + ], + [ + 10.0594795, + 48.8368773 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Segelpaule", + "uid": "146822", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-04T07:16:47Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "wheelchair": [ + "limited" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000196881230000068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 123175700 + } + }, + { + "id": 123172273, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1043802, + 38.8342475 + ], + [ + 0.1047612, + 38.8342475 + ], + [ + 0.1047612, + 38.8349927 + ], + [ + 0.1043802, + 38.8349927 + ], + [ + 0.1043802, + 38.8342475 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-04T05:40:13Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/H7lohk7.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "recycling", + "waste_disposal" + ], + "opening_hours": [ + "24/7" + ], + "recycling:clothes": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 1, + "area": 2.83921200001645e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "locale": "ca", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "change_over_5000m": 6, + "deletion:node/9621654230": "disused" + }, + "id": 123172273 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-05.json b/Docs/Tools/stats/stats.2022-7-05.json new file mode 100644 index 0000000000..f1b0deebab --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-05.json @@ -0,0 +1,5588 @@ +{ + "features": [ + { + "id": 123252804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3186656, + 50.8530113 + ], + [ + 4.328227, + 50.8530113 + ], + [ + 4.328227, + 50.8545488 + ], + [ + 4.3186656, + 50.8545488 + ], + [ + 4.3186656, + 50.8530113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T22:09:38Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "deli", + "copyshop", + "convenience" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000147006525000463, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 7, + "create": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 7 + }, + "id": 123252804 + } + }, + { + "id": 123252648, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4022181, + 52.5528387 + ], + [ + 13.4022181, + 52.5528387 + ], + [ + 13.4022181, + 52.5528387 + ], + [ + 13.4022181, + 52.5528387 + ], + [ + 13.4022181, + 52.5528387 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "uli12v", + "uid": "16459735", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T22:01:52Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-05", + "2020-09-15" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123252648 + } + }, + { + "id": 123250025, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3475309, + 50.8456127 + ], + [ + 4.3475309, + 50.8456127 + ], + [ + 4.3475309, + 50.8456127 + ], + [ + 4.3475309, + 50.8456127 + ], + [ + 4.3475309, + 50.8456127 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T20:14:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123250025 + } + }, + { + "id": 123248251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7368936, + 50.0999954 + ], + [ + 8.7368936, + 50.0999954 + ], + [ + 8.7368936, + 50.0999954 + ], + [ + 8.7368936, + 50.0999954 + ], + [ + 8.7368936, + 50.0999954 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T19:19:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/NuZyC7x.jpg" + ], + "amenity": [ + "post_box" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123248251 + } + }, + { + "id": 123248107, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.724153, + 50.1006582 + ], + [ + 8.724153, + 50.1006582 + ], + [ + 8.724153, + 50.1006582 + ], + [ + 8.724153, + 50.1006582 + ], + [ + 8.724153, + 50.1006582 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T19:15:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 11, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 11 + }, + "id": 123248107 + } + }, + { + "id": 123247553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.730703, + 50.0979682 + ], + [ + 8.7365744, + 50.0979682 + ], + [ + 8.7365744, + 50.0997197 + ], + [ + 8.730703, + 50.0997197 + ], + [ + 8.730703, + 50.0979682 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T18:59:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000102837571000272, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 14, + "create": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 16 + }, + "id": 123247553 + } + }, + { + "id": 123247458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9770677, + 51.032575 + ], + [ + 4.9770677, + 51.032575 + ], + [ + 4.9770677, + 51.032575 + ], + [ + 4.9770677, + 51.032575 + ], + [ + 4.9770677, + 51.032575 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T18:57:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xZHrq4D.jpg" + ], + "level": [ + "0" + ], + "access": [ + "yes" + ], + "survey:date": [ + "2022-07-05" + ], + "defibrillator:location": [ + "Onmiddellijk links aan de muur als men binnen komt" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "id": 123247458 + } + }, + { + "id": 123247368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7246082, + 50.0972835 + ], + [ + 8.7384025, + 50.0972835 + ], + [ + 8.7384025, + 50.0999408 + ], + [ + 8.7246082, + 50.0999408 + ], + [ + 8.7246082, + 50.0972835 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T18:54:49Z", + "reviewed_features": [], + "tag_changes": { + "bin": [ + "yes" + ], + "kerb": [ + "lowered" + ], + "bench": [ + "yes" + ], + "route": [ + "bus" + ], + "amenity": [ + "waste_disposal" + ], + "barrier": [ + "bollard" + ], + "highway": [ + "bus_stop", + "crossing", + "residential", + "living_street" + ], + "shelter": [ + "no" + ], + "crossing": [ + "unmarked" + ], + "tactile_paving": [ + "no" + ], + "crossing:island": [ + "no" + ], + "public_transport": [ + "platform" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000366555933899371, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 5, + "create": 4, + "locale": "de", + "imagery": "osm", + "change_within_25m": 8, + "change_within_50m": 1 + }, + "id": 123247368 + } + }, + { + "id": 123247296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7305836, + 50.0979269 + ], + [ + 8.732653, + 50.0979269 + ], + [ + 8.732653, + 50.0983183 + ], + [ + 8.7305836, + 50.0983183 + ], + [ + 8.7305836, + 50.0979269 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T18:53:13Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "waste_basket", + "waste_disposal", + "recycling" + ] + }, + "create": 4, + "modify": 4, + "delete": 0, + "area": 8.09963160011306e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 11, + "create": 4, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4, + "change_within_25m": 11, + "change_within_50m": 1 + }, + "id": 123247296 + } + }, + { + "id": 123247208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8688173, + 51.9256466 + ], + [ + 13.9071108, + 51.9256466 + ], + [ + 13.9071108, + 51.9432921 + ], + [ + 13.8688173, + 51.9432921 + ], + [ + 13.8688173, + 51.9256466 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thommi_07", + "uid": "16458584", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T18:50:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.000675707954250016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123247208 + } + }, + { + "id": 123242689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.349422, + 50.8533298 + ], + [ + 4.3508215, + 50.8533298 + ], + [ + 4.3508215, + 50.8534549 + ], + [ + 4.349422, + 50.8534549 + ], + [ + 4.349422, + 50.8533298 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T16:25:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.75077450007526e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1 + }, + "id": 123242689 + } + }, + { + "id": 123242631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5802736, + 55.706511 + ], + [ + 12.5831318, + 55.706511 + ], + [ + 12.5831318, + 55.7073419 + ], + [ + 12.5802736, + 55.7073419 + ], + [ + 12.5802736, + 55.706511 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T16:23:30Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "dog_excrement;trash" + ], + "amenity": [ + "waste_basket" + ], + "vending": [ + "dog_excrement_bag" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000237487838001164, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123242631 + } + }, + { + "id": 123237405, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9771864, + 51.0325165 + ], + [ + 4.9771864, + 51.0325165 + ], + [ + 4.9771864, + 51.0325165 + ], + [ + 4.9771864, + 51.0325165 + ], + [ + 4.9771864, + 51.0325165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T14:07:54Z", + "reviewed_features": [], + "tag_changes": { + "dog": [ + "yes" + ], + "amenity": [ + "pub" + ], + "wheelchair": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "id": 123237405 + } + }, + { + "id": 123237046, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2314671, + 50.7387163 + ], + [ + 4.2452814, + 50.7387163 + ], + [ + 4.2452814, + 50.7431813 + ], + [ + 4.2314671, + 50.7431813 + ], + [ + 4.2314671, + 50.7387163 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T13:58:15Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "BEALLEGO000668" + ], + "email": [ + "audi@donboscogarage.be" + ], + "phone": [ + "+32 800 78 192", + "+32 2 359 91 59" + ], + "amenity": [ + "charging_station" + ], + "image:0": [ + "https://i.imgur.com/DBl6WUf.jpg" + ], + "image:1": [ + "https://i.imgur.com/0mFXAIa.jpg" + ], + "maxstay": [ + "unlimited" + ], + "network": [ + "Allego" + ], + "website": [ + "https://www.allego.eu", + "https://www.brusselsautogroup.be/nl/audi/halle/donbosco" + ], + "parking:fee": [ + "no" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "payment:cards": [ + "no" + ], + "brand:wikidata": [ + "Q75560554" + ], + "socket:type2:output": [ + "11 kW" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000061680849500045, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 11, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 7 + }, + "id": 123237046 + } + }, + { + "id": 123237022, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2314671, + 50.7387163 + ], + [ + 4.2314671, + 50.7387163 + ], + [ + 4.2314671, + 50.7387163 + ], + [ + 4.2314671, + 50.7387163 + ], + [ + 4.2314671, + 50.7387163 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T13:57:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 123237022 + } + }, + { + "id": 123236640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2314671, + 50.7345064 + ], + [ + 4.2335913, + 50.7345064 + ], + [ + 4.2335913, + 50.7387163 + ], + [ + 4.2314671, + 50.7387163 + ], + [ + 4.2314671, + 50.7345064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T13:48:22Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/NR6B551.jpg" + ], + "amenity": [ + "charging_station" + ], + "image:0": [ + "https://i.imgur.com/qaXvwUq.jpg" + ], + "image:1": [ + "https://i.imgur.com/5qMMeJl.jpg" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000894266957999818, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_over_5000m": 4 + }, + "id": 123236640 + } + }, + { + "id": 123236066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2360158, + 50.7313348 + ], + [ + 4.2360158, + 50.7313348 + ], + [ + 4.2360158, + 50.7313348 + ], + [ + 4.2360158, + 50.7313348 + ], + [ + 4.2360158, + 50.7313348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Matthys", + "uid": "1862147", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T13:33:48Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "2" + ], + "payment:cards": [ + "no" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5 + }, + "id": 123236066 + } + }, + { + "id": 123235464, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.2989378, + 10.02732 + ], + [ + 88.6340181, + 10.02732 + ], + [ + 88.6340181, + 30.7636811 + ], + [ + 76.2989378, + 30.7636811 + ], + [ + 76.2989378, + 10.02732 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T13:18:56Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "barrier": [ + "wall" + ], + "highway": [ + "residential", + "service", + "tertiary", + "elevator", + "secondary_link", + "secondary", + "primary", + "primary_link", + "cycleway" + ], + "leisure": [ + "stadium", + "sports_centre" + ], + "railway": [ + "subway_entrance" + ], + "name:etymology:wikidata": [ + "Q4593", + "Q619", + "Q9045", + "Q486188", + "Q4837333", + "Q15649302", + "Q3631426", + "Q381138", + "Q469894", + "Q36014", + "Q288441", + "Q1405629", + "Q312976" + ] + }, + "create": 0, + "modify": 209, + "delete": 0, + "area": 255.784679298296, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 332, + "locale": "en", + "imagery": "osm" + }, + "id": 123235464 + } + }, + { + "id": 123234753, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6786802, + 50.0832972 + ], + [ + 8.6786802, + 50.0832972 + ], + [ + 8.6786802, + 50.0832972 + ], + [ + 8.6786802, + 50.0832972 + ], + [ + 8.6786802, + 50.0832972 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T13:00:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "create": 1, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123234753 + } + }, + { + "id": 123234454, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.732138, + 50.0978891 + ], + [ + 8.732138, + 50.0978891 + ], + [ + 8.732138, + 50.0978891 + ], + [ + 8.732138, + 50.0978891 + ], + [ + 8.732138, + 50.0978891 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T12:53:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123234454 + } + }, + { + "id": 123233216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2685701, + 53.2083619 + ], + [ + 6.2689881, + 53.2083619 + ], + [ + 6.2689881, + 53.2086212 + ], + [ + 6.2685701, + 53.2086212 + ], + [ + 6.2685701, + 53.2083619 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T12:22:48Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "wheelchair": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.08387400001327e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1, + "change_within_5000m": 2 + }, + "id": 123233216 + } + }, + { + "id": 123232237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4393069, + 50.8620139 + ], + [ + 4.5158892, + 50.8620139 + ], + [ + 4.5158892, + 50.8780829 + ], + [ + 4.4393069, + 50.8780829 + ], + [ + 4.4393069, + 50.8620139 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter vdVen", + "uid": "6663911", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T12:01:29Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "motorway_link", + "primary", + "unclassified", + "residential", + "primary_link", + "tertiary" + ], + "maxspeed": [ + "120", + "70", + "50" + ] + }, + "create": 0, + "modify": 36, + "delete": 0, + "area": 0.00123060097870013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 36, + "locale": "fr", + "imagery": "osm" + }, + "id": 123232237 + } + }, + { + "id": 123232149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7038165, + 50.1310675 + ], + [ + 8.7038165, + 50.1310675 + ], + [ + 8.7038165, + 50.1310675 + ], + [ + 8.7038165, + 50.1310675 + ], + [ + 8.7038165, + 50.1310675 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T11:59:33Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "no" + ], + "leisure": [ + "dog_park" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 4, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "id": 123232149 + } + }, + { + "id": 123232069, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3360868, + 50.8391168 + ], + [ + 4.3360868, + 50.8391168 + ], + [ + 4.3360868, + 50.8391168 + ], + [ + 4.3360868, + 50.8391168 + ], + [ + 4.3360868, + 50.8391168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter vdVen", + "uid": "6663911", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T11:57:48Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 123232069 + } + }, + { + "id": 123231988, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0392235, + 50.9388947 + ], + [ + 4.0402579, + 50.9388947 + ], + [ + 4.0402579, + 50.9410157 + ], + [ + 4.0392235, + 50.9410157 + ], + [ + 4.0392235, + 50.9388947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T11:56:08Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ], + "cyclestreet": [ + "yes" + ], + "overtaking:motor_vehicle": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000219396240000255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 123231988 + } + }, + { + "id": 123231506, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7038139, + 50.1320316 + ], + [ + 8.7041384, + 50.1320316 + ], + [ + 8.7041384, + 50.1323639 + ], + [ + 8.7038139, + 50.1323639 + ], + [ + 8.7038139, + 50.1320316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T11:46:24Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/DrTh8DJ.jpg" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 1.07831350001082e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 15, + "create": 3, + "locale": "de", + "imagery": "Hessen-DOP20", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 14, + "change_within_50m": 4 + }, + "id": 123231506 + } + }, + { + "id": 123231379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T11:43:32Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Beroea", + "De Krebbe" + ], + "amenity": [ + "restaurant" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 123231379 + } + }, + { + "id": 123231330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3959752, + 52.5418311 + ], + [ + 13.4466715, + 52.5418311 + ], + [ + 13.4466715, + 52.5689948 + ], + [ + 13.3959752, + 52.5689948 + ], + [ + 13.3959752, + 52.5418311 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annika_atip:tap", + "uid": "15923056", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T11:42:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00137709908430978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "move": 2, + "theme": "drinking_water", + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/9860430193": "improve_accuracy", + "move:node/9860528200": "improve_accuracy" + }, + "id": 123231330 + } + }, + { + "id": 123230722, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7055608, + 50.1317386 + ], + [ + 8.7064419, + 50.1317386 + ], + [ + 8.7064419, + 50.1337682 + ], + [ + 8.7055608, + 50.1337682 + ], + [ + 8.7055608, + 50.1317386 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T11:29:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "cycleway": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000017882805599983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123230722 + } + }, + { + "id": 123230411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7030709, + 50.132051 + ], + [ + 8.7061896, + 50.132051 + ], + [ + 8.7061896, + 50.1335575 + ], + [ + 8.7030709, + 50.1335575 + ], + [ + 8.7030709, + 50.132051 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T11:21:40Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench", + "waste_basket", + "waste_disposal" + ] + }, + "create": 8, + "modify": 9, + "delete": 0, + "area": 0.00000469832155001535, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 9, + "create": 8, + "locale": "de", + "imagery": "Hessen-DOP20", + "add-image": 7, + "change_over_5000m": 8, + "change_within_25m": 4, + "change_within_50m": 6, + "change_within_100m": 4, + "change_within_500m": 2 + }, + "id": 123230411 + } + }, + { + "id": 123230214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.703948, + 50.1323639 + ], + [ + 8.7061686, + 50.1323639 + ], + [ + 8.7061686, + 50.1335425 + ], + [ + 8.703948, + 50.1335425 + ], + [ + 8.703948, + 50.1323639 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T11:16:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/MDIq6Ww.jpg", + "https://i.imgur.com/sm58d0r.jpg" + ], + "amenity": [ + "bench" + ], + "highway": [ + "bus_stop" + ], + "public_transport": [ + "platform" + ] + }, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.00000261719915998993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 11, + "create": 2, + "locale": "de", + "imagery": "Hessen-DOP20", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 11 + }, + "id": 123230214 + } + }, + { + "id": 123229704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7039165, + 50.1301284 + ], + [ + 8.70449, + 50.1301284 + ], + [ + 8.70449, + 50.1302513 + ], + [ + 8.7039165, + 50.1302513 + ], + [ + 8.7039165, + 50.1301284 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T11:04:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xwreHkX.jpg", + "https://i.imgur.com/gLcOqtE.jpg" + ], + "sport": [ + "table_tennis", + "boules" + ], + "access": [ + "public" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "concrete", + "fine_gravel" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 7.04831500005038e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 123229704 + } + }, + { + "id": 123229452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7036824, + 50.129966 + ], + [ + 8.7040365, + 50.129966 + ], + [ + 8.7040365, + 50.1303084 + ], + [ + 8.7036824, + 50.1303084 + ], + [ + 8.7036824, + 50.129966 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:58:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 6, + "modify": 9, + "delete": 0, + "area": 1.21243839998138e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 23, + "create": 6, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "id": 123229452 + } + }, + { + "id": 123229305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7069198, + 50.134164 + ], + [ + 8.7103853, + 50.134164 + ], + [ + 8.7103853, + 50.1346179 + ], + [ + 8.7069198, + 50.1346179 + ], + [ + 8.7069198, + 50.134164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T10:55:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 6, + "modify": 9, + "delete": 1, + "area": 0.00000157299045001308, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "move": 1, + "theme": "parkings", + "answer": 1, + "create": 6, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "add-image": 7, + "change_over_5000m": 6, + "change_within_25m": 10, + "move:node/9867967548": "improve_accuracy", + "deletion:node/9867967548": "testing point" + }, + "id": 123229305 + } + }, + { + "id": 123229163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7055278, + 50.1307477 + ], + [ + 8.7055278, + 50.1307477 + ], + [ + 8.7055278, + 50.1307477 + ], + [ + 8.7055278, + 50.1307477 + ], + [ + 8.7055278, + 50.1307477 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:51:33Z", + "reviewed_features": [], + "tag_changes": { + "historic": [ + "memorial" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "ghostbikes", + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123229163 + } + }, + { + "id": 123228977, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.8115085, + 12.2813543 + ], + [ + 88.35084, + 12.2813543 + ], + [ + 88.35084, + 28.6337254 + ], + [ + 72.8115085, + 28.6337254 + ], + [ + 72.8115085, + 12.2813543 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:46:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 87, + "delete": 0, + "area": 254.10491533392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 162, + "locale": "en", + "imagery": "osm" + }, + "id": 123228977 + } + }, + { + "id": 123228917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3178672, + 50.8563182 + ], + [ + 4.3178672, + 50.8563182 + ], + [ + 4.3178672, + 50.8563182 + ], + [ + 4.3178672, + 50.8563182 + ], + [ + 4.3178672, + 50.8563182 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T10:44:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/G8wQzFL.jpg" + ], + "level": [ + "0" + ], + "access": [ + "yes" + ], + "indoor": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/aed.html", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 123228917 + } + }, + { + "id": 123228876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7030246, + 50.1303316 + ], + [ + 8.7058175, + 50.1303316 + ], + [ + 8.7058175, + 50.1313426 + ], + [ + 8.7030246, + 50.1313426 + ], + [ + 8.7030246, + 50.1303316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:43:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking", + "waste_basket" + ] + }, + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.00000282362190001446, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 6, + "create": 6, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "id": 123228876 + } + }, + { + "id": 123228569, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7066677, + 50.1339791 + ], + [ + 8.7091702, + 50.1339791 + ], + [ + 8.7091702, + 50.1346635 + ], + [ + 8.7066677, + 50.1346635 + ], + [ + 8.7066677, + 50.1339791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T10:35:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/T8K3Rcm.jpg" + ], + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:colour": [ + "orange" + ] + }, + "create": 3, + "modify": 13, + "delete": 0, + "area": 0.00000171271100001111, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "move": 8, + "theme": "street_lighting", + "answer": 17, + "create": 3, + "locale": "de", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 3, + "change_within_25m": 29, + "move:node/9867887568": "improve_accuracy", + "move:node/9867916999": "improve_accuracy", + "move:node/9867935056": "improve_accuracy", + "move:node/9867936338": "improve_accuracy" + }, + "id": 123228569 + } + }, + { + "id": 123228456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7052006, + 50.1299207 + ], + [ + 8.7059891, + 50.1299207 + ], + [ + 8.7059891, + 50.1319977 + ], + [ + 8.7052006, + 50.1319977 + ], + [ + 8.7052006, + 50.1299207 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:33:03Z", + "reviewed_features": [], + "tag_changes": { + "width": [ + "3.7" + ], + "amenity": [ + "parking" + ], + "highway": [ + "living_street" + ], + "source:width": [ + "ARCore" + ] + }, + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.000001637714500001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 6, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "id": 123228456 + } + }, + { + "id": 123228072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7056351, + 50.1320166 + ], + [ + 8.7056536, + 50.1320166 + ], + [ + 8.7056536, + 50.1325681 + ], + [ + 8.7056351, + 50.1325681 + ], + [ + 8.7056351, + 50.1320166 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:24:49Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 6, + "modify": 11, + "delete": 0, + "area": 1.02027499997165e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 6, + "create": 6, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "id": 123228072 + } + }, + { + "id": 123227716, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7067086, + 50.1339791 + ], + [ + 8.7076963, + 50.1339791 + ], + [ + 8.7076963, + 50.1344142 + ], + [ + 8.7067086, + 50.1344142 + ], + [ + 8.7067086, + 50.1339791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T10:17:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 3, + "modify": 11, + "delete": 0, + "area": 4.29748270004011e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 1, + "theme": "street_lighting", + "answer": 14, + "create": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 17, + "move:node/9867916999": "improve_accuracy" + }, + "id": 123227716 + } + }, + { + "id": 123227355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.705501, + 50.13202 + ], + [ + 8.7062252, + 50.13202 + ], + [ + 8.7062252, + 50.1337153 + ], + [ + 8.705501, + 50.1337153 + ], + [ + 8.705501, + 50.13202 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T10:08:46Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 7, + "modify": 14, + "delete": 0, + "area": 0.00000122773626000195, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 15, + "create": 7, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "id": 123227355 + } + }, + { + "id": 123227004, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.70729, + 50.1342826 + ], + [ + 8.70729, + 50.1342826 + ], + [ + 8.70729, + 50.1342826 + ], + [ + 8.70729, + 50.1342826 + ], + [ + 8.70729, + 50.1342826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe_23", + "uid": "16454314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T10:01:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "create": 1, + "locale": "de", + "imagery": "Hessen-DOP20", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 1, + "deletion:node/9867859922": "not found" + }, + "id": 123227004 + } + }, + { + "id": 123226529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1224413, + 52.0718285 + ], + [ + 5.1224413, + 52.0718285 + ], + [ + 5.1224413, + 52.0718285 + ], + [ + 5.1224413, + 52.0718285 + ], + [ + 5.1224413, + 52.0718285 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T09:51:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ], + "nobrand": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123226529 + } + }, + { + "id": 123226513, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.8262855, + 51.2951115 + ], + [ + 14.8268137, + 51.2951115 + ], + [ + 14.8268137, + 51.296115 + ], + [ + 14.8262855, + 51.296115 + ], + [ + 14.8262855, + 51.2951115 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T09:51:02Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.30048700003146e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123226513 + } + }, + { + "id": 123226225, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1224413, + 52.070124 + ], + [ + 5.1268333, + 52.070124 + ], + [ + 5.1268333, + 52.0718285 + ], + [ + 5.1224413, + 52.0718285 + ], + [ + 5.1224413, + 52.070124 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T09:44:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.00000748616400001101, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 7, + "create": 3, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 10 + }, + "id": 123226225 + } + }, + { + "id": 123225591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6718616, + 50.8108499 + ], + [ + 5.6718616, + 50.8108499 + ], + [ + 5.6718616, + 50.8108499 + ], + [ + 5.6718616, + 50.8108499 + ], + [ + 5.6718616, + 50.8108499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T09:31:00Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 123225591 + } + }, + { + "id": 123225522, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T09:29:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 123225522 + } + }, + { + "id": 123225481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ], + [ + 5.6705815, + 50.8098967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T09:28:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "id": 123225481 + } + }, + { + "id": 123224074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7057745, + 50.133466 + ], + [ + 8.7057906, + 50.133466 + ], + [ + 8.7057906, + 50.1334797 + ], + [ + 8.7057745, + 50.1334797 + ], + [ + 8.7057745, + 50.133466 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 24(2)", + "uid": "16454332", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T08:53:25Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 2, + "modify": 0, + "delete": 2, + "area": 2.20570000058837e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 3, + "create": 2, + "locale": "de", + "imagery": "osm", + "deletion": 2, + "deletion:node/9867677240": "testing point", + "deletion:node/9867741024": "testing point" + }, + "id": 123224074 + } + }, + { + "id": 123224050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6689852, + 50.8083967 + ], + [ + 5.6710444, + 50.8083967 + ], + [ + 5.6710444, + 50.814668 + ], + [ + 5.6689852, + 50.814668 + ], + [ + 5.6689852, + 50.8083967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:52:46Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.0000129138609599925, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 15, + "create": 2, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 13, + "change_within_500m": 5, + "import:node/9867768579": "source: https://osm.org/note/3044346" + }, + "id": 123224050 + } + }, + { + "id": 123223362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0215466, + 51.1664196 + ], + [ + 5.0238246, + 51.1664196 + ], + [ + 5.0238246, + 51.1678587 + ], + [ + 5.0215466, + 51.1678587 + ], + [ + 5.0215466, + 51.1664196 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:35:32Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "garage", + "house", + "yes" + ], + "addr:street": [ + "Kievermont" + ], + "addr:housenumber": [ + "32" + ], + "source:geometry:ref": [ + "Gbg/6642543", + "Gbg/1698590", + "Gbg/6154667", + "Gbg/5127494", + "Gbg/1698459", + "Gbg/1698387", + "Gbg/1698481", + "Gbg/1698558", + "Gbg/1698557", + "Gbg/1698480", + "Gbg/6966724", + "Gbg/1698479" + ], + "source:geometry:date": [ + "2019-07-09", + "2009-08-13", + "2017-11-20", + "2021-07-05", + "2016-07-28" + ] + }, + "create": 87, + "modify": 73, + "delete": 1, + "area": 0.00000327826979999817, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 60, + "theme": "grb", + "answer": 1, + "delete": 1, + "import": 12, + "locale": "nl", + "imagery": "AGIV", + "conflation": 24 + }, + "id": 123223362 + } + }, + { + "id": 123222892, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0236416, + 51.1665768 + ], + [ + 5.0256533, + 51.1665768 + ], + [ + 5.0256533, + 51.1684067 + ], + [ + 5.0236416, + 51.1684067 + ], + [ + 5.0236416, + 51.1665768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:22:25Z", + "reviewed_features": [], + "tag_changes": { + "power": [ + "substation" + ], + "building": [ + "roof", + "house", + "chapel", + "garage", + "yes", + "shed" + ], + "historic": [ + "chapel" + ], + "man_made": [ + "street_cabinet" + ], + "start_date": [ + "1877" + ], + "source:geometry:ref": [ + "Gbg/1698456", + "Gbg/1698435", + "Gbg/1698434", + "Gbg/1698455", + "Gbg/1698458", + "Gbg/1698397", + "Gbg/1698525", + "Gbg/1698457", + "Gbg/1698396", + "Gbg/1698484", + "Gbg/1698483", + "Gbg/6149179", + "Gbg/5127498", + "Gbg/1700120" + ], + "not:addr:housenumber": [ + "yes" + ], + "source:geometry:date": [ + "2009-08-13", + "2017-11-20", + "2019-07-09", + "2015-03-30" + ], + "year_of_construction": [ + "1877" + ] + }, + "create": 48, + "modify": 130, + "delete": 5, + "area": 0.00000368120982999357, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 114, + "theme": "grb", + "answer": 2, + "delete": 5, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "id": 123222892 + } + }, + { + "id": 123222850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0245015, + 51.1677197 + ], + [ + 5.025214, + 51.1677197 + ], + [ + 5.025214, + 51.1679452 + ], + [ + 5.0245015, + 51.1679452 + ], + [ + 5.0245015, + 51.1677197 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:21:24Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "garage", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698436", + "Gbg/1698527", + "Gbg/1698526" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 3, + "modify": 33, + "delete": 0, + "area": 1.60668749999286e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 30, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 123222850 + } + }, + { + "id": 123222833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0250087, + 51.1676998 + ], + [ + 5.0251577, + 51.1676998 + ], + [ + 5.0251577, + 51.1677812 + ], + [ + 5.0250087, + 51.1677812 + ], + [ + 5.0250087, + 51.1676998 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:21:08Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/1698528" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.21285999999015e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 5, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123222833 + } + }, + { + "id": 123222810, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0247498, + 51.1672195 + ], + [ + 5.0260275, + 51.1672195 + ], + [ + 5.0260275, + 51.167646 + ], + [ + 5.0247498, + 51.167646 + ], + [ + 5.0247498, + 51.1672195 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:20:17Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/1698438", + "Gbg/1698529", + "Gbg/1698437", + "Gbg/6149138", + "Gbg/5127496" + ], + "source:geometry:date": [ + "2009-08-13", + "2017-11-20", + "2015-03-30" + ] + }, + "create": 4, + "modify": 50, + "delete": 2, + "area": 5.4493904999472e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 45, + "theme": "grb", + "delete": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "id": 123222810 + } + }, + { + "id": 123222681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0225921, + 51.1652099 + ], + [ + 5.0253005, + 51.1652099 + ], + [ + 5.0253005, + 51.1669946 + ], + [ + 5.0225921, + 51.1669946 + ], + [ + 5.0225921, + 51.1652099 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:16:24Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698405" + ], + "source:geometry:date": [ + "2015-03-30" + ] + }, + "create": 11, + "modify": 17, + "delete": 12, + "area": 0.00000483368148000543, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 16, + "theme": "grb", + "delete": 12, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123222681 + } + }, + { + "id": 123222572, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T08:12:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 123222572 + } + }, + { + "id": 123221859, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0221154, + 51.1647086 + ], + [ + 5.0241583, + 51.1647086 + ], + [ + 5.0241583, + 51.1665091 + ], + [ + 5.0221154, + 51.1665091 + ], + [ + 5.0221154, + 51.1647086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:52:31Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "huisnr?" + ], + "leisure": [ + "dance" + ], + "building": [ + "house", + "yes", + "garage", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698401", + "Gbg/1698400", + "Gbg/1698394", + "Gbg/1698402", + "Gbg/5655296", + "Gbg/1698393", + "Gbg/1698392", + "Gbg/1698391", + "Gbg/5654297", + "Gbg/5127486", + "Gbg/1698474", + "Gbg/1698492", + "Gbg/1699059", + "Gbg/1699058", + "Gbg/5123368", + "Gbg/1698418", + "Gbg/1698403", + "Gbg/1698417", + "Gbg/1699144", + "Gbg/1699143", + "Gbg/1699060", + "Gbg/1699141", + "Gbg/6966734", + "Gbg/5740359" + ], + "source:geometry:date": [ + "2009-08-13", + "2016-07-28", + "2015-03-30", + "2019-07-09", + "2021-07-05", + "2016-11-21" + ] + }, + "create": 34, + "modify": 220, + "delete": 11, + "area": 0.00000367824145000369, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 194, + "theme": "grb", + "answer": 4, + "delete": 11, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 48 + }, + "id": 123221859 + } + }, + { + "id": 123221849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0218766, + 51.1656371 + ], + [ + 5.0221, + 51.1656371 + ], + [ + 5.0221, + 51.1659305 + ], + [ + 5.0218766, + 51.1659305 + ], + [ + 5.0218766, + 51.1656371 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:52:10Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/5127485" + ], + "source:geometry:date": [ + "2015-03-30" + ] + }, + "create": 6, + "modify": 5, + "delete": 0, + "area": 6.55455600009611e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123221849 + } + }, + { + "id": 123220842, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0188176, + 51.164391 + ], + [ + 5.0226137, + 51.164391 + ], + [ + 5.0226137, + 51.1658648 + ], + [ + 5.0188176, + 51.1658648 + ], + [ + 5.0188176, + 51.164391 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:26:32Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "garage", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698395", + "Gbg/1699139", + "Gbg/1700177", + "Gbg/1699054", + "Gbg/1699055", + "Gbg/1699012", + "Gbg/1699008", + "Gbg/1699006", + "Gbg/1699007", + "Gbg/1699011", + "Gbg/1699009", + "Gbg/1699010", + "Gbg/1700131", + "Gbg/1699138", + "Gbg/5127480", + "Gbg/5127481", + "Gbg/5654353", + "Gbg/6155294", + "Gbg/5655373", + "Gbg/6150403", + "Gbg/6150672", + "Gbg/1699104", + "Gbg/6150297", + "Gbg/1699099", + "Gbg/5127521", + "Gbg/1699105", + "Gbg/6154978", + "Gbg/1699103", + "Gbg/1699102" + ], + "source:geometry:date": [ + "2009-08-13", + "2017-11-20", + "2019-07-09", + "2021-07-05", + "2016-07-28", + "2015-03-30" + ] + }, + "create": 32, + "modify": 209, + "delete": 3, + "area": 0.0000055946921799974, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 178, + "theme": "grb", + "answer": 8, + "delete": 3, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 58 + }, + "id": 123220842 + } + }, + { + "id": 123220828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0187335, + 51.1645562 + ], + [ + 5.0188046, + 51.1645562 + ], + [ + 5.0188046, + 51.1645864 + ], + [ + 5.0187335, + 51.1645864 + ], + [ + 5.0187335, + 51.1645562 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:26:18Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/1699107" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.14721999984596e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123220828 + } + }, + { + "id": 123220814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0186149, + 51.1642765 + ], + [ + 5.0188212, + 51.1642765 + ], + [ + 5.0188212, + 51.1646017 + ], + [ + 5.0186149, + 51.1646017 + ], + [ + 5.0186149, + 51.1642765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:25:52Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/1699021", + "Gbg/1699108" + ], + "source:geometry:date": [ + "2017-11-20", + "2009-08-13" + ] + }, + "create": 0, + "modify": 18, + "delete": 0, + "area": 6.70887599995933e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 123220814 + } + }, + { + "id": 123220805, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0185051, + 51.1646894 + ], + [ + 5.0185564, + 51.1646894 + ], + [ + 5.0185564, + 51.1647941 + ], + [ + 5.0185051, + 51.1647941 + ], + [ + 5.0185051, + 51.1646894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:25:41Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/1699112" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 5.37111000006939e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123220805 + } + }, + { + "id": 123220789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0182931, + 51.1646992 + ], + [ + 5.0183424, + 51.1646992 + ], + [ + 5.0183424, + 51.1648227 + ], + [ + 5.0182931, + 51.1648227 + ], + [ + 5.0182931, + 51.1646992 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:25:30Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/1699111" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.08855000000354e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123220789 + } + }, + { + "id": 123220780, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0183095, + 51.1646633 + ], + [ + 5.0184001, + 51.1646633 + ], + [ + 5.0184001, + 51.1646945 + ], + [ + 5.0183095, + 51.1646945 + ], + [ + 5.0183095, + 51.1646633 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:25:22Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/1699110" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.8267200002036e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123220780 + } + }, + { + "id": 123220143, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0146364, + 51.1638991 + ], + [ + 5.0185699, + 51.1638991 + ], + [ + 5.0185699, + 51.1649936 + ], + [ + 5.0146364, + 51.1649936 + ], + [ + 5.0146364, + 51.1638991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:10:35Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "foot" + ], + "barrier": [ + "wall" + ], + "building": [ + "house", + "yes", + "garage", + "shed", + "roof" + ], + "addr:housenumber": [ + "16;16A", + "16,16A" + ], + "source:geometry:ref": [ + "Gbg/1699018", + "Gbg/1699015", + "Gbg/1699020", + "Gbg/1699016", + "Gbg/1699019", + "Gbg/1699014", + "Gbg/6966311", + "Gbg/1699109", + "Gbg/1699013", + "Gbg/1699033", + "Gbg/1699017", + "Gbg/1699113", + "Gbg/1699117", + "Gbg/5127520", + "Gbg/5127522", + "Gbg/1699114", + "Gbg/1699116", + "Gbg/1700023", + "Gbg/1700024", + "Gbg/5740476", + "Gbg/1699115" + ], + "source:geometry:date": [ + "2009-08-13", + "2016-07-28", + "2021-07-05", + "2015-03-30", + "2017-11-20" + ] + }, + "create": 74, + "modify": 150, + "delete": 0, + "area": 0.00000430521575000314, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 128, + "theme": "grb", + "answer": 3, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 42 + }, + "id": 123220143 + } + }, + { + "id": 123219853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3761769, + 48.5554512 + ], + [ + 9.3761769, + 48.5554512 + ], + [ + 9.3761769, + 48.5554512 + ], + [ + 9.3761769, + 48.5554512 + ], + [ + 9.3761769, + 48.5554512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-05T07:04:15Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/bRwwEGY.jpg" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123219853 + } + }, + { + "id": 123215119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.840554, + 12.9505818 + ], + [ + 88.3698382, + 12.9505818 + ], + [ + 88.3698382, + 30.9007274 + ], + [ + 72.840554, + 30.9007274 + ], + [ + 72.840554, + 12.9505818 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-05T04:36:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 37, + "delete": 0, + "area": 278.75291245378, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "id": 123215119 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-06.json b/Docs/Tools/stats/stats.2022-7-06.json new file mode 100644 index 0000000000..842315b49b --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-06.json @@ -0,0 +1,1390 @@ +{ + "features": [ + { + "id": 123295811, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0880203, + 38.8461799 + ], + [ + 0.0933637, + 38.8461799 + ], + [ + 0.0933637, + 38.8486852 + ], + [ + 0.0880203, + 38.8486852 + ], + [ + 0.0880203, + 38.8461799 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T23:07:25Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "waste_disposal", + "recycling" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000133868200199771, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "add-image": 2 + }, + "id": 123295811 + } + }, + { + "id": 123290413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.2512524, + 52.3771451 + ], + [ + -1.2507886, + 52.3771451 + ], + [ + -1.2507886, + 52.3779357 + ], + [ + -1.2512524, + 52.3779357 + ], + [ + -1.2512524, + 52.3771451 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnesss", + "uid": "6274199", + "editor": "MapComplete 0.21.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T19:25:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 17, + "delete": 0, + "area": 3.66680280001014e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/uk_addresses.html", + "theme": "uk_addresses", + "answer": 31, + "import": 16, + "locale": "en", + "imagery": "osm" + }, + "id": 123290413 + } + }, + { + "id": 123288305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8911026, + 51.9280268 + ], + [ + 13.8958636, + 51.9280268 + ], + [ + 13.8958636, + 51.9345923 + ], + [ + 13.8911026, + 51.9345923 + ], + [ + 13.8911026, + 51.9280268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thommi_07", + "uid": "16458584", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T18:14:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0000312583455000047, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123288305 + } + }, + { + "id": 123285972, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3293549, + 50.8624083 + ], + [ + 4.3377931, + 50.8624083 + ], + [ + 4.3377931, + 50.8779243 + ], + [ + 4.3293549, + 50.8779243 + ], + [ + 4.3293549, + 50.8624083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T16:58:54Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000130927111199978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 3 + }, + "id": 123285972 + } + }, + { + "id": 123285203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.5322197, + 11.0129631 + ], + [ + 88.4028645, + 11.0129631 + ], + [ + 88.4028645, + 30.3402864 + ], + [ + 72.5322197, + 30.3402864 + ], + [ + 72.5322197, + 11.0129631 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T16:34:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 277, + "delete": 0, + "area": 306.737083029064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 386, + "locale": "en", + "imagery": "osm" + }, + "id": 123285203 + } + }, + { + "id": 123284110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3248045, + 50.8530122 + ], + [ + 4.3248059, + 50.8530122 + ], + [ + 4.3248059, + 50.8530731 + ], + [ + 4.3248045, + 50.8530731 + ], + [ + 4.3248045, + 50.8530122 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T15:59:22Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "copyshop", + "convenience" + ], + "image": [ + "https://i.imgur.com/Z5WsyUy.jpg" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 8.52600000243323e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 10, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "id": 123284110 + } + }, + { + "id": 123282216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2497048, + 52.7628106 + ], + [ + 13.2583173, + 52.7628106 + ], + [ + 13.2583173, + 52.7652759 + ], + [ + 13.2497048, + 52.7652759 + ], + [ + 13.2497048, + 52.7628106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T15:06:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 8, + "delete": 0, + "area": 0.0000212323962499759, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123282216 + } + }, + { + "id": 123282048, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ], + [ + 4.316601, + 50.8537057 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T15:02:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "locale": "en", + "imagery": "osm", + "special-delete": 1 + }, + "id": 123282048 + } + }, + { + "id": 123281287, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5830426, + 55.7072202 + ], + [ + 12.5830426, + 55.7072202 + ], + [ + 12.5830426, + 55.7072202 + ], + [ + 12.5830426, + 55.7072202 + ], + [ + 12.5830426, + 55.7072202 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T14:42:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123281287 + } + }, + { + "id": 123281172, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 21.1372986, + 56.2122503 + ], + [ + 21.1372986, + 56.2122503 + ], + [ + 21.1372986, + 56.2122503 + ], + [ + 21.1372986, + 56.2122503 + ], + [ + 21.1372986, + 56.2122503 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "arturslunevs", + "uid": "10481190", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T14:39:19Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "en", + "imagery": "LV_ORTOFOTO_C6", + "change_over_5000m": 1 + }, + "id": 123281172 + } + }, + { + "id": 123274521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5149036, + 51.1496064 + ], + [ + 4.5243747, + 51.1496064 + ], + [ + 4.5243747, + 51.1602366 + ], + [ + 4.5149036, + 51.1602366 + ], + [ + 4.5149036, + 51.1496064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T11:52:05Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified" + ], + "maxspeed": [ + "30", + "50" + ], + "cyclestreet": [ + "yes" + ], + "overtaking:motor_vehicle": [ + "no" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000100679687219944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "id": 123274521 + } + }, + { + "id": 123272200, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4466715, + 52.5418311 + ], + [ + 13.4466715, + 52.5418311 + ], + [ + 13.4466715, + 52.5418311 + ], + [ + 13.4466715, + 52.5418311 + ], + [ + 13.4466715, + 52.5418311 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annika_atip:tap", + "uid": "15923056", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T10:50:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9860430193": "duplicate" + }, + "id": 123272200 + } + }, + { + "id": 123270189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5482168, + 55.6466373 + ], + [ + 12.5484702, + 55.6466373 + ], + [ + 12.5484702, + 55.6467801 + ], + [ + 12.5482168, + 55.6467801 + ], + [ + 12.5482168, + 55.6466373 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T09:57:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.61855199997564e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123270189 + } + }, + { + "id": 123269792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4760549, + 51.0309255 + ], + [ + 4.4760549, + 51.0309255 + ], + [ + 4.4760549, + 51.0309255 + ], + [ + 4.4760549, + 51.0309255 + ], + [ + 4.4760549, + 51.0309255 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dimitri Van Baelen", + "uid": "4885015", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T09:49:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 123269792 + } + }, + { + "id": 123269175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2212722, + 51.2177581 + ], + [ + 3.2212722, + 51.2177581 + ], + [ + 3.2212722, + 51.2177581 + ], + [ + 3.2212722, + 51.2177581 + ], + [ + 3.2212722, + 51.2177581 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #doctors", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T09:36:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "doctors" + ], + "healthcare:speciality": [ + "general" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu51.gitpod.io/theme.html", + "theme": "doctors", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123269175 + } + }, + { + "id": 123263942, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2434957, + 52.7322489 + ], + [ + 13.248611, + 52.7322489 + ], + [ + 13.248611, + 52.7563975 + ], + [ + 13.2434957, + 52.7563975 + ], + [ + 13.2434957, + 52.7322489 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T07:32:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.000123527333579981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123263942 + } + }, + { + "id": 123261767, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9771554, + 51.0334128 + ], + [ + 4.9779886, + 51.0334128 + ], + [ + 4.9779886, + 51.0341496 + ], + [ + 4.9771554, + 51.0341496 + ], + [ + 4.9771554, + 51.0334128 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T06:35:13Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "city_wall" + ], + "building": [ + "yes", + "house" + ], + "source:geometry:ref": [ + "Gbg/2442513", + "Gbg/6121864" + ], + "source:geometry:date": [ + "2016-04-04", + "2017-11-13" + ] + }, + "create": 0, + "modify": 14, + "delete": 0, + "area": 6.13901759998603e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 123261767 + } + }, + { + "id": 123261274, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9748402, + 51.0322287 + ], + [ + 4.9798515, + 51.0322287 + ], + [ + 4.9798515, + 51.0361699 + ], + [ + 4.9748402, + 51.0361699 + ], + [ + 4.9748402, + 51.0322287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-06T06:21:16Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "wall", + "city_wall", + "castle_wall" + ], + "highway": [ + "service", + "footway" + ], + "building": [ + "yes", + "house", + "barn" + ], + "addr:street": [ + "Herseltsebaan", + "Abdijstraat" + ], + "addr:housenumber": [ + "2", + "1" + ], + "source:geometry:ref": [ + "Gbg/6121800", + "Gbg/6121808", + "Gbg/2442510", + "Gbg/6119034", + "Gbg/6119023", + "Gbg/6119033", + "Gbg/5027040", + "Gbg/5028087", + "Gbg/6121802" + ], + "source:geometry:date": [ + "2018-03-15", + "2017-11-13", + "2015-02-05", + "2019-05-09" + ] + }, + "create": 36, + "modify": 90, + "delete": 2, + "area": 0.0000197505355599978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 78, + "theme": "grb", + "answer": 7, + "delete": 2, + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 18 + }, + "id": 123261274 + } + }, + { + "id": 123256718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.6229917, + 9.9000768 + ], + [ + 90.5233221, + 9.9000768 + ], + [ + 90.5233221, + 32.5389552 + ], + [ + 69.6229917, + 32.5389552 + ], + [ + 69.6229917, + 9.9000768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 489, + "name": "Mapbox: Spam text" + }, + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-828016797", + "note": "Spam text reported in [\"name\",\"name:etymology:wikidata\"] tags in the feature", + "osm_id": 828016797, + "reasons": [ + 489, + 531 + ], + "version": 2 + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-06T03:42:06Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "college" + ], + "highway": [ + "primary" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q1047", + "Q3633365" + ] + }, + "create": 0, + "modify": 102, + "delete": 0, + "area": 473.160038445423, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 112, + "locale": "en", + "imagery": "osm" + }, + "id": 123256718 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-07.json b/Docs/Tools/stats/stats.2022-7-07.json new file mode 100644 index 0000000000..d187ed471c --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-07.json @@ -0,0 +1,3672 @@ +{ + "features": [ + { + "id": 123337320, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9947496, + 51.1510846 + ], + [ + 5.0276409, + 51.1510846 + ], + [ + 5.0276409, + 51.1804305 + ], + [ + 4.9947496, + 51.1804305 + ], + [ + 4.9947496, + 51.1510846 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T21:47:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ], + "highway": [ + "unclassified" + ], + "building": [ + "yes", + "industrial", + "house", + "apartments", + "parking", + "garage", + "roof" + ], + "addr:housenumber": [ + "23;25;27;29;31;33;35;37;39", + "23-39", + "26;28", + "26" + ], + "source:geometry:ref": [ + "Gbg/6154433", + "Gbg/1698211", + "Gbg/6149736", + "Gbg/1712424", + "Gbg/1712425", + "Gbg/6154785", + "Gbg/1698252", + "Gbg/5122835", + "Gbg/1705980", + "Gbg/1705940", + "Gbg/1712449", + "Gbg/5740440", + "Gbg/1705939", + "Gbg/1713430", + "Gbg/6149685", + "Gbg/6154408", + "Gbg/6153183", + "Gbg/1698244", + "Gbg/5126715" + ], + "source:geometry:date": [ + "2017-11-20", + "2009-08-13", + "2019-07-09", + "2009-09-21", + "2009-11-17" + ] + }, + "create": 62, + "modify": 191, + "delete": 4, + "area": 0.000965224800670094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 170, + "theme": "grb", + "answer": 3, + "delete": 4, + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 40 + }, + "id": 123337320 + } + }, + { + "id": 123337192, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0125184, + 51.176518 + ], + [ + 5.0167921, + 51.176518 + ], + [ + 5.0167921, + 51.1778272 + ], + [ + 5.0125184, + 51.1778272 + ], + [ + 5.0125184, + 51.176518 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T21:41:47Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "shed", + "garage", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1697911", + "Gbg/1697909", + "Gbg/5122710", + "Gbg/1711147", + "Gbg/1711145", + "Gbg/1697898", + "Gbg/1711144", + "Gbg/1697910", + "Gbg/1711146", + "Gbg/6928661", + "Gbg/1697918", + "Gbg/1697917", + "Gbg/5740405", + "Gbg/5123139", + "Gbg/1711189", + "Gbg/1711190", + "Gbg/1711191", + "Gbg/6151250", + "Gba/405210", + "Gba/405209" + ], + "source:geometry:date": [ + "2009-08-13", + "2015-03-30", + "2009-11-17", + "2020-03-10", + "2017-11-20", + "2019-07-09" + ] + }, + "create": 26, + "modify": 173, + "delete": 6, + "area": 0.00000559512804000584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 153, + "theme": "grb", + "delete": 6, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 40 + }, + "id": 123337192 + } + }, + { + "id": 123337147, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0117234, + 51.1748626 + ], + [ + 5.0136132, + 51.1748626 + ], + [ + 5.0136132, + 51.176553 + ], + [ + 5.0117234, + 51.176553 + ], + [ + 5.0117234, + 51.1748626 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T21:39:39Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "farm", + "shed", + "dh", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/6154725", + "Gbg/5654235", + "Gbg/1697902", + "Gbg/1697901", + "Gbg/6966709", + "Gbg/1697946", + "Gbg/1697945", + "Gbg/6153744", + "Gbg/5127591", + "Gbg/5127579", + "Gbg/5654236" + ], + "source:geometry:date": [ + "2017-11-20", + "2009-08-13", + "2021-07-05", + "2016-07-28", + "2015-11-26", + "2015-03-30" + ] + }, + "create": 25, + "modify": 77, + "delete": 0, + "area": 0.00000319451792000178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 67, + "theme": "grb", + "answer": 1, + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 22 + }, + "id": 123337147 + } + }, + { + "id": 123334133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 39.1284165, + 51.6510207 + ], + [ + 39.1289124, + 51.6510207 + ], + [ + 39.1289124, + 51.6514202 + ], + [ + 39.1284165, + 51.6514202 + ], + [ + 39.1284165, + 51.6510207 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SoNick_RND", + "uid": "34198", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T19:48:40Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "public" + ], + "camera:direction": [ + "1", + "0" + ], + "surveillance:type": [ + "camera" + ], + "surveillance:zone": [ + "entrance", + "Park alley and intersection" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.98112049999008e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123334133 + } + }, + { + "id": 123334053, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 39.1284165, + 51.6509597 + ], + [ + 39.1295639, + 51.6509597 + ], + [ + 39.1295639, + 51.6514202 + ], + [ + 39.1284165, + 51.6514202 + ], + [ + 39.1284165, + 51.6509597 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SoNick_RND", + "uid": "34198", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T19:46:15Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "surveillance" + ], + "surveillance:zone": [ + "entrance" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.28377699995192e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123334053 + } + }, + { + "id": 123333755, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 39.1284511, + 51.65083 + ], + [ + 39.1297639, + 51.65083 + ], + [ + 39.1297639, + 51.6510628 + ], + [ + 39.1284511, + 51.6510628 + ], + [ + 39.1284511, + 51.65083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SoNick_RND", + "uid": "34198", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T19:37:56Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments" + ], + "man_made": [ + "surveillance" + ], + "operator": [ + "citykrepost.ru/cabinet/videos/738", + "citykrepost.ru" + ], + "camera:type": [ + "fixed" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "public" + ], + "camera:direction": [ + "13", + "354" + ], + "surveillance:type": [ + "camera" + ], + "surveillance:zone": [ + "parking" + ] + }, + "create": 1, + "modify": 14, + "delete": 0, + "area": 3.05619839999085e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 16, + "create": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 123333755 + } + }, + { + "id": 123333237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.1169665, + 49.8907419 + ], + [ + 7.1176173, + 49.8907419 + ], + [ + 7.1176173, + 49.8910808 + ], + [ + 7.1169665, + 49.8910808 + ], + [ + 7.1169665, + 49.8907419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s6mables", + "uid": "8409097", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T19:21:34Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ], + "operator": [ + "Gemeinde Longkamp" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.20556119997076e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123333237 + } + }, + { + "id": 123330501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3526848, + 50.856259 + ], + [ + 4.3527849, + 50.856259 + ], + [ + 4.3527849, + 50.856309 + ], + [ + 4.3526848, + 50.856309 + ], + [ + 4.3526848, + 50.856259 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T17:53:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "building": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.00500000016852e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/fritures.html", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123330501 + } + }, + { + "id": 123328508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3526848, + 50.856259 + ], + [ + 4.3527849, + 50.856259 + ], + [ + 4.3527849, + 50.856309 + ], + [ + 4.3526848, + 50.856309 + ], + [ + 4.3526848, + 50.856259 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T16:46:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "building": [ + "yes" + ], + "takeaway": [ + "yes" + ], + "service:electricity": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.00500000016852e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/fritures.html", + "theme": "fritures", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123328508 + } + }, + { + "id": 123327996, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3523693, + 50.8564732 + ], + [ + 4.3523693, + 50.8564732 + ], + [ + 4.3523693, + 50.8564732 + ], + [ + 4.3523693, + 50.8564732 + ], + [ + 4.3523693, + 50.8564732 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T16:34:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123327996 + } + }, + { + "id": 123326665, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3521239, + 50.8564083 + ], + [ + 4.3525245, + 50.8564083 + ], + [ + 4.3525245, + 50.8566265 + ], + [ + 4.3521239, + 50.8566265 + ], + [ + 4.3521239, + 50.8564083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T15:57:18Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 8.74109199997864e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123326665 + } + }, + { + "id": 123326096, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3529386, + 50.8564443 + ], + [ + 4.3529386, + 50.8564443 + ], + [ + 4.3529386, + 50.8564443 + ], + [ + 4.3529386, + 50.8564443 + ], + [ + 4.3529386, + 50.8564443 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T15:44:12Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "opening_hours": [ + "24/7" + ], + "changing_table": [ + "no" + ], + "toilets:handwashing": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "id": 123326096 + } + }, + { + "id": 123324547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5388796, + 53.2273896 + ], + [ + 6.5390915, + 53.2273896 + ], + [ + 6.5390915, + 53.2277902 + ], + [ + 6.5388796, + 53.2277902 + ], + [ + 6.5388796, + 53.2273896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T15:03:37Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.48871399997997e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 2, + "theme": "trees", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 3, + "move:node/9872586614": "improve_accuracy", + "move:node/9872586615": "improve_accuracy" + }, + "id": 123324547 + } + }, + { + "id": 123324541, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T15:03:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 1 + }, + "id": 123324541 + } + }, + { + "id": 123324537, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5390137, + 53.2272847 + ], + [ + 6.5391156, + 53.2272847 + ], + [ + 6.5391156, + 53.2275302 + ], + [ + 6.5390137, + 53.2275302 + ], + [ + 6.5390137, + 53.2272847 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T15:03:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 2.50164499997739e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 6, + "create": 3, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "id": 123324537 + } + }, + { + "id": 123324460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5450419, + 53.2255425 + ], + [ + 6.5450419, + 53.2255425 + ], + [ + 6.5450419, + 53.2255425 + ], + [ + 6.5450419, + 53.2255425 + ], + [ + 6.5450419, + 53.2255425 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T15:01:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123324460 + } + }, + { + "id": 123324045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5495521, + 53.2158083 + ], + [ + 6.5577707, + 53.2158083 + ], + [ + 6.5577707, + 53.2171268 + ], + [ + 6.5495521, + 53.2171268 + ], + [ + 6.5495521, + 53.2158083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T14:52:03Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ] + }, + "create": 12, + "modify": 25, + "delete": 0, + "area": 0.0000108362241000294, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 37, + "create": 12, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 12, + "change_within_25m": 28, + "change_within_50m": 9 + }, + "id": 123324045 + } + }, + { + "id": 123320682, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7339741, + -34.6636471 + ], + [ + -58.6088674, + -34.6636471 + ], + [ + -58.6088674, + -34.6465004 + ], + [ + -58.7339741, + -34.6465004 + ], + [ + -58.7339741, + -34.6636471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T13:24:38Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "HD 49", + "RO 55" + ], + "railway": [ + "signal" + ], + "railway:signal:shunting:ref": [ + "CL 43" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00214516705288967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_25m": 1, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "id": 123320682 + } + }, + { + "id": 123311529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.946606, + 50.4069365 + ], + [ + 2.9647719, + 50.4069365 + ], + [ + 2.9647719, + 50.4244826 + ], + [ + 2.946606, + 50.4244826 + ], + [ + 2.946606, + 50.4069365 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T10:09:14Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary", + "footway", + "service", + "pedestrian" + ], + "leisure": [ + "sports_centre" + ], + "boundary": [ + "political" + ], + "name:etymology:wikidata": [ + "Q841275", + "Q110420244", + "Q12688", + "Q2038" + ] + }, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000318740697989947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "id": 123311529 + } + }, + { + "id": 123311469, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3551079, + 50.8601402 + ], + [ + 4.3551079, + 50.8601402 + ], + [ + 4.3551079, + 50.8601402 + ], + [ + 4.3551079, + 50.8601402 + ], + [ + 4.3551079, + 50.8601402 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T10:07:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123311469 + } + }, + { + "id": 123311316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3533586, + 50.8600278 + ], + [ + 4.3552221, + 50.8600278 + ], + [ + 4.3552221, + 50.8606172 + ], + [ + 4.3533586, + 50.8606172 + ], + [ + 4.3533586, + 50.8600278 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T10:03:58Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000109834690000477, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 1, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 123311316 + } + }, + { + "id": 123310431, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4810843, + 52.4992968 + ], + [ + 13.4810843, + 52.4992968 + ], + [ + 13.4810843, + 52.4992968 + ], + [ + 13.4810843, + 52.4992968 + ], + [ + 13.4810843, + 52.4992968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "maxwesemeyer", + "uid": "10773506", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T09:46:50Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123310431 + } + }, + { + "id": 123309962, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2647312, + 53.2099964 + ], + [ + 6.2738813, + 53.2099964 + ], + [ + 6.2738813, + 53.2131622 + ], + [ + 6.2647312, + 53.2131622 + ], + [ + 6.2647312, + 53.2099964 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:35:16Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "street_lamp", + "footway" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "1" + ], + "light:direction": [ + "171" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000289673865799815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 123309962 + } + }, + { + "id": 123309940, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:34:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 123309940 + } + }, + { + "id": 123309936, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2738183, + 53.2128636 + ], + [ + 6.2738183, + 53.2128636 + ], + [ + 6.2738183, + 53.2128636 + ], + [ + 6.2738183, + 53.2128636 + ], + [ + 6.2738183, + 53.2128636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:34:46Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:method": [ + "LED" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 123309936 + } + }, + { + "id": 123309918, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.273766, + 53.2128636 + ], + [ + 6.2738183, + 53.2128636 + ], + [ + 6.2738183, + 53.2130117 + ], + [ + 6.273766, + 53.2130117 + ], + [ + 6.273766, + 53.2128636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:34:18Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "2" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 7.74563000023122e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 123309918 + } + }, + { + "id": 123309879, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.267885, + 53.2075984 + ], + [ + 6.273766, + 53.2075984 + ], + [ + 6.273766, + 53.2130117 + ], + [ + 6.267885, + 53.2130117 + ], + [ + 6.267885, + 53.2075984 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:33:21Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes", + "no" + ], + "highway": [ + "footway" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000318356173000068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "id": 123309879 + } + }, + { + "id": 123308447, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0156811, + 51.177241 + ], + [ + 5.0163438, + 51.177241 + ], + [ + 5.0163438, + 51.1777282 + ], + [ + 5.0156811, + 51.1777282 + ], + [ + 5.0156811, + 51.177241 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:05:39Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/5740597", + "Gbg/6149881" + ], + "source:geometry:date": [ + "2016-11-21", + "2021-07-05" + ] + }, + "create": 7, + "modify": 23, + "delete": 3, + "area": 3.22867439996367e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 21, + "theme": "grb", + "delete": 3, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 123308447 + } + }, + { + "id": 123308401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2739283, + 53.2126507 + ], + [ + 6.2740852, + 53.2126507 + ], + [ + 6.2740852, + 53.2130487 + ], + [ + 6.2739283, + 53.2130487 + ], + [ + 6.2739283, + 53.2126507 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T09:04:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket", + "recycling" + ] + }, + "create": 3, + "modify": 6, + "delete": 0, + "area": 6.24462000007847e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 8, + "create": 3, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 3 + }, + "id": 123308401 + } + }, + { + "id": 123307620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0167894, + 51.1746264 + ], + [ + 5.0317155, + 51.1746264 + ], + [ + 5.0317155, + 51.1791693 + ], + [ + 5.0167894, + 51.1791693 + ], + [ + 5.0167894, + 51.1746264 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:47:15Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "farm", + "hangar", + "detached", + "shed", + "garage", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698199", + "Gbg/1698201", + "Gbg/1698260", + "Gbg/1700164", + "Gbg/1698202", + "Gbg/1700163", + "Gbg/1698198", + "Gbg/1698200", + "Gbg/1698203", + "Gbg/1698204", + "Gbg/1698197", + "Gbg/1698209", + "Gbg/1698210", + "Gbg/1698218", + "Gbg/1698191", + "Gbg/1698192", + "Gbg/1700182", + "Gbg/1698245", + "Gbg/1711202", + "Gbg/1698206", + "Gbg/1698205", + "Gbg/1698207", + "Gbg/4447658", + "Gbg/1698228", + "Gbg/1698236", + "Gbg/6149514", + "Gbg/6642544", + "Gbg/1698256", + "Gbg/1698229", + "Gbg/6966482", + "Gbg/1698186", + "Gbg/1698235", + "Gbg/1698233", + "Gbg/5127602", + "Gbg/1698219" + ], + "source:geometry:date": [ + "2009-08-13", + "2017-11-20", + "2019-07-09", + "2009-11-17", + "2016-07-28", + "2021-07-05", + "2015-03-30" + ] + }, + "create": 113, + "modify": 239, + "delete": 3, + "area": 0.0000678077796899527, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 204, + "theme": "grb", + "answer": 2, + "delete": 3, + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 70 + }, + "id": 123307620 + } + }, + { + "id": 123307609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0302045, + 51.1742431 + ], + [ + 5.0302832, + 51.1742431 + ], + [ + 5.0302832, + 51.1742664 + ], + [ + 5.0302045, + 51.1742664 + ], + [ + 5.0302045, + 51.1742431 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:47:00Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/1698184" + ], + "source:geometry:date": [ + "2009-08-13" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.83371000018947e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123307609 + } + }, + { + "id": 123307600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0300384, + 51.1742389 + ], + [ + 5.0302021, + 51.1742389 + ], + [ + 5.0302021, + 51.1742755 + ], + [ + 5.0300384, + 51.1742755 + ], + [ + 5.0300384, + 51.1742389 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:46:46Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/6150955" + ], + "source:geometry:date": [ + "2017-11-20" + ] + }, + "create": 6, + "modify": 5, + "delete": 0, + "area": 5.99142000025485e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123307600 + } + }, + { + "id": 123306976, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0271073, + 51.1712348 + ], + [ + 5.0320309, + 51.1712348 + ], + [ + 5.0320309, + 51.1746955 + ], + [ + 5.0271073, + 51.1746955 + ], + [ + 5.0271073, + 51.1712348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:30:33Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "architect" + ], + "amenity": [ + "school" + ], + "building": [ + "house", + "yes", + "garage", + "farm", + "chapel", + "shed", + "school", + "barn", + "greenhouse", + "roof" + ], + "historic": [ + "chapel" + ], + "source:geometry:ref": [ + "Gbg/1698149", + "Gbg/1698147", + "Gbg/1698146", + "Gbg/1698136", + "Gbg/6154582", + "Gbg/1698177", + "Gbg/5655299", + "Gbg/1698135", + "Gbg/6148829", + "Gbg/1698150", + "Gbg/6154855", + "Gbg/1698148", + "Gbg/1698187", + "Gbg/1698144", + "Gbg/1698134", + "Gbg/1698137", + "Gbg/1698185", + "Gbg/5655323", + "Gbg/1700119", + "Gbg/5123892", + "Gbg/1698125", + "Gbg/1698153", + "Gbg/1698155", + "Gbg/1698173", + "Gbg/5127610", + "Gbg/6151737", + "Gbg/1698164", + "Gbg/1698167", + "Gbg/5127445", + "Gbg/6153958", + "Gbg/5127440", + "Gbg/5127439", + "Gbg/1698180", + "Gbg/5654283" + ], + "not:addr:housenumber": [ + "yes" + ], + "source:geometry:date": [ + "2009-08-13", + "2019-07-09", + "2016-07-28", + "2017-11-20", + "2018-06-05", + "2015-03-30" + ] + }, + "create": 67, + "modify": 233, + "delete": 7, + "area": 0.000017039102519989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 192, + "theme": "grb", + "answer": 9, + "delete": 7, + "import": 8, + "locale": "nl", + "imagery": "AGIV", + "conflation": 68 + }, + "id": 123306976 + } + }, + { + "id": 123306471, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0262967, + 51.1698372 + ], + [ + 5.0294524, + 51.1698372 + ], + [ + 5.0294524, + 51.1719236 + ], + [ + 5.0262967, + 51.1719236 + ], + [ + 5.0262967, + 51.1698372 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:17:42Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "hangar", + "house", + "garage", + "yes", + "barn", + "greenhouse", + "shed", + "roof" + ], + "addr:housenumber": [ + "78;80", + "80" + ], + "source:geometry:ref": [ + "Gbg/6148790", + "Gbg/1698190", + "Gbg/1698131", + "Gbg/1698468", + "Gbg/1698565", + "Gbg/1698126", + "Gbg/1698469", + "Gbg/1698128", + "Gbg/1698129", + "Gbg/1698127", + "Gbg/1698133", + "Gbg/1698464", + "Gbg/6154630", + "Gbg/6154570", + "Gbg/5123891", + "Gbg/5127447", + "Gbg/1698574", + "Gbg/6148761", + "Gbg/1698156", + "Gbg/6153010", + "Gbg/6150233", + "Gbg/5127611", + "Gbg/1698157", + "Gbg/1698570", + "Gbg/5127614", + "Gbg/5127612", + "Gbg/1698175", + "Gbg/6149117", + "Gbg/1698569", + "Gbg/1698519", + "Gbg/1698579", + "Gbg/6149802", + "Gbg/5123890", + "Gbg/6834607" + ], + "source:geometry:date": [ + "2017-11-20", + "2009-08-13", + "2015-03-30", + "2016-07-28", + "2021-07-05", + "2020-09-04" + ] + }, + "create": 109, + "modify": 244, + "delete": 1, + "area": 0.00000658405247998888, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 209, + "theme": "grb", + "answer": 5, + "delete": 1, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 68 + }, + "id": 123306471 + } + }, + { + "id": 123306459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0275293, + 51.1697977 + ], + [ + 5.0276989, + 51.1697977 + ], + [ + 5.0276989, + 51.1699151 + ], + [ + 5.0275293, + 51.1699151 + ], + [ + 5.0275293, + 51.1697977 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:17:15Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/5122717" + ], + "source:geometry:date": [ + "2015-03-30" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.99110400000487e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123306459 + } + }, + { + "id": 123306367, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0258403, + 51.1687882 + ], + [ + 5.0278007, + 51.1687882 + ], + [ + 5.0278007, + 51.1705701 + ], + [ + 5.0258403, + 51.1705701 + ], + [ + 5.0258403, + 51.1687882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:14:23Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "garage", + "yes", + "shed" + ], + "source:geometry:ref": [ + "Gbg/1698467", + "Gbg/1698473", + "Gbg/1698472", + "Gbg/1698466", + "Gbg/1698465", + "Gbg/1698463", + "Gbg/1698568", + "Gbg/6152054", + "Gbg/1698587", + "Gbg/1698566", + "Gbg/1698520", + "Gbg/1698523", + "Gbg/1698571", + "Gbg/1698573" + ], + "source:geometry:date": [ + "2009-08-13", + "2017-11-20", + "2016-07-28" + ] + }, + "create": 20, + "modify": 94, + "delete": 0, + "area": 0.00000349323675999614, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 79, + "theme": "grb", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "id": 123306367 + } + }, + { + "id": 123306278, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.024887, + 51.1681687 + ], + [ + 5.0260858, + 51.1681687 + ], + [ + 5.0260858, + 51.1695092 + ], + [ + 5.024887, + 51.1695092 + ], + [ + 5.024887, + 51.1681687 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:11:56Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "garage", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698428", + "Gbg/1698432", + "Gbg/1698430", + "Gbg/1698431", + "Gbg/1698429", + "Gbg/1698433", + "Gbg/5123151", + "Gbg/1698522", + "Gbg/1698521", + "Gbg/1698524", + "Gbg/1698586", + "Gbg/5127497" + ], + "source:geometry:date": [ + "2009-08-13", + "2015-03-30" + ] + }, + "create": 24, + "modify": 85, + "delete": 2, + "area": 0.00000160699139999737, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 73, + "theme": "grb", + "answer": 1, + "delete": 2, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 24 + }, + "id": 123306278 + } + }, + { + "id": 123306091, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0229774, + 51.1681933 + ], + [ + 5.0245811, + 51.1681933 + ], + [ + 5.0245811, + 51.1691879 + ], + [ + 5.0229774, + 51.1691879 + ], + [ + 5.0229774, + 51.1681933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:06:09Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "garage", + "yes", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1698454", + "Gbg/1698453", + "Gbg/5123150", + "Gbg/1698450", + "Gbg/1698554", + "Gbg/5127455", + "Gbg/1698584", + "Gbg/5127454", + "Gbg/1698552", + "Gbg/1700138", + "Gbg/5123893", + "Gbg/1698547", + "Gbg/1698553" + ], + "source:geometry:date": [ + "2009-08-13", + "2015-03-30", + "2017-11-20" + ] + }, + "create": 38, + "modify": 81, + "delete": 0, + "area": 0.00000159504001999716, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 64, + "theme": "grb", + "answer": 7, + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "id": 123306091 + } + }, + { + "id": 123306086, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0230667, + 51.1691829 + ], + [ + 5.0231479, + 51.1691829 + ], + [ + 5.0231479, + 51.1692327 + ], + [ + 5.0230667, + 51.1692327 + ], + [ + 5.0230667, + 51.1691829 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T08:05:54Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/6153662" + ], + "source:geometry:date": [ + "2017-11-20" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 4.04375999991753e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123306086 + } + }, + { + "id": 123305140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0392235, + 50.9399309 + ], + [ + 4.0459485, + 50.9399309 + ], + [ + 4.0459485, + 50.941752 + ], + [ + 4.0392235, + 50.941752 + ], + [ + 4.0392235, + 50.9399309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T07:40:52Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary", + "residential", + "unclassified" + ], + "maxspeed": [ + "30", + "50" + ], + "cyclestreet": [ + "yes" + ], + "overtaking:motor_vehicle": [ + "no" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000122468975000043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "id": 123305140 + } + }, + { + "id": 123305049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7240768, + 50.8822998 + ], + [ + 4.7243739, + 50.8822998 + ], + [ + 4.7243739, + 50.8824145 + ], + [ + 4.7240768, + 50.8824145 + ], + [ + 4.7240768, + 50.8822998 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KristienV", + "uid": "16473314", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T07:38:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "playground" + ] + }, + "create": 4, + "modify": 2, + "delete": 0, + "area": 3.4077370001365e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "create": 4, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 123305049 + } + }, + { + "id": 123304530, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0125237, + 51.1660478 + ], + [ + 5.0236362, + 51.1660478 + ], + [ + 5.0236362, + 51.1702215 + ], + [ + 5.0125237, + 51.1702215 + ], + [ + 5.0125237, + 51.1660478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T07:23:32Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "shed", + "garage", + "roof" + ], + "addr:housenumber": [ + "67", + "65" + ], + "source:geometry:ref": [ + "Gbg/1698443", + "Gbg/1698445", + "Gbg/1698444", + "Gbg/6149376", + "Gbg/1698448", + "Gbg/1698452", + "Gbg/1698446", + "Gbg/1698447", + "Gbg/1698462", + "Gbg/1697672", + "Gbg/1697751", + "Gbg/1697773", + "Gbg/1697747", + "Gbg/1697775", + "Gbg/1697673", + "Gbg/1697748", + "Gbg/1697728", + "Gbg/1697698", + "Gbg/1697736", + "Gbg/1697750", + "Gbg/1697737", + "Gbg/1697699", + "Gbg/1697749", + "Gbg/1697858", + "Gbg/1698548", + "Gbg/1698449", + "Gbg/5127453", + "Gbg/6151612", + "Gbg/6150401", + "Gbg/6642092", + "Gbg/3534828", + "Gbg/5126831", + "Gbg/1697857", + "Gbg/1697856", + "Gbg/6149950", + "Gbg/1700136", + "Gbg/5123889", + "Gbg/5740572" + ], + "source:geometry:date": [ + "2019-07-09", + "2015-03-30", + "2017-11-20", + "2009-08-13", + "2015-11-26" + ] + }, + "create": 98, + "modify": 294, + "delete": 2, + "area": 0.0000463802412499513, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 252, + "theme": "grb", + "answer": 7, + "delete": 2, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 76 + }, + "id": 123304530 + } + }, + { + "id": 123304503, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0150142, + 51.1667335 + ], + [ + 5.0157732, + 51.1667335 + ], + [ + 5.0157732, + 51.1672105 + ], + [ + 5.0150142, + 51.1672105 + ], + [ + 5.0150142, + 51.1667335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T07:22:45Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "garage", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1697744", + "Gbg/3534531", + "Gbg/1697745", + "Gbg/1697851" + ], + "source:geometry:date": [ + "2009-08-13", + "2012-10-10", + "2016-07-28" + ] + }, + "create": 10, + "modify": 28, + "delete": 0, + "area": 3.62043000002509e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 24, + "theme": "grb", + "answer": 1, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8 + }, + "id": 123304503 + } + }, + { + "id": 123302179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4884889, + 51.2887072 + ], + [ + 4.4884889, + 51.2887072 + ], + [ + 4.4884889, + 51.2887072 + ], + [ + 4.4884889, + 51.2887072 + ], + [ + 4.4884889, + 51.2887072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-07T06:14:44Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/zIXD3Hx.jpg" + ], + "defibrillator:location": [ + "Rechts achter opzij van de tweede schuifdeur. Het hangt nogal laag en het is gemakkelijk erover te kijken.", + "Rechts achter opzij van de tweede schuifdeur.\nHet hangt nogal laag en het is gemakkelijk erover te kijken." + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123302179 + } + }, + { + "id": 123301202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7465054, + 44.9704473 + ], + [ + -92.743768, + 44.9704473 + ], + [ + -92.743768, + 44.9822237 + ], + [ + -92.7465054, + 44.9822237 + ], + [ + -92.7465054, + 44.9704473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-07T05:45:06Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "25 mph" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000322367173600166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 123301202 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-08.json b/Docs/Tools/stats/stats.2022-7-08.json new file mode 100644 index 0000000000..99e4a4a9ac --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-08.json @@ -0,0 +1,2099 @@ +{ + "features": [ + { + "id": 123384491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.2718086, + 48.0801771 + ], + [ + 16.2727688, + 48.0801771 + ], + [ + 16.2727688, + 48.0805833 + ], + [ + 16.2718086, + 48.0805833 + ], + [ + 16.2718086, + 48.0801771 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "openclimb", + "uid": "14882361", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T23:57:37Z", + "reviewed_features": [], + "tag_changes": { + "sport": [ + "climbing" + ], + "access": [ + "yes" + ], + "natural": [ + "cliff" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.90033240001067e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing.html", + "theme": "climbing", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123384491 + } + }, + { + "id": 123384045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.22097, + 45.5040643 + ], + [ + 9.22097, + 45.5040643 + ], + [ + 9.22097, + 45.5040643 + ], + [ + 9.22097, + 45.5040643 + ], + [ + 9.22097, + 45.5040643 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "realjep", + "uid": "4413023", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T23:15:11Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "Lombardia-Italy-CTR-DBT" + }, + "id": 123384045 + } + }, + { + "id": 123383628, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.247095, + 45.5092449 + ], + [ + 9.247095, + 45.5092449 + ], + [ + 9.247095, + 45.5092449 + ], + [ + 9.247095, + 45.5092449 + ], + [ + 9.247095, + 45.5092449 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Quang Huy NGUYEN", + "uid": "10341989", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T22:49:02Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "id": 123383628 + } + }, + { + "id": 123383452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.7243775, + -37.1400266 + ], + [ + -72.7243775, + -37.1400266 + ], + [ + -72.7243775, + -37.1400266 + ], + [ + -72.7243775, + -37.1400266 + ], + [ + -72.7243775, + -37.1400266 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T22:38:49Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/nGZdxXT.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 123383452 + } + }, + { + "id": 123381036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0192806, + 47.2529863 + ], + [ + 7.0192806, + 47.2529863 + ], + [ + 7.0192806, + 47.2529863 + ], + [ + 7.0192806, + 47.2529863 + ], + [ + 7.0192806, + 47.2529863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T20:33:40Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "sanitary_dump_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123381036 + } + }, + { + "id": 123380714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.711743, + 51.1322974 + ], + [ + 2.711743, + 51.1322974 + ], + [ + 2.711743, + 51.1322974 + ], + [ + 2.711743, + 51.1322974 + ], + [ + 2.711743, + 51.1322974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T20:22:03Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/GPcNV6m.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123380714 + } + }, + { + "id": 123379734, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6532854, + 45.2190583 + ], + [ + 11.6570252, + 45.2190583 + ], + [ + 11.6570252, + 45.2280074 + ], + [ + 11.6532854, + 45.2280074 + ], + [ + 11.6532854, + 45.2190583 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "loviuz", + "uid": "4763621", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T19:49:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 3, + "modify": 0, + "delete": 1, + "area": 0.0000334678441800085, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 3, + "create": 3, + "locale": "it", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 3, + "change_within_25m": 4, + "deletion:node/9875165003": "duplicate" + }, + "id": 123379734 + } + }, + { + "id": 123377600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T18:35:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "diet:vegan": [ + "no" + ], + "diet:vegetarian": [ + "limited" + ], + "service:electricity": [ + "limited" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 123377600 + } + }, + { + "id": 123377563, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ], + [ + 4.3227687, + 50.849219 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T18:34:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 123377563 + } + }, + { + "id": 123377138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6536993, + 45.2231382 + ], + [ + 11.6576153, + 45.2231382 + ], + [ + 11.6576153, + 45.2268598 + ], + [ + 11.6536993, + 45.2268598 + ], + [ + 11.6536993, + 45.2231382 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "loviuz", + "uid": "4763621", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T18:20:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0000145737855999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 3, + "create": 4, + "locale": "it", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "id": 123377138 + } + }, + { + "id": 123376043, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2338987, + 50.7321052 + ], + [ + 4.2395109, + 50.7321052 + ], + [ + 4.2395109, + 50.7352097 + ], + [ + 4.2338987, + 50.7352097 + ], + [ + 4.2338987, + 50.7321052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T17:44:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ], + "website": [ + "https://www.facebook.com/MeGustaHalle", + "https://www.mags.be", + "http://www.magsburgers.be/" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000174230748999949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123376043 + } + }, + { + "id": 123375189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.8490428, + 36.1556525 + ], + [ + -86.847007, + 36.1556525 + ], + [ + -86.847007, + 36.156274 + ], + [ + -86.8490428, + 36.156274 + ], + [ + -86.8490428, + 36.1556525 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OpenStreetMap Appreciator", + "uid": "16057133", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T17:15:46Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant", + "fast_food" + ] + }, + "create": 3, + "modify": 1, + "delete": 1, + "area": 0.00000126524970000335, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "move": 1, + "theme": "food", + "answer": 3, + "create": 3, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "move:node/9874872650": "improve_accuracy", + "deletion:node/9874872650": "duplicate" + }, + "id": 123375189 + } + }, + { + "id": 123372433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.370657, + 50.8626484 + ], + [ + 4.370657, + 50.8626484 + ], + [ + 4.370657, + 50.8626484 + ], + [ + 4.370657, + 50.8626484 + ], + [ + 4.370657, + 50.8626484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T15:54:04Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/P4xL3Bh.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123372433 + } + }, + { + "id": 123369179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7927293, + 45.1826286 + ], + [ + 5.7927293, + 45.1826286 + ], + [ + 5.7927293, + 45.1826286 + ], + [ + 5.7927293, + 45.1826286 + ], + [ + 5.7927293, + 45.1826286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wild Wild Wes", + "uid": "10185209", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T14:42:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "id": 123369179 + } + }, + { + "id": 123363719, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.269774, + 53.2076668 + ], + [ + 6.2788523, + 53.2076668 + ], + [ + 6.2788523, + 53.2131072 + ], + [ + 6.269774, + 53.2131072 + ], + [ + 6.269774, + 53.2076668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T13:20:47Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "assistente@gcabeltasman.nl" + ], + "phone": [ + "+31 594 613 113", + "+31 594 612 126" + ], + "amenity": [ + "doctors", + "pharmacy" + ], + "drive_through": [ + "no" + ], + "opening_hours": [ + "Mo-Fr 08:00-10:00, 10:30-12:00, 13:00-17:00;" + ], + "healthcare:speciality": [ + "general" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000493895833200415, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5, + "change_within_1000m": 2 + }, + "id": 123363719 + } + }, + { + "id": 123362150, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2156362, + 51.2020878 + ], + [ + 3.215827, + 51.2020878 + ], + [ + 3.215827, + 51.2022036 + ], + [ + 3.2156362, + 51.2022036 + ], + [ + 3.2156362, + 51.2020878 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T12:56:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "dentist" + ], + "building": [ + "house" + ], + "opening_hours": [ + "We 09:00-12:00;PH off;Mo-Tu 09:00-12:00, 14:00-18:00 \"by appointment\"; Th 09:00-12:00, 14:00-18:00 \"by appointment\"; Fr 09:00-12:00 \"by appointment\"", + "\"by appointment\"" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.2094639999251e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123362150 + } + }, + { + "id": 123361805, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7217747, + 51.018938 + ], + [ + 3.7330048, + 51.018938 + ], + [ + 3.7330048, + 51.028021 + ], + [ + 3.7217747, + 51.028021 + ], + [ + 3.7217747, + 51.018938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T12:47:53Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@uzgent.be" + ], + "phone": [ + "+32 9 332 21 11" + ], + "amenity": [ + "hospital" + ], + "website": [ + "https://uzgent.be/" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000102002998300042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123361805 + } + }, + { + "id": 123360380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2317284, + 51.2097688 + ], + [ + 3.2317284, + 51.2097688 + ], + [ + 3.2317284, + 51.2097688 + ], + [ + 3.2317284, + 51.2097688 + ], + [ + 3.2317284, + 51.2097688 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T12:15:07Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "copyshop" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Mo-Tu 10:00-12:00, 14:00-18:00; We 10:00-12:00; Th-Fr 10:00-12:00, 14:00-18:00; Sa 10:00-12:00;PH off;", + "mo-fr 10:00-12:00, 14:00-18:00; sa 10:00-12:00; PH Off" + ], + "payment:cards": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123360380 + } + }, + { + "id": 123359792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2478674, + 51.2140289 + ], + [ + 3.2485728, + 51.2140289 + ], + [ + 3.2485728, + 51.2145724 + ], + [ + 3.2478674, + 51.2145724 + ], + [ + 3.2478674, + 51.2140289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-1076829311", + "osm_id": 1076829311, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "building": "shopping_center" + } + }, + { + "url": "way-1076829313", + "osm_id": 1076829313, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "building": "shopping_center" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T12:00:39Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "shopping_center" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 3.83384899999256e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 4, + "create": 4, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 10 + }, + "id": 123359792 + } + }, + { + "id": 123359687, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2478674, + 51.2140289 + ], + [ + 3.248749, + 51.2140289 + ], + [ + 3.248749, + 51.2148639 + ], + [ + 3.2478674, + 51.2148639 + ], + [ + 3.2478674, + 51.2140289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-1076829312", + "osm_id": 1076829312, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "building": "shopping_center" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T11:58:15Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "shopping_center", + "house", + "yes" + ] + }, + "create": 37, + "modify": 3, + "delete": 0, + "area": 7.36135999995654e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "answer": 3, + "import": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 6, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "id": 123359687 + } + }, + { + "id": 123355591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5371124, + 44.8588263 + ], + [ + -0.5371124, + 44.8588263 + ], + [ + -0.5371124, + 44.8588263 + ], + [ + -0.5371124, + 44.8588263 + ], + [ + -0.5371124, + 44.8588263 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T10:31:30Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 123355591 + } + }, + { + "id": 123353062, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2212426, + 51.2141406 + ], + [ + 3.2481524, + 51.2141406 + ], + [ + 3.2481524, + 51.2154766 + ], + [ + 3.2212426, + 51.2154766 + ], + [ + 3.2212426, + 51.2141406 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-08T09:37:17Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "copyshop" + ], + "image": [ + "https://i.imgur.com/0Gbbc9Q.jpg" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000359514928000537, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "move": 1, + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "move:node/6765253841": "relocated" + }, + "id": 123353062 + } + }, + { + "id": 123350623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2402687, + 41.4388123 + ], + [ + 2.2410882, + 41.4388123 + ], + [ + 2.2410882, + 41.4399879 + ], + [ + 2.2402687, + 41.4399879 + ], + [ + 2.2402687, + 41.4388123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431678", + "osm_id": 8811431678, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T08:42:37Z", + "reviewed_features": [], + "tag_changes": { + "source": [ + "survey" + ], + "natural": [ + "tree", + "tree_stump" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 9.63404199996919e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 6, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "id": 123350623 + } + }, + { + "id": 123345976, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0035479, + 51.1251522 + ], + [ + 5.0070942, + 51.1251522 + ], + [ + 5.0070942, + 51.1269955 + ], + [ + 5.0035479, + 51.1269955 + ], + [ + 5.0035479, + 51.1251522 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T06:42:57Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ILhLGIB.jpg" + ], + "access": [ + "yes" + ], + "landuse": [ + "forest" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000653689478999053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "id": 123345976 + } + }, + { + "id": 123341467, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7341586, + 44.9488025 + ], + [ + -92.7341328, + 44.9488025 + ], + [ + -92.7341328, + 44.9627042 + ], + [ + -92.7341586, + 44.9627042 + ], + [ + -92.7341586, + 44.9488025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T03:54:55Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary" + ], + "maxspeed": [ + "25 mph" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.58663860042677e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123341467 + } + }, + { + "id": 123341400, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7573149, + 44.977072 + ], + [ + -92.7463972, + 44.977072 + ], + [ + -92.7463972, + 44.9837351 + ], + [ + -92.7573149, + 44.9837351 + ], + [ + -92.7573149, + 44.977072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T03:50:49Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "footway" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000727457268699244, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123341400 + } + }, + { + "id": 123339532, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.021087, + 14.6670112 + ], + [ + 121.021087, + 14.6670112 + ], + [ + 121.021087, + 14.6670112 + ], + [ + 121.021087, + 14.6670112 + ], + [ + 121.021087, + 14.6670112 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ezranacianceno", + "uid": "16480751", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T00:49:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123339532 + } + }, + { + "id": 123339507, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0198417, + 14.668093 + ], + [ + 121.0198417, + 14.668093 + ], + [ + 121.0198417, + 14.668093 + ], + [ + 121.0198417, + 14.668093 + ], + [ + 121.0198417, + 14.668093 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ezranacianceno", + "uid": "16480751", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-08T00:46:40Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "association" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123339507 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-09.json b/Docs/Tools/stats/stats.2022-7-09.json new file mode 100644 index 0000000000..44a620e395 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-09.json @@ -0,0 +1,1724 @@ +{ + "features": [ + { + "id": 123415379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.0095859, + 37.5412772 + ], + [ + -122.0078596, + 37.5412772 + ], + [ + -122.0078596, + 37.5421972 + ], + [ + -122.0095859, + 37.5421972 + ], + [ + -122.0095859, + 37.5412772 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "157", + "uid": "16462628", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T22:20:18Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary" + ], + "maxspeed": [ + "35 mph" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000158819599999023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123415379 + } + }, + { + "id": 123414601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9528483, + 50.7411662 + ], + [ + 3.5575586, + 50.7411662 + ], + [ + 3.5575586, + 51.2493701 + ], + [ + 2.9528483, + 51.2493701 + ], + [ + 2.9528483, + 50.7411662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T21:33:29Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/kllkMjo.jpg", + "https://i.imgur.com/5YsxGBo.jpg", + "https://i.imgur.com/ebiWTqT.jpg", + "https://i.imgur.com/ikleVip.jpg", + "https://i.imgur.com/1Ia14KQ.jpg", + "https://i.imgur.com/JEwEDzo.jpg" + ], + "route": [ + "foot", + "bicycle" + ], + "amenity": [ + "bench" + ], + "highway": [ + "path", + "unclassified" + ], + "leisure": [ + "nature_reserve" + ], + "natural": [ + "grassland" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.307316132830169, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "id": 123414601 + } + }, + { + "id": 123412164, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3438723, + 50.7490094 + ], + [ + 3.6063555, + 50.7490094 + ], + [ + 3.6063555, + 50.8401937 + ], + [ + 3.3438723, + 50.8401937 + ], + [ + 3.3438723, + 50.7490094 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T19:45:29Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/P9X242F.jpg", + "https://i.imgur.com/jpxwVG2.jpg", + "https://i.imgur.com/4lSyjJW.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0239343468537605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 123412164 + } + }, + { + "id": 123403351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.6935543, + 45.3892244 + ], + [ + 10.6943712, + 45.3892244 + ], + [ + 10.6943712, + 45.3896999 + ], + [ + 10.6935543, + 45.3896999 + ], + [ + 10.6935543, + 45.3892244 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T15:02:24Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "lit": [ + "no" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "12" + ], + "surface": [ + "grass" + ], + "operator": [ + "Commune di Monzambano" + ], + "wheelchair": [ + "yes" + ], + "opening_hours": [ + "sunrise-sunset" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.88435949994547e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 7 + }, + "id": 123403351 + } + }, + { + "id": 123402197, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.6916361, + 45.3866982 + ], + [ + 10.693892, + 45.3866982 + ], + [ + 10.693892, + 45.3875124 + ], + [ + 10.6916361, + 45.3875124 + ], + [ + 10.6916361, + 45.3866982 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T14:28:28Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000183675378000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 11, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 16 + }, + "id": 123402197 + } + }, + { + "id": 123399197, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4619609, + 50.814777 + ], + [ + 3.4619609, + 50.814777 + ], + [ + 3.4619609, + 50.814777 + ], + [ + 3.4619609, + 50.814777 + ], + [ + 3.4619609, + 50.814777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T12:49:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2oDqN7y.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123399197 + } + }, + { + "id": 123398690, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0906582, + 45.3804684 + ], + [ + 7.0906582, + 45.3804684 + ], + [ + 7.0906582, + 45.3804684 + ], + [ + 7.0906582, + 45.3804684 + ], + [ + 7.0906582, + 45.3804684 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T12:33:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 4, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 123398690 + } + }, + { + "id": 123398224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5401096, + 48.0179075 + ], + [ + 8.5401096, + 48.0179075 + ], + [ + 8.5401096, + 48.0179075 + ], + [ + 8.5401096, + 48.0179075 + ], + [ + 8.5401096, + 48.0179075 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "osmdees", + "uid": "16492361", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T12:17:47Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/OCXICiq.jpg" + ], + "amenity": [ + "restaurant" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123398224 + } + }, + { + "id": 123396778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1794002, + 52.7365039 + ], + [ + 13.2176923, + 52.7365039 + ], + [ + 13.2176923, + 52.7426697 + ], + [ + 13.1794002, + 52.7426697 + ], + [ + 13.1794002, + 52.7365039 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T11:27:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.000236101430179921, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123396778 + } + }, + { + "id": 123396773, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3280661, + 50.8509734 + ], + [ + 4.3280661, + 50.8509734 + ], + [ + 4.3280661, + 50.8509734 + ], + [ + 4.3280661, + 50.8509734 + ], + [ + 4.3280661, + 50.8509734 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T11:26:54Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "fitness_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123396773 + } + }, + { + "id": 123396693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1568163, + 51.1626276 + ], + [ + 4.1575451, + 51.1626276 + ], + [ + 4.1575451, + 51.163464 + ], + [ + 4.1568163, + 51.163464 + ], + [ + 4.1568163, + 51.1626276 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T11:24:17Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/o3jCfOA.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "playground", + "picnic_table" + ], + "surface": [ + "grass" + ], + "operator": [ + "Stad Sint-Niklaas" + ], + "wheelchair": [ + "limited" + ], + "opening_hours": [ + "sunrise-sunset" + ] + }, + "create": 5, + "modify": 8, + "delete": 0, + "area": 6.09568319998019e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 21, + "create": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 5, + "change_within_25m": 10, + "change_within_50m": 13 + }, + "id": 123396693 + } + }, + { + "id": 123395798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.323792, + 50.8492427 + ], + [ + 4.3238644, + 50.8492427 + ], + [ + 4.3238644, + 50.849534 + ], + [ + 4.323792, + 50.849534 + ], + [ + 4.323792, + 50.8492427 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T10:56:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.10901199999428e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", + "theme": "drinking_water", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 123395798 + } + }, + { + "id": 123395416, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.6807523, + 44.4028939 + ], + [ + 6.6807523, + 44.4028939 + ], + [ + 6.6807523, + 44.4028939 + ], + [ + 6.6807523, + 44.4028939 + ], + [ + 6.6807523, + 44.4028939 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T10:41:59Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 123395416 + } + }, + { + "id": 123394629, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3499836, + 50.8504773 + ], + [ + 4.3501219, + 50.8504773 + ], + [ + 4.3501219, + 50.8506077 + ], + [ + 4.3499836, + 50.8506077 + ], + [ + 4.3499836, + 50.8504773 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T10:13:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/n723Icr.jpg" + ], + "highway": [ + "tertiary" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.80343199995515e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclestreets.html", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123394629 + } + }, + { + "id": 123394076, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.5904652, + 12.2871844 + ], + [ + 78.595151, + 12.2871844 + ], + [ + 78.595151, + 28.6479998 + ], + [ + 72.5904652, + 28.6479998 + ], + [ + 72.5904652, + 12.2871844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T09:53:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 49, + "delete": 0, + "area": 98.2415559088014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 66, + "locale": "en", + "imagery": "osm" + }, + "id": 123394076 + } + }, + { + "id": 123393800, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4710336, + 50.9775981 + ], + [ + 4.4712329, + 50.9775981 + ], + [ + 4.4712329, + 50.9778137 + ], + [ + 4.4710336, + 50.9778137 + ], + [ + 4.4710336, + 50.9775981 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T09:44:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/owK2ejH.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.2969079999472e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 123393800 + } + }, + { + "id": 123393015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3950255, + 50.8183944 + ], + [ + 3.478756, + 50.8183944 + ], + [ + 3.478756, + 50.8348386 + ], + [ + 3.3950255, + 50.8348386 + ], + [ + 3.3950255, + 50.8183944 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T09:16:10Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/pm6IlBW.jpg", + "https://i.imgur.com/37CORXC.jpg", + "https://i.imgur.com/eaIyeeT.jpg", + "https://i.imgur.com/K7Swn4m.jpg", + "https://i.imgur.com/XNari8s.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0013768810880996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "id": 123393015 + } + }, + { + "id": 123390948, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8630867, + 45.7418613 + ], + [ + 13.8633436, + 45.7418613 + ], + [ + 13.8633436, + 45.7420325 + ], + [ + 13.8630867, + 45.7420325 + ], + [ + 13.8630867, + 45.7418613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DavidKarlas", + "uid": "12422736", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T07:58:39Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 4.39812800010563e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 2, + "locale": "sl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123390948 + } + }, + { + "id": 123389016, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.8296831, + 17.8947098 + ], + [ + 88.3775668, + 17.8947098 + ], + [ + 88.3775668, + 31.6456612 + ], + [ + 72.8296831, + 31.6456612 + ], + [ + 72.8296831, + 17.8947098 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T06:39:46Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "road" + ], + "amenity": [ + "college", + "school", + "university", + "hospital" + ], + "barrier": [ + "wall" + ], + "highway": [ + "primary", + "residential", + "trunk", + "tertiary", + "service" + ], + "leisure": [ + "sports_centre", + "stadium", + "park" + ], + "name:etymology:wikidata": [ + "Q83322", + "Q312967", + "Q9455", + "Q7238271" + ] + }, + "create": 0, + "modify": 85, + "delete": 0, + "area": 213.798193131552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 95, + "locale": "en", + "imagery": "osm" + }, + "id": 123389016 + } + }, + { + "id": 123388308, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1023745, + 50.4521149 + ], + [ + 6.1027163, + 50.4521149 + ], + [ + 6.1027163, + 50.4529101 + ], + [ + 6.1023745, + 50.4529101 + ], + [ + 6.1023745, + 50.4521149 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-105586317", + "osm_id": 105586317, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "building": "castle" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-09T06:05:01Z", + "reviewed_features": [], + "tag_changes": { + "landuse": [ + "forest" + ], + "natural": [ + "rock" + ], + "building": [ + "castle", + "yes", + "retail" + ], + "source:geometry:ref": [ + "Picc/2556519", + "Picc/2038176", + "Picc/557940" + ], + "source:geometry:date": [ + "2016-06-23" + ] + }, + "create": 8, + "modify": 15, + "delete": 0, + "area": 2.71799359999754e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "conflation": 6 + }, + "id": 123388308 + } + }, + { + "id": 123387154, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7414013, + 44.9541504 + ], + [ + -92.73404, + 44.9541504 + ], + [ + -92.73404, + 44.9606492 + ], + [ + -92.7414013, + 44.9606492 + ], + [ + -92.7414013, + 44.9541504 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T04:46:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 28, + "modify": 1, + "delete": 0, + "area": 0.0000478396164400572, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 5, + "create": 28, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "id": 123387154 + } + }, + { + "id": 123386401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7281445, + 44.9558435 + ], + [ + -92.7270931, + 44.9558435 + ], + [ + -92.7270931, + 44.956785 + ], + [ + -92.7281445, + 44.956785 + ], + [ + -92.7281445, + 44.9558435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T03:36:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 9.89893099998129e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 6, + "create": 3, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "id": 123386401 + } + }, + { + "id": 123386260, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7294856, + 44.9534709 + ], + [ + -92.7216093, + 44.9534709 + ], + [ + -92.7216093, + 44.9562877 + ], + [ + -92.7294856, + 44.9562877 + ], + [ + -92.7294856, + 44.9534709 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-09T03:19:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 4, + "delete": 0, + "area": 0.0000221859618400025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 23, + "create": 12, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "id": 123386260 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-10.json b/Docs/Tools/stats/stats.2022-7-10.json new file mode 100644 index 0000000000..18ad3109c0 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-10.json @@ -0,0 +1,2211 @@ +{ + "features": [ + { + "id": 123448923, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T22:20:14Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "doctors" + ], + "website": [ + "https://www.debrugruiselede.be/" + ], + "healthcare:speciality": [ + "general" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123448923 + } + }, + { + "id": 123448906, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T22:19:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123448906 + } + }, + { + "id": 123447997, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8940586, + 51.1667236 + ], + [ + 4.9038703, + 51.1667236 + ], + [ + 4.9038703, + 51.1718606 + ], + [ + 4.8940586, + 51.1718606 + ], + [ + 4.8940586, + 51.1667236 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T21:34:12Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "photo" + ], + "landuse": [ + "recreation_ground" + ], + "leisure": [ + "park", + "sports_centre" + ], + "building": [ + "house", + "yes", + "apartments", + "school", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4011917", + "Gbg/4011918", + "Gbg/4011919", + "Gbg/4011913", + "Gbg/4011931", + "Gbg/4011932", + "Gbg/4011916", + "Gbg/4011915", + "Gbg/3838182", + "Gbg/3838183", + "Gbg/4012268", + "Gbg/4011966", + "Gbg/4011965", + "Gbg/4012142", + "Gbg/4011964", + "Gbg/4012140", + "Gbg/4011963", + "Gbg/4012141", + "Gbg/4011962", + "Gbg/4011961", + "Gbg/4011960", + "Gbg/5862482", + "Gbg/4012139", + "Gbg/4011958", + "Gbg/4012138", + "Gbg/4011957", + "Gbg/4011956", + "Gbg/4011955", + "Gbg/4011954", + "Gbg/4011523", + "Gbg/4011953", + "Gbg/4011952", + "Gbg/4011951", + "Gbg/4011930", + "Gbg/4011519", + "Gbg/4011520", + "Gbg/3837997", + "Gbg/3838308", + "Gbg/3838178", + "Gbg/3838141", + "Gbg/3838140", + "Gbg/3837994", + "Gbg/5862337", + "Gbg/3837995", + "Gbg/3837993", + "Gbg/3838181", + "Gbg/4011218", + "Gbg/4011206", + "Gbg/3838180", + "Gbg/3838170", + "Gbg/3838179", + "Gbg/3838143", + "Gbg/3838214", + "Gbg/5403811", + "Gbg/3838310", + "Gbg/3838213", + "Gbg/3838212", + "Gbg/4011502", + "Gbg/3838320", + "Gbg/3838324", + "Gbg/6757819", + "Gbg/3838330", + "Gbg/6570665", + "Gbg/7020234", + "Gbg/3838031", + "Gbg/5860880", + "Gbg/5748703", + "Gbg/3838176", + "Gbg/5860846", + "Gbg/6508586", + "Gbg/6057087", + "Gbg/5862286" + ], + "source:geometry:date": [ + "2013-01-07", + "2014-12-04", + "2012-09-17", + "2017-03-01", + "2019-09-04", + "2015-11-24", + "2013-02-20", + "2020-03-16", + "2019-02-20", + "2021-10-25", + "2018-10-24" + ] + }, + "create": 836, + "modify": 483, + "delete": 5, + "area": 0.0000504027029000484, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 411, + "theme": "grb", + "answer": 5, + "delete": 5, + "import": 89, + "locale": "nl", + "imagery": "AGIV", + "conflation": 142 + }, + "id": 123447997 + } + }, + { + "id": 123447987, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8998547, + 51.1666789 + ], + [ + 4.9001388, + 51.1666789 + ], + [ + 4.9001388, + 51.1668054 + ], + [ + 4.8998547, + 51.1668054 + ], + [ + 4.8998547, + 51.1666789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T21:33:43Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/4014160", + "Gbg/4014159", + "Gbg/4014158" + ], + "source:geometry:date": [ + "2013-01-07" + ] + }, + "create": 0, + "modify": 13, + "delete": 0, + "area": 3.59386500001041e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 123447987 + } + }, + { + "id": 123447961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9003768, + 51.1659184 + ], + [ + 4.9012801, + 51.1659184 + ], + [ + 4.9012801, + 51.1668836 + ], + [ + 4.9003768, + 51.1668836 + ], + [ + 4.9003768, + 51.1659184 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T21:32:28Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/4678932", + "Gbg/3838347", + "Gbg/3838348", + "Gbg/3838349", + "Gbg/3838350", + "Gbg/3838222", + "Gbg/3838223" + ], + "source:geometry:date": [ + "2014-05-02", + "2012-09-17", + "2013-02-20", + "2015-11-24" + ] + }, + "create": 41, + "modify": 50, + "delete": 0, + "area": 8.71865159996439e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 45, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "id": 123447961 + } + }, + { + "id": 123443911, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6478227, + 50.1416148 + ], + [ + 8.6478683, + 50.1416148 + ], + [ + 8.6478683, + 50.141699 + ], + [ + 8.6478227, + 50.141699 + ], + [ + 8.6478227, + 50.1416148 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Elch12", + "uid": "20736", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T19:06:47Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.8395200001542e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123443911 + } + }, + { + "id": 123443641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6475458, + 50.141623 + ], + [ + 8.6475458, + 50.141623 + ], + [ + 8.6475458, + 50.141623 + ], + [ + 8.6475458, + 50.141623 + ], + [ + 8.6475458, + 50.141623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Elch12", + "uid": "20736", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T18:56:47Z", + "reviewed_features": [], + "tag_changes": { + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123443641 + } + }, + { + "id": 123443255, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6037778, + 53.2612887 + ], + [ + 13.6041541, + 53.2612887 + ], + [ + 13.6041541, + 53.2626554 + ], + [ + 13.6037778, + 53.2626554 + ], + [ + 13.6037778, + 53.2612887 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T18:42:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.14289210000754e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123443255 + } + }, + { + "id": 123441645, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.0175121, + 39.9570422 + ], + [ + -86.013364, + 39.9570422 + ], + [ + -86.013364, + 39.9584838 + ], + [ + -86.0175121, + 39.9584838 + ], + [ + -86.0175121, + 39.9570422 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T17:44:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000597990096004122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 9, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 4, + "change_within_50m": 5 + }, + "id": 123441645 + } + }, + { + "id": 123440075, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T16:54:14Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2sVEaRv.jpg" + ], + "image:0": [ + "https://i.imgur.com/oOhVwNO.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "id": 123440075 + } + }, + { + "id": 123439303, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5578565, + 47.5469387 + ], + [ + 7.5792545, + 47.5469387 + ], + [ + 7.5792545, + 47.5635894 + ], + [ + 7.5578565, + 47.5635894 + ], + [ + 7.5578565, + 47.5469387 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KaiPankrath", + "uid": "4067009", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T16:35:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/A9kdpTy.jpg", + "https://i.imgur.com/s3nEb5z.jpg", + "https://i.imgur.com/W516tpg.jpg", + "https://i.imgur.com/Oni0Qeb.jpg", + "https://i.imgur.com/WhgCbzB.jpg", + "https://i.imgur.com/5aSt0YL.jpg" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ], + "historic": [ + "drinking_fountain" + ], + "man_made": [ + "drinking_fountain", + "water_well" + ], + "operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000356291678599999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 6 + }, + "id": 123439303 + } + }, + { + "id": 123439236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.7465526, + 44.976961 + ], + [ + -92.7393588, + 44.976961 + ], + [ + -92.7393588, + 44.9777303 + ], + [ + -92.7465526, + 44.9777303 + ], + [ + -92.7465526, + 44.976961 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T16:34:22Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "tertiary" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000553419033995841, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123439236 + } + }, + { + "id": 123438304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.5990713, + 38.1499529 + ], + [ + -92.5990713, + 38.1499529 + ], + [ + -92.5990713, + 38.1499529 + ], + [ + -92.5990713, + 38.1499529 + ], + [ + -92.5990713, + 38.1499529 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T16:08:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123438304 + } + }, + { + "id": 123436871, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8804384, + 49.8002851 + ], + [ + 9.8881355, + 49.8002851 + ], + [ + 9.8881355, + 49.8054609 + ], + [ + 9.8804384, + 49.8054609 + ], + [ + 9.8804384, + 49.8002851 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hiierundda", + "uid": "14063915", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T15:29:31Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary", + "unclassified" + ], + "maxspeed": [ + "50" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000398386501799798, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123436871 + } + }, + { + "id": 123436464, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KaiPankrath", + "uid": "4067009", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T15:18:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123436464 + } + }, + { + "id": 123432869, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4758835, + 46.990792 + ], + [ + 7.4758835, + 46.990792 + ], + [ + 7.4758835, + 46.990792 + ], + [ + 7.4758835, + 46.990792 + ], + [ + 7.4758835, + 46.990792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T13:39:05Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "sanitary_dump_station" + ], + "power_supply": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123432869 + } + }, + { + "id": 123429820, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.545827, + 48.015408 + ], + [ + 8.545827, + 48.015408 + ], + [ + 8.545827, + 48.015408 + ], + [ + 8.545827, + 48.015408 + ], + [ + 8.545827, + 48.015408 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "osmdees", + "uid": "16492361", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T12:11:33Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5vDXeGe.jpg" + ], + "amenity": [ + "recycling" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123429820 + } + }, + { + "id": 123429607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5311886, + 48.0354555 + ], + [ + 8.532637, + 48.0354555 + ], + [ + 8.532637, + 48.0370641 + ], + [ + 8.5311886, + 48.0370641 + ], + [ + 8.5311886, + 48.0354555 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "osmdees", + "uid": "16492361", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T12:03:52Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "service" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000232989624000515, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123429607 + } + }, + { + "id": 123428098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.016502, + 50.9443955 + ], + [ + 5.0185882, + 50.9443955 + ], + [ + 5.0185882, + 50.9473178 + ], + [ + 5.016502, + 50.9473178 + ], + [ + 5.016502, + 50.9443955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mjans", + "uid": "5199038", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T11:12:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0.00000609650226000312, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/2560337679": "not found" + }, + "id": 123428098 + } + }, + { + "id": 123426168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miwie", + "uid": "57526", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T10:10:56Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123426168 + } + }, + { + "id": 123425965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6248593, + 52.450505 + ], + [ + 13.6355299, + 52.450505 + ], + [ + 13.6355299, + 52.4537454 + ], + [ + 13.6248593, + 52.4537454 + ], + [ + 13.6248593, + 52.450505 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fusselwurm", + "uid": "63552", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T10:04:05Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-10", + "2020-02-15", + "2022-07-09" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000345770122400274, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123425965 + } + }, + { + "id": 123424395, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3628262, + 52.48134 + ], + [ + 13.3628262, + 52.48134 + ], + [ + 13.3628262, + 52.48134 + ], + [ + 13.3628262, + 52.48134 + ], + [ + 13.3628262, + 52.48134 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Baeumegiessen", + "uid": "16503567", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T08:58:42Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-10", + "2018-04-18" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123424395 + } + }, + { + "id": 123424289, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6324487, + 52.450505 + ], + [ + 13.6324487, + 52.450505 + ], + [ + 13.6324487, + 52.450505 + ], + [ + 13.6324487, + 52.450505 + ], + [ + 13.6324487, + 52.450505 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fusselwurm", + "uid": "63552", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T08:54:12Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-09" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123424289 + } + }, + { + "id": 123422569, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2584894, + 48.1021991 + ], + [ + 11.6066386, + 48.1021991 + ], + [ + 11.6066386, + 48.9060403 + ], + [ + 2.2584894, + 48.9060403 + ], + [ + 2.2584894, + 48.1021991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sukkoria", + "uid": "3083013", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T07:49:19Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "sports_centre" + ], + "climbing:sport": [ + "no" + ], + "climbing:toprope": [ + "no" + ], + "climbing:traditional": [ + "no" + ] + }, + "create": 0, + "modify": 25, + "delete": 0, + "area": 7.51442747070705, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "id": 123422569 + } + }, + { + "id": 123421596, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6810695, + 50.5560441 + ], + [ + 9.6932099, + 50.5560441 + ], + [ + 9.6932099, + 50.5664921 + ], + [ + 9.6810695, + 50.5664921 + ], + [ + 9.6810695, + 50.5560441 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DL2ZAV", + "uid": "11637040", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-10T07:07:12Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "service", + "secondary" + ], + "name:etymology:wikidata": [ + "Q37542732", + "Q684479", + "Q75780", + "Q836028", + "Q153858", + "Q124638", + "Q2515205" + ] + }, + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.000126842899199958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 82, + "locale": "de", + "imagery": "osm" + }, + "id": 123421596 + } + }, + { + "id": 123421013, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T06:38:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/pN8i5IU.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 123421013 + } + }, + { + "id": 123420942, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T06:35:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ], + "authentication:app": [ + "no" + ], + "authentication:nfc": [ + "no" + ], + "authentication:none": [ + "yes" + ], + "authentication:debit_card": [ + "no" + ], + "authentication:money_card": [ + "no" + ], + "authentication:phone_call": [ + "no" + ], + "authentication:short_message": [ + "no" + ], + "authentication:membership_card": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 123420942 + } + }, + { + "id": 123420883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ], + [ + 4.5823152, + 51.1427924 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T06:33:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 5 + }, + "id": 123420883 + } + }, + { + "id": 123418574, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2276746, + 52.7233234 + ], + [ + 13.2401327, + 52.7233234 + ], + [ + 13.2401327, + 52.7277979 + ], + [ + 13.2276746, + 52.7277979 + ], + [ + 13.2276746, + 52.7233234 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-10T03:41:33Z", + "reviewed_features": [], + "tag_changes": { + "fire_hydrant:type": [ + "underground" + ], + "fire_hydrant:diameter": [ + "150" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000557437684500071, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123418574 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-11.json b/Docs/Tools/stats/stats.2022-7-11.json new file mode 100644 index 0000000000..4de39c4b83 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-11.json @@ -0,0 +1,6568 @@ +{ + "features": [ + { + "id": 123493714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6041888, + 50.8311269 + ], + [ + 3.6164238, + 50.8311269 + ], + [ + 3.6164238, + 50.8390776 + ], + [ + 3.6041888, + 50.8390776 + ], + [ + 3.6041888, + 50.8311269 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T22:38:27Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/OB313fB.jpg", + "https://i.imgur.com/eGIft93.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000972768145000255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123493714 + } + }, + { + "id": 123493413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1152607, + 50.2909972 + ], + [ + 9.1159426, + 50.2909972 + ], + [ + 9.1159426, + 50.2915393 + ], + [ + 9.1152607, + 50.2915393 + ], + [ + 9.1152607, + 50.2909972 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T22:17:22Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.69657989997956e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 2 + }, + "id": 123493413 + } + }, + { + "id": 123493410, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1152607, + 50.2909972 + ], + [ + 9.1159426, + 50.2909972 + ], + [ + 9.1159426, + 50.2915393 + ], + [ + 9.1152607, + 50.2915393 + ], + [ + 9.1152607, + 50.2909972 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T22:17:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.69657989997956e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 123493410 + } + }, + { + "id": 123493269, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1054022, + 50.2035946 + ], + [ + 9.1350675, + 50.2035946 + ], + [ + 9.1350675, + 50.2915739 + ], + [ + 9.1054022, + 50.2915739 + ], + [ + 9.1054022, + 50.2035946 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T22:07:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cafe" + ] + }, + "create": 5, + "modify": 1, + "delete": 1, + "area": 0.00260993232828998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 6, + "create": 6, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 6, + "change_within_1000m": 6, + "change_within_5000m": 1, + "deletion:node/9881975006": "not found" + }, + "id": 123493269 + } + }, + { + "id": 123492994, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0349709, + 48.8130411 + ], + [ + 21.8951351, + 48.8130411 + ], + [ + 21.8951351, + 50.2991565 + ], + [ + 9.0349709, + 50.2991565 + ], + [ + 9.0349709, + 48.8130411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T21:53:30Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "tertiary", + "primary" + ], + "maxspeed": [ + "30", + "50", + "100", + "70" + ] + }, + "create": 2, + "modify": 16, + "delete": 0, + "area": 19.1116880641487, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "split": 3, + "theme": "maxspeed", + "answer": 14, + "locale": "de", + "imagery": "osm", + "relation-fix": 1, + "change_over_5000m": 8, + "change_within_5000m": 9 + }, + "id": 123492994 + } + }, + { + "id": 123491914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0077544, + 51.1302393 + ], + [ + 5.0077544, + 51.1302393 + ], + [ + 5.0077544, + 51.1302393 + ], + [ + 5.0077544, + 51.1302393 + ], + [ + 5.0077544, + 51.1302393 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T21:04:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123491914 + } + }, + { + "id": 123490669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2312099, + 48.8079918 + ], + [ + 9.2312099, + 48.8079918 + ], + [ + 9.2312099, + 48.8079918 + ], + [ + 9.2312099, + 48.8079918 + ], + [ + 9.2312099, + 48.8079918 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T20:20:38Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "image": [ + "https://i.imgur.com/EOmYEc5.jpg" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "operator": [ + "Stadwerke Stuttgart" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "osmfr", + "add-image": 1, + "change_over_5000m": 3 + }, + "id": 123490669 + } + }, + { + "id": 123489845, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8892266, + 51.1558509 + ], + [ + 4.9077619, + 51.1558509 + ], + [ + 4.9077619, + 51.1652144 + ], + [ + 4.8892266, + 51.1652144 + ], + [ + 4.8892266, + 51.1558509 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T19:52:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_office", + "social_facility" + ], + "building": [ + "commercial", + "house", + "yes", + "roof" + ], + "addr:street": [ + "Oevelseweg", + "Elzenstraat", + "Eikenstraat" + ], + "addr:housenumber": [ + "62", + "2", + "2A", + "1", + "4" + ], + "source:geometry:ref": [ + "Gbg/3838410", + "Gbg/6508534", + "Gbg/3838409", + "Gbg/3838424", + "Gbg/3838408", + "Gbg/3838407", + "Gbg/4928364", + "Gba/292627", + "Gbg/3838357", + "Gbg/5403539", + "Gbg/3838368", + "Gbg/7019952", + "Gbg/3838381", + "Gbg/3838369", + "Gbg/3838380", + "Gbg/3838379", + "Gbg/3838370", + "Gbg/3838402", + "Gbg/4928378", + "Gbg/4011455", + "Gbg/4013150", + "Gbg/4011657", + "Gbg/4011636", + "Gbg/4928299", + "Gbg/3838428", + "Gbg/3838286", + "Gbg/3838589", + "Gbg/3838166", + "Gbg/4011294", + "Gbg/4011293", + "Gbg/4011292", + "Gbg/4679015", + "Gbg/4011289", + "Gbg/4011290", + "Gbg/4011291", + "Gbg/4011446", + "Gbg/3838590", + "Gbg/3838591", + "Gbg/5862415", + "Gbg/3838593", + "Gbg/3838594", + "Gbg/3838595", + "Gbg/3838596", + "Gbg/3838597", + "Gbg/4928224", + "Gbg/3838160", + "Gbg/3838251", + "Gbg/3838287", + "Gbg/3838252", + "Gbg/3838149", + "Gbg/3838150", + "Gbg/3838281", + "Gbg/3838264", + "Gbg/3838282", + "Gbg/3838283", + "Gbg/5862321", + "Gbg/3838296", + "Gbg/4679006", + "Gbg/3838285", + "Gbg/3838294", + "Gbg/3838293", + "Gbg/3838292", + "Gbg/3838598", + "Gbg/3838599", + "Gbg/3838600", + "Gbg/3838291", + "Gbg/5862392", + "Gbg/3838288", + "Gbg/5862473" + ], + "source:geometry:date": [ + "2012-09-17", + "2018-10-24", + "2014-12-04", + "2015-11-24", + "2021-10-25", + "2013-02-20", + "2016-05-02", + "2013-01-07", + "2018-09-13", + "2017-03-01", + "2014-05-02", + "2015-05-06", + "2020-06-05" + ] + }, + "create": 833, + "modify": 452, + "delete": 6, + "area": 0.000173555281550116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 380, + "theme": "grb", + "answer": 5, + "delete": 6, + "import": 83, + "locale": "nl", + "imagery": "AGIV", + "conflation": 136 + }, + "id": 123489845 + } + }, + { + "id": 123489623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8983617, + 51.1604248 + ], + [ + 4.9007123, + 51.1604248 + ], + [ + 4.9007123, + 51.1648757 + ], + [ + 4.8983617, + 51.1648757 + ], + [ + 4.8983617, + 51.1604248 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T19:44:41Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "supermarket" + ], + "building": [ + "house", + "retail", + "yes", + "roof" + ], + "addr:housenumber": [ + "44;44A", + "44", + "71", + "71A" + ], + "source:geometry:ref": [ + "Gbg/3838374", + "Gbg/3838234", + "Gbg/3838359", + "Gbg/5862323", + "Gbg/3838371", + "Gbg/3838372", + "Gbg/3838373", + "Gbg/3838363", + "Gbg/3838364", + "Gbg/3838362", + "Gbg/3838375", + "Gbg/3838376", + "Gbg/3838392", + "Gbg/3838393", + "Gbg/5862486", + "Gbg/3838395", + "Gbg/3838411", + "Gbg/3838391", + "Gbg/3838401", + "Gbg/3838403", + "Gbg/6508194" + ], + "source:geometry:date": [ + "2012-09-17", + "2013-02-20", + "2017-03-01", + "2021-10-25", + "2015-11-24", + "2018-10-24" + ] + }, + "create": 193, + "modify": 128, + "delete": 0, + "area": 0.0000104622855400074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 105, + "theme": "grb", + "answer": 2, + "import": 13, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 42 + }, + "id": 123489623 + } + }, + { + "id": 123489599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8982939, + 51.1646438 + ], + [ + 4.9005228, + 51.1646438 + ], + [ + 4.9005228, + 51.1658987 + ], + [ + 4.8982939, + 51.1658987 + ], + [ + 4.8982939, + 51.1646438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T19:43:28Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3838356", + "Gbg/3838358", + "Gbg/4011566", + "Gbg/6508559", + "Gbg/5862381" + ], + "source:geometry:date": [ + "2012-09-17", + "2013-01-07", + "2018-10-24", + "2017-03-01" + ] + }, + "create": 15, + "modify": 29, + "delete": 0, + "area": 0.00000279704660999893, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 24, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "id": 123489599 + } + }, + { + "id": 123489214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8969439, + 51.1645026 + ], + [ + 4.901359, + 51.1645026 + ], + [ + 4.901359, + 51.1679052 + ], + [ + 4.8969439, + 51.1679052 + ], + [ + 4.8969439, + 51.1645026 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T19:31:11Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "library", + "bank" + ], + "building": [ + "house", + "yes", + "commercial", + "school", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3838229", + "Gbg/3838228", + "Gbg/3838232", + "Gbg/3838351", + "Gbg/3838230", + "Gbg/3838352", + "Gbg/3838231", + "Gbg/4011553", + "Gbg/4011505", + "Gbg/4011562", + "Gbg/4011561", + "Gbg/4011560", + "Gbg/4011559", + "Gbg/4011558", + "Gbg/5862404", + "Gbg/4011504", + "Gbg/4011507", + "Gbg/4011506", + "Gbg/4011537", + "Gbg/5862248", + "Gbg/4011509", + "Gbg/4011508", + "Gbg/4011513", + "Gbg/4011512", + "Gbg/4011510", + "Gbg/4011511", + "Gbg/4011540", + "Gbg/4011532" + ], + "source:geometry:date": [ + "2012-09-17", + "2013-02-20", + "2014-12-04", + "2013-01-07", + "2017-03-01", + "2021-10-25", + "2015-11-24" + ] + }, + "create": 232, + "modify": 210, + "delete": 0, + "area": 0.0000150228192600054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 184, + "theme": "grb", + "import": 19, + "locale": "nl", + "imagery": "AGIV", + "conflation": 56 + }, + "id": 123489214 + } + }, + { + "id": 123489177, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7194186, + 50.9324716 + ], + [ + 3.7194186, + 50.9324716 + ], + [ + 3.7194186, + 50.9324716 + ], + [ + 3.7194186, + 50.9324716 + ], + [ + 3.7194186, + 50.9324716 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T19:30:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/y1WG8Dp.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123489177 + } + }, + { + "id": 123488941, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7185752, + 50.9330447 + ], + [ + 3.7185752, + 50.9330447 + ], + [ + 3.7185752, + 50.9330447 + ], + [ + 3.7185752, + 50.9330447 + ], + [ + 3.7185752, + 50.9330447 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T19:22:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YLueU3m.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123488941 + } + }, + { + "id": 123488284, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3403407, + 52.4648407 + ], + [ + 13.3403407, + 52.4648407 + ], + [ + 13.3403407, + 52.4648407 + ], + [ + 13.3403407, + 52.4648407 + ], + [ + 13.3403407, + 52.4648407 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duocervisia", + "uid": "16456166", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T19:03:59Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-11" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123488284 + } + }, + { + "id": 123487988, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8983936, + 51.1656569 + ], + [ + 4.9082544, + 51.1656569 + ], + [ + 4.9082544, + 51.1723417 + ], + [ + 4.8983936, + 51.1723417 + ], + [ + 4.8983936, + 51.1656569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T18:54:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking", + "pub" + ], + "building": [ + "house", + "yes", + "apartments", + "roof" + ], + "addr:housenumber": [ + "25;27", + "19", + "10", + "6" + ], + "source:geometry:ref": [ + "Gbg/3838526", + "Gbg/4011529", + "Gbg/4011933", + "Gbg/5862344", + "Gbg/3838148", + "Gbg/3838147", + "Gbg/3838146", + "Gbg/3838145", + "Gbg/3838225", + "Gbg/3838224", + "Gbg/4011219", + "Gbg/4011208", + "Gbg/3838551", + "Gbg/3838515", + "Gbg/3838550", + "Gbg/3838548", + "Gbg/3838549", + "Gbg/3838311", + "Gbg/3838203", + "Gbg/3838188", + "Gbg/3838187", + "Gbg/5862383", + "Gbg/3838185", + "Gbg/3838319", + "Gbg/4011207", + "Gbg/3838032", + "Gbg/4011198", + "Gbg/4011201", + "Gbg/5862398", + "Gbg/4011204", + "Gbg/3838194", + "Gbg/3838193", + "Gbg/3838191", + "Gbg/3838190", + "Gbg/3838248", + "Gbg/3838298", + "Gbg/3838249", + "Gbg/4928295", + "Gbg/5862328", + "Gbg/5862378", + "Gbg/3838303", + "Gbg/3838304", + "Gbg/3838555", + "Gbg/3838554", + "Gbg/3838552", + "Gbg/3838553", + "Gbg/3838721", + "Gbg/3838556", + "Gbg/3838301", + "Gbg/3838557", + "Gbg/5554868", + "Gbg/5554869", + "Gbg/3838247", + "Gbg/3838246", + "Gbg/3838227", + "Gbg/3838217", + "Gbg/3838218", + "Gbg/3838219", + "Gbg/3838220", + "Gbg/3838309", + "Gbg/3838221", + "Gbg/5862374", + "Gbg/6989652", + "Gbg/3838250", + "Gbg/3838327", + "Gbg/3838326", + "Gbg/3838325", + "Gbg/3838321", + "Gbg/3838329", + "Gbg/6910819", + "Gbg/3838328", + "Gbg/3838512", + "Gbg/3837908" + ], + "source:geometry:date": [ + "2013-02-20", + "2013-01-07", + "2017-03-01", + "2018-10-24", + "2012-09-17", + "2014-05-02", + "2014-12-04", + "2020-06-05", + "2019-09-04", + "2016-05-02", + "2021-10-25", + "2021-09-10" + ] + }, + "create": 674, + "modify": 456, + "delete": 5, + "area": 0.0000659174758399468, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 385, + "theme": "grb", + "answer": 6, + "delete": 5, + "import": 80, + "locale": "nl", + "imagery": "AGIV", + "conflation": 144 + }, + "id": 123487988 + } + }, + { + "id": 123487924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9019646, + 51.1675244 + ], + [ + 4.9044834, + 51.1675244 + ], + [ + 4.9044834, + 51.1687499 + ], + [ + 4.9019646, + 51.1687499 + ], + [ + 4.9019646, + 51.1675244 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T18:52:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ], + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/5403537", + "Gbg/3838312", + "Gbg/3838315", + "Gbg/3838316", + "Gbg/3838317", + "Gbg/3838318", + "Gbg/3838307", + "Gbg/3838313", + "Gbg/6508514", + "Gbg/3838211", + "Gbg/3838210", + "Gbg/3838306", + "Gbg/3838305" + ], + "source:geometry:date": [ + "2015-11-24", + "2013-02-20", + "2012-09-17", + "2017-03-01", + "2018-10-24" + ] + }, + "create": 53, + "modify": 72, + "delete": 0, + "area": 0.00000308678940000954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 60, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "id": 123487924 + } + }, + { + "id": 123487799, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.4489035, + 47.6307502 + ], + [ + 10.4499355, + 47.6307502 + ], + [ + 10.4499355, + 47.6313781 + ], + [ + 10.4489035, + 47.6313781 + ], + [ + 10.4489035, + 47.6307502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SanSim", + "uid": "2481180", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T18:48:39Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "surface": [ + "grass" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.47992799997953e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123487799 + } + }, + { + "id": 123486536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.719266, + 50.9324422 + ], + [ + 3.7193138, + 50.9324422 + ], + [ + 3.7193138, + 50.9324854 + ], + [ + 3.719266, + 50.9324854 + ], + [ + 3.719266, + 50.9324422 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T18:08:11Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FSTlrNA.jpg", + "https://i.imgur.com/BgCfrZk.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.06496000001395e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123486536 + } + }, + { + "id": 123484705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.2957318, + 51.3848996 + ], + [ + -0.2953733, + 51.3848996 + ], + [ + -0.2953733, + 51.385575 + ], + [ + -0.2957318, + 51.385575 + ], + [ + -0.2957318, + 51.3848996 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T17:15:47Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "hairdresser", + "sports" + ], + "email": [ + "Surbiton@upandrunning.co.uk" + ], + "phone": [ + "+44 7961 120169", + "+44 20 8390 8771" + ], + "website": [ + "https://www.facebook.com/smartstylebarbers/", + "https://upandrunning.co.uk/pages/up-running-surbiton" + ], + "building": [ + "retail" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Tu-Fr 11:00-19:00; Sa 09:00-18:00; Su 10:00-15:00;PH off;", + "Tu-Fr 11:00-19:00; Sa 09:00-18:00; Su 10:00-15:00; PH,Mo off", + "Mo-We 09:30-17:30; Th 09:30-19:30; Fr 09:30-17:30; Sa 09:00-18:00; Su 10:30-16:30;PH off;" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.42130900002056e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "id": 123484705 + } + }, + { + "id": 123483512, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3327324, + 52.4588758 + ], + [ + 13.3386562, + 52.4588758 + ], + [ + 13.3386562, + 52.4619129 + ], + [ + 13.3327324, + 52.4619129 + ], + [ + 13.3327324, + 52.4588758 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duocervisia", + "uid": "16456166", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T16:43:51Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-11", + "2020-09-11" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000179911729800059, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123483512 + } + }, + { + "id": 123482406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ], + [ + 13.3226006, + 52.4735694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KiraSchramm", + "uid": "16464117", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T16:10:25Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-11" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123482406 + } + }, + { + "id": 123479757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T15:03:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "material": [ + "wood" + ], + "direction": [ + "265" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123479757 + } + }, + { + "id": 123479728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ], + [ + 8.6913764, + 50.1230201 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T15:03:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123479728 + } + }, + { + "id": 123479694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6914623, + 50.1232161 + ], + [ + 8.6914623, + 50.1232161 + ], + [ + 8.6914623, + 50.1232161 + ], + [ + 8.6914623, + 50.1232161 + ], + [ + 8.6914623, + 50.1232161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T15:02:26Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123479694 + } + }, + { + "id": 123479595, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T15:00:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123479595 + } + }, + { + "id": 123479294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6920269, + 50.1245385 + ], + [ + 8.6920269, + 50.1245385 + ], + [ + 8.6920269, + 50.1245385 + ], + [ + 8.6920269, + 50.1245385 + ], + [ + 8.6920269, + 50.1245385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:52:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_50m": 2, + "deletion:node/9881200327": "duplicate" + }, + "id": 123479294 + } + }, + { + "id": 123479223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6915374, + 50.1247896 + ], + [ + 8.6915374, + 50.1247896 + ], + [ + 8.6915374, + 50.1247896 + ], + [ + 8.6915374, + 50.1247896 + ], + [ + 8.6915374, + 50.1247896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:51:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/9881135668": "duplicate" + }, + "id": 123479223 + } + }, + { + "id": 123479188, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6919343, + 50.1246297 + ], + [ + 8.6919343, + 50.1246297 + ], + [ + 8.6919343, + 50.1246297 + ], + [ + 8.6919343, + 50.1246297 + ], + [ + 8.6919343, + 50.1246297 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:50:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 5 + }, + "id": 123479188 + } + }, + { + "id": 123478902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6915454, + 50.1231663 + ], + [ + 8.6916903, + 50.1231663 + ], + [ + 8.6916903, + 50.1262117 + ], + [ + 8.6915454, + 50.1262117 + ], + [ + 8.6915454, + 50.1231663 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:44:40Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "bicycle_parking", + "waste_basket", + "parking" + ], + "barrier": [ + "kerb" + ], + "highway": [ + "primary" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 4.41278459995628e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 123478902 + } + }, + { + "id": 123478549, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6922026, + 50.1268565 + ], + [ + 8.6922026, + 50.1268565 + ], + [ + 8.6922026, + 50.1268565 + ], + [ + 8.6922026, + 50.1268565 + ], + [ + 8.6922026, + 50.1268565 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:37:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123478549 + } + }, + { + "id": 123478422, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6915749, + 50.1234707 + ], + [ + 8.6918968, + 50.1234707 + ], + [ + 8.6918968, + 50.1273776 + ], + [ + 8.6915749, + 50.1273776 + ], + [ + 8.6915749, + 50.1234707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:33:51Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "waste_basket", + "bicycle_parking" + ], + "barrier": [ + "bollard", + "kerb" + ], + "highway": [ + "path", + "primary" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000125763110999908, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 123478422 + } + }, + { + "id": 123478373, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913355, + 50.1226316 + ], + [ + 8.6919236, + 50.1226316 + ], + [ + 8.6919236, + 50.1275181 + ], + [ + 8.6913355, + 50.1275181 + ], + [ + 8.6913355, + 50.1226316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:32:28Z", + "reviewed_features": [], + "tag_changes": { + "kerb": [ + "lowered" + ], + "route": [ + "bus" + ], + "amenity": [ + "waste_basket", + "bicycle_parking" + ], + "barrier": [ + "kerb", + "bollard" + ], + "highway": [ + "path", + "crossing", + "primary" + ], + "tactile_paving": [ + "yes" + ] + }, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000287375065001092, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 8, + "create": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 14 + }, + "id": 123478373 + } + }, + { + "id": 123478363, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6915106, + 50.1235962 + ], + [ + 8.6919665, + 50.1235962 + ], + [ + 8.6919665, + 50.1277404 + ], + [ + 8.6915106, + 50.1277404 + ], + [ + 8.6915106, + 50.1235962 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:32:20Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "access": [ + "customers" + ], + "amenity": [ + "bicycle_parking", + "waste_basket" + ], + "barrier": [ + "bollard" + ], + "highway": [ + "path" + ], + "cargo_bike": [ + "no" + ], + "capacity:cargo_bike": [ + "0" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000018893407799938, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 123478363 + } + }, + { + "id": 123478351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6919665, + 50.1277404 + ], + [ + 8.6919665, + 50.1277404 + ], + [ + 8.6919665, + 50.1277404 + ], + [ + 8.6919665, + 50.1277404 + ], + [ + 8.6919665, + 50.1277404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:32:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 123478351 + } + }, + { + "id": 123478212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6919665, + 50.1277404 + ], + [ + 8.6923796, + 50.1277404 + ], + [ + 8.6923796, + 50.1280378 + ], + [ + 8.6919665, + 50.1280378 + ], + [ + 8.6919665, + 50.1277404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:29:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ARLFJ1v.jpg" + ], + "route": [ + "bus" + ], + "amenity": [ + "bicycle_parking" + ], + "highway": [ + "path" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.22855940000715e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123478212 + } + }, + { + "id": 123478172, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6923796, + 50.1280378 + ], + [ + 8.6923796, + 50.1280378 + ], + [ + 8.6923796, + 50.1280378 + ], + [ + 8.6923796, + 50.1280378 + ], + [ + 8.6923796, + 50.1280378 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:28:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123478172 + } + }, + { + "id": 123478167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6916393, + 50.1241465 + ], + [ + 8.6920792, + 50.1241465 + ], + [ + 8.6920792, + 50.1279622 + ], + [ + 8.6916393, + 50.1279622 + ], + [ + 8.6916393, + 50.1241465 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:28:35Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "waste_basket", + "bicycle_parking" + ], + "barrier": [ + "bollard" + ], + "highway": [ + "primary", + "path" + ] + }, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000167852642999843, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 12, + "create": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "id": 123478167 + } + }, + { + "id": 123477968, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913409, + 50.1283948 + ], + [ + 8.6926415, + 50.1283948 + ], + [ + 8.6926415, + 50.1292933 + ], + [ + 8.6913409, + 50.1292933 + ], + [ + 8.6913409, + 50.1283948 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:24:10Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "pedestrian" + ], + "cycleway": [ + "no", + "lane" + ], + "maxspeed": [ + "30", + "50" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000116858909999796, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_50m": 5 + }, + "id": 123477968 + } + }, + { + "id": 123477719, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6865479, + 50.1262991 + ], + [ + 8.6926415, + 50.1262991 + ], + [ + 8.6926415, + 50.1292933 + ], + [ + 8.6865479, + 50.1292933 + ], + [ + 8.6865479, + 50.1262991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:17:39Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no", + "yes" + ], + "image": [ + "https://i.imgur.com/vC6BNGV.jpg" + ], + "route": [ + "bus" + ], + "amenity": [ + "waste_basket" + ], + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "primary", + "crossing", + "residential", + "path", + "pedestrian" + ], + "cycleway": [ + "lane" + ], + "maxspeed": [ + "50" + ], + "cycleway:separation": [ + "solid_line" + ], + "cycleway:smoothness": [ + "intermediate" + ] + }, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0000182454571200201, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 13, + "create": 8, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_25m": 17 + }, + "id": 123477719 + } + }, + { + "id": 123477649, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913409, + 50.1263158 + ], + [ + 8.6926415, + 50.1263158 + ], + [ + 8.6926415, + 50.1292933 + ], + [ + 8.6913409, + 50.1292933 + ], + [ + 8.6913409, + 50.1263158 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:15:50Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no", + "yes" + ], + "image": [ + "https://i.imgur.com/vC6BNGV.jpg" + ], + "route": [ + "bus" + ], + "amenity": [ + "waste_basket" + ], + "barrier": [ + "bollard" + ], + "highway": [ + "primary", + "pedestrian" + ], + "cycleway": [ + "lane" + ], + "maxspeed": [ + "50" + ], + "cycleway:separation": [ + "solid_line" + ], + "cycleway:smoothness": [ + "intermediate" + ] + }, + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000387253650000138, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 7, + "create": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_25m": 13 + }, + "id": 123477649 + } + }, + { + "id": 123477531, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miwie", + "uid": "57526", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T14:12:33Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123477531 + } + }, + { + "id": 123477331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913228, + 50.1232161 + ], + [ + 8.6927739, + 50.1232161 + ], + [ + 8.6927739, + 50.1293515 + ], + [ + 8.6913228, + 50.1293515 + ], + [ + 8.6913228, + 50.1232161 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:07:37Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "waste_basket" + ], + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000890307894000076, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "create": 2, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "id": 123477331 + } + }, + { + "id": 123477218, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6748457, + 50.9146258 + ], + [ + 3.8115773, + 50.9146258 + ], + [ + 3.8115773, + 50.999479 + ], + [ + 3.6748457, + 50.999479 + ], + [ + 3.6748457, + 50.9146258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T14:04:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ohqcvek.jpg", + "https://i.imgur.com/YVPbGPc.jpg", + "https://i.imgur.com/MbiqvPC.jpg", + "https://i.imgur.com/JlguPlA.jpg", + "https://i.imgur.com/sEI9vk2.jpg", + "https://i.imgur.com/h7jkdGo.jpg" + ], + "route": [ + "bicycle", + "hiking" + ], + "amenity": [ + "bench" + ], + "highway": [ + "unclassified" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0116021138011197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "id": 123477218 + } + }, + { + "id": 123477207, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6927202, + 50.1288116 + ], + [ + 8.6934927, + 50.1288116 + ], + [ + 8.6934927, + 50.1293326 + ], + [ + 8.6927202, + 50.1293326 + ], + [ + 8.6927202, + 50.1288116 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mathildane", + "uid": "16445312", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T14:04:44Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 5, + "modify": 3, + "delete": 0, + "area": 4.02472499999343e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 10, + "create": 5, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 123477207 + } + }, + { + "id": 123477140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6914757, + 50.1229754 + ], + [ + 8.6914757, + 50.1229754 + ], + [ + 8.6914757, + 50.1229754 + ], + [ + 8.6914757, + 50.1229754 + ], + [ + 8.6914757, + 50.1229754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:03:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "parkings", + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 123477140 + } + }, + { + "id": 123477106, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6912692, + 50.1229719 + ], + [ + 8.6931226, + 50.1229719 + ], + [ + 8.6931226, + 50.1292656 + ], + [ + 8.6912692, + 50.1292656 + ], + [ + 8.6912692, + 50.1229719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T14:02:06Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no", + "yes" + ], + "image": [ + "https://i.imgur.com/vC6BNGV.jpg" + ], + "route": [ + "bus" + ], + "amenity": [ + "waste_basket" + ], + "highway": [ + "pedestrian" + ], + "natural": [ + "tree" + ], + "cycleway": [ + "lane" + ], + "maxspeed": [ + "50" + ], + "cycleway:separation": [ + "solid_line" + ], + "cycleway:smoothness": [ + "intermediate" + ] + }, + "create": 7, + "modify": 6, + "delete": 0, + "area": 0.0000116647435799871, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 7, + "create": 7, + "locale": "de", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 12, + "change_within_50m": 1 + }, + "id": 123477106 + } + }, + { + "id": 123476859, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2532632, + 52.7684747 + ], + [ + 13.2685903, + 52.7684747 + ], + [ + 13.2685903, + 52.7785124 + ], + [ + 13.2532632, + 52.7785124 + ], + [ + 13.2532632, + 52.7684747 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SebastianFranz", + "uid": "16395555", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:56:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 16, + "delete": 0, + "area": 0.000153848831669974, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123476859 + } + }, + { + "id": 123476840, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6932245, + 50.1295475 + ], + [ + 8.6932379, + 50.1295475 + ], + [ + 8.6932379, + 50.1295682 + ], + [ + 8.6932245, + 50.1295682 + ], + [ + 8.6932245, + 50.1295475 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:55:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.77380000009935e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 8, + "create": 2, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 123476840 + } + }, + { + "id": 123476802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6890559, + 50.1188837 + ], + [ + 8.6936241, + 50.1188837 + ], + [ + 8.6936241, + 50.1296799 + ], + [ + 8.6890559, + 50.1296799 + ], + [ + 8.6890559, + 50.1188837 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:54:33Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/lOrFnWG.jpg" + ], + "amenity": [ + "bicycle_parking" + ], + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000493192008400022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "id": 123476802 + } + }, + { + "id": 123476508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913409, + 50.1283948 + ], + [ + 8.6941096, + 50.1283948 + ], + [ + 8.6941096, + 50.1296851 + ], + [ + 8.6913409, + 50.1296851 + ], + [ + 8.6913409, + 50.1283948 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:46:22Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no", + "yes" + ], + "uid": [ + "16362995" + ], + "user": [ + "symtll" + ], + "image": [ + "https://i.imgur.com/ZZdHfod.jpg", + "https://i.imgur.com/vC6BNGV.jpg" + ], + "highway": [ + "street_lamp", + "pedestrian" + ], + "natural": [ + "tree" + ], + "version": [ + "5" + ], + "cycleway": [ + "lane" + ], + "maxspeed": [ + "50" + ], + "changeset": [ + "123476013" + ], + "timestamp": [ + "2022-07-11T13:45:40Z" + ], + "cycleway:separation": [ + "solid_line" + ], + "cycleway:smoothness": [ + "intermediate" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000357245361000331, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 3 + }, + "id": 123476508 + } + }, + { + "id": 123476013, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6928199, + 50.1292973 + ], + [ + 8.6941096, + 50.1292973 + ], + [ + 8.6941096, + 50.1296851 + ], + [ + 8.6928199, + 50.1296851 + ], + [ + 8.6928199, + 50.1292973 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:36:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/DV7GFMP.jpg" + ], + "highway": [ + "cycleway", + "street_lamp" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 5.00145660007734e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 4 + }, + "id": 123476013 + } + }, + { + "id": 123475919, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6921664, + 50.1292931 + ], + [ + 8.6934203, + 50.1292931 + ], + [ + 8.6934203, + 50.1296971 + ], + [ + 8.6921664, + 50.1296971 + ], + [ + 8.6921664, + 50.1292931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:34:34Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 5, + "modify": 7, + "delete": 0, + "area": 5.06575600003999e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 2, + "theme": "street_lighting", + "answer": 13, + "create": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5, + "change_within_25m": 14, + "change_within_50m": 2, + "move:node/9880974147": "improve_accuracy", + "move:node/9881022949": "improve_accuracy" + }, + "id": 123475919 + } + }, + { + "id": 123475855, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6927739, + 50.1291933 + ], + [ + 8.6928729, + 50.1291933 + ], + [ + 8.6928729, + 50.1294461 + ], + [ + 8.6927739, + 50.1294461 + ], + [ + 8.6927739, + 50.1291933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:32:28Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "needleleaved" + ], + "denotation": [ + "park" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 2.5027200000225e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 5 + }, + "id": 123475855 + } + }, + { + "id": 123475411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9069708, + 51.2121941 + ], + [ + 2.9106296, + 51.2121941 + ], + [ + 2.9106296, + 51.2249319 + ], + [ + 2.9069708, + 51.2249319 + ], + [ + 2.9069708, + 51.2121941 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:21:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 7, + "modify": 1, + "delete": 0, + "area": 0.0000466050626400154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 7, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 9, + "import:node/9880963495": "source: https://osm.org/note/3262187", + "import:node/9880993223": "source: https://osm.org/note/3261963", + "import:node/9881011165": "source: https://osm.org/note/3262099", + "import:node/9881015542": "source: https://osm.org/note/3261324", + "import:node/9881023467": "source: https://osm.org/note/3261248", + "import:node/9881024666": "source: https://osm.org/note/3261210", + "import:node/9881024667": "source: https://osm.org/note/3261807" + }, + "id": 123475411 + } + }, + { + "id": 123475293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7687297, + -34.6660352 + ], + [ + -58.5224712, + -34.6660352 + ], + [ + -58.5224712, + -34.638539 + ], + [ + -58.7687297, + -34.638539 + ], + [ + -58.7687297, + -34.6660352 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T13:17:08Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "REP LS 3/9", + "A 288", + "A 293", + "RO 352", + "HD 51" + ], + "note": [ + "SP 236" + ], + "railway": [ + "signal" + ], + "operator": [ + "Trenes Argentinos" + ], + "railway:signal:main": [ + "yes" + ], + "railway:signal:route": [ + "yes" + ], + "railway:signal:combined": [ + "yes" + ], + "railway:signal:main:form": [ + "light" + ], + "railway:signal:route:form": [ + "light" + ], + "railway:signal:main:height": [ + "normal" + ], + "railway:signal:route:height": [ + "normal" + ], + "railway:signal:combined:form": [ + "light" + ], + "railway:signal:main:function": [ + "exit", + "block" + ], + "railway:signal:combined:height": [ + "normal" + ], + "railway:signal:combined:deactivated": [ + "no" + ] + }, + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00677117296770049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 33, + "create": 2, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 2, + "change_within_25m": 23, + "change_within_50m": 10 + }, + "id": 123475293 + } + }, + { + "id": 123474099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9997005, + 13.0268871 + ], + [ + 93.9795006, + 13.0268871 + ], + [ + 93.9795006, + 31.4008421 + ], + [ + 74.9997005, + 31.4008421 + ], + [ + 74.9997005, + 13.0268871 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-265900949", + "note": "Overlapping features reported in [\"name:etymology:wikidata\"] tags in the feature", + "osm_id": 265900949, + "reasons": [ + 531 + ], + "version": 2 + } + ], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T12:43:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "college" + ], + "highway": [ + "residential" + ], + "leisure": [ + "stadium" + ], + "name:etymology:wikidata": [ + "Q3633008" + ] + }, + "create": 0, + "modify": 48, + "delete": 0, + "area": 348.733992946395, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 68, + "locale": "en", + "imagery": "osm" + }, + "id": 123474099 + } + }, + { + "id": 123471923, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6132195, + 50.8399301 + ], + [ + 3.6806659, + 50.8399301 + ], + [ + 3.6806659, + 50.8933468 + ], + [ + 3.6132195, + 50.8933468 + ], + [ + 3.6132195, + 50.8399301 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T11:54:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/WWkCAW0.jpg", + "https://i.imgur.com/OsTB8EA.jpg", + "https://i.imgur.com/lZx9zGL.jpg", + "https://i.imgur.com/Cstm1zR.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00360276411488046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "id": 123471923 + } + }, + { + "id": 123471410, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6028758, + 50.7487772 + ], + [ + 3.6028758, + 50.7487772 + ], + [ + 3.6028758, + 50.7487772 + ], + [ + 3.6028758, + 50.7487772 + ], + [ + 3.6028758, + 50.7487772 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T11:43:38Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/JSCTEBd.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123471410 + } + }, + { + "id": 123470798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6687225, + 50.1139187 + ], + [ + 8.6687225, + 50.1139187 + ], + [ + 8.6687225, + 50.1139187 + ], + [ + 8.6687225, + 50.1139187 + ], + [ + 8.6687225, + 50.1139187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T11:29:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 1, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "deletion:node/9880818368": "testing point" + }, + "id": 123470798 + } + }, + { + "id": 123468355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3543008, + 50.8582307 + ], + [ + 4.3543008, + 50.8582307 + ], + [ + 4.3543008, + 50.8582307 + ], + [ + 4.3543008, + 50.8582307 + ], + [ + 4.3543008, + 50.8582307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T10:35:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 12, + "create": 1, + "locale": "en", + "imagery": "UrbisAdmNL", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 14 + }, + "id": 123468355 + } + }, + { + "id": 123467762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3419465, + 50.8574806 + ], + [ + 4.3419465, + 50.8574806 + ], + [ + 4.3419465, + 50.8574806 + ], + [ + 4.3419465, + 50.8574806 + ], + [ + 4.3419465, + 50.8574806 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T10:23:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "dentist" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 123467762 + } + }, + { + "id": 123467434, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.2805422, + 50.708206 + ], + [ + 7.3112322, + 50.708206 + ], + [ + 7.3112322, + 50.7288716 + ], + [ + 7.2805422, + 50.7288716 + ], + [ + 7.2805422, + 50.708206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T10:15:42Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle", + "road" + ], + "highway": [ + "residential", + "unclassified", + "secondary" + ], + "maxspeed": [ + "30", + "100", + "50" + ] + }, + "create": 6, + "modify": 24, + "delete": 0, + "area": 0.000634227264000027, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "split": 9, + "theme": "maxspeed", + "answer": 22, + "locale": "de", + "imagery": "osm", + "relation-fix": 3 + }, + "id": 123467434 + } + }, + { + "id": 123467406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3348097, + 50.8531142 + ], + [ + 4.3348816, + 50.8531142 + ], + [ + 4.3348816, + 50.853273 + ], + [ + 4.3348097, + 50.853273 + ], + [ + 4.3348097, + 50.8531142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T10:14:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "sanitary_dump_station" + ], + "toilets": [ + "yes" + ], + "tourism": [ + "caravan_site" + ], + "internet_access": [ + "yes" + ], + "permanent_camping": [ + "no" + ], + "internet_access:fee": [ + "no" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.1417720000091e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/campersite.html", + "theme": "campersite", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 123467406 + } + }, + { + "id": 123467289, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.334718, + 50.8529461 + ], + [ + 4.334718, + 50.8529461 + ], + [ + 4.334718, + 50.8529461 + ], + [ + 4.334718, + 50.8529461 + ], + [ + 4.334718, + 50.8529461 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T10:12:25Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "pitch" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 123467289 + } + }, + { + "id": 123466602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6928185, + 50.129827 + ], + [ + 8.6934088, + 50.129827 + ], + [ + 8.6934088, + 50.1302393 + ], + [ + 8.6928185, + 50.1302393 + ], + [ + 8.6928185, + 50.129827 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T10:02:40Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "width": [ + "2" + ], + "entrance": [ + "secondary", + "yes", + "main" + ], + "automatic_door": [ + "button", + "no" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.43380690000705e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 12, + "locale": "de", + "imagery": "osm" + }, + "id": 123466602 + } + }, + { + "id": 123466505, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6919799, + 50.1303918 + ], + [ + 8.6919799, + 50.1303918 + ], + [ + 8.6919799, + 50.1303918 + ], + [ + 8.6919799, + 50.1303918 + ], + [ + 8.6919799, + 50.1303918 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T10:00:35Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123466505 + } + }, + { + "id": 123466376, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6927471, + 50.1303557 + ], + [ + 8.6927471, + 50.1303557 + ], + [ + 8.6927471, + 50.1303557 + ], + [ + 8.6927471, + 50.1303557 + ], + [ + 8.6927471, + 50.1303557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T09:57:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "direction": [ + "1" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123466376 + } + }, + { + "id": 123466372, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T09:57:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123466372 + } + }, + { + "id": 123466264, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6924788, + 50.1303557 + ], + [ + 8.6927471, + 50.1303557 + ], + [ + 8.6927471, + 50.1303677 + ], + [ + 8.6924788, + 50.1303677 + ], + [ + 8.6924788, + 50.1303557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T09:54:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 3.21959999949816e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 11, + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 123466264 + } + }, + { + "id": 123466143, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913679, + 50.1295397 + ], + [ + 8.6939725, + 50.1295397 + ], + [ + 8.6939725, + 50.1314411 + ], + [ + 8.6913679, + 50.1314411 + ], + [ + 8.6913679, + 50.1295397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "K-Pete", + "uid": "9038981", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T09:51:41Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "amenity": [ + "waste_basket" + ], + "highway": [ + "footway", + "pedestrian" + ], + "surface": [ + "paving_stones" + ], + "cycleway": [ + "track" + ], + "cycleway:surface": [ + "paving_stones" + ], + "cycleway:smoothness": [ + "good" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000495238644000281, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123466143 + } + }, + { + "id": 123465979, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6924493, + 50.1302095 + ], + [ + 8.6928222, + 50.1302095 + ], + [ + 8.6928222, + 50.1305259 + ], + [ + 8.6924493, + 50.1305259 + ], + [ + 8.6924493, + 50.1302095 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "neleostermann", + "uid": "16512997", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T09:47:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 8, + "modify": 3, + "delete": 0, + "area": 1.179855600011e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 8, + "create": 8, + "locale": "de", + "imagery": "osm" + }, + "id": 123465979 + } + }, + { + "id": 123465315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9056906, + 51.2270708 + ], + [ + 2.9056906, + 51.2270708 + ], + [ + 2.9056906, + 51.2270708 + ], + [ + 2.9056906, + 51.2270708 + ], + [ + 2.9056906, + 51.2270708 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Vlaanderen - Pin je punt", + "uid": "15015689", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T09:31:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 2, + "import:node/9880599835": "source: https://osm.org/note/3261655" + }, + "id": 123465315 + } + }, + { + "id": 123464127, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5171091, + 44.8753434 + ], + [ + -0.5171091, + 44.8753434 + ], + [ + -0.5171091, + 44.8753434 + ], + [ + -0.5171091, + 44.8753434 + ], + [ + -0.5171091, + 44.8753434 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T09:07:24Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UryHHLY.jpg" + ], + "man_made": [ + "surveillance" + ], + "camera:type": [ + "dome", + "fixed" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123464127 + } + }, + { + "id": 123461340, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0299425, + 49.5977952 + ], + [ + 11.0299731, + 49.5977952 + ], + [ + 11.0299731, + 49.5979503 + ], + [ + 11.0299425, + 49.5979503 + ], + [ + 11.0299425, + 49.5977952 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pascatl", + "uid": "1797719", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T08:11:49Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "entrance": [ + "main", + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.74605999982857e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123461340 + } + }, + { + "id": 123460536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.3060286, + 51.4095369 + ], + [ + -0.1209766, + 51.4095369 + ], + [ + -0.1209766, + 51.4877939 + ], + [ + -0.3060286, + 51.4877939 + ], + [ + -0.3060286, + 51.4095369 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T07:54:53Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ], + "operational_status": [ + "closed" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0144816143640001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_1000m": 2, + "change_within_5000m": 1 + }, + "id": 123460536 + } + }, + { + "id": 123460484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ], + [ + 4.5823176, + 51.1427792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T07:53:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "image:0": [ + "https://i.imgur.com/CApde13.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123460484 + } + }, + { + "id": 123460405, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.9607471, + 54.4334619 + ], + [ + -2.9605092, + 54.4334619 + ], + [ + -2.9605092, + 54.4336106 + ], + [ + -2.9607471, + 54.4336106 + ], + [ + -2.9607471, + 54.4334619 + ] + ] + ] + }, + "properties": { + "check_user": "gurglypipe", + "reasons": [], + "tags": [], + "features": [], + "user": "Mark_S", + "uid": "82820", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T07:51:44Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "detached" + ], + "nohousenumber": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.53757300009036e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-07-11T15:03:23.168140Z", + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123460405 + } + }, + { + "id": 123457873, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8825265, + 50.9008287 + ], + [ + 3.8846089, + 50.9008287 + ], + [ + 3.8846089, + 50.9026147 + ], + [ + 3.8825265, + 50.9026147 + ], + [ + 3.8825265, + 50.9008287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlexanderReb", + "uid": "16447083", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T06:53:44Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000371916640000556, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 4, + "create": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 123457873 + } + }, + { + "id": 123456373, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2317284, + 50.8530122 + ], + [ + 4.3248045, + 50.8530122 + ], + [ + 4.3248045, + 51.2097688 + ], + [ + 3.2317284, + 51.2097688 + ], + [ + 3.2317284, + 50.8530122 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-11T06:12:56Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Copy Center" + ], + "shop": [ + "copyshop" + ], + "service:print:A0": [ + "yes", + "no" + ], + "service:print:A1": [ + "yes", + "no" + ], + "service:print:A2": [ + "yes", + "no" + ], + "service:print:A3": [ + "yes" + ], + "service:print:A4": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.389962112977257, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 2 + }, + "id": 123456373 + } + }, + { + "id": 123452760, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ], + [ + -73.2326157, + -39.8414862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-11T03:42:44Z", + "reviewed_features": [], + "tag_changes": { + "image:1": [ + "https://i.imgur.com/DT2UzH4.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 123452760 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-12.json b/Docs/Tools/stats/stats.2022-7-12.json new file mode 100644 index 0000000000..3e289befaf --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-12.json @@ -0,0 +1,3261 @@ +{ + "features": [ + { + "id": 123539087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1283817, + 39.9631764 + ], + [ + -86.1283817, + 39.9631764 + ], + [ + -86.1283817, + 39.9631764 + ], + [ + -86.1283817, + 39.9631764 + ], + [ + -86.1283817, + 39.9631764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T22:42:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "US_Forest_Service_roads", + "change_over_5000m": 1, + "change_within_500m": 3 + }, + "id": 123539087 + } + }, + { + "id": 123537005, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T20:56:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_1000m": 1 + }, + "id": 123537005 + } + }, + { + "id": 123536568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3679935, + 50.8585277 + ], + [ + 4.8358542, + 50.8585277 + ], + [ + 4.8358542, + 50.9854011 + ], + [ + 4.3679935, + 50.9854011 + ], + [ + 4.3679935, + 50.8585277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T20:40:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dF3ZYor.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0593590777353771, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "id": 123536568 + } + }, + { + "id": 123530414, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.8108088, + 12.2933577 + ], + [ + 91.7867131, + 12.2933577 + ], + [ + 91.7867131, + 30.726409 + ], + [ + 70.8108088, + 30.726409 + ], + [ + 70.8108088, + 12.2933577 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T17:32:44Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "hospital" + ], + "barrier": [ + "wall" + ], + "highway": [ + "tertiary", + "residential" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q1325652", + "Q715607", + "Q11359", + "Q9045", + "Q3521481", + "Q241900", + "Q231690", + "Q796591", + "Q1391321" + ] + }, + "create": 0, + "modify": 106, + "delete": 0, + "area": 386.649920025791, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 132, + "locale": "en", + "imagery": "osm" + }, + "id": 123530414 + } + }, + { + "id": 123526942, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3389398, + 50.8554437 + ], + [ + 4.3389398, + 50.8554437 + ], + [ + 4.3389398, + 50.8554437 + ], + [ + 4.3389398, + 50.8554437 + ], + [ + 4.3389398, + 50.8554437 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T15:49:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "id": 123526942 + } + }, + { + "id": 123525185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3444757, + 50.8696492 + ], + [ + 9.3447129, + 50.8696492 + ], + [ + 9.3447129, + 50.86979 + ], + [ + 9.3444757, + 50.86979 + ], + [ + 9.3444757, + 50.8696492 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "iD 2.21.1", + "comment": "Adding data with #MapComplete for theme", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Hesse DOP20", + "date": "2022-07-12T15:01:28Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ], + "operator": [ + "Stadt" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.33977600008265e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://www.openstreetmap.org/edit", + "locale": "de", + "hashtags": "#MapComplete", + "changesets_count": 10 + }, + "id": 123525185 + } + }, + { + "id": 123524309, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ], + [ + 13.3276934, + 52.4746317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miwie", + "uid": "57526", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T14:36:33Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-11" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123524309 + } + }, + { + "id": 123523395, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1299599, + 39.9783015 + ], + [ + -86.129592, + 39.9783015 + ], + [ + -86.129592, + 39.9783985 + ], + [ + -86.1299599, + 39.9783985 + ], + [ + -86.1299599, + 39.9783015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9883321348", + "name": "Carmel Bike Share", + "osm_id": 9883321348, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T14:13:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking", + "bicycle_library" + ], + "cargo_bike": [ + "no" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.56862999988313e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "US_Forest_Service_roads", + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 2 + }, + "id": 123523395 + } + }, + { + "id": 123523022, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5319971, + 50.8025429 + ], + [ + 4.5319971, + 50.8025429 + ], + [ + 4.5319971, + 50.8025429 + ], + [ + 4.5319971, + 50.8025429 + ], + [ + 4.5319971, + 50.8025429 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Visit Tervuren", + "uid": "16525640", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T14:01:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "id": 123523022 + } + }, + { + "id": 123522299, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6865672, + 50.1149765 + ], + [ + 8.6865672, + 50.1149765 + ], + [ + 8.6865672, + 50.1149765 + ], + [ + 8.6865672, + 50.1149765 + ], + [ + 8.6865672, + 50.1149765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T13:42:37Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "kerb" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123522299 + } + }, + { + "id": 123522092, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0222752, + 50.3444745 + ], + [ + 9.0222752, + 50.3444745 + ], + [ + 9.0222752, + 50.3444745 + ], + [ + 9.0222752, + 50.3444745 + ], + [ + 9.0222752, + 50.3444745 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T13:35:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "create": 1, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 2, + "deletion:node/9883245813": "testing point" + }, + "id": 123522092 + } + }, + { + "id": 123521283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5995594, + 50.9512467 + ], + [ + 3.6023274, + 50.9512467 + ], + [ + 3.6023274, + 50.9568487 + ], + [ + 3.5995594, + 50.9568487 + ], + [ + 3.5995594, + 50.9512467 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T13:13:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/94mRahu.jpg", + "https://i.imgur.com/Lr86Wi6.jpg", + "https://i.imgur.com/ayb12wr.jpg", + "https://i.imgur.com/qk9O01i.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000155063360000095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "id": 123521283 + } + }, + { + "id": 123519910, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1001478, + 50.2926791 + ], + [ + 9.1013065, + 50.2926791 + ], + [ + 9.1013065, + 50.2928213 + ], + [ + 9.1001478, + 50.2928213 + ], + [ + 9.1001478, + 50.2926791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T12:36:31Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 6, + "modify": 4, + "delete": 0, + "area": 1.6476713999888e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 11, + "create": 6, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 17 + }, + "id": 123519910 + } + }, + { + "id": 123519605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0998548, + 50.2895435 + ], + [ + 9.1046119, + 50.2895435 + ], + [ + 9.1046119, + 50.2910398 + ], + [ + 9.0998548, + 50.2910398 + ], + [ + 9.0998548, + 50.2895435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T12:29:02Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "road" + ], + "barrier": [ + "kerb" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "crossing", + "residential", + "primary" + ] + }, + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.00000711804872999865, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 12, + "create": 10, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 22 + }, + "id": 123519605 + } + }, + { + "id": 123519352, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6352727, + 50.2499464 + ], + [ + 8.6498762, + 50.2499464 + ], + [ + 8.6498762, + 50.256739 + ], + [ + 8.6352727, + 50.256739 + ], + [ + 8.6352727, + 50.2499464 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T12:24:08Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000991957341000606, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 6 + }, + "id": 123519352 + } + }, + { + "id": 123518163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3441644, + 50.8698144 + ], + [ + 9.3441644, + 50.8698144 + ], + [ + 9.3441644, + 50.8698144 + ], + [ + 9.3441644, + 50.8698144 + ], + [ + 9.3441644, + 50.8698144 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:57:38Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "rental" + ], + "amenity": [ + "bicycle_rental" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123518163 + } + }, + { + "id": 123517910, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3097383, + 50.8697569 + ], + [ + 9.3442905, + 50.8697569 + ], + [ + 9.3442905, + 50.8779489 + ], + [ + 9.3097383, + 50.8779489 + ], + [ + 9.3097383, + 50.8697569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:53:18Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00028305162240004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 5, + "create": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123517910 + } + }, + { + "id": 123517478, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6023241, + 50.9514423 + ], + [ + 3.6023241, + 50.9514423 + ], + [ + 3.6023241, + 50.9514423 + ], + [ + 3.6023241, + 50.9514423 + ], + [ + 3.6023241, + 50.9514423 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:45:16Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 1, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "deletion:node/8528356079": "testing point" + }, + "id": 123517478 + } + }, + { + "id": 123517283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3188122, + 50.8748549 + ], + [ + 9.3188122, + 50.8748549 + ], + [ + 9.3188122, + 50.8748549 + ], + [ + 9.3188122, + 50.8748549 + ], + [ + 9.3188122, + 50.8748549 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:41:27Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "caravan_site" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123517283 + } + }, + { + "id": 123517139, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3066028, + 50.8794616 + ], + [ + 9.3066028, + 50.8794616 + ], + [ + 9.3066028, + 50.8794616 + ], + [ + 9.3066028, + 50.8794616 + ], + [ + 9.3066028, + 50.8794616 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:38:52Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123517139 + } + }, + { + "id": 123517034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3141893, + 50.875913 + ], + [ + 9.323727, + 50.875913 + ], + [ + 9.323727, + 50.8782465 + ], + [ + 9.3141893, + 50.8782465 + ], + [ + 9.3141893, + 50.875913 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:36:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fire_station" + ], + "addr:place": [ + "Riebelsdorf", + "Rückershausen" + ], + "operator:type": [ + "ngo" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000222562229500552, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 4, + "locale": "de", + "imagery": "HDM_HOT" + }, + "id": 123517034 + } + }, + { + "id": 123516811, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3054226, + 50.8788369 + ], + [ + 9.3054226, + 50.8788369 + ], + [ + 9.3054226, + 50.8788369 + ], + [ + 9.3054226, + 50.8788369 + ], + [ + 9.3054226, + 50.8788369 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:32:04Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123516811 + } + }, + { + "id": 123516508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2922177, + 50.8776845 + ], + [ + 9.3143222, + 50.8776845 + ], + [ + 9.3143222, + 50.8962798 + ], + [ + 9.2922177, + 50.8962798 + ], + [ + 9.2922177, + 50.8776845 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:26:28Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "dog_excrement;plastic;trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000411039808850014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 3, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123516508 + } + }, + { + "id": 123516301, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3087137, + 50.8793023 + ], + [ + 9.3087137, + 50.8793023 + ], + [ + 9.3087137, + 50.8793023 + ], + [ + 9.3087137, + 50.8793023 + ], + [ + 9.3087137, + 50.8793023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:22:04Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123516301 + } + }, + { + "id": 123516050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3332078, + 50.8515033 + ], + [ + 4.3332078, + 50.8515033 + ], + [ + 4.3332078, + 50.8515033 + ], + [ + 4.3332078, + 50.8515033 + ], + [ + 4.3332078, + 50.8515033 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T11:16:57Z", + "reviewed_features": [], + "tag_changes": { + "fixme": [ + "Freeform tag `cuisine` used, to be doublechecked" + ], + "amenity": [ + "restaurant" + ], + "cuisine": [ + "breakfast" + ], + "takeaway": [ + "yes" + ], + "wheelchair": [ + "limited" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "limited" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "id": 123516050 + } + }, + { + "id": 123515973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.514584, + 50.5444601 + ], + [ + 8.5146283, + 50.5444601 + ], + [ + 8.5146283, + 50.5449527 + ], + [ + 8.514584, + 50.5449527 + ], + [ + 8.514584, + 50.5444601 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:15:21Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "3" + ], + "amenity": [ + "bench" + ], + "material": [ + "wood" + ], + "direction": [ + "284" + ], + "survey:date": [ + "2022-07-12" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.18221800004335e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 8, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123515973 + } + }, + { + "id": 123515759, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3086413, + 50.8829911 + ], + [ + 9.3089564, + 50.8829911 + ], + [ + 9.3089564, + 50.8866715 + ], + [ + 9.3086413, + 50.8866715 + ], + [ + 9.3086413, + 50.8829911 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TimBlumenauer", + "uid": "16525025", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T11:10:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000115969403999975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 4, + "create": 2, + "locale": "de", + "imagery": "osm", + "move:node/9882977876": "improve_accuracy" + }, + "id": 123515759 + } + }, + { + "id": 123513965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.1589455, + 28.3860632 + ], + [ + 77.2966603, + 28.3860632 + ], + [ + 77.2966603, + 28.6945214 + ], + [ + 77.1589455, + 28.6945214 + ], + [ + 77.1589455, + 28.3860632 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T10:32:46Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary" + ], + "leisure": [ + "stadium" + ], + "name:etymology:wikidata": [ + "Q16205193", + "Q6959192" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0424792593213594, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 123513965 + } + }, + { + "id": 123513059, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6012911, + 50.9007556 + ], + [ + 3.6012911, + 50.9007556 + ], + [ + 3.6012911, + 50.9007556 + ], + [ + 3.6012911, + 50.9007556 + ], + [ + 3.6012911, + 50.9007556 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T10:13:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/0XuHFgV.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123513059 + } + }, + { + "id": 123511246, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.349391, + 50.8532547 + ], + [ + 4.3500585, + 50.8532547 + ], + [ + 4.3500585, + 50.8534549 + ], + [ + 4.349391, + 50.8534549 + ], + [ + 4.349391, + 50.8532547 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T09:36:48Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "living_street" + ], + "cycleway": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.33633500001346e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123511246 + } + }, + { + "id": 123510338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5640763, + 53.0198777 + ], + [ + 6.5640763, + 53.0198777 + ], + [ + 6.5640763, + 53.0198777 + ], + [ + 6.5640763, + 53.0198777 + ], + [ + 6.5640763, + 53.0198777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T09:21:08Z", + "reviewed_features": [], + "tag_changes": { + "noname": [ + "yes" + ], + "amenity": [ + "public_bookcase" + ], + "nobrand": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 123510338 + } + }, + { + "id": 123507890, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7547815, + 51.0543547 + ], + [ + 3.754811, + 51.0543547 + ], + [ + 3.754811, + 51.0543763 + ], + [ + 3.7547815, + 51.0543763 + ], + [ + 3.7547815, + 51.0543547 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T08:40:30Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "doctors" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 6.37200000112763e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123507890 + } + }, + { + "id": 123507240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 20.6798315, + 49.0043284 + ], + [ + 21.2672299, + 49.0043284 + ], + [ + 21.2672299, + 49.3093435 + ], + [ + 20.6798315, + 49.3093435 + ], + [ + 20.6798315, + 49.0043284 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T08:32:55Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.17916538171584, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "move": 1, + "theme": "charging_stations", + "answer": 10, + "create": 5, + "locale": "de", + "imagery": "CartoDB.Voyager", + "move:node/9882637868": "improve_accuracy" + }, + "id": 123507240 + } + }, + { + "id": 123506946, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 20.9690708, + 49.1521785 + ], + [ + 20.9699017, + 49.1521785 + ], + [ + 20.9699017, + 49.1522925 + ], + [ + 20.9690708, + 49.1522925 + ], + [ + 20.9690708, + 49.1521785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T08:26:26Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 6, + "modify": 6, + "delete": 0, + "area": 9.47226000029553e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 9, + "create": 6, + "locale": "de", + "imagery": "osm", + "move:node/9882666500": "improve_accuracy" + }, + "id": 123506946 + } + }, + { + "id": 123506496, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 20.8783767, + 49.1519802 + ], + [ + 20.9671766, + 49.1519802 + ], + [ + 20.9671766, + 49.2608522 + ], + [ + 20.8783767, + 49.2608522 + ], + [ + 20.8783767, + 49.1519802 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T08:16:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00966782271280024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 123506496 + } + }, + { + "id": 123505300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.213656, + 51.2095519 + ], + [ + 3.2137156, + 51.2095519 + ], + [ + 3.2137156, + 51.2097069 + ], + [ + 3.213656, + 51.2097069 + ], + [ + 3.213656, + 51.2095519 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T07:54:34Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.23799999999261e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "rainbow_crossings", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123505300 + } + }, + { + "id": 123504800, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9746683, + 51.2524583 + ], + [ + 2.9747008, + 51.2524583 + ], + [ + 2.9747008, + 51.2524679 + ], + [ + 2.9746683, + 51.2524679 + ], + [ + 2.9746683, + 51.2524583 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T07:43:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Idc2szp.jpg", + "https://i.imgur.com/CdCiw6p.jpg" + ], + "amenity": [ + "charging_station", + "bicycle_repair_station" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.11999999952218e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 123504800 + } + }, + { + "id": 123503971, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0050615, + 49.1507551 + ], + [ + 20.968778, + 49.1507551 + ], + [ + 20.968778, + 50.3425215 + ], + [ + 9.0050615, + 50.3425215 + ], + [ + 9.0050615, + 49.1507551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Richiii", + "uid": "16508603", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T07:26:05Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30", + "50" + ] + }, + "create": 0, + "modify": 18, + "delete": 0, + "area": 14.2579553438256, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 18, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 123503971 + } + }, + { + "id": 123503961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T07:25:51Z", + "reviewed_features": [], + "tag_changes": { + "survey:date": [ + "2022-07-12" + ], + "opening_hours": [ + "24/7" + ], + "defibrillator:location": [ + "Op de muur, vlak bij de hoek van het gebouw", + "On wall, near corner of building" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "id": 123503961 + } + }, + { + "id": 123503896, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ], + [ + 6.5337258, + 53.2412012 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T07:24:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 123503896 + } + }, + { + "id": 123503619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6863661, + 50.114875 + ], + [ + 8.6864385, + 50.114875 + ], + [ + 8.6864385, + 50.114961 + ], + [ + 8.6863661, + 50.114961 + ], + [ + 8.6863661, + 50.114875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "symtll", + "uid": "16362995", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T07:18:59Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.22640000011988e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "id": 123503619 + } + }, + { + "id": 123500798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0555614, + 48.5142707 + ], + [ + 9.0566021, + 48.5142707 + ], + [ + 9.0566021, + 48.5146322 + ], + [ + 9.0555614, + 48.5146322 + ], + [ + 9.0555614, + 48.5142707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-12T06:11:10Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 6, + "modify": 1, + "delete": 0, + "area": 3.762130500037e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 1, + "theme": "street_lighting", + "create": 6, + "locale": "de", + "imagery": "Mapbox", + "change_over_5000m": 6, + "change_within_25m": 1, + "move:node/9882447303": "improve_accuracy" + }, + "id": 123500798 + } + }, + { + "id": 123500387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4669206, + 50.8169471 + ], + [ + 3.4669206, + 50.8169471 + ], + [ + 3.4669206, + 50.8169471 + ], + [ + 3.4669206, + 50.8169471 + ], + [ + 3.4669206, + 50.8169471 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T05:59:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/hu3q0Ri.jpg" + ], + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123500387 + } + }, + { + "id": 123496828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.2166965, + 11.8175209 + ], + [ + 88.3533848, + 11.8175209 + ], + [ + 88.3533848, + 22.7617837 + ], + [ + 76.2166965, + 22.7617837 + ], + [ + 76.2166965, + 11.8175209 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-12T03:45:47Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q382027", + "Q2652624" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 132.827106276885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 123496828 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-13.json b/Docs/Tools/stats/stats.2022-7-13.json new file mode 100644 index 0000000000..51a87738b3 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-13.json @@ -0,0 +1,2527 @@ +{ + "features": [ + { + "id": 123583324, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3942232, + 51.04045 + ], + [ + 3.3989598, + 51.04045 + ], + [ + 3.3989598, + 51.0424636 + ], + [ + 3.3942232, + 51.0424636 + ], + [ + 3.3942232, + 51.04045 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T22:38:41Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "De Brug" + ], + "email": [ + "info@tomdebaets.be" + ], + "amenity": [ + "restaurant", + "recycling", + "dentist", + "doctors", + "bicycle_parking" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 3, + "area": 0.0000095376177599907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 4, + "locale": "en", + "imagery": "osm", + "deletion": 3, + "change_within_100m": 1, + "change_within_500m": 5, + "deletion:node/7842744387": "disused", + "deletion:node/7842744388": "disused", + "deletion:node/7842746742": "disused" + }, + "id": 123583324 + } + }, + { + "id": 123582881, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3343652, + 50.8526095 + ], + [ + 4.3347668, + 50.8526095 + ], + [ + 4.3347668, + 50.853048 + ], + [ + 4.3343652, + 50.853048 + ], + [ + 4.3343652, + 50.8526095 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T22:16:08Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "hostel" + ], + "building": [ + "hotel" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.76101600000539e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2, + "change_within_100m": 2 + }, + "id": 123582881 + } + }, + { + "id": 123581789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4632837, + 50.7412053 + ], + [ + 3.557482, + 50.7412053 + ], + [ + 3.557482, + 50.7532739 + ], + [ + 3.4632837, + 50.7532739 + ], + [ + 3.4632837, + 50.7412053 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T21:25:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/IU2TrTj.jpg", + "https://i.imgur.com/ubN3KVM.jpg", + "https://i.imgur.com/hGR9tuH.jpg", + "https://i.imgur.com/mNxojzV.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00113684160338059, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "id": 123581789 + } + }, + { + "id": 123580447, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.742891, + 50.9455809 + ], + [ + 3.8040841, + 50.9455809 + ], + [ + 3.8040841, + 50.9943685 + ], + [ + 3.742891, + 50.9943685 + ], + [ + 3.742891, + 50.9455809 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T20:39:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/pOs0YVB.jpg", + "https://i.imgur.com/lM5VumJ.jpg" + ], + "tourism": [ + "information" + ], + "map_source": [ + "openstreetmap.org/relation/1135915", + "openstreetmap.org/relation/1992867" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00298546448555981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123580447 + } + }, + { + "id": 123578265, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5338631, + 50.8408215 + ], + [ + 3.5338631, + 50.8408215 + ], + [ + 3.5338631, + 50.8408215 + ], + [ + 3.5338631, + 50.8408215 + ], + [ + 3.5338631, + 50.8408215 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T19:27:17Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/I2Z2Zww.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123578265 + } + }, + { + "id": 123577170, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3367176, + 50.8525364 + ], + [ + 4.3388345, + 50.8525364 + ], + [ + 4.3388345, + 50.8540375 + ], + [ + 4.3367176, + 50.8540375 + ], + [ + 4.3367176, + 50.8525364 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T18:49:34Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000317767858999705, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "answer": 3, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_50m": 4 + }, + "id": 123577170 + } + }, + { + "id": 123576595, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.2415137, + 53.304136 + ], + [ + 14.2469566, + 53.304136 + ], + [ + 14.2469566, + 53.3062177 + ], + [ + 14.2415137, + 53.3062177 + ], + [ + 14.2415137, + 53.304136 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T18:30:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000113304849299894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123576595 + } + }, + { + "id": 123576498, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6606496, + 50.9014988 + ], + [ + 3.6612496, + 50.9014988 + ], + [ + 3.6612496, + 50.902276 + ], + [ + 3.6606496, + 50.902276 + ], + [ + 3.6606496, + 50.9014988 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T18:26:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/vE5fIdH.jpg" + ], + "leisure": [ + "playground" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.66320000000968e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123576498 + } + }, + { + "id": 123576355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3926468, + 50.975754 + ], + [ + 4.3927765, + 50.975754 + ], + [ + 4.3927765, + 50.975898 + ], + [ + 4.3926468, + 50.975898 + ], + [ + 4.3926468, + 50.975754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janimatie", + "uid": "15735226", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T18:21:03Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dP944Qu.jpg", + "https://i.imgur.com/LbY8H6X.jpg", + "https://i.imgur.com/vcPZ0Yn.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.86767999999113e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_within_500m": 4 + }, + "id": 123576355 + } + }, + { + "id": 123575910, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5514969, + 50.8702317 + ], + [ + 3.5514969, + 50.8702317 + ], + [ + 3.5514969, + 50.8702317 + ], + [ + 3.5514969, + 50.8702317 + ], + [ + 3.5514969, + 50.8702317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T18:04:54Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dLl8mHz.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123575910 + } + }, + { + "id": 123573901, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3907064, + 50.8576985 + ], + [ + 4.3907631, + 50.8576985 + ], + [ + 4.3907631, + 50.8577816 + ], + [ + 4.3907064, + 50.8577816 + ], + [ + 4.3907064, + 50.8576985 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T17:03:00Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/bbvt3Ya.jpg", + "https://i.imgur.com/994DnyS.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "capacity": [ + "6" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 4.71177000027255e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "UrbISOrtho", + "add-image": 3 + }, + "id": 123573901 + } + }, + { + "id": 123573298, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3382987, + 50.8527023 + ], + [ + 4.3382987, + 50.8527023 + ], + [ + 4.3382987, + 50.8527023 + ], + [ + 4.3382987, + 50.8527023 + ], + [ + 4.3382987, + 50.8527023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T16:44:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123573298 + } + }, + { + "id": 123573111, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3385817, + 50.8525592 + ], + [ + 4.3385817, + 50.8525592 + ], + [ + 4.3385817, + 50.8525592 + ], + [ + 4.3385817, + 50.8525592 + ], + [ + 4.3385817, + 50.8525592 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T16:37:09Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "fitness_station" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "fitness_station", + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 123573111 + } + }, + { + "id": 123570562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2844324, + 50.8089564 + ], + [ + 4.2844324, + 50.8089564 + ], + [ + 4.2844324, + 50.8089564 + ], + [ + 4.2844324, + 50.8089564 + ], + [ + 4.2844324, + 50.8089564 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T15:27:55Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123570562 + } + }, + { + "id": 123569966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5511951, + 50.8698674 + ], + [ + 3.5808711, + 50.8698674 + ], + [ + 3.5808711, + 50.8837289 + ], + [ + 3.5511951, + 50.8837289 + ], + [ + 3.5511951, + 50.8698674 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T15:13:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/AfMgIb2.jpg", + "https://i.imgur.com/1IjhL0n.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000411353874000128, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 123569966 + } + }, + { + "id": 123568212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5671514, + 53.0305795 + ], + [ + 6.5715972, + 53.0305795 + ], + [ + 6.5715972, + 53.0314796 + ], + [ + 6.5671514, + 53.0314796 + ], + [ + 6.5671514, + 53.0305795 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T14:25:54Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.00000400166457998013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://localhost:1234/theme.html", + "theme": "street_lighting_assen", + "create": 1, + "import": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5 + }, + "id": 123568212 + } + }, + { + "id": 123567799, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5565109, + 50.8930177 + ], + [ + 3.5565109, + 50.8930177 + ], + [ + 3.5565109, + 50.8930177 + ], + [ + 3.5565109, + 50.8930177 + ], + [ + 3.5565109, + 50.8930177 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9399512656", + "osm_id": 9399512656, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T14:15:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/gX4ny5v.jpg" + ], + "amenity": [ + "binoculars" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123567799 + } + }, + { + "id": 123566608, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5514928, + 50.8898673 + ], + [ + 3.5514928, + 50.8898673 + ], + [ + 3.5514928, + 50.8898673 + ], + [ + 3.5514928, + 50.8898673 + ], + [ + 3.5514928, + 50.8898673 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T13:47:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/hkLzjem.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123566608 + } + }, + { + "id": 123562801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5594674, + 52.9945342 + ], + [ + 6.5595607, + 52.9945342 + ], + [ + 6.5595607, + 52.9945592 + ], + [ + 6.5594674, + 52.9945592 + ], + [ + 6.5594674, + 52.9945342 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T12:11:16Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.33250000006818e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 3 + }, + "id": 123562801 + } + }, + { + "id": 123562789, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.4150697, + 39.50862 + ], + [ + -0.4150697, + 39.50862 + ], + [ + -0.4150697, + 39.50862 + ], + [ + -0.4150697, + 39.50862 + ], + [ + -0.4150697, + 39.50862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MrAldisa", + "uid": "5006221", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T12:11:03Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing": [ + "uncontrolled", + "marked" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123562789 + } + }, + { + "id": 123561105, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 44.0076953, + 56.3289023 + ], + [ + 44.0089211, + 56.3289023 + ], + [ + 44.0089211, + 56.3300142 + ], + [ + 44.0076953, + 56.3300142 + ], + [ + 44.0076953, + 56.3289023 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T11:35:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000136296701999779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "create": 2, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 123561105 + } + }, + { + "id": 123559287, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.562502, + 50.9413953 + ], + [ + 3.596977, + 50.9413953 + ], + [ + 3.596977, + 50.9604303 + ], + [ + 3.562502, + 50.9604303 + ], + [ + 3.562502, + 50.9413953 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T10:53:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/EOPG9mX.jpg", + "https://i.imgur.com/EFE2Yxj.jpg", + "https://i.imgur.com/jWdoVqx.jpg" + ], + "route": [ + "bicycle" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000656231624999837, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 123559287 + } + }, + { + "id": 123555663, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5687446, + 53.0315828 + ], + [ + 6.5687446, + 53.0315828 + ], + [ + 6.5687446, + 53.0315828 + ], + [ + 6.5687446, + 53.0315828 + ], + [ + 6.5687446, + 53.0315828 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T09:46:30Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://localhost:1234/theme.html", + "theme": "street_lighting_assen", + "import": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123555663 + } + }, + { + "id": 123551822, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3495739, + 53.2272169 + ], + [ + 6.3495739, + 53.2272169 + ], + [ + 6.3495739, + 53.2272169 + ], + [ + 6.3495739, + 53.2272169 + ], + [ + 6.3495739, + 53.2272169 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T08:33:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/E9VN8Mf.jpg" + ], + "amenity": [ + "waste_basket" + ], + "not:vending": [ + "dog_excrement_bag" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123551822 + } + }, + { + "id": 123551791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3495438, + 53.2272128 + ], + [ + 6.3495438, + 53.2272128 + ], + [ + 6.3495438, + 53.2272128 + ], + [ + 6.3495438, + 53.2272128 + ], + [ + 6.3495438, + 53.2272128 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T08:33:09Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/D08PGeC.jpg" + ], + "colour": [ + "black" + ], + "amenity": [ + "bench" + ], + "material": [ + "plastic" + ], + "survey:date": [ + "2022-07-13" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 123551791 + } + }, + { + "id": 123551582, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.7367824, + 44.4245821 + ], + [ + 6.7367824, + 44.4245821 + ], + [ + 6.7367824, + 44.4245821 + ], + [ + 6.7367824, + 44.4245821 + ], + [ + 6.7367824, + 44.4245821 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T08:28:55Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 123551582 + } + }, + { + "id": 123550356, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:59:48Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "opening_hours": [ + "24/7" + ], + "authentication:none": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 2 + }, + "id": 123550356 + } + }, + { + "id": 123550329, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ], + [ + 4.1721384, + 50.8861478 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:59:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_500m": 2 + }, + "id": 123550329 + } + }, + { + "id": 123550018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1723395, + 50.8853992 + ], + [ + 4.1729954, + 50.8853992 + ], + [ + 4.1729954, + 50.8859825 + ], + [ + 4.1723395, + 50.8859825 + ], + [ + 4.1723395, + 50.8853992 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:53:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 4, + "modify": 5, + "delete": 0, + "area": 3.82586469996871e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 20, + "create": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 5, + "change_within_25m": 11, + "change_within_100m": 10 + }, + "id": 123550018 + } + }, + { + "id": 123549605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.4083808, + 53.2440872 + ], + [ + 6.4087947, + 53.2440872 + ], + [ + 6.4087947, + 53.2444001 + ], + [ + 6.4083808, + 53.2444001 + ], + [ + 6.4083808, + 53.2440872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:44:46Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "gray" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "direction": [ + "354" + ], + "survey:date": [ + "2022-07-13" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.29509309998831e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 3, + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 9, + "move:node/3340768220": "improve_accuracy", + "move:node/3340768221": "improve_accuracy", + "move:node/3340768222": "improve_accuracy" + }, + "id": 123549605 + } + }, + { + "id": 123549269, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.408385, + 53.2436763 + ], + [ + 6.4089189, + 53.2436763 + ], + [ + 6.4089189, + 53.2443918 + ], + [ + 6.408385, + 53.2443918 + ], + [ + 6.408385, + 53.2436763 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:37:21Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 11, + "modify": 7, + "delete": 0, + "area": 3.82005450002718e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 20, + "create": 11, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 11, + "change_within_25m": 22 + }, + "id": 123549269 + } + }, + { + "id": 123549234, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6053385, + 49.9739277 + ], + [ + 5.6090991, + 49.9739277 + ], + [ + 5.6090991, + 49.9763404 + ], + [ + 5.6053385, + 49.9763404 + ], + [ + 5.6053385, + 49.9739277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-13T07:36:34Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "addr:street": [ + "Poisson-Moulin" + ], + "addr:housenumber": [ + "18" + ], + "source:geometry:ref": [ + "Picc/104042" + ], + "source:geometry:date": [ + "2016-06-21" + ] + }, + "create": 86, + "modify": 11, + "delete": 0, + "area": 0.00000907319962000188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "move": 10, + "theme": "grb", + "import": 22, + "locale": "en", + "imagery": "osm", + "conflation": 2 + }, + "id": 123549234 + } + }, + { + "id": 123549223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.4083587, + 53.0199525 + ], + [ + 6.5650606, + 53.0199525 + ], + [ + 6.5650606, + 53.2443981 + ], + [ + 6.4083587, + 53.2443981 + ], + [ + 6.4083587, + 53.0199525 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:36:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/kTK4fja.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "recycling", + "waste_disposal", + "waste_basket" + ], + "opening_hours": [ + "24/7" + ], + "recycling:glass": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0351710519666393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 5 + }, + "id": 123549223 + } + }, + { + "id": 123548310, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8009799, + 43.3224615 + ], + [ + -3.8009799, + 43.3224615 + ], + [ + -3.8009799, + 43.3224615 + ], + [ + -3.8009799, + 43.3224615 + ], + [ + -3.8009799, + 43.3224615 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-13T07:16:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 123548310 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-14.json b/Docs/Tools/stats/stats.2022-7-14.json new file mode 100644 index 0000000000..2ef1a4d4bc --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-14.json @@ -0,0 +1,4095 @@ +{ + "features": [ + { + "id": 123627638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3530562, + 50.8494852 + ], + [ + 4.3530562, + 50.8494852 + ], + [ + 4.3530562, + 50.8494852 + ], + [ + 4.3530562, + 50.8494852 + ], + [ + 4.3530562, + 50.8494852 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T22:12:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/iTiLW6w.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123627638 + } + }, + { + "id": 123625442, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6487727, + 53.0449022 + ], + [ + 13.8482269, + 53.0449022 + ], + [ + 13.8482269, + 53.2139148 + ], + [ + 13.6487727, + 53.2139148 + ], + [ + 13.6487727, + 53.0449022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mathias Jordan", + "uid": "16545675", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T20:48:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.033710272922919, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123625442 + } + }, + { + "id": 123625070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2573601, + 53.2286934 + ], + [ + 6.2574039, + 53.2286934 + ], + [ + 6.2574039, + 53.2329848 + ], + [ + 6.2573601, + 53.2329848 + ], + [ + 6.2573601, + 53.2286934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T20:37:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.879633200011e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "id": 123625070 + } + }, + { + "id": 123625047, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2573982, + 53.2286609 + ], + [ + 6.2574374, + 53.2286609 + ], + [ + 6.2574374, + 53.2329659 + ], + [ + 6.2573982, + 53.2329659 + ], + [ + 6.2573982, + 53.2286609 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T20:37:16Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/XNdhtJY.jpg", + "https://i.imgur.com/blIIay5.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.68755999999204e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 123625047 + } + }, + { + "id": 123625006, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2573315, + 53.232939 + ], + [ + 6.2574374, + 53.232939 + ], + [ + 6.2574374, + 53.2329793 + ], + [ + 6.2573315, + 53.2329793 + ], + [ + 6.2573315, + 53.232939 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T20:36:05Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/GHRUOQn.jpg" + ], + "seats": [ + "4" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "material": [ + "wood" + ], + "direction": [ + "263" + ], + "survey:date": [ + "2022-07-14" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.26776999943575e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_within_25m": 8, + "move:node/2961150141": "improve_accuracy" + }, + "id": 123625006 + } + }, + { + "id": 123624840, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2571392, + 53.2329686 + ], + [ + 6.2623586, + 53.2329686 + ], + [ + 6.2623586, + 53.2357434 + ], + [ + 6.2571392, + 53.2357434 + ], + [ + 6.2571392, + 53.2329686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T20:31:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000144827911199855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "id": 123624840 + } + }, + { + "id": 123624359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1261967, + 45.856786 + ], + [ + 6.711281, + 45.856786 + ], + [ + 6.711281, + 50.9451273 + ], + [ + 3.1261967, + 50.9451273 + ], + [ + 3.1261967, + 45.856786 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T20:16:51Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "0" + ], + "access": [ + "yes" + ], + "amenity": [ + "place_of_worship" + ], + "building": [ + "yes", + "church" + ] + }, + "create": 3, + "modify": 12, + "delete": 0, + "area": 18.2421325076716, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 21, + "create": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 29 + }, + "id": 123624359 + } + }, + { + "id": 123623904, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.842235, + 50.9133423 + ], + [ + 3.842235, + 50.9133423 + ], + [ + 3.842235, + 50.9133423 + ], + [ + 3.842235, + 50.9133423 + ], + [ + 3.842235, + 50.9133423 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T20:06:09Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/IwKNXN2.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123623904 + } + }, + { + "id": 123623175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3466049, + 51.6684015 + ], + [ + 14.3466049, + 51.6684015 + ], + [ + 14.3466049, + 51.6684015 + ], + [ + 14.3466049, + 51.6684015 + ], + [ + 14.3466049, + 51.6684015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T19:43:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123623175 + } + }, + { + "id": 123623127, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3537472, + 50.8614361 + ], + [ + 4.3537472, + 50.8614361 + ], + [ + 4.3537472, + 50.8614361 + ], + [ + 4.3537472, + 50.8614361 + ], + [ + 4.3537472, + 50.8614361 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T19:41:32Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/4swXfCC.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 123623127 + } + }, + { + "id": 123621853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5186683, + 50.5592132 + ], + [ + 8.5186683, + 50.5592132 + ], + [ + 8.5186683, + 50.5592132 + ], + [ + 8.5186683, + 50.5592132 + ], + [ + 8.5186683, + 50.5592132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:54:14Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "viewpoint" + ], + "elevator": [ + "no" + ], + "historic": [ + "yes" + ], + "man_made": [ + "tower" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123621853 + } + }, + { + "id": 123621793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5147261, + 50.544431 + ], + [ + 8.5186683, + 50.544431 + ], + [ + 8.5186683, + 50.5592132 + ], + [ + 8.5147261, + 50.5592132 + ], + [ + 8.5147261, + 50.544431 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:52:33Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "guided" + ], + "height": [ + "30 m" + ], + "tourism": [ + "viewpoint" + ], + "website": [ + "https://de.wikipedia.org/wiki/Br%C3%BChlsbacher_Warte" + ], + "man_made": [ + "tower" + ], + "operator": [ + "Stadt Wetzlar (4 Türme Weg)" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000582743888399833, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 123621793 + } + }, + { + "id": 123621751, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5260286, + 50.529657 + ], + [ + 8.5262354, + 50.529657 + ], + [ + 8.5262354, + 50.5297553 + ], + [ + 8.5260286, + 50.5297553 + ], + [ + 8.5260286, + 50.529657 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:51:18Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "height": [ + "20 m" + ], + "building": [ + "yes" + ], + "elevator": [ + "no" + ], + "man_made": [ + "tower" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.03284399994249e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/observation_towers.html", + "theme": "observation_towers", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 123621751 + } + }, + { + "id": 123621481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4590891, + 50.5259901 + ], + [ + 8.4877405, + 50.5259901 + ], + [ + 8.4877405, + 50.5409423 + ], + [ + 8.4590891, + 50.5409423 + ], + [ + 8.4590891, + 50.5259901 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:42:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000428401463079881, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123621481 + } + }, + { + "id": 123621468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7230132, + 53.0752917 + ], + [ + 13.7230132, + 53.0752917 + ], + [ + 13.7230132, + 53.0752917 + ], + [ + 13.7230132, + 53.0752917 + ], + [ + 13.7230132, + 53.0752917 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piatkowskiflori", + "uid": "16545594", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T18:42:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123621468 + } + }, + { + "id": 123621382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9641853, + 48.8335071 + ], + [ + 12.9641853, + 48.8335071 + ], + [ + 12.9641853, + 48.8335071 + ], + [ + 12.9641853, + 48.8335071 + ], + [ + 12.9641853, + 48.8335071 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T18:38:27Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/zjE0M1J.jpg" + ], + "indoor": [ + "no" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123621382 + } + }, + { + "id": 123621151, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9605191, + 48.8329294 + ], + [ + 12.9640151, + 48.8329294 + ], + [ + 12.9640151, + 48.8336766 + ], + [ + 12.9605191, + 48.8336766 + ], + [ + 12.9605191, + 48.8329294 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T18:30:55Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/i5Czobp.jpg", + "https://i.imgur.com/CWx9vrZ.jpg", + "https://i.imgur.com/i5K5OkI.jpg" + ], + "amenity": [ + "drinking_water" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000261221119999629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_within_25m": 6 + }, + "id": 123621151 + } + }, + { + "id": 123621088, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9620207, + 48.8329258 + ], + [ + 12.9620207, + 48.8329258 + ], + [ + 12.9620207, + 48.8329258 + ], + [ + 12.9620207, + 48.8329258 + ], + [ + 12.9620207, + 48.8329258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T18:28:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/97tp1f5.jpg" + ], + "access": [ + "yes" + ], + "defibrillator:location": [ + "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich. Visible from the street directly on the outer wall. Accessible at any time.", + "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich.\nVisible from the street directly on the outer wall. Accessible at any time." + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123621088 + } + }, + { + "id": 123620962, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5329719, + 50.5529775 + ], + [ + 8.5329719, + 50.5529775 + ], + [ + 8.5329719, + 50.5529775 + ], + [ + 8.5329719, + 50.5529775 + ], + [ + 8.5329719, + 50.5529775 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:24:30Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "maxstay": [ + "unlimited" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "payment:cards": [ + "no" + ], + "payment:membership_card": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620962 + } + }, + { + "id": 123620887, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5329719, + 50.5529775 + ], + [ + 8.5333071, + 50.5529775 + ], + [ + 8.5333071, + 50.5530862 + ], + [ + 8.5329719, + 50.5530862 + ], + [ + 8.5329719, + 50.5529775 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:22:43Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ], + "maxstay": [ + "unlimited" + ], + "network": [ + "Enwag" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 3.64362400018819e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 8, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620887 + } + }, + { + "id": 123620884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5333071, + 50.5530862 + ], + [ + 8.5333071, + 50.5530862 + ], + [ + 8.5333071, + 50.5530862 + ], + [ + 8.5333071, + 50.5530862 + ], + [ + 8.5333071, + 50.5530862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:22:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620884 + } + }, + { + "id": 123620618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5333071, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5530862 + ], + [ + 8.5333071, + 50.5530862 + ], + [ + 8.5333071, + 50.5382418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:15:35Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "network": [ + "Enwag" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "socket:type1:current": [ + "32 A" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000583859940800125, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620618 + } + }, + { + "id": 123620597, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:15:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620597 + } + }, + { + "id": 123620588, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:14:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620588 + } + }, + { + "id": 123620576, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ], + [ + 8.5372403, + 50.5382418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:14:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123620576 + } + }, + { + "id": 123620174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4760269, + 50.5322024 + ], + [ + 8.4953499, + 50.5322024 + ], + [ + 8.4953499, + 50.5493194 + ], + [ + 8.4760269, + 50.5493194 + ], + [ + 8.4760269, + 50.5322024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T18:03:23Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "3", + "4" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "103", + "162", + "324" + ], + "survey:date": [ + "2022-07-14" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000330751790999979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 11, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123620174 + } + }, + { + "id": 123620138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.242761, + 50.7348997 + ], + [ + 4.242761, + 50.7348997 + ], + [ + 4.242761, + 50.7348997 + ], + [ + 4.242761, + 50.7348997 + ], + [ + 4.242761, + 50.7348997 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T18:02:04Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 2 + }, + "id": 123620138 + } + }, + { + "id": 123618326, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3503419, + 52.3227754 + ], + [ + 7.3503419, + 52.3227754 + ], + [ + 7.3503419, + 52.3227754 + ], + [ + 7.3503419, + 52.3227754 + ], + [ + 7.3503419, + 52.3227754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stinkmoloch", + "uid": "1698926", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T17:07:02Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "email": [ + "info@fahrrad-wanning.de" + ], + "phone": [ + "+49 5976 948450" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 2 + }, + "id": 123618326 + } + }, + { + "id": 123618296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7191719, + 53.0564032 + ], + [ + 13.7553281, + 53.0564032 + ], + [ + 13.7553281, + 53.1465741 + ], + [ + 13.7191719, + 53.1465741 + ], + [ + 13.7191719, + 53.0564032 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kusch", + "uid": "16545427", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T17:06:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0032602370945802, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123618296 + } + }, + { + "id": 123618212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8040421, + 53.1610486 + ], + [ + 13.8040682, + 53.1610486 + ], + [ + 13.8040682, + 53.1610528 + ], + [ + 13.8040421, + 53.1610528 + ], + [ + 13.8040421, + 53.1610486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Davidsohn", + "uid": "16545422", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T17:03:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.09619999980658e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123618212 + } + }, + { + "id": 123618140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7471712, + 53.1687541 + ], + [ + 13.7471712, + 53.1687541 + ], + [ + 13.7471712, + 53.1687541 + ], + [ + 13.7471712, + 53.1687541 + ], + [ + 13.7471712, + 53.1687541 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Olli FFW", + "uid": "16545420", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T17:00:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123618140 + } + }, + { + "id": 123618133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7553549, + 53.1319227 + ], + [ + 13.7553549, + 53.1319227 + ], + [ + 13.7553549, + 53.1319227 + ], + [ + 13.7553549, + 53.1319227 + ], + [ + 13.7553549, + 53.1319227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T17:00:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123618133 + } + }, + { + "id": 123617797, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3353671, + 52.4741701 + ], + [ + 13.3353671, + 52.4741701 + ], + [ + 13.3353671, + 52.4741701 + ], + [ + 13.3353671, + 52.4741701 + ], + [ + 13.3353671, + 52.4741701 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wikinaut", + "uid": "120965", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T16:49:48Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-14", + "2020-09-11" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123617797 + } + }, + { + "id": 123617278, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.0700356, + 40.0035473 + ], + [ + -86.0700356, + 40.0035473 + ], + [ + -86.0700356, + 40.0035473 + ], + [ + -86.0700356, + 40.0035473 + ], + [ + -86.0700356, + 40.0035473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T16:32:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123617278 + } + }, + { + "id": 123616728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0035812, + 49.5932311 + ], + [ + 11.0048521, + 49.5932311 + ], + [ + 11.0048521, + 49.5973048 + ], + [ + 11.0035812, + 49.5973048 + ], + [ + 11.0035812, + 49.5932311 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FranoX", + "uid": "6558525", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T16:16:37Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "-1" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "no" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000517726533001431, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 10, + "locale": "de", + "imagery": "osm" + }, + "id": 123616728 + } + }, + { + "id": 123616349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0017464, + 49.5937231 + ], + [ + 11.0329543, + 49.5937231 + ], + [ + 11.0329543, + 49.6013006 + ], + [ + 11.0017464, + 49.6013006 + ], + [ + 11.0017464, + 49.5937231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FranoX", + "uid": "6558525", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T16:05:39Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified", + "footway", + "cycleway", + "pedestrian", + "living_street", + "disused", + "service" + ], + "name:etymology:wikidata": [ + "Q5879", + "Q2667", + "Q8442", + "Q101935", + "Q76323" + ] + }, + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.000236477862250112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 71, + "locale": "de", + "imagery": "osm" + }, + "id": 123616349 + } + }, + { + "id": 123614214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0835619, + 53.1141719 + ], + [ + 6.0837026, + 53.1141719 + ], + [ + 6.0837026, + 53.1151349 + ], + [ + 6.0835619, + 53.1151349 + ], + [ + 6.0835619, + 53.1141719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T15:03:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.35494099999172e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 123614214 + } + }, + { + "id": 123612418, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3085216, + 50.986428 + ], + [ + 11.3085216, + 50.986428 + ], + [ + 11.3085216, + 50.986428 + ], + [ + 11.3085216, + 50.986428 + ], + [ + 11.3085216, + 50.986428 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gartenfreund", + "uid": "5123448", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T14:15:43Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "EsriWorldImagery", + "change_over_5000m": 1, + "change_within_1000m": 2 + }, + "id": 123612418 + } + }, + { + "id": 123611712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.5085103, + 48.435458 + ], + [ + 9.5085103, + 48.435458 + ], + [ + 9.5085103, + 48.435458 + ], + [ + 9.5085103, + 48.435458 + ], + [ + 9.5085103, + 48.435458 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T13:56:33Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/rS5d5uL.jpg" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123611712 + } + }, + { + "id": 123611469, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3541549, + 50.8489746 + ], + [ + 4.3543695, + 50.8489746 + ], + [ + 4.3543695, + 50.8490417 + ], + [ + 4.3541549, + 50.8490417 + ], + [ + 4.3541549, + 50.8489746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T13:49:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.43996600005197e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123611469 + } + }, + { + "id": 123611387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.5086042, + 48.4356241 + ], + [ + 9.5086042, + 48.4356241 + ], + [ + 9.5086042, + 48.4356241 + ], + [ + 9.5086042, + 48.4356241 + ], + [ + 9.5086042, + 48.4356241 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T13:47:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9eNDZ4u.jpg" + ], + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "valves": [ + "sclaverand;dunlop;schrader" + ], + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "id": 123611387 + } + }, + { + "id": 123611264, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3523036, + 50.8486237 + ], + [ + 4.3568698, + 50.8486237 + ], + [ + 4.3568698, + 50.8509287 + ], + [ + 4.3523036, + 50.8509287 + ], + [ + 4.3523036, + 50.8486237 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T13:44:54Z", + "reviewed_features": [], + "tag_changes": { + "bicycle": [ + "yes", + "no" + ], + "highway": [ + "crossing" + ], + "tactile_paving": [ + "no" + ], + "crossing:island": [ + "no" + ] + }, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000105250909999994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "id": 123611264 + } + }, + { + "id": 123609185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8668697, + 50.9147932 + ], + [ + 3.8668697, + 50.9147932 + ], + [ + 3.8668697, + 50.9147932 + ], + [ + 3.8668697, + 50.9147932 + ], + [ + 3.8668697, + 50.9147932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T12:57:48Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/TyICYof.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123609185 + } + }, + { + "id": 123608457, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.1531052, + 47.2650918 + ], + [ + 11.2536746, + 47.2650918 + ], + [ + 11.2536746, + 47.2853173 + ], + [ + 11.1531052, + 47.2853173 + ], + [ + 11.1531052, + 47.2650918 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "robelix", + "uid": "106509", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T12:40:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00203406639970021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 1, + "create": 2, + "locale": "en", + "imagery": "basemap.at-orthofoto", + "move:node/9887293853": "improve_accuracy" + }, + "id": 123608457 + } + }, + { + "id": 123608350, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.064464, + 48.8763218 + ], + [ + 13.064464, + 48.8763218 + ], + [ + 13.064464, + 48.8763218 + ], + [ + 13.064464, + 48.8763218 + ], + [ + 13.064464, + 48.8763218 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T12:38:00Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VP2ZtyB.jpg" + ], + "access": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123608350 + } + }, + { + "id": 123608313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0644565, + 48.8763257 + ], + [ + 13.0644565, + 48.8763257 + ], + [ + 13.0644565, + 48.8763257 + ], + [ + 13.0644565, + 48.8763257 + ], + [ + 13.0644565, + 48.8763257 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T12:37:20Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5aerUVp.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 123608313 + } + }, + { + "id": 123607966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2269935, + 50.8439519 + ], + [ + 3.2272047, + 50.8439519 + ], + [ + 3.2272047, + 50.8441088 + ], + [ + 3.2269935, + 50.8441088 + ], + [ + 3.2269935, + 50.8439519 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-14T12:30:09Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ] + }, + "create": 5, + "modify": 0, + "delete": 0, + "area": 3.31372800001207e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb", + "theme": "grb", + "import": 1, + "locale": "en", + "imagery": "AGIVFlandersGRB" + }, + "id": 123607966 + } + }, + { + "id": 123607149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5298026, + 62.5495334 + ], + [ + 12.5298026, + 62.5495334 + ], + [ + 12.5298026, + 62.5495334 + ], + [ + 12.5298026, + 62.5495334 + ], + [ + 12.5298026, + 62.5495334 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polardfront", + "uid": "12630812", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T12:10:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123607149 + } + }, + { + "id": 123604343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3547137, + 50.8587929 + ], + [ + 4.3547137, + 50.8587929 + ], + [ + 4.3547137, + 50.8587929 + ], + [ + 4.3547137, + 50.8587929 + ], + [ + 4.3547137, + 50.8587929 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T11:12:37Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Pe5WyKU.jpg" + ], + "amenity": [ + "restaurant" + ], + "takeaway": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/food.html", + "theme": "food", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 3 + }, + "id": 123604343 + } + }, + { + "id": 123598974, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9620296, + 48.8349041 + ], + [ + 12.9623636, + 48.8349041 + ], + [ + 12.9623636, + 48.8349854 + ], + [ + 12.9620296, + 48.8349854 + ], + [ + 12.9620296, + 48.8349041 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T09:19:02Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "charging_station", + "bicycle_parking" + ], + "authentication:app": [ + "no" + ], + "authentication:nfc": [ + "no" + ], + "authentication:none": [ + "yes" + ], + "socket:schuko:voltage": [ + "230 V" + ], + "authentication:debit_card": [ + "no" + ], + "authentication:money_card": [ + "no" + ], + "authentication:phone_call": [ + "no" + ], + "authentication:short_message": [ + "no" + ], + "authentication:membership_card": [ + "no" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.71541999993568e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_500m": 4 + }, + "id": 123598974 + } + }, + { + "id": 123598933, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3689584, + 53.1618661 + ], + [ + 6.3689584, + 53.1618661 + ], + [ + 6.3689584, + 53.1618661 + ], + [ + 6.3689584, + 53.1618661 + ], + [ + 6.3689584, + 53.1618661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T09:18:36Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+31 594 854 530" + ], + "amenity": [ + "school" + ], + "website": [ + "https://lindenborg.rsgdeborgen.nl/" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "dutch" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education.html", + "theme": "education", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 123598933 + } + }, + { + "id": 123597930, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8774472, + 56.2496226 + ], + [ + 43.8774472, + 56.2496226 + ], + [ + 43.8774472, + 56.2496226 + ], + [ + 43.8774472, + 56.2496226 + ], + [ + 43.8774472, + 56.2496226 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T08:56:55Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/xnS7PMz.jpg" + ], + "amenity": [ + "bicycle_parking" + ], + "covered": [ + "no" + ], + "capacity": [ + "12" + ], + "bicycle_parking": [ + "wall_loops" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 123597930 + } + }, + { + "id": 123590499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9460765, + 48.8309655 + ], + [ + 12.9623788, + 48.8309655 + ], + [ + 12.9623788, + 48.8317551 + ], + [ + 12.9460765, + 48.8317551 + ], + [ + 12.9460765, + 48.8309655 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T05:50:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/e0VqhxP.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station", + "drinking_water", + "bicycle_parking" + ], + "operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000012872296080073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_1000m": 3, + "change_within_5000m": 2 + }, + "id": 123590499 + } + }, + { + "id": 123587834, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9776727, + 46.0954778 + ], + [ + 13.8056193, + 46.0954778 + ], + [ + 13.8056193, + 48.8143794 + ], + [ + 12.9776727, + 48.8143794 + ], + [ + 12.9776727, + 46.0954778 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-14T04:18:49Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/QHITh0s.jpg", + "https://i.imgur.com/ymeCVdj.jpg" + ], + "access": [ + "yes" + ], + "defibrillator:location": [ + "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich. Visible from the street directly on the outer wall. Accessible at any time.", + "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich.\nVisible from the street directly on the outer wall. Accessible at any time." + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.25110533545456, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 1, + "change_within_500m": 1 + }, + "id": 123587834 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-15.json b/Docs/Tools/stats/stats.2022-7-15.json new file mode 100644 index 0000000000..624e2852e7 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-15.json @@ -0,0 +1,6315 @@ +{ + "features": [ + { + "id": 123669775, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5574802, + 50.7411852 + ], + [ + 3.8051032, + 50.7411852 + ], + [ + 3.8051032, + 50.946696 + ], + [ + 3.5574802, + 50.946696 + ], + [ + 3.5574802, + 50.7411852 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T21:22:58Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/clrLJ6n.jpg", + "https://i.imgur.com/9y6eYVb.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0508892008284015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123669775 + } + }, + { + "id": 123667622, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0710929, + 51.7469348 + ], + [ + 0.0711757, + 51.7469348 + ], + [ + 0.0711757, + 51.7471331 + ], + [ + 0.0710929, + 51.7471331 + ], + [ + 0.0710929, + 51.7469348 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thelazymapper", + "uid": "15054081", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T20:01:25Z", + "reviewed_features": [], + "tag_changes": { + "addr:street": [ + "Taylifers" + ] + }, + "create": 4, + "modify": 4, + "delete": 0, + "area": 1.64192400000803e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 9, + "import": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 7, + "change_within_50m": 2 + }, + "id": 123667622 + } + }, + { + "id": 123667202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0710929, + 51.7471313 + ], + [ + 0.0716802, + 51.7471313 + ], + [ + 0.0716802, + 51.7471818 + ], + [ + 0.0710929, + 51.7471818 + ], + [ + 0.0710929, + 51.7471313 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thelazymapper", + "uid": "15054081", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T19:47:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 2.96586500002334e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", + "theme": "uk_addresses", + "answer": 12, + "import": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 123667202 + } + }, + { + "id": 123666797, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4189516, + 47.2153275 + ], + [ + 11.4196022, + 47.2153275 + ], + [ + 11.4196022, + 47.2155259 + ], + [ + 11.4189516, + 47.2155259 + ], + [ + 11.4189516, + 47.2153275 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaPeTh", + "uid": "197691", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T19:32:41Z", + "reviewed_features": [], + "tag_changes": { + "url": [ + "https://www.thecrag.com/de/klettern/austria/area/3737199372" + ], + "climbing:boulder": [ + "yes" + ], + "climbing:toprope": [ + "yes" + ], + "climbing:traditional": [ + "no" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.29079040001434e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "id": 123666797 + } + }, + { + "id": 123665710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3293153, + 51.1282742 + ], + [ + 3.3325431, + 51.1282742 + ], + [ + 3.3325431, + 51.1291711 + ], + [ + 3.3293153, + 51.1291711 + ], + [ + 3.3293153, + 51.1282742 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T18:59:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/3AvLPWg.jpg", + "https://i.imgur.com/Eod8NEG.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000289501382000234, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123665710 + } + }, + { + "id": 123664117, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3972354, + 51.2213769 + ], + [ + 4.3972354, + 51.2213769 + ], + [ + 4.3972354, + 51.2213769 + ], + [ + 4.3972354, + 51.2213769 + ], + [ + 4.3972354, + 51.2213769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T18:06:31Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "mapillary": [ + "3976169852499897" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "link-image": 2, + "change_over_5000m": 4 + }, + "id": 123664117 + } + }, + { + "id": 123663987, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.329485, + 51.1278819 + ], + [ + 3.329485, + 51.1278819 + ], + [ + 3.329485, + 51.1278819 + ], + [ + 3.329485, + 51.1278819 + ], + [ + 3.329485, + 51.1278819 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T18:01:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/6D5SzdA.jpg" + ], + "image:0": [ + "https://i.imgur.com/WzdqWCF.jpg" + ], + "survey:date": [ + "2022-07-15" + ], + "expected_rwn_route_relations": [ + "3" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 4 + }, + "id": 123663987 + } + }, + { + "id": 123663056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.5030391, + 48.449626 + ], + [ + 9.5030391, + 48.449626 + ], + [ + 9.5030391, + 48.449626 + ], + [ + 9.5030391, + 48.449626 + ], + [ + 9.5030391, + 48.449626 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T17:32:36Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/4Q4TfVB.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 123663056 + } + }, + { + "id": 123660836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9461477, + 48.8318757 + ], + [ + 12.9462321, + 48.8318757 + ], + [ + 12.9462321, + 48.8319467 + ], + [ + 12.9461477, + 48.8319467 + ], + [ + 12.9461477, + 48.8318757 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T16:23:32Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/bL9ObTG.jpg" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.99240000049322e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 123660836 + } + }, + { + "id": 123660757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9461018, + 48.8318732 + ], + [ + 12.9461018, + 48.8318732 + ], + [ + 12.9461018, + 48.8318732 + ], + [ + 12.9461018, + 48.8318732 + ], + [ + 12.9461018, + 48.8318732 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T16:22:03Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/sQeGww5.jpg" + ], + "access": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123660757 + } + }, + { + "id": 123660664, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9460765, + 48.8312894 + ], + [ + 12.9483533, + 48.8312894 + ], + [ + 12.9483533, + 48.8317551 + ], + [ + 12.9460765, + 48.8317551 + ], + [ + 12.9460765, + 48.8312894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T16:19:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ExLndyc.jpg" + ], + "amenity": [ + "drinking_water", + "bicycle_parking" + ], + "operational_status": [ + "broken" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000106030575999906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 123660664 + } + }, + { + "id": 123660657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7607488, + 53.095486 + ], + [ + 13.760756, + 53.095486 + ], + [ + 13.760756, + 53.0954865 + ], + [ + 13.7607488, + 53.0954865 + ], + [ + 13.7607488, + 53.095486 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFw Groß-Fredenwalde", + "uid": "16545424", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T16:19:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.59999999123644e-12, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123660657 + } + }, + { + "id": 123659720, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:51:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 1 + }, + "id": 123659720 + } + }, + { + "id": 123659688, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:50:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 1 + }, + "id": 123659688 + } + }, + { + "id": 123659685, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:50:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 1 + }, + "id": 123659685 + } + }, + { + "id": 123659355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:42:07Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "material": [ + "metal" + ], + "survey:date": [ + "2022-07-15" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 2 + }, + "id": 123659355 + } + }, + { + "id": 123659333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ], + [ + 3.3289462, + 51.1282551 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:41:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123659333 + } + }, + { + "id": 123659305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3293506, + 51.1282639 + ], + [ + 3.3293506, + 51.1282639 + ], + [ + 3.3293506, + 51.1282639 + ], + [ + 3.3293506, + 51.1282639 + ], + [ + 3.3293506, + 51.1282639 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:40:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123659305 + } + }, + { + "id": 123659301, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6678623, + 53.1371774 + ], + [ + 13.7565243, + 53.1371774 + ], + [ + 13.7565243, + 53.1939919 + ], + [ + 13.6678623, + 53.1939919 + ], + [ + 13.6678623, + 53.1371774 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wolfram Hoppe", + "uid": "16383946", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T15:40:45Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "- die Saugstelle ist durch sehr starken Schilfbewuchs, rund um den See, ... z.Zt. (15.07.2022) nicht zu gebrauchen -", + "- öffentliche Badestelle -" + ], + "image": [ + "https://i.imgur.com/VVNO6Sk.jpg", + "https://i.imgur.com/4robX7v.jpg", + "https://i.imgur.com/aWhDCk8.jpg", + "https://i.imgur.com/x7A2Uui.jpg", + "https://i.imgur.com/nt5K9B7.jpg", + "https://i.imgur.com/RKBF46i.jpg", + "https://i.imgur.com/ntOwp17.jpg", + "https://i.imgur.com/ORT7ZVg.jpg" + ], + "image:0": [ + "https://i.imgur.com/18jkAmk.jpg", + "https://i.imgur.com/kpf6JC6.jpg", + "https://i.imgur.com/T4VcexI.jpg", + "https://i.imgur.com/Dq7y6kS.jpg", + "https://i.imgur.com/A6rJDQm.jpg" + ], + "image:1": [ + "https://i.imgur.com/j05P9op.jpg" + ] + }, + "create": 15, + "modify": 63, + "delete": 0, + "area": 0.0050372871990002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123659301 + } + }, + { + "id": 123659213, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8117016, + 53.1595009 + ], + [ + 13.8204819, + 53.1595009 + ], + [ + 13.8204819, + 53.1617433 + ], + [ + 13.8117016, + 53.1617433 + ], + [ + 13.8117016, + 53.1595009 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Davidsohn", + "uid": "16545422", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:38:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.0000196889447200042, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123659213 + } + }, + { + "id": 123658369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7938218, + 53.1285286 + ], + [ + 13.7939242, + 53.1285286 + ], + [ + 13.7939242, + 53.1285629 + ], + [ + 13.7938218, + 53.1285629 + ], + [ + 13.7938218, + 53.1285286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFw Groß-Fredenwalde", + "uid": "16545424", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T15:13:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.5123199995515e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123658369 + } + }, + { + "id": 123657462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.273807, + 53.3025192 + ], + [ + 6.2739116, + 53.3025192 + ], + [ + 6.2739116, + 53.3025536 + ], + [ + 6.273807, + 53.3025536 + ], + [ + 6.273807, + 53.3025192 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T14:51:33Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.59824000043662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_1000m": 3 + }, + "id": 123657462 + } + }, + { + "id": 123657454, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2737144, + 53.3025769 + ], + [ + 6.2737144, + 53.3025769 + ], + [ + 6.2737144, + 53.3025769 + ], + [ + 6.2737144, + 53.3025769 + ], + [ + 6.2737144, + 53.3025769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T14:51:23Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_1000m": 1 + }, + "id": 123657454 + } + }, + { + "id": 123657435, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2736125, + 53.3026001 + ], + [ + 6.2738244, + 53.3026001 + ], + [ + 6.2738244, + 53.3026273 + ], + [ + 6.2736125, + 53.3026273 + ], + [ + 6.2736125, + 53.3026001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T14:51:02Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.76367999960228e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_1000m": 3 + }, + "id": 123657435 + } + }, + { + "id": 123657426, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2736246, + 53.302649 + ], + [ + 6.2738351, + 53.302649 + ], + [ + 6.2738351, + 53.3027082 + ], + [ + 6.2736246, + 53.3027082 + ], + [ + 6.2736246, + 53.302649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T14:50:54Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 3, + "modify": 1, + "delete": 0, + "area": 1.24615999990826e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "create": 3, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 3, + "change_within_1000m": 5 + }, + "id": 123657426 + } + }, + { + "id": 123657397, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2736393, + 53.3027251 + ], + [ + 6.2736393, + 53.3027251 + ], + [ + 6.2736393, + 53.3027251 + ], + [ + 6.2736393, + 53.3027251 + ], + [ + 6.2736393, + 53.3027251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T14:50:26Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_1000m": 2 + }, + "id": 123657397 + } + }, + { + "id": 123657324, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T14:48:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "trees", + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123657324 + } + }, + { + "id": 123657156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6718392, + 50.1353073 + ], + [ + 8.6718392, + 50.1353073 + ], + [ + 8.6718392, + 50.1353073 + ], + [ + 8.6718392, + 50.1353073 + ], + [ + 8.6718392, + 50.1353073 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T14:43:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123657156 + } + }, + { + "id": 123657071, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6719519, + 50.1343686 + ], + [ + 8.6719519, + 50.1343686 + ], + [ + 8.6719519, + 50.1343686 + ], + [ + 8.6719519, + 50.1343686 + ], + [ + 8.6719519, + 50.1343686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T14:42:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "create": 1, + "locale": "de", + "imagery": "HDM_HOT" + }, + "id": 123657071 + } + }, + { + "id": 123657021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6716568, + 50.133729 + ], + [ + 8.6721987, + 50.133729 + ], + [ + 8.6721987, + 50.1363113 + ], + [ + 8.6716568, + 50.1363113 + ], + [ + 8.6716568, + 50.133729 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T14:40:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000013993483700001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123657021 + } + }, + { + "id": 123656944, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T14:38:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123656944 + } + }, + { + "id": 123656265, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3856934, + 51.3450867 + ], + [ + 3.3856934, + 51.3450867 + ], + [ + 3.3856934, + 51.3450867 + ], + [ + 3.3856934, + 51.3450867 + ], + [ + 3.3856934, + 51.3450867 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T14:22:14Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123656265 + } + }, + { + "id": 123654507, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2730656, + 53.3025066 + ], + [ + 6.273528, + 53.3025066 + ], + [ + 6.273528, + 53.3027777 + ], + [ + 6.2730656, + 53.3027777 + ], + [ + 6.2730656, + 53.3025066 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T13:39:04Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 10, + "modify": 5, + "delete": 0, + "area": 1.25356639999568e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 18, + "create": 10, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 10, + "change_within_25m": 10, + "change_within_50m": 8 + }, + "id": 123654507 + } + }, + { + "id": 123653060, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3816379, + 51.3054761 + ], + [ + 3.3816379, + 51.3054761 + ], + [ + 3.3816379, + 51.3054761 + ], + [ + 3.3816379, + 51.3054761 + ], + [ + 3.3816379, + 51.3054761 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T13:10:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123653060 + } + }, + { + "id": 123653017, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.0107959, + 45.83009 + ], + [ + 12.0108599, + 45.83009 + ], + [ + 12.0108599, + 45.8301341 + ], + [ + 12.0107959, + 45.8301341 + ], + [ + 12.0107959, + 45.83009 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n4bC", + "uid": "1743828", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T13:09:06Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.82240000024385e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "it", + "imagery": "osm" + }, + "id": 123653017 + } + }, + { + "id": 123652668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.0116387, + 45.8375353 + ], + [ + 12.0126929, + 45.8375353 + ], + [ + 12.0126929, + 45.8385192 + ], + [ + 12.0116387, + 45.8385192 + ], + [ + 12.0116387, + 45.8375353 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n4bC", + "uid": "1743828", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T13:01:07Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "website": [ + "https://contarina.it/cittadino/raccolta-differenziata/ecocentro" + ], + "operator": [ + "Contarina S.p.A." + ], + "opening_hours": [ + "Mo 15:30-18:30; We 09:00-12:00; Sa 09:00-12:00, 15:30-18:30;PH off;" + ], + "recycling:glass": [ + "yes" + ], + "recycling:paper": [ + "yes" + ], + "recycling:clothes": [ + "yes" + ], + "recycling:plastic": [ + "yes" + ], + "recycling:batteries": [ + "yes" + ], + "recycling:engine_oil": [ + "yes" + ], + "recycling:cooking_oil": [ + "yes" + ], + "recycling:green_waste": [ + "yes" + ], + "recycling:scrap_metal": [ + "yes" + ], + "recycling:small_appliances": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000103722738000014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 5, + "locale": "it", + "imagery": "osm" + }, + "id": 123652668 + } + }, + { + "id": 123651552, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8628806, + 51.2072346 + ], + [ + 2.8664258, + 51.2072346 + ], + [ + 2.8664258, + 51.2093863 + ], + [ + 2.8628806, + 51.2093863 + ], + [ + 2.8628806, + 51.2072346 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AnneliesOosgis", + "uid": "9397254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T12:33:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.00000762820683999604, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 14, + "create": 1, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "move:node/7816740990": "improve_accuracy", + "import:node/9889655810": "source: https://osm.org/note/3262236", + "import:node/9889674285": "source: https://osm.org/note/3261591", + "import:node/9889692742": "source: https://osm.org/note/3261387", + "import:node/9889718191": "source: https://osm.org/note/3261756" + }, + "id": 123651552 + } + }, + { + "id": 123651528, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8662432, + 51.2093176 + ], + [ + 2.8662432, + 51.2093176 + ], + [ + 2.8662432, + 51.2093176 + ], + [ + 2.8662432, + 51.2093176 + ], + [ + 2.8662432, + 51.2093176 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AnneliesOosgis", + "uid": "9397254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T12:33:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123651528 + } + }, + { + "id": 123651427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.866173, + 51.2093113 + ], + [ + 2.8662432, + 51.2093113 + ], + [ + 2.8662432, + 51.2093284 + ], + [ + 2.866173, + 51.2093284 + ], + [ + 2.866173, + 51.2093113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AnneliesOosgis", + "uid": "9397254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T12:31:00Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "4" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "153" + ], + "survey:date": [ + "2022-07-15" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.20041999956524e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "move:node/7816741287": "improve_accuracy" + }, + "id": 123651427 + } + }, + { + "id": 123646769, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4989511, + 50.5558146 + ], + [ + 8.4989511, + 50.5558146 + ], + [ + 8.4989511, + 50.5558146 + ], + [ + 8.4989511, + 50.5558146 + ], + [ + 8.4989511, + 50.5558146 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7203617945", + "osm_id": 7203617945, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T10:37:37Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "charge": [ + "1" + ], + "amenity": [ + "binoculars" + ], + "direction": [ + "16" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123646769 + } + }, + { + "id": 123644215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2480663, + 51.2142315 + ], + [ + 3.2480663, + 51.2142315 + ], + [ + 3.2480663, + 51.2142315 + ], + [ + 3.2480663, + 51.2142315 + ], + [ + 3.2480663, + 51.2142315 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:38:42Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "copyshop" + ], + "service:print:A0": [ + "yes" + ], + "service:print:A1": [ + "yes" + ], + "service:print:A2": [ + "yes" + ], + "service:print:A3": [ + "yes" + ], + "service:print:A4": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/shops.html", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 123644215 + } + }, + { + "id": 123644146, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6703506, + 50.1395089 + ], + [ + 8.6703506, + 50.1395089 + ], + [ + 8.6703506, + 50.1395089 + ], + [ + 8.6703506, + 50.1395089 + ], + [ + 8.6703506, + 50.1395089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:37:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_rental" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bicycle_rental.html", + "theme": "bicycle_rental", + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123644146 + } + }, + { + "id": 123644098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6701245, + 50.1398241 + ], + [ + 8.670353, + 50.1398241 + ], + [ + 8.670353, + 50.1398885 + ], + [ + 8.6701245, + 50.1398885 + ], + [ + 8.6701245, + 50.1398241 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:36:16Z", + "reviewed_features": [], + "tag_changes": { + "bicycle": [ + "yes" + ], + "highway": [ + "crossing", + "residential" + ], + "maxspeed": [ + "30", + "50" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.47153999998914e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123644098 + } + }, + { + "id": 123643833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6697417, + 50.1390663 + ], + [ + 8.6705451, + 50.1390663 + ], + [ + 8.6705451, + 50.1407793 + ], + [ + 8.6697417, + 50.1407793 + ], + [ + 8.6697417, + 50.1390663 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:31:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000013762241999971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 8, + "create": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 5 + }, + "id": 123643833 + } + }, + { + "id": 123643753, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6693475, + 50.1414944 + ], + [ + 8.6693475, + 50.1414944 + ], + [ + 8.6693475, + 50.1414944 + ], + [ + 8.6693475, + 50.1414944 + ], + [ + 8.6693475, + 50.1414944 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:30:15Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123643753 + } + }, + { + "id": 123643697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6691262, + 50.1398566 + ], + [ + 8.6702493, + 50.1398566 + ], + [ + 8.6702493, + 50.1418597 + ], + [ + 8.6691262, + 50.1418597 + ], + [ + 8.6691262, + 50.1398566 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:29:26Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "kerb" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000224968160999742, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "kerbs_and_crossings", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 123643697 + } + }, + { + "id": 123643547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4933667, + 48.4126507 + ], + [ + 9.4933667, + 48.4126507 + ], + [ + 9.4933667, + 48.4126507 + ], + [ + 9.4933667, + 48.4126507 + ], + [ + 9.4933667, + 48.4126507 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:26:24Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/tHcfgvG.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 6 + }, + "id": 123643547 + } + }, + { + "id": 123643496, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6690691, + 50.1426789 + ], + [ + 8.6690691, + 50.1426789 + ], + [ + 8.6690691, + 50.1426789 + ], + [ + 8.6690691, + 50.1426789 + ], + [ + 8.6690691, + 50.1426789 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:25:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "location": [ + "overground" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123643496 + } + }, + { + "id": 123643367, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4651616, + 50.531759 + ], + [ + 8.4711483, + 50.531759 + ], + [ + 8.4711483, + 50.5408711 + ], + [ + 8.4651616, + 50.5408711 + ], + [ + 8.4651616, + 50.531759 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T09:23:09Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "nature_reserve" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000545514090699692, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 10, + "create": 2, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123643367 + } + }, + { + "id": 123643355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6687681, + 50.1419018 + ], + [ + 8.6691114, + 50.1419018 + ], + [ + 8.6691114, + 50.1431876 + ], + [ + 8.6687681, + 50.1431876 + ], + [ + 8.6687681, + 50.1419018 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:23:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 6, + "modify": 0, + "delete": 0, + "area": 4.41415140000374e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "create": 6, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 6 + }, + "id": 123643355 + } + }, + { + "id": 123643234, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.669445, + 50.1437085 + ], + [ + 8.6698345, + 50.1437085 + ], + [ + 8.6698345, + 50.144064 + ], + [ + 8.669445, + 50.144064 + ], + [ + 8.669445, + 50.1437085 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:20:29Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "limited" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "grass" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.38467249999369e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_100m": 2 + }, + "id": 123643234 + } + }, + { + "id": 123642872, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4919341, + 48.412613 + ], + [ + 9.4936892, + 48.412613 + ], + [ + 9.4936892, + 48.4138377 + ], + [ + 9.4919341, + 48.4138377 + ], + [ + 9.4919341, + 48.412613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:14:30Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "fee": [ + "yes" + ], + "hgv": [ + "no" + ], + "ref": [ + "1055" + ], + "image": [ + "https://i.imgur.com/5EdDUVN.jpg", + "https://i.imgur.com/yyzw4Rs.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "capacity": [ + "1" + ], + "motorcar": [ + "yes" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000214947097000342, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 8 + }, + "id": 123642872 + } + }, + { + "id": 123642665, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.743342, + 53.1618607 + ], + [ + 13.743342, + 53.1618607 + ], + [ + 13.743342, + 53.1618607 + ], + [ + 13.743342, + 53.1618607 + ], + [ + 13.743342, + 53.1618607 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wolfram Hoppe", + "uid": "16383946", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T09:10:15Z", + "reviewed_features": [], + "tag_changes": { + "fire_hydrant:diameter": [ + "80" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123642665 + } + }, + { + "id": 123642608, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4908514, + 48.4100013 + ], + [ + 9.493946, + 48.4100013 + ], + [ + 9.493946, + 48.4134178 + ], + [ + 9.4908514, + 48.4134178 + ], + [ + 9.4908514, + 48.4100013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:09:05Z", + "reviewed_features": [], + "tag_changes": { + "brand": [ + "Schwalbe" + ], + "image": [ + "https://i.imgur.com/pqTrS4L.jpg", + "https://i.imgur.com/1bp6C8l.jpg", + "https://i.imgur.com/AT7pYNh.jpg", + "https://i.imgur.com/J1fefGE.jpg" + ], + "charge": [ + "8 €" + ], + "manual": [ + "yes" + ], + "amenity": [ + "charging_station", + "bicycle_repair_station", + "vending_machine" + ], + "manometer": [ + "yes" + ], + "socket:typee": [ + "4", + "1" + ], + "socket:bosch_3pin": [ + "1" + ], + "authentication:app": [ + "no" + ], + "authentication:nfc": [ + "no" + ], + "authentication:none": [ + "yes" + ], + "authentication:debit_card": [ + "no" + ], + "authentication:money_card": [ + "no" + ], + "authentication:phone_call": [ + "no" + ], + "authentication:short_message": [ + "no" + ], + "authentication:membership_card": [ + "no" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000105727008999969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_within_25m": 11, + "change_within_100m": 1 + }, + "id": 123642608 + } + }, + { + "id": 123642565, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.493946, + 48.4134178 + ], + [ + 9.493946, + 48.4134178 + ], + [ + 9.493946, + 48.4134178 + ], + [ + 9.493946, + 48.4134178 + ], + [ + 9.493946, + 48.4134178 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T09:07:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 123642565 + } + }, + { + "id": 123640144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3352758, + 52.4905674 + ], + [ + 13.3352758, + 52.4905674 + ], + [ + 13.3352758, + 52.4905674 + ], + [ + 13.3352758, + 52.4905674 + ], + [ + 13.3352758, + 52.4905674 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matkit", + "uid": "16551713", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T08:10:44Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-02" + ], + "pump:status": [ + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123640144 + } + }, + { + "id": 123639752, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4891662, + 50.5230978 + ], + [ + 8.5027174, + 50.5230978 + ], + [ + 8.5027174, + 50.5300168 + ], + [ + 8.4891662, + 50.5300168 + ], + [ + 8.4891662, + 50.5230978 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T08:00:04Z", + "reviewed_features": [], + "tag_changes": { + "dog": [ + "leashed" + ], + "access": [ + "yes" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "nature_reserve" + ], + "backrest": [ + "yes" + ], + "boundary": [ + "protected_area" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000937607527999519, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 3, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123639752 + } + }, + { + "id": 123639606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5358271, + 50.5531522 + ], + [ + 8.5379031, + 50.5531522 + ], + [ + 8.5379031, + 50.5541372 + ], + [ + 8.5358271, + 50.5541372 + ], + [ + 8.5358271, + 50.5531522 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:56:40Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000020448599999989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 4, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123639606 + } + }, + { + "id": 123639530, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.501719, + 50.5519811 + ], + [ + 8.501719, + 50.5519811 + ], + [ + 8.501719, + 50.5519811 + ], + [ + 8.501719, + 50.5519811 + ], + [ + 8.501719, + 50.5519811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:54:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "toilets:handwashing": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123639530 + } + }, + { + "id": 123639459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4985218, + 50.5519811 + ], + [ + 8.501719, + 50.5519811 + ], + [ + 8.501719, + 50.5549962 + ], + [ + 8.4985218, + 50.5549962 + ], + [ + 8.4985218, + 50.5519811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:52:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "description": [ + "Eigentlich die Toilette vom Biergarten, kann aber während der Öffnugszeiten kostenfrei von jedem genutzt werden" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000963987771999329, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "id": 123639459 + } + }, + { + "id": 123639444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6633828, + 53.0449022 + ], + [ + 13.7711711, + 53.0449022 + ], + [ + 13.7711711, + 53.1336558 + ], + [ + 13.6633828, + 53.1336558 + ], + [ + 13.6633828, + 53.0449022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mathias Jordan", + "uid": "16545675", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:52:38Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Wasserentnahme nur mit Tragkraftspritze möglich" + ], + "emergency": [ + "water_tank", + "fire_water_pond" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0095665996628796, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123639444 + } + }, + { + "id": 123639442, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4985218, + 50.5549419 + ], + [ + 8.4986106, + 50.5549419 + ], + [ + 8.4986106, + 50.5549962 + ], + [ + 8.4985218, + 50.5549962 + ], + [ + 8.4985218, + 50.5549419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:52:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.82183999948355e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 123639442 + } + }, + { + "id": 123638349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:24:40Z", + "reviewed_features": [], + "tag_changes": { + "dog": [ + "leashed" + ], + "amenity": [ + "restaurant" + ], + "diet:halal": [ + "no" + ], + "service:electricity": [ + "ask" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123638349 + } + }, + { + "id": 123638325, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ], + [ + 8.4597009, + 50.5488264 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:24:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 123638325 + } + }, + { + "id": 123638251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4696776, + 50.5505785 + ], + [ + 8.4698675, + 50.5505785 + ], + [ + 8.4698675, + 50.5509139 + ], + [ + 8.4696776, + 50.5509139 + ], + [ + 8.4696776, + 50.5505785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:22:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "building": [ + "retail" + ], + "diet:halal": [ + "no" + ], + "diet:vegan": [ + "limited" + ], + "service:electricity": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.369245999907e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123638251 + } + }, + { + "id": 123638242, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4696776, + 50.5505785 + ], + [ + 8.4698675, + 50.5505785 + ], + [ + 8.4698675, + 50.5509139 + ], + [ + 8.4696776, + 50.5509139 + ], + [ + 8.4696776, + 50.5505785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:22:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.369245999907e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123638242 + } + }, + { + "id": 123637547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4847647, + 50.5499594 + ], + [ + 8.5287352, + 50.5499594 + ], + [ + 8.5287352, + 50.5512864 + ], + [ + 8.4847647, + 50.5512864 + ], + [ + 8.4847647, + 50.5499594 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T07:04:28Z", + "reviewed_features": [], + "tag_changes": { + "dog": [ + "leashed" + ], + "amenity": [ + "fast_food" + ], + "building": [ + "yes" + ], + "diet:halal": [ + "no" + ], + "diet:vegan": [ + "limited" + ], + "payment:cards": [ + "yes" + ], + "service:electricity": [ + "no" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000583488535001504, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 11, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123637547 + } + }, + { + "id": 123637388, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3961838, + 51.0416652 + ], + [ + 3.3965168, + 51.0416652 + ], + [ + 3.3965168, + 51.0420165 + ], + [ + 3.3961838, + 51.0420165 + ], + [ + 3.3961838, + 51.0416652 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T07:00:42Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "building": [ + "apartments" + ], + "entrance": [ + "home", + "main" + ], + "automatic_door": [ + "no" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.169829000018e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "id": 123637388 + } + }, + { + "id": 123637196, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4926918, + 50.5307464 + ], + [ + 8.4998882, + 50.5307464 + ], + [ + 8.4998882, + 50.5526028 + ], + [ + 8.4926918, + 50.5526028 + ], + [ + 8.4926918, + 50.5307464 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:56:10Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Dominos Pizza", + "Havanna Bar" + ], + "amenity": [ + "restaurant", + "bar", + "pub" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000157287396960026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 13, + "create": 2, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "id": 123637196 + } + }, + { + "id": 123637085, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3964383, + 51.0416214 + ], + [ + 3.3966732, + 51.0416214 + ], + [ + 3.3966732, + 51.0418035 + ], + [ + 3.3964383, + 51.0418035 + ], + [ + 3.3964383, + 51.0416214 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T06:53:18Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "automatic_door": [ + "no" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.27752900008529e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 6 + }, + "id": 123637085 + } + }, + { + "id": 123636917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4892388, + 50.5350954 + ], + [ + 8.4901683, + 50.5350954 + ], + [ + 8.4901683, + 50.5356118 + ], + [ + 8.4892388, + 50.5356118 + ], + [ + 8.4892388, + 50.5350954 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:49:13Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "lit": [ + "no" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "12" + ], + "min_age": [ + "3" + ], + "surface": [ + "sand" + ], + "operator": [ + "Gemeinde Nauborn" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.79993799995333e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "id": 123636917 + } + }, + { + "id": 123636861, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4904307, + 50.5304062 + ], + [ + 8.4907767, + 50.5304062 + ], + [ + 8.4907767, + 50.5306296 + ], + [ + 8.4904307, + 50.5306296 + ], + [ + 8.4904307, + 50.5304062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:47:25Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "operator": [ + "Gemeinde Nauborn" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.72963999986631e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123636861 + } + }, + { + "id": 123636824, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4904307, + 50.5304062 + ], + [ + 8.5048366, + 50.5304062 + ], + [ + 8.5048366, + 50.5314992 + ], + [ + 8.4904307, + 50.5314992 + ], + [ + 8.4904307, + 50.5304062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:46:22Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "12" + ], + "surface": [ + "grass" + ], + "operator": [ + "Stadt Wetzlar" + ], + "wheelchair": [ + "no" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000157456486999636, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "id": 123636824 + } + }, + { + "id": 123636765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5024524, + 50.5523751 + ], + [ + 8.5030612, + 50.5523751 + ], + [ + 8.5030612, + 50.5528284 + ], + [ + 8.5024524, + 50.5528284 + ], + [ + 8.5024524, + 50.5523751 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jules99", + "uid": "16524952", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:44:50Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "12" + ], + "surface": [ + "sand" + ], + "operator": [ + "Stadt Wetzlar" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.75969040002377e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 123636765 + } + }, + { + "id": 123636516, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3977601, + 51.0420087 + ], + [ + 3.3998307, + 51.0420087 + ], + [ + 3.3998307, + 51.0423731 + ], + [ + 3.3977601, + 51.0423731 + ], + [ + 3.3977601, + 51.0420087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T06:38:17Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "entrance": [ + "main", + "yes" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 7.54526640004576e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5 + }, + "id": 123636516 + } + }, + { + "id": 123636499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3996224, + 51.0423223 + ], + [ + 3.3996446, + 51.0423223 + ], + [ + 3.3996446, + 51.04236 + ], + [ + 3.3996224, + 51.04236 + ], + [ + 3.3996224, + 51.0423223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T06:37:58Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "automatic_door": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.36939999987049e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 123636499 + } + }, + { + "id": 123636231, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3964383, + 51.0409785 + ], + [ + 3.3994715, + 51.0409785 + ], + [ + 3.3994715, + 51.0427597 + ], + [ + 3.3964383, + 51.0427597 + ], + [ + 3.3964383, + 51.0409785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T06:30:26Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "amenity": [ + "townhall" + ], + "building": [ + "yes", + "house" + ], + "entrance": [ + "yes" + ], + "automatic_door": [ + "button", + "no" + ] + }, + "create": 4, + "modify": 14, + "delete": 0, + "area": 0.00000540273583998972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 17, + "create": 10, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 25 + }, + "id": 123636231 + } + }, + { + "id": 123635991, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.601899, + 53.0764047 + ], + [ + 13.8534272, + 53.0764047 + ], + [ + 13.8534272, + 53.1865209 + ], + [ + 13.601899, + 53.1865209 + ], + [ + 13.601899, + 53.0764047 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mathias Jordan", + "uid": "16545675", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:24:18Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "derzeit nicht nutzbar !", + "Fehleintrag- kein Löschwasserteich !" + ], + "natural": [ + "water" + ], + "water_tank:volume": [ + "110 m³", + "170 m³", + "170", + "180 m³", + "105 m³", + "150 m³", + "120 m³", + "96 m³", + "144 m³" + ] + }, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0276973295768402, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123635991 + } + }, + { + "id": 123635852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3228664, + 51.0027823 + ], + [ + 3.3971098, + 51.0027823 + ], + [ + 3.3971098, + 51.0414858 + ], + [ + 3.3228664, + 51.0414858 + ], + [ + 3.3228664, + 51.0027823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T06:21:01Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "revolving", + "hinged" + ], + "entrance": [ + "main", + "yes" + ], + "automatic_door": [ + "button" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00287347943189976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "onwheels", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_100m": 3 + }, + "id": 123635852 + } + }, + { + "id": 123635809, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:19:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 123635809 + } + }, + { + "id": 123635795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T06:19:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 123635795 + } + }, + { + "id": 123635252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3213197, + 51.0006295 + ], + [ + 3.3244412, + 51.0006295 + ], + [ + 3.3244412, + 51.0033711 + ], + [ + 3.3213197, + 51.0033711 + ], + [ + 3.3213197, + 51.0006295 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T06:03:18Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@sintandriestielt.be" + ], + "phone": [ + "+32 51 42 51 11" + ], + "amenity": [ + "hospital" + ], + "website": [ + "https://sintandriestielt.be" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000855790440000012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_100m": 3 + }, + "id": 123635252 + } + }, + { + "id": 123632557, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.962014, + 48.8340852 + ], + [ + 12.962014, + 48.8340852 + ], + [ + 12.962014, + 48.8340852 + ], + [ + 12.962014, + 48.8340852 + ], + [ + 12.962014, + 48.8340852 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-15T04:24:25Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123632557 + } + }, + { + "id": 123632252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8040841, + 50.9455809 + ], + [ + 3.8040841, + 50.9455809 + ], + [ + 3.8040841, + 50.9455809 + ], + [ + 3.8040841, + 50.9455809 + ], + [ + 3.8040841, + 50.9455809 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-15T04:11:48Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "information" + ], + "map_source": [ + "cycling.waymarkedtrails.org/#route?id=1992867&type=relation&map=18.0/50.9454/3.805", + "https://cycling.waymarkedtrails.org/#route?id=1992867&type=relation&map=18.0/50.9454/3.8051" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123632252 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-16.json b/Docs/Tools/stats/stats.2022-7-16.json new file mode 100644 index 0000000000..d7241ee095 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-16.json @@ -0,0 +1,4085 @@ +{ + "features": [ + { + "id": 123705233, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5728311, + 52.4547852 + ], + [ + 13.5741167, + 52.4547852 + ], + [ + 13.5741167, + 52.4706667 + ], + [ + 13.5728311, + 52.4706667 + ], + [ + 13.5728311, + 52.4547852 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T23:41:46Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/8VcijHe.jpg" + ], + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000204172563999863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123705233 + } + }, + { + "id": 123704516, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4128921, + 45.3147409 + ], + [ + 8.4247035, + 45.3147409 + ], + [ + 8.4247035, + 45.325316 + ], + [ + 8.4128921, + 45.325316 + ], + [ + 8.4128921, + 45.3147409 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T22:41:31Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified", + "secondary", + "residential", + "tertiary" + ], + "leisure": [ + "stadium" + ], + "name:etymology:wikidata": [ + "Q3947651", + "Q15042072", + "Q3579", + "Q3882204", + "Q113126008", + "Q42782", + "Q211866", + "Q1064", + "Q1873330", + "Q7322", + "Q21914886", + "Q1056738", + "Q44601", + "Q1403", + "Q15708195", + "Q296276" + ] + }, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000124906736140039, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 41, + "locale": "it", + "imagery": "osm" + }, + "id": 123704516 + } + }, + { + "id": 123703735, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.992898, + 51.6729921 + ], + [ + 8.994659, + 51.6729921 + ], + [ + 8.994659, + 51.6742866 + ], + [ + 8.992898, + 51.6742866 + ], + [ + 8.992898, + 51.6729921 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Amenophis", + "uid": "53104", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T21:56:21Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000227961450000051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123703735 + } + }, + { + "id": 123703623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9999414, + 51.6764033 + ], + [ + 9.0000283, + 51.6764033 + ], + [ + 9.0000283, + 51.6764491 + ], + [ + 8.9999414, + 51.6764491 + ], + [ + 8.9999414, + 51.6764033 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Amenophis", + "uid": "53104", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T21:49:32Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.98002000017589e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/", + "move": 2, + "theme": "toilets", + "answer": 2, + "create": 1, + "locale": "de", + "move:node/9892326815": "improve_accuracy" + }, + "id": 123703623 + } + }, + { + "id": 123703031, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1473812, + 52.3970232 + ], + [ + 14.1711617, + 52.3970232 + ], + [ + 14.1711617, + 52.4210025 + ], + [ + 14.1473812, + 52.4210025 + ], + [ + 14.1473812, + 52.3970232 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFW OWS", + "uid": "16214974", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T21:19:38Z", + "reviewed_features": [], + "tag_changes": { + "water_tank:volume": [ + "96m³" + ] + }, + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.000570239743650035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123703031 + } + }, + { + "id": 123703013, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6007898, + 50.9555394 + ], + [ + 3.6007898, + 50.9555394 + ], + [ + 3.6007898, + 50.9555394 + ], + [ + 3.6007898, + 50.9555394 + ], + [ + 3.6007898, + 50.9555394 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T21:18:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/uBA2ouy.jpg" + ], + "waste": [ + "dog_excrement" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123703013 + } + }, + { + "id": 123700917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6818929, + 50.9548146 + ], + [ + 3.6820547, + 50.9548146 + ], + [ + 3.6820547, + 50.954958 + ], + [ + 3.6818929, + 50.954958 + ], + [ + 3.6818929, + 50.9548146 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T19:53:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5hWzUgq.jpg", + "https://i.imgur.com/R1UTwFK.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.32021199998692e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123700917 + } + }, + { + "id": 123700428, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4138909, + 45.323411 + ], + [ + 8.4331646, + 45.323411 + ], + [ + 8.4331646, + 45.3349645 + ], + [ + 8.4138909, + 45.3349645 + ], + [ + 8.4138909, + 45.323411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T19:35:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "unclassified", + "pedestrian", + "residential", + "tertiary", + "service" + ], + "landuse": [ + "education" + ], + "tourism": [ + "museum" + ], + "building": [ + "church", + "school" + ], + "name:etymology:wikidata": [ + "Q3649511", + "Q550262", + "Q2851732", + "Q102490", + "Q723652", + "Q721738", + "Q1241969", + "Q3719531", + "Q1395790", + "Q164294", + "Q1297903", + "Q2898897", + "Q113125217; Q113125226", + "Q113125494", + "Q113125237", + "Q113125250", + "Q7317", + "Q225937", + "Q469134", + "Q193660", + "Q1490296", + "Q17631842", + "Q113125204", + "Q166092", + "Q962574", + "Q3742254", + "Q330284", + "Q43440", + "Q41569098", + "Q16025272", + "Q31966", + "Q220", + "Q15708195", + "Q734108", + "Q669314" + ] + }, + "create": 0, + "modify": 86, + "delete": 0, + "area": 0.000222678692949954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 109, + "locale": "it", + "imagery": "osm" + }, + "id": 123700428 + } + }, + { + "id": 123697542, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.320981, + 52.452696 + ], + [ + 13.325408, + 52.452696 + ], + [ + 13.325408, + 52.45295 + ], + [ + 13.320981, + 52.45295 + ], + [ + 13.320981, + 52.452696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T17:45:48Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000112445799999196, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123697542 + } + }, + { + "id": 123697228, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3396281, + 52.546576 + ], + [ + 13.3477554, + 52.546576 + ], + [ + 13.3477554, + 52.546782 + ], + [ + 13.3396281, + 52.546782 + ], + [ + 13.3396281, + 52.546576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wtRocks", + "uid": "16563010", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T17:34:28Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16", + "2022-05-23", + "2020" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000167422379998858, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123697228 + } + }, + { + "id": 123696251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7645097, + 49.8151805 + ], + [ + 5.7645097, + 49.8151805 + ], + [ + 5.7645097, + 49.8151805 + ], + [ + 5.7645097, + 49.8151805 + ], + [ + 5.7645097, + 49.8151805 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T17:02:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123696251 + } + }, + { + "id": 123695377, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T16:34:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/U9AfySA.jpg" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 123695377 + } + }, + { + "id": 123695355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ], + [ + 9.4799761, + 48.3601967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T16:33:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_500m": 5 + }, + "id": 123695355 + } + }, + { + "id": 123694466, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.2833372, + 51.3813464 + ], + [ + -0.2833372, + 51.3813464 + ], + [ + -0.2833372, + 51.3813464 + ], + [ + -0.2833372, + 51.3813464 + ], + [ + -0.2833372, + 51.3813464 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T16:00:48Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/uw4pVt5.jpg" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123694466 + } + }, + { + "id": 123692891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5705629, + 50.7559247 + ], + [ + 3.7334713, + 50.7559247 + ], + [ + 3.7334713, + 50.9955201 + ], + [ + 3.5705629, + 50.9955201 + ], + [ + 3.5705629, + 50.7559247 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T15:08:01Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "originally mapped as picnic_site as a node, so there's a small chance there is more than one table around" + ], + "image": [ + "https://i.imgur.com/gpYJYRd.jpg", + "https://i.imgur.com/eSoOR3O.jpg", + "https://i.imgur.com/jteeXFP.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0390321032613598, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "id": 123692891 + } + }, + { + "id": 123692702, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.501533, + 48.334189 + ], + [ + 9.5017576, + 48.334189 + ], + [ + 9.5017576, + 48.3343149 + ], + [ + 9.501533, + 48.3343149 + ], + [ + 9.501533, + 48.334189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T15:02:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9LKGvO5.jpg" + ], + "amenity": [ + "fire_station" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.8277140000007e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "locale": "de", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 123692702 + } + }, + { + "id": 123692384, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3494282, + 52.5433557 + ], + [ + 13.3494282, + 52.5433557 + ], + [ + 13.3494282, + 52.5433557 + ], + [ + 13.3494282, + 52.5433557 + ], + [ + 13.3494282, + 52.5433557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wtRocks", + "uid": "16563010", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T14:53:35Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16", + "2020" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123692384 + } + }, + { + "id": 123692313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.8377016, + 48.6183345 + ], + [ + 9.8385239, + 48.6183345 + ], + [ + 9.8385239, + 48.618696 + ], + [ + 9.8377016, + 48.618696 + ], + [ + 9.8377016, + 48.6183345 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SanSim", + "uid": "2481180", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T14:51:29Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.97261449997143e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 1 + }, + "id": 123692313 + } + }, + { + "id": 123692290, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4804874, + 48.3597746 + ], + [ + 9.4933764, + 48.3597746 + ], + [ + 9.4933764, + 48.4335803 + ], + [ + 9.4804874, + 48.4335803 + ], + [ + 9.4804874, + 48.3597746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T14:50:34Z", + "reviewed_features": [], + "tag_changes": { + "books": [ + "adults" + ], + "image": [ + "https://i.imgur.com/duS62He.jpg", + "https://i.imgur.com/7Hlt67z.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000951281667300108, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123692290 + } + }, + { + "id": 123691995, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5728311, + 52.4524625 + ], + [ + 13.5832241, + 52.4524625 + ], + [ + 13.5832241, + 52.4706667 + ], + [ + 13.5728311, + 52.4706667 + ], + [ + 13.5728311, + 52.4524625 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T14:41:59Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/8VcijHe.jpg", + "https://i.imgur.com/yWTeyjf.jpg" + ], + "image:1": [ + "https://i.imgur.com/bAqb4Ts.jpg" + ], + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16", + "2018-07-14" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000189196250600005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 10, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "id": 123691995 + } + }, + { + "id": 123691874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4812102, + 48.359132 + ], + [ + 9.4812102, + 48.359132 + ], + [ + 9.4812102, + 48.359132 + ], + [ + 9.4812102, + 48.359132 + ], + [ + 9.4812102, + 48.359132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T14:37:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Hnhe0lo.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123691874 + } + }, + { + "id": 123690012, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2928969, + 52.4512699 + ], + [ + 13.3167194, + 52.4512699 + ], + [ + 13.3167194, + 52.4633525 + ], + [ + 13.2928969, + 52.4633525 + ], + [ + 13.2928969, + 52.4512699 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T13:38:46Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16", + "2018-08-28" + ], + "pump:status": [ + "ok", + "broken", + "funktioniert (<30x pumpen), allerdings geringe Hubwirkung, von Pflanzen zugewachsen", + "<10x pumpen" + ] + }, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000287837738499981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 12, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123690012 + } + }, + { + "id": 123689830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3014904, + 52.459499 + ], + [ + 13.3167194, + 52.459499 + ], + [ + 13.3167194, + 52.4654288 + ], + [ + 13.3014904, + 52.4654288 + ], + [ + 13.3014904, + 52.459499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T13:32:13Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16", + "2022-07-15" + ], + "pump:status": [ + "ok", + "broken", + "funktioniert, aber geringe Hubleistung", + "<10x pumpen" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000903049241999524, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 12, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123689830 + } + }, + { + "id": 123689131, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3366138, + 52.5445349 + ], + [ + 13.34861, + 52.5445349 + ], + [ + 13.34861, + 52.5484206 + ], + [ + 13.3366138, + 52.5484206 + ], + [ + 13.3366138, + 52.5445349 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wtRocks", + "uid": "16563010", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T13:06:57Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16", + "2020" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000466136343399764, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123689131 + } + }, + { + "id": 123688358, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:42:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "id": 123688358 + } + }, + { + "id": 123688338, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3648461, + 50.6446228 + ], + [ + 4.3648461, + 50.6446228 + ], + [ + 4.3648461, + 50.6446228 + ], + [ + 4.3648461, + 50.6446228 + ], + [ + 4.3648461, + 50.6446228 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:41:31Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "operator": [ + "Commune de Braine-l'Alleud" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:tools": [ + "yes" + ], + "service:bicycle:chain_tool": [ + "no" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 6 + }, + "id": 123688338 + } + }, + { + "id": 123688325, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:41:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "id": 123688325 + } + }, + { + "id": 123688323, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:41:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "id": 123688323 + } + }, + { + "id": 123688313, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3866363, + 50.6782283 + ], + [ + 4.3866363, + 50.6782283 + ], + [ + 4.3866363, + 50.6782283 + ], + [ + 4.3866363, + 50.6782283 + ], + [ + 4.3866363, + 50.6782283 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:40:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ], + "operator": [ + "Commune de Braine-l'Alleud" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:chain_tool": [ + "no" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 3 + }, + "id": 123688313 + } + }, + { + "id": 123688310, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:40:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 1 + }, + "id": 123688310 + } + }, + { + "id": 123688299, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3713821, + 50.6782283 + ], + [ + 4.3866363, + 50.6782283 + ], + [ + 4.3866363, + 50.6835178 + ], + [ + 4.3713821, + 50.6835178 + ], + [ + 4.3713821, + 50.6782283 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:40:18Z", + "reviewed_features": [], + "tag_changes": { + "manual": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000806870908999461, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_500m": 2, + "change_within_1000m": 1 + }, + "id": 123688299 + } + }, + { + "id": 123688110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3713821, + 50.6835178 + ], + [ + 4.3762446, + 50.6835178 + ], + [ + 4.3762446, + 50.6844698 + ], + [ + 4.3713821, + 50.6844698 + ], + [ + 4.3713821, + 50.6835178 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T12:32:56Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "manual": [ + "yes" + ], + "valves": [ + "sclaverand;dunlop;schrader" + ], + "amenity": [ + "bicycle_repair_station" + ], + "operator": [ + "Commune de Braine-l'Alleud" + ], + "manometer": [ + "yes" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:tools": [ + "yes" + ], + "service:bicycle:chain_tool": [ + "no" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000462910000002492, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 15, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_500m": 15 + }, + "id": 123688110 + } + }, + { + "id": 123687601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5983379, + 52.4512481 + ], + [ + 13.6011158, + 52.4512481 + ], + [ + 13.6011158, + 52.4532144 + ], + [ + 13.5983379, + 52.4532144 + ], + [ + 13.5983379, + 52.4512481 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T12:14:01Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000546218476999817, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123687601 + } + }, + { + "id": 123687406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.598734, + 52.45106 + ], + [ + 13.598734, + 52.45106 + ], + [ + 13.598734, + 52.45106 + ], + [ + 13.598734, + 52.45106 + ], + [ + 13.598734, + 52.45106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T12:05:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123687406 + } + }, + { + "id": 123686322, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T11:24:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", + "theme": "bookcases", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123686322 + } + }, + { + "id": 123685357, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.948541, + 48.8283068 + ], + [ + 12.9527034, + 48.8283068 + ], + [ + 12.9527034, + 48.8295964 + ], + [ + 12.948541, + 48.8295964 + ], + [ + 12.948541, + 48.8283068 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T10:51:34Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/v9czH68.jpg", + "https://i.imgur.com/HxbltPC.jpg" + ], + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000536783103999938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 3 + }, + "id": 123685357 + } + }, + { + "id": 123685224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.213656, + 51.2095519 + ], + [ + 3.213656, + 51.2095519 + ], + [ + 3.213656, + 51.2095519 + ], + [ + 3.213656, + 51.2095519 + ], + [ + 3.213656, + 51.2095519 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T10:46:19Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/h1uEjFM.jpg" + ], + "highway": [ + "crossing" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_100m": 1 + }, + "id": 123685224 + } + }, + { + "id": 123683492, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7471712, + 53.1687541 + ], + [ + 13.8265709, + 53.1687541 + ], + [ + 13.8265709, + 53.1742049 + ], + [ + 13.7471712, + 53.1742049 + ], + [ + 13.7471712, + 53.1687541 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mathias Jordan", + "uid": "16545675", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T09:49:23Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Tragkraftspritze erforderlich" + ], + "image": [ + "https://i.imgur.com/4robX7v.jpg", + "https://i.imgur.com/RKBF46i.jpg" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000432791884759873, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123683492 + } + }, + { + "id": 123679307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3626227, + 45.8033054 + ], + [ + 8.7834663, + 45.8033054 + ], + [ + 8.7834663, + 46.298054 + ], + [ + 8.3626227, + 46.298054 + ], + [ + 8.3626227, + 45.8033054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Enrico Rossi", + "uid": "53188", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T08:07:52Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "toilets": [ + "no" + ], + "tourism": [ + "caravan_site" + ], + "website": [ + "https://www.alestecamping.it/" + ], + "internet_access": [ + "no" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.208211781918961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 4, + "locale": "it", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 123679307 + } + }, + { + "id": 123679175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8901606, + 51.1670844 + ], + [ + 4.8959274, + 51.1670844 + ], + [ + 4.8959274, + 51.1745264 + ], + [ + 4.8901606, + 51.1745264 + ], + [ + 4.8901606, + 51.1670844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T08:03:21Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3948312", + "Gbg/6220688", + "Gbg/6427330" + ], + "source:geometry:date": [ + "2014-05-02", + "2018-02-26", + "2018-10-24" + ] + }, + "create": 29, + "modify": 15, + "delete": 0, + "area": 0.0000429165255999853, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 123679175 + } + }, + { + "id": 123678483, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8904247, + 51.1745987 + ], + [ + 4.8980733, + 51.1745987 + ], + [ + 4.8980733, + 51.178917 + ], + [ + 4.8904247, + 51.178917 + ], + [ + 4.8904247, + 51.1745987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:38:21Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house" + ], + "addr:housenumber": [ + "87", + "47" + ], + "source:geometry:ref": [ + "Gbg/3951154", + "Gbg/3948335", + "Gbg/6508555", + "Gbg/3951181" + ], + "source:geometry:date": [ + "2013-02-20", + "2018-10-24", + "2012-11-15" + ] + }, + "create": 70, + "modify": 29, + "delete": 2, + "area": 0.0000330289493800121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 26, + "theme": "grb", + "answer": 1, + "delete": 2, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8, + "change_over_5000m": 3 + }, + "id": 123678483 + } + }, + { + "id": 123678424, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8983717, + 51.1784901 + ], + [ + 4.8987046, + 51.1784901 + ], + [ + 4.8987046, + 51.1787187 + ], + [ + 4.8983717, + 51.1787187 + ], + [ + 4.8983717, + 51.1784901 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:36:54Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3948357" + ], + "source:geometry:date": [ + "2013-02-20" + ] + }, + "create": 10, + "modify": 7, + "delete": 0, + "area": 7.61009399999522e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123678424 + } + }, + { + "id": 123678413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8981058, + 51.1778025 + ], + [ + 4.8992891, + 51.1778025 + ], + [ + 4.8992891, + 51.1782242 + ], + [ + 4.8981058, + 51.1782242 + ], + [ + 4.8981058, + 51.1778025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:36:25Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3948413", + "Gbg/3948434" + ], + "source:geometry:date": [ + "2013-02-20", + "2017-03-01" + ] + }, + "create": 17, + "modify": 10, + "delete": 0, + "area": 4.98997610004739e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 8, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 123678413 + } + }, + { + "id": 123678234, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8986852, + 51.1752148 + ], + [ + 4.9027244, + 51.1752148 + ], + [ + 4.9027244, + 51.1796332 + ], + [ + 4.8986852, + 51.1796332 + ], + [ + 4.8986852, + 51.1752148 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:30:01Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3948557", + "Gbg/3948031", + "Gbg/4928262", + "Gbg/5862403", + "Gbg/4928326", + "Gbg/3948554", + "Gbg/3948108", + "Gbg/3948107", + "Gbg/5862518", + "Gbg/3948110", + "Gbg/3948111", + "Gbg/3948558", + "Gbg/3948560", + "Gbg/3948399", + "Gbg/3948400", + "Gbg/3948378", + "Gbg/3948537", + "Gbg/3947848" + ], + "source:geometry:date": [ + "2012-11-15", + "2015-11-24", + "2017-03-01", + "2014-12-04", + "2013-02-20", + "2021-10-25", + "2020-03-16" + ] + }, + "create": 116, + "modify": 113, + "delete": 0, + "area": 0.0000178468012799959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 97, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 36, + "change_over_5000m": 9 + }, + "id": 123678234 + } + }, + { + "id": 123678224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9021193, + 51.1778979 + ], + [ + 4.9023911, + 51.1778979 + ], + [ + 4.9023911, + 51.1780085 + ], + [ + 4.9021193, + 51.1780085 + ], + [ + 4.9021193, + 51.1778979 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:29:43Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3948109" + ], + "source:geometry:date": [ + "2013-02-20" + ] + }, + "create": 6, + "modify": 5, + "delete": 0, + "area": 3.00610799998254e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123678224 + } + }, + { + "id": 123678216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9021894, + 51.1777193 + ], + [ + 4.9024621, + 51.1777193 + ], + [ + 4.9024621, + 51.1778337 + ], + [ + 4.9021894, + 51.1778337 + ], + [ + 4.9021894, + 51.1777193 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:29:29Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3948102" + ], + "source:geometry:date": [ + "2015-11-24" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 3.11968800002932e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123678216 + } + }, + { + "id": 123678204, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9022195, + 51.1769164 + ], + [ + 4.9027329, + 51.1769164 + ], + [ + 4.9027329, + 51.1775875 + ], + [ + 4.9022195, + 51.1775875 + ], + [ + 4.9022195, + 51.1769164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:28:55Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3948054", + "Gbg/3948053", + "Gbg/3948055", + "Gbg/3948056" + ], + "source:geometry:date": [ + "2018-10-24", + "2015-11-24", + "2013-02-20", + "2014-12-04" + ] + }, + "create": 15, + "modify": 28, + "delete": 0, + "area": 3.44542739999047e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 24, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8, + "change_over_5000m": 1 + }, + "id": 123678204 + } + }, + { + "id": 123677869, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8995658, + 51.1750843 + ], + [ + 4.9025739, + 51.1750843 + ], + [ + 4.9025739, + 51.1771931 + ], + [ + 4.8995658, + 51.1771931 + ], + [ + 4.8995658, + 51.1750843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T07:14:47Z", + "reviewed_features": [], + "tag_changes": { + "landuse": [ + "residential", + "forest" + ], + "building": [ + "house", + "yes", + "roof" + ], + "addr:street": [ + "Lichtaartseweg" + ], + "addr:housenumber": [ + "9" + ], + "source:geometry:ref": [ + "Gbg/3948016", + "Gbg/3948019", + "Gbg/3948021", + "Gbg/3948051", + "Gbg/3948398", + "Gbg/3948393", + "Gbg/3948432", + "Gbg/3948394", + "Gbg/3948433", + "Gbg/3948395", + "Gbg/7019771", + "Gbg/3948381", + "Gbg/3948115", + "Gbg/3948392", + "Gbg/3948116", + "Gbg/3948117", + "Gbg/3948397", + "Gbg/3948114", + "Gbg/3948015", + "Gbg/3948017", + "Gbg/3948018", + "Gbg/5403581", + "Gbg/5862269" + ], + "source:geometry:date": [ + "2012-11-15", + "2018-10-24", + "2013-02-20", + "2021-10-25", + "2014-05-02", + "2015-11-24", + "2017-03-01" + ] + }, + "create": 273, + "modify": 146, + "delete": 0, + "area": 0.00000634348127998415, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 127, + "theme": "grb", + "answer": 1, + "import": 12, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46 + }, + "id": 123677869 + } + }, + { + "id": 123676767, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8983425, + 51.1721806 + ], + [ + 4.9028566, + 51.1721806 + ], + [ + 4.9028566, + 51.1770687 + ], + [ + 4.8983425, + 51.1770687 + ], + [ + 4.8983425, + 51.1721806 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T06:28:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ], + "building": [ + "house", + "yes", + "roof" + ], + "addr:housenumber": [ + "27;27A", + "27" + ], + "source:geometry:ref": [ + "Gbg/3948022", + "Gbg/6910823", + "Gbg/3948047", + "Gbg/3948048", + "Gbg/3948049", + "Gbg/3948050", + "Gbg/4011925", + "Gbg/4011924", + "Gbg/4012155", + "Gbg/4011923", + "Gbg/4011922", + "Gbg/4011921", + "Gbg/4012162", + "Gbg/4011920", + "Gbg/4012161", + "Gbg/4012160", + "Gbg/4012153", + "Gbg/4012149", + "Gbg/4012150", + "Gbg/4012151", + "Gbg/4012157", + "Gbg/4012163", + "Gbg/5862547", + "Gbg/4012164", + "Gbg/4012147", + "Gbg/4012165", + "Gbg/4012148", + "Gbg/4928207", + "Gbg/4011215", + "Gbg/4011217", + "Gbg/3948121", + "Gbg/3948122", + "Gbg/4678954", + "Gbg/4012158", + "Gbg/4012159", + "Gbg/6057090", + "Gbg/6507908", + "Gbg/3948131" + ], + "source:geometry:date": [ + "2018-10-24", + "2021-10-25", + "2012-11-15", + "2013-02-20", + "2015-11-24", + "2013-01-07", + "2017-03-01", + "2014-12-04", + "2021-09-10", + "2017-10-16" + ] + }, + "create": 240, + "modify": 222, + "delete": 6, + "area": 0.000022065372210009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 187, + "theme": "grb", + "answer": 1, + "delete": 6, + "import": 27, + "locale": "nl", + "imagery": "AGIV", + "conflation": 76, + "change_over_5000m": 18 + }, + "id": 123676767 + } + }, + { + "id": 123676751, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8998183, + 51.1727238 + ], + [ + 4.9003626, + 51.1727238 + ], + [ + 4.9003626, + 51.1730773 + ], + [ + 4.8998183, + 51.1730773 + ], + [ + 4.8998183, + 51.1727238 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T06:28:18Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/4012154" + ], + "source:geometry:date": [ + "2013-02-20" + ] + }, + "create": 23, + "modify": 5, + "delete": 0, + "area": 1.9241005000169e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2, + "change_over_5000m": 4 + }, + "id": 123676751 + } + }, + { + "id": 123676721, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9003058, + 51.1724306 + ], + [ + 4.9014885, + 51.1724306 + ], + [ + 4.9014885, + 51.173164 + ], + [ + 4.9003058, + 51.173164 + ], + [ + 4.9003058, + 51.1724306 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-16T06:26:48Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/5862505", + "Gbg/4011928", + "Gbg/4011194", + "Gbg/4012152", + "Gbg/4011202", + "Gbg/4011196", + "Gbg/4011195" + ], + "source:geometry:date": [ + "2017-03-01", + "2013-01-07", + "2013-02-20" + ] + }, + "create": 102, + "modify": 33, + "delete": 0, + "area": 8.6739218000185e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 28, + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14, + "change_over_5000m": 8 + }, + "id": 123676721 + } + }, + { + "id": 123672585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T00:28:50Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ], + "manometer": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 123672585 + } + }, + { + "id": 123672576, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ], + [ + 4.5059007, + 50.6135052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eMerzh", + "uid": "15399", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-16T00:28:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 123672576 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-17.json b/Docs/Tools/stats/stats.2022-7-17.json new file mode 100644 index 0000000000..13bc39d72b --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-17.json @@ -0,0 +1,2293 @@ +{ + "features": [ + { + "id": 123738095, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "degutant", + "uid": "4974073", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T23:49:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123738095 + } + }, + { + "id": 123737100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9126061, + 40.7065429 + ], + [ + -73.910608, + 40.7065429 + ], + [ + -73.910608, + 40.7085286 + ], + [ + -73.9126061, + 40.7085286 + ], + [ + -73.9126061, + 40.7065429 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "iD 2.21.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "local knowledge;streetlevel imagery;survey", + "imagery_used": "OpenStreetMap (Standard)", + "date": "2022-07-17T22:31:20Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments", + "industrial", + "yes", + "office" + ], + "man_made": [ + "surveillance" + ], + "camera:type": [ + "fixed", + "panning", + "dome" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "public", + "outdoor" + ], + "camera:direction": [ + "80", + "180", + "300", + "150" + ], + "surveillance:type": [ + "camera" + ], + "surveillance:zone": [ + "street" + ] + }, + "create": 42, + "modify": 33, + "delete": 0, + "area": 0.00000396762717001472, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://www.openstreetmap.org/edit", + "locale": "en", + "hashtags": "#MapComplete;#surveillance", + "changesets_count": 178 + }, + "id": 123737100 + } + }, + { + "id": 123736584, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2953526, + 51.1142874 + ], + [ + 3.2953573, + 51.1142874 + ], + [ + 3.2953573, + 51.1143143 + ], + [ + 3.2953526, + 51.1143143 + ], + [ + 3.2953526, + 51.1142874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T22:00:19Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UW1jv6O.jpg" + ], + "amenity": [ + "bench" + ], + "survey:date": [ + "2022-07-17" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.26429999970845e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123736584 + } + }, + { + "id": 123736272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7318155, + 51.0103227 + ], + [ + 4.7318155, + 51.0103227 + ], + [ + 4.7318155, + 51.0103227 + ], + [ + 4.7318155, + 51.0103227 + ], + [ + 4.7318155, + 51.0103227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T21:40:07Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ], + "mapillary": [ + "726243168527043" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "en", + "imagery": "AGIV", + "link-image": 1 + }, + "id": 123736272 + } + }, + { + "id": 123736230, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T21:38:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 123736230 + } + }, + { + "id": 123736210, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9120589, + 40.707555 + ], + [ + -73.9117892, + 40.707555 + ], + [ + -73.9117892, + 40.7077315 + ], + [ + -73.9120589, + 40.7077315 + ], + [ + -73.9120589, + 40.707555 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T21:37:14Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 4.76020500012578e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 6, + "create": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 10 + }, + "id": 123736210 + } + }, + { + "id": 123736202, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T21:36:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 123736202 + } + }, + { + "id": 123736093, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9127789, + 40.7073409 + ], + [ + -73.9122046, + 40.7073409 + ], + [ + -73.9122046, + 40.7079326 + ], + [ + -73.9127789, + 40.7079326 + ], + [ + -73.9127789, + 40.7073409 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T21:31:29Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments" + ], + "man_made": [ + "surveillance" + ], + "camera:type": [ + "fixed" + ], + "camera:mount": [ + "wall" + ], + "surveillance": [ + "public" + ], + "camera:direction": [ + "60" + ], + "surveillance:type": [ + "camera" + ], + "surveillance:zone": [ + "corridor" + ] + }, + "create": 6, + "modify": 13, + "delete": 0, + "area": 3.39813310007076e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 25, + "create": 13, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 37 + }, + "id": 123736093 + } + }, + { + "id": 123735832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.28407, + 51.1133528 + ], + [ + 3.2953639, + 51.1133528 + ], + [ + 3.2953639, + 51.1144932 + ], + [ + 3.28407, + 51.1144932 + ], + [ + 3.28407, + 51.1133528 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T21:18:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/S5KHp4D.jpg", + "https://i.imgur.com/udPdfLY.jpg" + ], + "survey:date": [ + "2022-07-17", + "2022-05-21" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000128795635599667, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 123735832 + } + }, + { + "id": 123734126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3684603, + 50.866271 + ], + [ + 4.3684603, + 50.866271 + ], + [ + 4.3684603, + 50.866271 + ], + [ + 4.3684603, + 50.866271 + ], + [ + 4.3684603, + 50.866271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T20:13:53Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/60psbgZ.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 2 + }, + "id": 123734126 + } + }, + { + "id": 123732793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.5114034, + 64.1234707 + ], + [ + 29.5114034, + 64.1234707 + ], + [ + 29.5114034, + 64.1234707 + ], + [ + 29.5114034, + 64.1234707 + ], + [ + 29.5114034, + 64.1234707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T19:22:15Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "network": [ + "ABC-lataus" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "authentication:app": [ + "yes" + ], + "authentication:nfc": [ + "no" + ], + "authentication:none": [ + "no" + ], + "authentication:debit_card": [ + "no" + ], + "authentication:money_card": [ + "no" + ], + "authentication:phone_call": [ + "no" + ], + "authentication:short_message": [ + "no" + ], + "authentication:membership_card": [ + "no" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123732793 + } + }, + { + "id": 123732607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.5043359, + 64.1264983 + ], + [ + 29.5043359, + 64.1264983 + ], + [ + 29.5043359, + 64.1264983 + ], + [ + 29.5043359, + 64.1264983 + ], + [ + 29.5043359, + 64.1264983 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T19:16:23Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123732607 + } + }, + { + "id": 123732117, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.4781819, + 64.1254735 + ], + [ + 29.5063141, + 64.1254735 + ], + [ + 29.5063141, + 64.1288879 + ], + [ + 29.4781819, + 64.1288879 + ], + [ + 29.4781819, + 64.1254735 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T18:59:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ], + "direction": [ + "184", + "129" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000960545836799195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 123732117 + } + }, + { + "id": 123730326, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0227652, + 38.8177393 + ], + [ + 0.1081794, + 38.8177393 + ], + [ + 0.1081794, + 38.8409952 + ], + [ + 0.0227652, + 38.8409952 + ], + [ + 0.0227652, + 38.8177393 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T18:04:40Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes", + "customers" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ], + "changing_table:location": [ + "dedicated_room" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0019863840937802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 8, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_500m": 1, + "change_within_5000m": 2 + }, + "id": 123730326 + } + }, + { + "id": 123730241, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3431349, + 50.8343268 + ], + [ + 4.3431349, + 50.8343268 + ], + [ + 4.3431349, + 50.8343268 + ], + [ + 4.3431349, + 50.8343268 + ], + [ + 4.3431349, + 50.8343268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T18:01:16Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123730241 + } + }, + { + "id": 123730224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ], + [ + 3.7106323, + 51.0337654 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T18:00:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/awrONsS.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/", + "theme": "bookcases", + "locale": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123730224 + } + }, + { + "id": 123730185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3244702, + 52.4798497 + ], + [ + 13.3261039, + 52.4798497 + ], + [ + 13.3261039, + 52.4828121 + ], + [ + 13.3244702, + 52.4828121 + ], + [ + 13.3244702, + 52.4798497 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wikinaut", + "uid": "120965", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T17:59:07Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-17", + "2020-09-11" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000483967287998835, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123730185 + } + }, + { + "id": 123728785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.742032, + 45.8224151 + ], + [ + 8.742032, + 45.8224151 + ], + [ + 8.742032, + 45.8224151 + ], + [ + 8.742032, + 45.8224151 + ], + [ + 8.742032, + 45.8224151 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Enrico Rossi", + "uid": "53188", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T17:14:13Z", + "reviewed_features": [], + "tag_changes": { + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "it", + "imagery": "osm" + }, + "id": 123728785 + } + }, + { + "id": 123728685, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6744806, + 45.807953 + ], + [ + 8.742032, + 45.807953 + ], + [ + 8.742032, + 45.8224151 + ], + [ + 8.6744806, + 45.8224151 + ], + [ + 8.6744806, + 45.807953 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Enrico Rossi", + "uid": "53188", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T17:11:29Z", + "reviewed_features": [], + "tag_changes": { + "level": [ + "0" + ], + "defibrillator:location": [ + "entrata" + ], + "defibrillator:location:en": [ + "entrance" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000976935101940187, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 7, + "locale": "it", + "imagery": "osm" + }, + "id": 123728685 + } + }, + { + "id": 123727615, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.9580074, + 56.3257362 + ], + [ + 43.9580074, + 56.3257362 + ], + [ + 43.9580074, + 56.3257362 + ], + [ + 43.9580074, + 56.3257362 + ], + [ + 43.9580074, + 56.3257362 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T16:35:20Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 123727615 + } + }, + { + "id": 123725573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2732669, + 53.3027304 + ], + [ + 6.2732669, + 53.3027304 + ], + [ + 6.2732669, + 53.3027304 + ], + [ + 6.2732669, + 53.3027304 + ], + [ + 6.2732669, + 53.3027304 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T15:33:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7 + }, + "id": 123725573 + } + }, + { + "id": 123723796, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3109171, + 52.4614888 + ], + [ + 13.3285439, + 52.4614888 + ], + [ + 13.3285439, + 52.4670047 + ], + [ + 13.3109171, + 52.4670047 + ], + [ + 13.3109171, + 52.4614888 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T14:38:45Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-17", + "2022-07-16", + "2022-07-15", + "2020-09-11" + ], + "pump:status": [ + "ok", + "es kommt Wasser, aber die Pumpe blockiert manchmal", + "blocked" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000972276661199829, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 11, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123723796 + } + }, + { + "id": 123721698, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5728311, + 52.4706667 + ], + [ + 13.5728311, + 52.4706667 + ], + [ + 13.5728311, + 52.4706667 + ], + [ + 13.5728311, + 52.4706667 + ], + [ + 13.5728311, + 52.4706667 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T13:39:55Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-16" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123721698 + } + }, + { + "id": 123719624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7938218, + 53.1285286 + ], + [ + 13.7939242, + 53.1285286 + ], + [ + 13.7939242, + 53.1285629 + ], + [ + 13.7938218, + 53.1285629 + ], + [ + 13.7938218, + 53.1285286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFw Groß-Fredenwalde", + "uid": "16545424", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T12:31:24Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Fehleintrag" + ], + "image": [ + "https://i.imgur.com/fsRvh6G.jpg" + ], + "fire_hydrant:diameter": [ + "100" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.5123199995515e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123719624 + } + }, + { + "id": 123716294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3141906, + 52.4544938 + ], + [ + 13.3254543, + 52.4544938 + ], + [ + 13.3254543, + 52.4613384 + ], + [ + 13.3141906, + 52.4613384 + ], + [ + 13.3141906, + 52.4544938 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T10:45:46Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-17" + ], + "pump:status": [ + "broken", + "ok" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000770955210200142, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123716294 + } + }, + { + "id": 123715601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.5030276, + 48.3736517 + ], + [ + 9.5030276, + 48.3736517 + ], + [ + 9.5030276, + 48.3736517 + ], + [ + 9.5030276, + 48.3736517 + ], + [ + 9.5030276, + 48.3736517 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T10:22:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123715601 + } + }, + { + "id": 123715522, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8221405, + 53.3021287 + ], + [ + 13.8525769, + 53.3021287 + ], + [ + 13.8525769, + 53.3800462 + ], + [ + 13.8221405, + 53.3800462 + ], + [ + 13.8221405, + 53.3021287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFw Groß-Fredenwalde", + "uid": "16545424", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T10:20:43Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Nicht zugänglich", + "Fehleintrag, Hydrant ist nur Deko der FFw", + "Bei Nutzung fehlt Anwohnern nach geraumer Zeit das Wasser in den Häusern" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00237152819700024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123715522 + } + }, + { + "id": 123715039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3424824, + 51.6648863 + ], + [ + 14.3495554, + 51.6648863 + ], + [ + 14.3495554, + 51.6703711 + ], + [ + 14.3424824, + 51.6703711 + ], + [ + 14.3424824, + 51.6648863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T10:06:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.0000387939903999854, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123715039 + } + }, + { + "id": 123711005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1609223, + 52.3981639 + ], + [ + 14.1661124, + 52.3981639 + ], + [ + 14.1661124, + 52.3982441 + ], + [ + 14.1609223, + 52.3982441 + ], + [ + 14.1609223, + 52.3981639 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFW OWS", + "uid": "16214974", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T08:05:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.16246019996418e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123711005 + } + }, + { + "id": 123710987, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4057141, + 45.3228077 + ], + [ + 8.4304936, + 45.3228077 + ], + [ + 8.4304936, + 45.3344139 + ], + [ + 8.4057141, + 45.3344139 + ], + [ + 8.4057141, + 45.3228077 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-17T08:04:42Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "tertiary", + "secondary", + "unclassified", + "residential" + ], + "landuse": [ + "education" + ], + "name:etymology:wikidata": [ + "Q3376", + "Q113127925", + "Q42945", + "Q9275", + "Q19886017", + "Q3770509", + "Q113128010", + "Q6596", + "Q6537", + "Q3861764", + "Q13670", + "Q39473", + "Q13410", + "Q103842234", + "Q3724277", + "Q43440", + "Q375769" + ] + }, + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.000287595832900061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 35, + "locale": "it", + "imagery": "osm" + }, + "id": 123710987 + } + }, + { + "id": 123706455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.6339968, + 41.4676676 + ], + [ + -87.0616656, + 41.4676676 + ], + [ + -87.0616656, + 41.8934169 + ], + [ + -87.6339968, + 41.8934169 + ], + [ + -87.6339968, + 41.4676676 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9890724657", + "name": "Valparaiso Bike Share", + "osm_id": 9890724657, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-17T01:49:29Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Valparaiso Bike Share" + ], + "amenity": [ + "bicycle_library", + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.243669607768163, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123706455 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-18.json b/Docs/Tools/stats/stats.2022-7-18.json new file mode 100644 index 0000000000..008ada35b6 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-18.json @@ -0,0 +1,3226 @@ +{ + "features": [ + { + "id": 123783119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1115228, + 38.8393253 + ], + [ + 0.1117144, + 38.8393253 + ], + [ + 0.1117144, + 38.8394937 + ], + [ + 0.1115228, + 38.8394937 + ], + [ + 0.1115228, + 38.8393253 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T23:59:21Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ], + "surface": [ + "paving_stones" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.22654399999493e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 123783119 + } + }, + { + "id": 123783090, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1022411, + 38.837667 + ], + [ + 0.1051336, + 38.837667 + ], + [ + 0.1051336, + 38.8389325 + ], + [ + 0.1022411, + 38.8389325 + ], + [ + 0.1022411, + 38.837667 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T23:56:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "landuse": [ + "education" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "ca;es" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000366045874998627, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education.html", + "theme": "education", + "answer": 4, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 4 + }, + "id": 123783090 + } + }, + { + "id": 123783066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.6618868, + 26.5233694 + ], + [ + -78.6613369, + 26.5233694 + ], + [ + -78.6613369, + 26.5238844 + ], + [ + -78.6618868, + 26.5238844 + ], + [ + -78.6618868, + 26.5233694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T23:54:55Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+1 242 373 7400", + "+242 373 7400" + ], + "amenity": [ + "hospital" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.83198500005166e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/healthcare.html", + "theme": "healthcare", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123783066 + } + }, + { + "id": 123783037, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1026098, + 38.8342001 + ], + [ + 0.1090525, + 38.8342001 + ], + [ + 0.1090525, + 38.8370447 + ], + [ + 0.1026098, + 38.8370447 + ], + [ + 0.1026098, + 38.8342001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T23:52:00Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "yes" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "no" + ], + "socket:type2": [ + "2" + ], + "opening_hours": [ + "24/7" + ], + "socket:type2:output": [ + "22 kW" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000183269044200199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 9, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_500m": 3, + "change_within_1000m": 6 + }, + "id": 123783037 + } + }, + { + "id": 123783019, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1090525, + 38.8370447 + ], + [ + 0.1090525, + 38.8370447 + ], + [ + 0.1090525, + 38.8370447 + ], + [ + 0.1090525, + 38.8370447 + ], + [ + 0.1090525, + 38.8370447 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T23:51:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 3, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_500m": 3 + }, + "id": 123783019 + } + }, + { + "id": 123782333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4731632, + 50.1840832 + ], + [ + 8.5688285, + 50.1840832 + ], + [ + 8.5688285, + 50.2252182 + ], + [ + 8.4731632, + 50.2252182 + ], + [ + 8.4731632, + 50.1840832 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Elch12", + "uid": "20736", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T22:56:20Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "leisure": [ + "nature_reserve" + ], + "boundary": [ + "protected_area" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00393519211549973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123782333 + } + }, + { + "id": 123782297, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Elch12", + "uid": "20736", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T22:54:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123782297 + } + }, + { + "id": 123782241, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4054672, + 51.0449415 + ], + [ + 3.4110054, + 51.0449415 + ], + [ + 3.4110054, + 51.0467913 + ], + [ + 3.4054672, + 51.0467913 + ], + [ + 3.4054672, + 51.0449415 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:51:06Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "industrial", + "house" + ] + }, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.0000102445623600127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 5, + "create": 8, + "locale": "en", + "imagery": "osm" + }, + "id": 123782241 + } + }, + { + "id": 123782204, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:49:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 123782204 + } + }, + { + "id": 123782115, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4084145, + 51.0430034 + ], + [ + 3.4109973, + 51.0430034 + ], + [ + 3.4109973, + 51.0445817 + ], + [ + 3.4084145, + 51.0445817 + ], + [ + 3.4084145, + 51.0430034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:44:42Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "industrial" + ] + }, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00000407643323999589, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 9, + "create": 8, + "locale": "en", + "imagery": "AGIV" + }, + "id": 123782115 + } + }, + { + "id": 123782107, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:44:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 123782107 + } + }, + { + "id": 123781969, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3874313, + 51.0335647 + ], + [ + 3.3957666, + 51.0335647 + ], + [ + 3.3957666, + 51.0458705 + ], + [ + 3.3874313, + 51.0458705 + ], + [ + 3.3874313, + 51.0335647 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:37:06Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "sports_hall" + ], + "building": [ + "yes", + "house", + "retail" + ] + }, + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.000102572534740002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 14, + "create": 12, + "locale": "en", + "imagery": "osm" + }, + "id": 123781969 + } + }, + { + "id": 123781953, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:36:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123781953 + } + }, + { + "id": 123781940, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:36:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123781940 + } + }, + { + "id": 123781878, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3896606, + 51.0387509 + ], + [ + 3.3933092, + 51.0387509 + ], + [ + 3.3933092, + 51.0430739 + ], + [ + 3.3896606, + 51.0430739 + ], + [ + 3.3896606, + 51.0387509 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:34:07Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "entrance": [ + "yes" + ] + }, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000157728978000238, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 6, + "create": 7, + "locale": "en", + "imagery": "osm" + }, + "id": 123781878 + } + }, + { + "id": 123781297, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0713783, + 51.1283031 + ], + [ + 5.0849258, + 51.1283031 + ], + [ + 5.0849258, + 51.1325064 + ], + [ + 5.0713783, + 51.1325064 + ], + [ + 5.0713783, + 51.1283031 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "relation-12915298", + "osm_id": 12915298, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "building": "castle" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T22:06:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "building": [ + "house", + "school", + "yes", + "castle", + "roof" + ], + "addr:street": [ + "Veldstraat" + ], + "addr:housenumber": [ + "81", + "22;24", + "22-24", + "72" + ], + "source:geometry:ref": [ + "Gbg/1042596", + "Gbg/1042516", + "Gbg/1042512", + "Gbg/1042513", + "Gbg/1044548", + "Gbg/1044547", + "Gbg/1042615", + "Gbg/1042594", + "Gbg/1042937", + "Gbg/1043101", + "Gbg/1042995", + "Gbg/1042997", + "Gbg/1043254", + "Gbg/1043227", + "Gbg/5774663", + "Gbg/1042515", + "Gbg/1042487", + "Gbg/5256101", + "Gbg/1043025", + "Gbg/1045167", + "Gbg/5774850", + "Gbg/5774611", + "Gbg/1042597" + ], + "source:geometry:date": [ + "2008-09-01", + "2016-11-21", + "2018-08-29", + "2020-04-20" + ] + }, + "create": 91, + "modify": 250, + "delete": 4, + "area": 0.0000569442067500031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 227, + "theme": "grb", + "answer": 2, + "delete": 4, + "import": 5, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46, + "change_over_5000m": 2, + "change_within_5000m": 5 + }, + "id": 123781297 + } + }, + { + "id": 123781002, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0683191, + 51.12767 + ], + [ + 5.0715949, + 51.12767 + ], + [ + 5.0715949, + 51.1303416 + ], + [ + 5.0683191, + 51.1303416 + ], + [ + 5.0683191, + 51.12767 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T21:52:15Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "apartments", + "garages", + "shed", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1042602", + "Gbg/1042439", + "Gbg/4857245", + "Gbg/4855859", + "Gbg/1042593", + "Gbg/1042604", + "Gbg/4857014", + "Gbg/5774788", + "Gbg/4855857", + "Gbg/1042599", + "Gbg/1044860", + "Gbg/4857016", + "Gbg/1045194", + "Gbg/5774479", + "Gbg/5774815", + "Gbg/5255998", + "Gbg/4857147", + "Gbg/6528439" + ], + "source:geometry:date": [ + "2018-08-29", + "2008-09-01", + "2014-10-01", + "2015-07-13", + "2016-11-21", + "2018-12-19" + ] + }, + "create": 52, + "modify": 139, + "delete": 2, + "area": 0.00000875162727999765, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 121, + "theme": "grb", + "answer": 1, + "delete": 2, + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 36, + "change_within_5000m": 8 + }, + "id": 123781002 + } + }, + { + "id": 123780927, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0666078, + 51.1279041 + ], + [ + 5.0690539, + 51.1279041 + ], + [ + 5.0690539, + 51.1302586 + ], + [ + 5.0666078, + 51.1302586 + ], + [ + 5.0666078, + 51.1279041 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T21:49:15Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/1044536", + "Gbg/4856061", + "Gbg/4856062", + "Gbg/1042611", + "Gbg/1042609", + "Gbg/1042612", + "Gbg/1042610", + "Gbg/1042608", + "Gbg/5774600", + "Gbg/1043661", + "Gbg/5774789", + "Gbg/5774089", + "Gbg/5773921", + "Gbg/4857018", + "Gbg/1045168" + ], + "source:geometry:date": [ + "2008-09-01", + "2014-10-01", + "2016-11-21" + ] + }, + "create": 37, + "modify": 109, + "delete": 0, + "area": 0.00000575934244998977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 94, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 30, + "change_within_5000m": 1 + }, + "id": 123780927 + } + }, + { + "id": 123780594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2774477, + 53.2131072 + ], + [ + 6.2774477, + 53.2131072 + ], + [ + 6.2774477, + 53.2131072 + ], + [ + 6.2774477, + 53.2131072 + ], + [ + 6.2774477, + 53.2131072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T21:31:03Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Gezondheidscentrum Grootegast" + ], + "amenity": [ + "doctors" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/healthcare.html", + "theme": "healthcare", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123780594 + } + }, + { + "id": 123778704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3902626, + 50.8228124 + ], + [ + 4.3907799, + 50.8228124 + ], + [ + 4.3907799, + 50.8230062 + ], + [ + 4.3902626, + 50.8230062 + ], + [ + 4.3902626, + 50.8228124 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T20:22:27Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5O61YZA.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 1.00252740002764e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 123778704 + } + }, + { + "id": 123776560, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3470763, + 44.4985392 + ], + [ + 11.3470763, + 44.4985392 + ], + [ + 11.3470763, + 44.4985392 + ], + [ + 11.3470763, + 44.4985392 + ], + [ + 11.3470763, + 44.4985392 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T19:09:26Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ], + "capacity": [ + "12", + "8" + ], + "cargo_bike": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 3, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 3 + }, + "id": 123776560 + } + }, + { + "id": 123773372, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.346194, + 44.4985327 + ], + [ + 11.3475305, + 44.4985327 + ], + [ + 11.3475305, + 44.501977 + ], + [ + 11.346194, + 44.501977 + ], + [ + 11.346194, + 44.4985327 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T17:30:06Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000004603306949994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 14, + "create": 3, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_500m": 10 + }, + "id": 123773372 + } + }, + { + "id": 123770631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4501049, + 52.5078826 + ], + [ + 13.4501049, + 52.5078826 + ], + [ + 13.4501049, + 52.5078826 + ], + [ + 13.4501049, + 52.5078826 + ], + [ + 13.4501049, + 52.5078826 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Huglu96", + "uid": "722577", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T16:05:56Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "praxis@drcordes.de" + ], + "phone": [ + "+49 30 97002288" + ], + "amenity": [ + "doctors" + ], + "website": [ + "https://www.drcordes.de/" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/healthcare.html", + "theme": "healthcare", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123770631 + } + }, + { + "id": 123770126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0144789, + 38.8300585 + ], + [ + 0.0144789, + 38.8300585 + ], + [ + 0.0144789, + 38.8300585 + ], + [ + 0.0144789, + 38.8300585 + ], + [ + 0.0144789, + 38.8300585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T15:49:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123770126 + } + }, + { + "id": 123769865, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1390476, + 52.4033615 + ], + [ + 14.1657275, + 52.4033615 + ], + [ + 14.1657275, + 52.4071856 + ], + [ + 14.1390476, + 52.4071856 + ], + [ + 14.1390476, + 52.4033615 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFW OWS", + "uid": "16214974", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T15:41:30Z", + "reviewed_features": [], + "tag_changes": { + "fire_hydrant:diameter": [ + "80" + ] + }, + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.000102026605589883, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123769865 + } + }, + { + "id": 123769720, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.393582, + 51.039923 + ], + [ + 3.3948453, + 51.039923 + ], + [ + 3.3948453, + 51.040994 + ], + [ + 3.393582, + 51.040994 + ], + [ + 3.393582, + 51.039923 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T15:37:41Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ], + "building": [ + "retail" + ], + "entrance": [ + "main" + ], + "automatic_door": [ + "motion" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000135299429999521, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 7, + "create": 4, + "locale": "en", + "imagery": "AGIV", + "change_within_500m": 9 + }, + "id": 123769720 + } + }, + { + "id": 123769714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.6331758, + 45.5364897 + ], + [ + -122.6260894, + 45.5364897 + ], + [ + -122.6260894, + 45.5413743 + ], + [ + -122.6331758, + 45.5413743 + ], + [ + -122.6331758, + 45.5364897 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Timothy Smith", + "uid": "115918", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T15:37:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000346142294400563, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123769714 + } + }, + { + "id": 123768932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3609464, + 50.8687751 + ], + [ + 4.3609753, + 50.8687751 + ], + [ + 4.3609753, + 50.8688026 + ], + [ + 4.3609464, + 50.8688026 + ], + [ + 4.3609464, + 50.8687751 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T15:13:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UQdA6KT.jpg", + "https://i.imgur.com/cJ43ftL.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.94750000052979e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 123768932 + } + }, + { + "id": 123768856, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.36006, + 50.8682456 + ], + [ + 4.3604555, + 50.8682456 + ], + [ + 4.3604555, + 50.8684735 + ], + [ + 4.36006, + 50.8684735 + ], + [ + 4.36006, + 50.8682456 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T15:11:32Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/DNvSfKC.jpg" + ], + "image:0": [ + "https://i.imgur.com/zk9G1HT.jpg" + ], + "leisure": [ + "park", + "playground" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.01344499994441e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 123768856 + } + }, + { + "id": 123768550, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3620081, + 50.8582088 + ], + [ + 4.3627148, + 50.8582088 + ], + [ + 4.3627148, + 50.8583627 + ], + [ + 4.3620081, + 50.8583627 + ], + [ + 4.3620081, + 50.8582088 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T15:02:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/PDA9bjU.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.08761130000621e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 2 + }, + "id": 123768550 + } + }, + { + "id": 123768324, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1036134, + 52.092132 + ], + [ + 5.1036134, + 52.092132 + ], + [ + 5.1036134, + 52.092132 + ], + [ + 5.1036134, + 52.092132 + ], + [ + 5.1036134, + 52.092132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T14:56:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 123768324 + } + }, + { + "id": 123768265, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7423413, + 51.1712899 + ], + [ + 4.7423413, + 51.1712899 + ], + [ + 4.7423413, + 51.1712899 + ], + [ + 4.7423413, + 51.1712899 + ], + [ + 4.7423413, + 51.1712899 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T14:55:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "doctors" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/healthcare.html", + "theme": "healthcare", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123768265 + } + }, + { + "id": 123765542, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1147296, + 52.092603 + ], + [ + 5.1147422, + 52.092603 + ], + [ + 5.1147422, + 52.0928868 + ], + [ + 5.1147296, + 52.0928868 + ], + [ + 5.1147296, + 52.092603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:46:41Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "urban" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.57588000001314e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 9, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 9 + }, + "id": 123765542 + } + }, + { + "id": 123765498, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1147656, + 52.0922445 + ], + [ + 5.1147656, + 52.0922445 + ], + [ + 5.1147656, + 52.0922445 + ], + [ + 5.1147656, + 52.0922445 + ], + [ + 5.1147656, + 52.0922445 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:45:35Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 1 + }, + "id": 123765498 + } + }, + { + "id": 123765494, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:45:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 1 + }, + "id": 123765494 + } + }, + { + "id": 123765488, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1148364, + 52.0920425 + ], + [ + 5.1148364, + 52.0920425 + ], + [ + 5.1148364, + 52.0920425 + ], + [ + 5.1148364, + 52.0920425 + ], + [ + 5.1148364, + 52.0920425 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:45:27Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 1 + }, + "id": 123765488 + } + }, + { + "id": 123765486, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:45:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_25m": 1 + }, + "id": 123765486 + } + }, + { + "id": 123765046, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Amenophis", + "uid": "53104", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:34:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123765046 + } + }, + { + "id": 123764852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1146062, + 52.091637 + ], + [ + 5.1150921, + 52.091637 + ], + [ + 5.1150921, + 52.0924457 + ], + [ + 5.1146062, + 52.0924457 + ], + [ + 5.1146062, + 52.091637 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T13:28:38Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "urban" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 5, + "delete": 2, + "area": 3.92947330000281e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 13, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "deletion": 2, + "change_within_25m": 4, + "change_within_50m": 11, + "deletion:node/3105562570": "disused", + "deletion:node/3105562573": "disused" + }, + "id": 123764852 + } + }, + { + "id": 123754334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6492433, + 40.5548081 + ], + [ + -3.648967, + 40.5548081 + ], + [ + -3.648967, + 40.5548204 + ], + [ + -3.6492433, + 40.5548204 + ], + [ + -3.6492433, + 40.5548081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9894888777", + "osm_id": 9894888777, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Cpalaciosh", + "uid": "16577158", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T09:41:38Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree_stump" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.39848999849145e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "create": 2, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "id": 123754334 + } + }, + { + "id": 123753063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2940957, + 52.4668034 + ], + [ + 13.303083, + 52.4668034 + ], + [ + 13.303083, + 52.4698146 + ], + [ + 13.2940957, + 52.4698146 + ], + [ + 13.2940957, + 52.4668034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T09:15:40Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-18" + ], + "pump:status": [ + "ok", + "locked", + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000270625577599674, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123753063 + } + }, + { + "id": 123752945, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1040407, + 52.091698 + ], + [ + 5.1040407, + 52.091698 + ], + [ + 5.1040407, + 52.091698 + ], + [ + 5.1040407, + 52.091698 + ], + [ + 5.1040407, + 52.091698 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T09:12:33Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5yLQeX3.jpg" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123752945 + } + }, + { + "id": 123749589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3797478, + 52.4945143 + ], + [ + 13.3797478, + 52.4945143 + ], + [ + 13.3797478, + 52.4945143 + ], + [ + 13.3797478, + 52.4945143 + ], + [ + 13.3797478, + 52.4945143 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex030", + "uid": "418040", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T08:07:10Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-17", + "2018" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123749589 + } + }, + { + "id": 123745512, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7570313, + 53.1621226 + ], + [ + 13.7570313, + 53.1621226 + ], + [ + 13.7570313, + 53.1621226 + ], + [ + 13.7570313, + 53.1621226 + ], + [ + 13.7570313, + 53.1621226 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mathias Jordan", + "uid": "16545675", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-18T06:36:09Z", + "reviewed_features": [], + "tag_changes": { + "emergency": [ + "water_tank", + "fire_water_pond" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123745512 + } + }, + { + "id": 123745419, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.843767, + 51.1486092 + ], + [ + 4.9055163, + 51.1486092 + ], + [ + 4.9055163, + 51.2016047 + ], + [ + 4.843767, + 51.2016047 + ], + [ + 4.843767, + 51.1486092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-18T06:34:13Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "amenity": [ + "parking", + "fast_food", + "restaurant" + ], + "barrier": [ + "fence" + ], + "highway": [ + "pedestrian", + "primary" + ], + "building": [ + "house", + "yes", + "roof" + ], + "addr:street": [ + "Olensteenweg" + ], + "addr:housenumber": [ + "45" + ], + "source:geometry:ref": [ + "Gbg/3073895", + "Gbg/5246130", + "Gbg/4045556", + "Gbg/3073891", + "Gbg/3075710", + "Gbg/6104853", + "Gbg/6104847", + "Gbg/6104338", + "Gbg/3073892", + "Gbg/4048570", + "Gbg/4048569", + "Gbg/1655518", + "Gbg/1655516", + "Gbg/1655517", + "Gbg/1657642", + "Gbg/1655279", + "Gbg/4045559", + "Gbg/4045560", + "Gbg/4045561", + "Gbg/4045562", + "Gbg/4045563", + "Gbg/4045580", + "Gbg/4048585", + "Gbg/4045576", + "Gbg/4045579", + "Gbg/4048573", + "Gbg/4045578", + "Gbg/4045577", + "Gbg/4045543", + "Gbg/5862379", + "Gbg/4046524", + "Gbg/4046535", + "Gbg/4045558", + "Gbg/4048571", + "Gbg/5861009", + "Gbg/5403705" + ], + "source:geometry:date": [ + "2011-07-27", + "2015-06-25", + "2013-01-16", + "2017-11-02", + "2016-02-10", + "2009-10-26", + "2017-06-29", + "2013-02-20", + "2017-03-01", + "2015-11-24" + ] + }, + "create": 355, + "modify": 283, + "delete": 3, + "area": 0.00327243502814969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 247, + "theme": "grb", + "answer": 2, + "delete": 3, + "import": 40, + "locale": "nl", + "imagery": "AGIV", + "conflation": 72 + }, + "id": 123745419 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-19.json b/Docs/Tools/stats/stats.2022-7-19.json new file mode 100644 index 0000000000..67d1bf64d9 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-19.json @@ -0,0 +1,4794 @@ +{ + "features": [ + { + "id": 123827065, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0577158, + 38.8264945 + ], + [ + 0.1103227, + 38.8264945 + ], + [ + 0.1103227, + 38.8382582 + ], + [ + 0.0577158, + 38.8382582 + ], + [ + 0.0577158, + 38.8264945 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T23:34:59Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "info@dermopremium.es", + "info@marinasalud.es", + "direccion_hlapedrera@gva.es" + ], + "phone": [ + "+34 966 42 90 00", + "+34 966 46 71 70" + ], + "amenity": [ + "pharmacy", + "hospital" + ], + "website": [ + "https://www.marinasalud.es/" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000618851789529786, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/healthcare.html", + "theme": "healthcare", + "answer": 6, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 6 + }, + "id": 123827065 + } + }, + { + "id": 123825809, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3391845, + 52.4720132 + ], + [ + 13.3391845, + 52.4720132 + ], + [ + 13.3391845, + 52.4720132 + ], + [ + 13.3391845, + 52.4720132 + ], + [ + 13.3391845, + 52.4720132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Holger92", + "uid": "4797614", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T22:07:21Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-19" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123825809 + } + }, + { + "id": 123825762, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3530806, + 51.0515668 + ], + [ + 3.4007486, + 51.0515668 + ], + [ + 3.4007486, + 51.0761865 + ], + [ + 3.3530806, + 51.0761865 + ], + [ + 3.3530806, + 51.0515668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T22:03:57Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00117357185959977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 6, + "create": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123825762 + } + }, + { + "id": 123825178, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ], + [ + 4.379381, + 50.8641872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T21:37:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123825178 + } + }, + { + "id": 123824266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3733812, + 50.8393385 + ], + [ + 4.3733812, + 50.8393385 + ], + [ + 4.3733812, + 50.8393385 + ], + [ + 4.3733812, + 50.8393385 + ], + [ + 4.3733812, + 50.8393385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T20:56:35Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123824266 + } + }, + { + "id": 123823860, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.8687119, + 49.8697643 + ], + [ + 10.9398783, + 49.8697643 + ], + [ + 10.9398783, + 49.9578705 + ], + [ + 10.8687119, + 49.9578705 + ], + [ + 10.8687119, + 49.8697643 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Marc Schütz", + "uid": "3555", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T20:42:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school", + "social_facility", + "kindergarten" + ], + "highway": [ + "residential", + "service", + "unclassified", + "primary", + "path", + "living_street", + "primary_link", + "tertiary", + "tertiary_link", + "secondary", + "pedestrian" + ], + "leisure": [ + "park" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q3914", + "Q504808", + "Q277760", + "Q2090", + "Q1670", + "Q529392", + "Q553227", + "Q1726", + "Q37985", + "Q103556", + "Q494537", + "Q483522", + "Q522698", + "Q64", + "Q2492", + "Q61678", + "Q188780", + "Q168542", + "Q84280", + "Q504585", + "Q94836479", + "Q63434", + "Q9312", + "Q1498895", + "Q2531428", + "Q130875", + "Q81720", + "Q77098", + "Q58577", + "Q43948", + "Q539907", + "Q153085", + "Q171353", + "Q1581405", + "Q1583224", + "Q215092", + "Q67597", + "Q63243824", + "Q2120664", + "Q77204", + "Q61620", + "Q16116", + "Q2999", + "Q41257", + "Q12876", + "Q105923", + "Q97159077", + "Q72865", + "Q2582043", + "Q161204", + "Q8958", + "Q95589", + "Q1589611", + "Q302632", + "Q534442", + "Q745899", + "Q44723", + "Q5580", + "Q163800", + "Q9235", + "Q507533", + "Q76728", + "Q243778", + "Q35149", + "Q9021", + "Q57077", + "Q8473", + "Q43523", + "Q317991", + "Q3936", + "Q1771083", + "Q194242", + "Q21288593", + "Q14821", + "Q349313", + "Q44015", + "Q1411211", + "Q1870095" + ] + }, + "create": 0, + "modify": 1015, + "delete": 0, + "area": 0.00627020107167998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 1198, + "locale": "de", + "imagery": "HDM_HOT" + }, + "id": 123823860 + } + }, + { + "id": 123823034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.7093889, + 43.1829993 + ], + [ + -84.7089714, + 43.1829993 + ], + [ + -84.7089714, + 43.183175 + ], + [ + -84.7093889, + 43.183175 + ], + [ + -84.7093889, + 43.1829993 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nickrosencrans", + "uid": "159484", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T20:11:07Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+1 989 236 7794" + ], + "amenity": [ + "restaurant" + ], + "website": [ + "https://www.facebook.com/MiddletonDiner" + ], + "building": [ + "yes" + ], + "delivery": [ + "no" + ], + "diet:halal": [ + "no" + ], + "wheelchair": [ + "limited" + ], + "payment:cash": [ + "yes" + ], + "opening_hours": [ + "Tu-Sa 11:00-19:00" + ], + "payment:cards": [ + "yes" + ], + "diet:vegetarian": [ + "limited" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 7.33547499994714e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "id": 123823034 + } + }, + { + "id": 123822919, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.607421, + 43.2825875 + ], + [ + -84.6017836, + 43.2825875 + ], + [ + -84.6017836, + 43.2969716 + ], + [ + -84.607421, + 43.2969716 + ], + [ + -84.607421, + 43.2825875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nickrosencrans", + "uid": "159484", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T20:07:05Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Ithaca South Elementary School", + "South Elementary School" + ], + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000810889253399717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123822919 + } + }, + { + "id": 123822797, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.7138917, + 43.1725988 + ], + [ + -84.5923021, + 43.1725988 + ], + [ + -84.5923021, + 43.3021566 + ], + [ + -84.7138917, + 43.3021566 + ], + [ + -84.7138917, + 43.1725988 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nickrosencrans", + "uid": "159484", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T20:02:07Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+1 989 236 7300" + ], + "amenity": [ + "school" + ], + "website": [ + "https://www.fultonpirates.net/", + "https://www.ithacaschools.net/o/ijsh", + "https://www.ithacaschools.net/jr-sr" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "en" + ] + }, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.015752881078881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 14, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123822797 + } + }, + { + "id": 123822341, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3246793, + 52.4640256 + ], + [ + 13.3246793, + 52.4640256 + ], + [ + 13.3246793, + 52.4640256 + ], + [ + 13.3246793, + 52.4640256 + ], + [ + 13.3246793, + 52.4640256 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T19:45:43Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "ok", + "blocked" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123822341 + } + }, + { + "id": 123821214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3730894, + 50.8387723 + ], + [ + 4.3733404, + 50.8387723 + ], + [ + 4.3733404, + 50.8680973 + ], + [ + 4.3730894, + 50.8680973 + ], + [ + 4.3730894, + 50.8387723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T19:03:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/n024eWQ.jpg", + "https://i.imgur.com/4h7F9DG.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000736057500001307, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 123821214 + } + }, + { + "id": 123821154, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9047659, + 51.1515703 + ], + [ + 4.9047659, + 51.1515703 + ], + [ + 4.9047659, + 51.1515703 + ], + [ + 4.9047659, + 51.1515703 + ], + [ + 4.9047659, + 51.1515703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T19:00:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 123821154 + } + }, + { + "id": 123819841, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0968727, + 38.8492995 + ], + [ + 0.0969173, + 38.8492995 + ], + [ + 0.0969173, + 38.8493232 + ], + [ + 0.0968727, + 38.8493232 + ], + [ + 0.0968727, + 38.8492995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T18:15:23Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "waste_disposal", + "recycling" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.05701999999307e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 4, + "create": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123819841 + } + }, + { + "id": 123817922, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3494213, + 51.6648863 + ], + [ + 14.3494213, + 51.6648863 + ], + [ + 14.3494213, + 51.6648863 + ], + [ + 14.3494213, + 51.6648863 + ], + [ + 14.3494213, + 51.6648863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T17:19:18Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VPPSGc9.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123817922 + } + }, + { + "id": 123816397, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4479798, + 51.0880293 + ], + [ + 3.4510042, + 51.0880293 + ], + [ + 3.4510042, + 51.0906397 + ], + [ + 3.4479798, + 51.0906397 + ], + [ + 3.4479798, + 51.0880293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T16:47:54Z", + "reviewed_features": [], + "tag_changes": { + "school": [ + "kindergarten;primary" + ], + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "nl" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000789489375998315, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education", + "theme": "education", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 3 + }, + "id": 123816397 + } + }, + { + "id": 123816330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4195343, + 45.3254724 + ], + [ + 8.4223636, + 45.3254724 + ], + [ + 8.4223636, + 45.328559 + ], + [ + 8.4195343, + 45.328559 + ], + [ + 8.4195343, + 45.3254724 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:46:32Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified", + "residential" + ], + "name:etymology:wikidata": [ + "Q112122633", + "Q113153204", + "Q170547" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000873291737998928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 4, + "locale": "it", + "imagery": "osm" + }, + "id": 123816330 + } + }, + { + "id": 123816296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2367754, + 50.7330115 + ], + [ + 4.2367754, + 50.7330115 + ], + [ + 4.2367754, + 50.7330115 + ], + [ + 4.2367754, + 50.7330115 + ], + [ + 4.2367754, + 50.7330115 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:45:58Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123816296 + } + }, + { + "id": 123816238, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4479766, + 51.093353 + ], + [ + 3.4490044, + 51.093353 + ], + [ + 3.4490044, + 51.0940685 + ], + [ + 3.4479766, + 51.0940685 + ], + [ + 3.4479766, + 51.093353 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T16:44:56Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "supermarket" + ], + "building": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.35390899998364e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 123816238 + } + }, + { + "id": 123815565, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2364602, + 50.7352864 + ], + [ + 4.2380559, + 50.7352864 + ], + [ + 4.2380559, + 50.7387442 + ], + [ + 4.2364602, + 50.7387442 + ], + [ + 4.2364602, + 50.7352864 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9897875136", + "name": "Inkoop Oud Goud", + "osm_id": 9897875136, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "shop": "gold_buyer" + } + } + ], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:27:20Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "gold_buyer", + "estate_agent" + ] + }, + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00000551761146000009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "move": 5, + "theme": "shops", + "answer": 5, + "create": 2, + "locale": "en", + "imagery": "osm", + "move:node/9897875136": "improve_accuracy", + "move:node/9897894179": "improve_accuracy" + }, + "id": 123815565 + } + }, + { + "id": 123815497, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:25:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123815497 + } + }, + { + "id": 123815401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6070842, + 52.4507756 + ], + [ + 13.608883, + 52.4507756 + ], + [ + 13.608883, + 52.4508399 + ], + [ + 13.6070842, + 52.4508399 + ], + [ + 13.6070842, + 52.4507756 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:23:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "survey:date": [ + "2022-07-19" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.1566283999692e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123815401 + } + }, + { + "id": 123815332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6070842, + 52.4508399 + ], + [ + 13.6070842, + 52.4508399 + ], + [ + 13.6070842, + 52.4508399 + ], + [ + 13.6070842, + 52.4508399 + ], + [ + 13.6070842, + 52.4508399 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:22:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123815332 + } + }, + { + "id": 123815257, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.608883, + 52.4506787 + ], + [ + 13.6108896, + 52.4506787 + ], + [ + 13.6108896, + 52.4507756 + ], + [ + 13.608883, + 52.4507756 + ], + [ + 13.608883, + 52.4506787 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:19:47Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/q02sjxM.jpg", + "https://i.imgur.com/zIlHdvA.jpg" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ], + "material": [ + "wood" + ], + "direction": [ + "267" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.94439540005222e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 123815257 + } + }, + { + "id": 123815223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6108106, + 52.450749 + ], + [ + 13.6108106, + 52.450749 + ], + [ + 13.6108106, + 52.450749 + ], + [ + 13.6108106, + 52.450749 + ], + [ + 13.6108106, + 52.450749 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:18:12Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123815223 + } + }, + { + "id": 123814684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2362974, + 50.7353231 + ], + [ + 4.2364554, + 50.7353231 + ], + [ + 4.2364554, + 50.7362181 + ], + [ + 4.2362974, + 50.7362181 + ], + [ + 4.2362974, + 50.7353231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Hanssens", + "uid": "15770101", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T16:02:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant", + "fast_food" + ], + "website": [ + "https://loui-sushi.be" + ] + }, + "create": 0, + "modify": 1, + "delete": 1, + "area": 1.41409999999872e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/5578934931": "testing point" + }, + "id": 123814684 + } + }, + { + "id": 123814448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5154911, + 52.4801358 + ], + [ + 13.5380989, + 52.4801358 + ], + [ + 13.5380989, + 52.4930464 + ], + [ + 13.5154911, + 52.4930464 + ], + [ + 13.5154911, + 52.4801358 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T15:56:19Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/NgC5toU.jpg", + "https://i.imgur.com/o7fgMQH.jpg", + "https://i.imgur.com/Md25pdR.jpg", + "https://i.imgur.com/58wlPWS.jpg" + ], + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-19" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000291880262679944, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 13, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 6 + }, + "id": 123814448 + } + }, + { + "id": 123813920, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3507832, + 50.8617855 + ], + [ + 4.3514396, + 50.8617855 + ], + [ + 4.3514396, + 50.8621392 + ], + [ + 4.3507832, + 50.8621392 + ], + [ + 4.3507832, + 50.8617855 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T15:41:11Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "apartments" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 2.3216867999854e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "id": 123813920 + } + }, + { + "id": 123812940, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -123.062478, + 49.2428252 + ], + [ + -123.062478, + 49.2428252 + ], + [ + -123.062478, + 49.2428252 + ], + [ + -123.062478, + 49.2428252 + ], + [ + -123.062478, + 49.2428252 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sieva", + "uid": "4860526", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T15:14:15Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:stand": [ + "yes" + ], + "service:bicycle:tools": [ + "no" + ], + "service:bicycle:chain_tool": [ + "no" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123812940 + } + }, + { + "id": 123811824, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.1973049, + 59.2604082 + ], + [ + 18.1973049, + 59.2604082 + ], + [ + 18.1973049, + 59.2604082 + ], + [ + 18.1973049, + 59.2604082 + ], + [ + 18.1973049, + 59.2604082 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AChoice", + "uid": "394089", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T14:44:30Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 123811824 + } + }, + { + "id": 123811123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3427123, + 50.8734405 + ], + [ + 4.3427123, + 50.8734405 + ], + [ + 4.3427123, + 50.8734405 + ], + [ + 4.3427123, + 50.8734405 + ], + [ + 4.3427123, + 50.8734405 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "_AndrewsL_", + "uid": "8504164", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T14:26:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 123811123 + } + }, + { + "id": 123810686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.2010981, + 59.2591532 + ], + [ + 18.2018878, + 59.2591532 + ], + [ + 18.2018878, + 59.2593223 + ], + [ + 18.2010981, + 59.2593223 + ], + [ + 18.2010981, + 59.2591532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AChoice", + "uid": "394089", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T14:13:53Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.33538270000997e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123810686 + } + }, + { + "id": 123810610, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3305606, + 50.8632293 + ], + [ + 4.3305606, + 50.8632293 + ], + [ + 4.3305606, + 50.8632293 + ], + [ + 4.3305606, + 50.8632293 + ], + [ + 4.3305606, + 50.8632293 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T14:11:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 123810610 + } + }, + { + "id": 123810225, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T14:00:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123810225 + } + }, + { + "id": 123810202, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T13:59:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123810202 + } + }, + { + "id": 123810147, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T13:58:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123810147 + } + }, + { + "id": 123809685, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3526321, + 50.85658 + ], + [ + 4.3526321, + 50.85658 + ], + [ + 4.3526321, + 50.85658 + ], + [ + 4.3526321, + 50.85658 + ], + [ + 4.3526321, + 50.85658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T13:46:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 123809685 + } + }, + { + "id": 123808116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3551819, + 50.860181 + ], + [ + 4.3551819, + 50.860181 + ], + [ + 4.3551819, + 50.860181 + ], + [ + 4.3551819, + 50.860181 + ], + [ + 4.3551819, + 50.860181 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T13:10:21Z", + "reviewed_features": [], + "tag_changes": { + "width": [ + "0.94" + ], + "entrance": [ + "main", + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 8 + }, + "id": 123808116 + } + }, + { + "id": 123806886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3559413, + 50.8605381 + ], + [ + 4.3559413, + 50.8605381 + ], + [ + 4.3559413, + 50.8605381 + ], + [ + 4.3559413, + 50.8605381 + ], + [ + 4.3559413, + 50.8605381 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T12:45:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 123806886 + } + }, + { + "id": 123806448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.356063, + 50.8605468 + ], + [ + 4.3561591, + 50.8605468 + ], + [ + 4.3561591, + 50.8607836 + ], + [ + 4.356063, + 50.8607836 + ], + [ + 4.356063, + 50.8605468 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T12:35:42Z", + "reviewed_features": [], + "tag_changes": { + "width": [ + "0.95" + ], + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.27564799997193e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 123806448 + } + }, + { + "id": 123805745, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T12:20:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123805745 + } + }, + { + "id": 123805743, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T12:20:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123805743 + } + }, + { + "id": 123805732, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3537721, + 50.8606179 + ], + [ + 4.3549681, + 50.8606179 + ], + [ + 4.3549681, + 50.8614007 + ], + [ + 4.3537721, + 50.8614007 + ], + [ + 4.3537721, + 50.8606179 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T12:20:19Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "company" + ], + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.36228799995474e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 5 + }, + "id": 123805732 + } + }, + { + "id": 123804891, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T12:01:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123804891 + } + }, + { + "id": 123804522, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3503112, + 50.8646408 + ], + [ + 4.3523403, + 50.8646408 + ], + [ + 4.3523403, + 50.8651701 + ], + [ + 4.3503112, + 50.8651701 + ], + [ + 4.3503112, + 50.8646408 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T11:52:26Z", + "reviewed_features": [], + "tag_changes": { + "kerb": [ + "lowered", + "raised" + ], + "barrier": [ + "kerb" + ], + "highway": [ + "crossing", + "footway" + ], + "tactile_paving": [ + "no" + ], + "button_operated": [ + "no" + ], + "crossing:island": [ + "no" + ] + }, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000107400263000739, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 6, + "create": 6, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 10 + }, + "id": 123804522 + } + }, + { + "id": 123804121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3498441, + 50.8630167 + ], + [ + 4.3533158, + 50.8630167 + ], + [ + 4.3533158, + 50.8656632 + ], + [ + 4.3498441, + 50.8656632 + ], + [ + 4.3498441, + 50.8630167 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T11:43:14Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ], + "image": [ + "https://i.imgur.com/5EzcD8q.jpg" + ], + "width": [ + "0.82", + "0.93" + ], + "image:0": [ + "https://i.imgur.com/lGUnP7y.jpg" + ], + "building": [ + "office" + ], + "automatic_door": [ + "motion" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000918785404998947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 5 + }, + "id": 123804121 + } + }, + { + "id": 123804110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3493369, + 50.8655878 + ], + [ + 4.350863, + 50.8655878 + ], + [ + 4.350863, + 50.8668593 + ], + [ + 4.3493369, + 50.8668593 + ], + [ + 4.3493369, + 50.8655878 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-444059131", + "name": "Herman Teirlinckgebouw", + "osm_id": 444059131, + "reasons": [ + 43 + ], + "version": 16, + "primary_tags": { + "building": "government" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T11:43:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "reception_desk" + ], + "building": [ + "government" + ] + }, + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.00000194043615000271, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "answer": 12, + "create": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 9, + "change_within_500m": 1 + }, + "id": 123804110 + } + }, + { + "id": 123802863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RobinJulien", + "uid": "10173303", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T11:12:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 123802863 + } + }, + { + "id": 123798696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3566973, + 50.8605715 + ], + [ + 4.3566973, + 50.8605715 + ], + [ + 4.3566973, + 50.8605715 + ], + [ + 4.3566973, + 50.8605715 + ], + [ + 4.3566973, + 50.8605715 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.22.1", + "comment": "Adding data with #MapComplete for theme #governments", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T09:38:43Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "FOD/SPF BOSA", + "Selor-Bosa" + ], + "office": [ + "government" + ], + "website": [ + "https://bosa.belgium.be", + "https://www.selor.be" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "http://127.0.0.1:1234/theme.html", + "theme": "governments", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123798696 + } + }, + { + "id": 123795136, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4650744, + 50.8168273 + ], + [ + 3.4650744, + 50.8168273 + ], + [ + 3.4650744, + 50.8168273 + ], + [ + 3.4650744, + 50.8168273 + ], + [ + 3.4650744, + 50.8168273 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T08:34:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9PUpCmc.jpg" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123795136 + } + }, + { + "id": 123794909, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4659921, + 50.815764 + ], + [ + 3.4659921, + 50.815764 + ], + [ + 3.4659921, + 50.815764 + ], + [ + 3.4659921, + 50.815764 + ], + [ + 3.4659921, + 50.815764 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T08:29:04Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jd93DkF.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123794909 + } + }, + { + "id": 123794466, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T08:19:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/", + "theme": "healthcare", + "answer": 1, + "locale": "en" + }, + "id": 123794466 + } + }, + { + "id": 123793778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0442275, + 48.4606276 + ], + [ + 8.0493357, + 48.4606276 + ], + [ + 8.0493357, + 48.463208 + ], + [ + 8.0442275, + 48.463208 + ], + [ + 8.0442275, + 48.4606276 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T08:06:08Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "3" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ], + "direction": [ + "96", + "84", + "317" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000013181199279998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 9, + "change_within_500m": 5, + "move:node/6307814155": "improve_accuracy" + }, + "id": 123793778 + } + }, + { + "id": 123789401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8523612, + 51.1453604 + ], + [ + 4.8573638, + 51.1453604 + ], + [ + 4.8573638, + 51.149085 + ], + [ + 4.8523612, + 51.149085 + ], + [ + 4.8523612, + 51.1453604 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T06:22:09Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4046135", + "Gbg/4046121", + "Gbg/4046137", + "Gbg/4046124", + "Gbg/4046120", + "Gbg/4046138", + "Gbg/4046119", + "Gbg/4046123", + "Gbg/4049676", + "Gbg/4046122", + "Gbg/4046516", + "Gbg/4046517", + "Gbg/4046518", + "Gbg/4046621", + "Gbg/4046601", + "Gbg/4046559", + "Gbg/4046602", + "Gbg/4046558", + "Gbg/4046603", + "Gbg/4046557", + "Gbg/4046604", + "Gbg/4046556", + "Gbg/4046615", + "Gbg/4046639", + "Gbg/4928280", + "Gbg/4046616", + "Gbg/7020088", + "Gbg/4046619", + "Gbg/4046600", + "Gbg/4046682", + "Gbg/4046681", + "Gbg/5748697", + "Gbg/6757846", + "Gbg/4046140", + "Gbg/4928350", + "Gbg/4046623", + "Gbg/4046624", + "Gbg/4046679", + "Gbg/4046678", + "Gbg/4046352", + "Gbg/4046578", + "Gbg/4046622", + "Gbg/4046544", + "Gbg/4046543", + "Gbg/5862537", + "Gbg/5862531", + "Gbg/4046540", + "Gbg/4046539", + "Gbg/6803485", + "Gbg/4046136" + ], + "source:geometry:date": [ + "2013-01-16", + "2018-10-24", + "2018-09-13", + "2014-12-04", + "2021-10-25", + "2020-06-05", + "2013-02-20", + "2017-03-01" + ] + }, + "create": 645, + "modify": 301, + "delete": 0, + "area": 0.0000186326839599912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 259, + "theme": "grb", + "import": 75, + "locale": "nl", + "imagery": "AGIV", + "conflation": 100 + }, + "id": 123789401 + } + }, + { + "id": 123789365, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8553528, + 51.1489028 + ], + [ + 4.8563636, + 51.1489028 + ], + [ + 4.8563636, + 51.1493779 + ], + [ + 4.8553528, + 51.1493779 + ], + [ + 4.8553528, + 51.1489028 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T06:21:22Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/4046523", + "Gbg/4046537", + "Gbg/4046522", + "Gbg/5403713" + ], + "source:geometry:date": [ + "2014-12-04", + "2013-02-20", + "2013-01-16", + "2015-11-24" + ] + }, + "create": 53, + "modify": 20, + "delete": 0, + "area": 4.80231079995352e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 16, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8 + }, + "id": 123789365 + } + }, + { + "id": 123788718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5154911, + 52.4801358 + ], + [ + 13.5380989, + 52.4801358 + ], + [ + 13.5380989, + 52.4930464 + ], + [ + 13.5154911, + 52.4930464 + ], + [ + 13.5154911, + 52.4801358 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T06:05:40Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "broken", + "ok" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000291880262679944, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123788718 + } + }, + { + "id": 123787306, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T05:13:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123787306 + } + }, + { + "id": 123787196, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T05:08:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123787196 + } + }, + { + "id": 123787186, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T05:08:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123787186 + } + }, + { + "id": 123787009, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ], + [ + 13.6090254, + 52.4508092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T05:01:20Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "dog_excrement;trash", + "trash" + ], + "amenity": [ + "waste_basket" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123787009 + } + }, + { + "id": 123786902, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T04:55:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123786902 + } + }, + { + "id": 123786822, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6122966, + 52.4517563 + ], + [ + 13.6122966, + 52.4517563 + ], + [ + 13.6122966, + 52.4517563 + ], + [ + 13.6122966, + 52.4517563 + ], + [ + 13.6122966, + 52.4517563 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T04:50:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123786822 + } + }, + { + "id": 123786735, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6122434, + 52.4515561 + ], + [ + 13.6122434, + 52.4515561 + ], + [ + 13.6122434, + 52.4515561 + ], + [ + 13.6122434, + 52.4515561 + ], + [ + 13.6122434, + 52.4515561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T04:46:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/kko982f.jpg" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "direction": [ + "259" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 18, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 123786735 + } + }, + { + "id": 123786484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6455658, + 50.7653174 + ], + [ + 3.6455658, + 50.7653174 + ], + [ + 3.6455658, + 50.7653174 + ], + [ + 3.6455658, + 50.7653174 + ], + [ + 3.6455658, + 50.7653174 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T04:32:15Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/7KTSGuv.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123786484 + } + }, + { + "id": 123785826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6099936, + 50.7539139 + ], + [ + 3.6539158, + 50.7539139 + ], + [ + 3.6539158, + 50.7713386 + ], + [ + 3.6099936, + 50.7713386 + ], + [ + 3.6099936, + 50.7539139 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T03:58:05Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jY5ZZ73.jpg", + "https://i.imgur.com/DLvte1A.jpg", + "https://i.imgur.com/KSIC14G.jpg" + ], + "route": [ + "bicycle", + "mtb", + "hiking" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000765331158339972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "id": 123785826 + } + }, + { + "id": 123785275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7993712, + 44.1399391 + ], + [ + 4.7998143, + 44.1399391 + ], + [ + 4.7998143, + 44.1411476 + ], + [ + 4.7993712, + 44.1411476 + ], + [ + 4.7993712, + 44.1399391 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-19T03:14:59Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "10" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.35486349998733e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 123785275 + } + }, + { + "id": 123784705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 172.5586397, + -43.5236976 + ], + [ + 172.5587621, + -43.5236976 + ], + [ + 172.5587621, + -43.5234595 + ], + [ + 172.5586397, + -43.5234595 + ], + [ + 172.5586397, + -43.5236976 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CoderThomas", + "uid": "11817585", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-19T02:21:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "direction": [ + "101", + "15", + "104", + "111" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.91434400018616e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "LINZ_NZ_Aerial_Imagery" + }, + "id": 123784705 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-20.json b/Docs/Tools/stats/stats.2022-7-20.json new file mode 100644 index 0000000000..c3b91172b3 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-20.json @@ -0,0 +1,3573 @@ +{ + "features": [ + { + "id": 123869916, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.0715215, + 40.0403618 + ], + [ + -86.0714269, + 40.0403618 + ], + [ + -86.0714269, + 40.0404336 + ], + [ + -86.0715215, + 40.0404336 + ], + [ + -86.0715215, + 40.0403618 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9900802972", + "name": "Noblesville", + "osm_id": 9900802972, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T23:59:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station", + "bicycle_parking", + "bicycle_library" + ] + }, + "create": 3, + "modify": 3, + "delete": 0, + "area": 6.79227999984756e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 8, + "create": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 3, + "change_within_25m": 8 + }, + "id": 123869916 + } + }, + { + "id": 123868182, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3089822, + 51.6747081 + ], + [ + 14.3093283, + 51.6747081 + ], + [ + 14.3093283, + 51.6749319 + ], + [ + 14.3089822, + 51.6749319 + ], + [ + 14.3089822, + 51.6747081 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T22:00:37Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "das ist leider falsch eingetragen" + ], + "landuse": [ + "basin" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.74571800001447e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123868182 + } + }, + { + "id": 123867395, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.0946968, + 51.8897052 + ], + [ + -2.0944922, + 51.8897052 + ], + [ + -2.0944922, + 51.8898033 + ], + [ + -2.0946968, + 51.8898033 + ], + [ + -2.0946968, + 51.8897052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T21:18:17Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "public" + ], + "leisure": [ + "pitch" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.00712599990438e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 123867395 + } + }, + { + "id": 123867066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5997185, + 50.7485863 + ], + [ + 3.5997185, + 50.7485863 + ], + [ + 3.5997185, + 50.7485863 + ], + [ + 3.5997185, + 50.7485863 + ], + [ + 3.5997185, + 50.7485863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T21:02:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/cB2PWWw.jpg" + ], + "tourism": [ + "artwork" + ], + "historic": [ + "memorial" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123867066 + } + }, + { + "id": 123866427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9526508, + 48.8283096 + ], + [ + 12.9567737, + 48.8283096 + ], + [ + 12.9567737, + 48.8308515 + ], + [ + 12.9526508, + 48.8308515 + ], + [ + 12.9526508, + 48.8283096 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T20:36:10Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "university" + ], + "name:etymology:wikidata": [ + "Q468553" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000104799995100141, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123866427 + } + }, + { + "id": 123866299, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.8775688, + 56.2480817 + ], + [ + 43.8813524, + 56.2480817 + ], + [ + 43.8813524, + 56.2498446 + ], + [ + 43.8775688, + 56.2498446 + ], + [ + 43.8775688, + 56.2480817 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T20:31:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UuzVzpA.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000066701084400078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_5000m": 3 + }, + "id": 123866299 + } + }, + { + "id": 123866281, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5563084, + 50.8332773 + ], + [ + 3.6089142, + 50.8332773 + ], + [ + 3.6089142, + 50.8341479 + ], + [ + 3.5563084, + 50.8341479 + ], + [ + 3.5563084, + 50.8332773 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T20:30:41Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YtJwMou.jpg", + "https://i.imgur.com/nEoWFah.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000457986094799447, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123866281 + } + }, + { + "id": 123865689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3428682, + 50.8572987 + ], + [ + 4.3428682, + 50.8572987 + ], + [ + 4.3428682, + 50.8572987 + ], + [ + 4.3428682, + 50.8572987 + ], + [ + 4.3428682, + 50.8572987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T20:09:23Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "JES Stadsavontuur" + ], + "email": [ + "glenn.govaert@jes.be" + ], + "phone": [ + "+32 2 411 68 83" + ], + "leisure": [ + "sports_centre" + ], + "website": [ + "https://jesbrussels.be/vrije-tijd/stadsavontuur/" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/climbing", + "theme": "climbing", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 123865689 + } + }, + { + "id": 123865007, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3998477, + 45.3145448 + ], + [ + 8.4103905, + 45.3145448 + ], + [ + 8.4103905, + 45.3211854 + ], + [ + 8.3998477, + 45.3211854 + ], + [ + 8.3998477, + 45.3145448 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T19:45:47Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified", + "residential", + "service" + ], + "name:etymology:wikidata": [ + "Q202303", + "Q189015", + "Q5883980", + "Q113164895", + "Q101698", + "Q327237", + "Q113164812", + "Q25025", + "Q25050" + ] + }, + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.0000700105176799682, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 43, + "locale": "it", + "imagery": "osm" + }, + "id": 123865007 + } + }, + { + "id": 123864455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wtRocks", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T19:26:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123864455 + } + }, + { + "id": 123862902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.384526, + 51.6463892 + ], + [ + 14.3857947, + 51.6463892 + ], + [ + 14.3857947, + 51.6507429 + ], + [ + 14.384526, + 51.6507429 + ], + [ + 14.384526, + 51.6463892 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T18:40:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000552353918999762, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123862902 + } + }, + { + "id": 123860844, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4250519, + 46.3838935 + ], + [ + 8.4250519, + 46.3838935 + ], + [ + 8.4250519, + 46.3838935 + ], + [ + 8.4250519, + 46.3838935 + ], + [ + 8.4250519, + 46.3838935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Enrico Rossi", + "uid": "53188", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T17:28:17Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "toilets": [ + "yes" + ], + "tourism": [ + "caravan_site" + ], + "capacity": [ + "30" + ], + "sanitary_dump_station": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 4, + "locale": "it", + "imagery": "osm" + }, + "id": 123860844 + } + }, + { + "id": 123860774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.8134759, + 12.9651088 + ], + [ + 88.4189388, + 12.9651088 + ], + [ + 88.4189388, + 28.6166904 + ], + [ + 72.8134759, + 28.6166904 + ], + [ + 72.8134759, + 12.9651088 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T17:26:24Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary", + "residential", + "unclassified", + "tertiary", + "primary" + ], + "leisure": [ + "park" + ], + "natural": [ + "water" + ], + "name:etymology:wikidata": [ + "Q55769", + "Q7282619" + ] + }, + "create": 0, + "modify": 80, + "delete": 0, + "area": 244.250175985123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 101, + "locale": "en", + "imagery": "osm" + }, + "id": 123860774 + } + }, + { + "id": 123859702, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4093209, + 45.3133868 + ], + [ + 8.4293647, + 45.3133868 + ], + [ + 8.4293647, + 45.3236221 + ], + [ + 8.4093209, + 45.3236221 + ], + [ + 8.4093209, + 45.3133868 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T16:53:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "hospital", + "school" + ], + "highway": [ + "tertiary", + "residential", + "unclassified", + "secondary", + "footway" + ], + "landuse": [ + "education" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q1025312", + "Q168962", + "Q806070", + "Q938903", + "Q166234", + "Q3136905", + "Q110279605", + "Q6101", + "Q316876", + "Q1016", + "Q172599", + "Q1399", + "Q182092", + "Q2714363", + "Q21077161", + "Q1401", + "Q44112", + "Q43399", + "Q313980", + "Q1242", + "Q296244", + "Q110160583", + "Q275635", + "Q53353158", + "Q715232", + "Q104694031", + "Q550262" + ] + }, + "create": 0, + "modify": 74, + "delete": 0, + "area": 0.000205154306139957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 91, + "locale": "it", + "imagery": "osm" + }, + "id": 123859702 + } + }, + { + "id": 123859643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1067185, + 38.834806 + ], + [ + 0.1219017, + 38.834806 + ], + [ + 0.1219017, + 38.8455599 + ], + [ + 0.1067185, + 38.8455599 + ], + [ + 0.1067185, + 38.834806 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T16:51:18Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "fee": [ + "yes", + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "maxstay": [ + "2 hours" + ], + "scooter": [ + "yes" + ], + "motorcar": [ + "yes" + ], + "parking:fee": [ + "yes", + "no" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "socket:type2": [ + "1" + ], + "payment:cards": [ + "no" + ], + "authentication:app": [ + "yes" + ], + "authentication:nfc": [ + "no" + ], + "authentication:none": [ + "no" + ], + "socket:type2:output": [ + "7.4 kW", + "22 kW" + ], + "payment:membership_card": [ + "no" + ], + "authentication:debit_card": [ + "no" + ], + "authentication:money_card": [ + "no" + ], + "authentication:phone_call": [ + "no" + ], + "authentication:short_message": [ + "no" + ], + "authentication:membership_card": [ + "no" + ] + }, + "create": 1, + "modify": 15, + "delete": 0, + "area": 0.000163278614479961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 23, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain" + }, + "id": 123859643 + } + }, + { + "id": 123859610, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.5170757, + 64.1268042 + ], + [ + 29.5170757, + 64.1268042 + ], + [ + 29.5170757, + 64.1268042 + ], + [ + 29.5170757, + 64.1268042 + ], + [ + 29.5170757, + 64.1268042 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T16:50:08Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "service:bicycle:retail": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123859610 + } + }, + { + "id": 123859116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.106627, + 38.8342582 + ], + [ + 0.1087568, + 38.8342582 + ], + [ + 0.1087568, + 38.8354983 + ], + [ + 0.106627, + 38.8354983 + ], + [ + 0.106627, + 38.8342582 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T16:36:01Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary" + ], + "maxspeed": [ + "50" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000264116497999331, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed", + "theme": "maxspeed", + "answer": 1, + "locale": "ca", + "imagery": "osm" + }, + "id": 123859116 + } + }, + { + "id": 123858848, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1132885, + 38.8423754 + ], + [ + -0.1132885, + 38.8423754 + ], + [ + -0.1132885, + 38.8423754 + ], + [ + -0.1132885, + 38.8423754 + ], + [ + -0.1132885, + 38.8423754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T16:27:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "dentist" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/healthcare.html", + "theme": "healthcare", + "answer": 1, + "create": 1, + "locale": "ca", + "imagery": "PNOA-Spain" + }, + "id": 123858848 + } + }, + { + "id": 123858720, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4888146, + 50.7898645 + ], + [ + 3.4888146, + 50.7898645 + ], + [ + 3.4888146, + 50.7898645 + ], + [ + 3.4888146, + 50.7898645 + ], + [ + 3.4888146, + 50.7898645 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T16:23:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/981IcAa.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123858720 + } + }, + { + "id": 123856751, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5922091, + 53.0267034 + ], + [ + 6.593019, + 53.0267034 + ], + [ + 6.593019, + 53.0271404 + ], + [ + 6.5922091, + 53.0271404 + ], + [ + 6.5922091, + 53.0267034 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T15:29:16Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Hondenspeelplaats Marsdijk" + ], + "image": [ + "https://i.imgur.com/uBuhYp8.jpg" + ], + "amenity": [ + "waste_basket" + ], + "barrier": [ + "fence" + ], + "image:0": [ + "https://i.imgur.com/u84pN4T.jpg" + ], + "image:1": [ + "https://i.imgur.com/mEXtTfM.jpg" + ], + "image:2": [ + "https://i.imgur.com/8gFFdzv.jpg" + ], + "leisure": [ + "dog_park" + ], + "small_dog": [ + "shared" + ] + }, + "create": 1, + "modify": 8, + "delete": 0, + "area": 3.5392629999846e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "move": 1, + "theme": "pets", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 5, + "move:node/9900017686": "improve_accuracy" + }, + "id": 123856751 + } + }, + { + "id": 123855431, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4927793, + 50.7567379 + ], + [ + 3.6051468, + 50.7567379 + ], + [ + 3.6051468, + 50.8162546 + ], + [ + 3.4927793, + 50.8162546 + ], + [ + 3.4927793, + 50.7567379 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T14:56:38Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Gptf5Ae.jpg", + "https://i.imgur.com/nPJcGEC.jpg", + "https://i.imgur.com/GMwu0U1.jpg", + "https://i.imgur.com/XZGxgv7.jpg" + ], + "route": [ + "foot", + "bicycle", + "hiking", + "bus" + ], + "amenity": [ + "bench" + ], + "highway": [ + "track", + "unclassified", + "footway", + "service", + "path", + "residential", + "tertiary" + ], + "landuse": [ + "farmyard" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00668774278725036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "id": 123855431 + } + }, + { + "id": 123853858, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3397713, + 53.2513714 + ], + [ + 6.3397713, + 53.2513714 + ], + [ + 6.3397713, + 53.2513714 + ], + [ + 6.3397713, + 53.2513714 + ], + [ + 6.3397713, + 53.2513714 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T14:21:24Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "picnic_table" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123853858 + } + }, + { + "id": 123853806, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3397692, + 53.2513953 + ], + [ + 6.3397692, + 53.2513953 + ], + [ + 6.3397692, + 53.2513953 + ], + [ + 6.3397692, + 53.2513953 + ], + [ + 6.3397692, + 53.2513953 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T14:20:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 123853806 + } + }, + { + "id": 123852812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.8195054, + 11.9371712 + ], + [ + 79.8043921, + 11.9371712 + ], + [ + 79.8043921, + 28.5947474 + ], + [ + 72.8195054, + 28.5947474 + ], + [ + 72.8195054, + 11.9371712 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T13:57:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school", + "library" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q9513", + "Q19812241", + "Q3537634" + ] + }, + "create": 0, + "modify": 14, + "delete": 0, + "area": 116.351282453617, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "id": 123852812 + } + }, + { + "id": 123852334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3559547, + 50.8634729 + ], + [ + 4.3563651, + 50.8634729 + ], + [ + 4.3563651, + 50.8637827 + ], + [ + 4.3559547, + 50.8637827 + ], + [ + 4.3559547, + 50.8634729 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RobinJulien", + "uid": "10173303", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T13:44:37Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "community_centre" + ], + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.27141920001456e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123852334 + } + }, + { + "id": 123852068, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.6314189, + -34.5874977 + ], + [ + -58.6314189, + -34.5874977 + ], + [ + -58.6314189, + -34.5874977 + ], + [ + -58.6314189, + -34.5874977 + ], + [ + -58.6314189, + -34.5874977 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T13:38:24Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "signal" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123852068 + } + }, + { + "id": 123849519, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3595728, + 53.2289964 + ], + [ + 6.3748339, + 53.2289964 + ], + [ + 6.3748339, + 53.2327886 + ], + [ + 6.3595728, + 53.2327886 + ], + [ + 6.3595728, + 53.2289964 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T12:28:40Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes", + "no" + ], + "highway": [ + "secondary", + "cycleway", + "path", + "street_lamp" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000057873143419992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_500m": 1, + "change_within_1000m": 1 + }, + "id": 123849519 + } + }, + { + "id": 123849450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.2767473, + 53.2140205 + ], + [ + 6.2767473, + 53.2140205 + ], + [ + 6.2767473, + 53.2140205 + ], + [ + 6.2767473, + 53.2140205 + ], + [ + 6.2767473, + 53.2140205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T12:26:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ], + "recycling:shoes": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_within_1000m": 1 + }, + "id": 123849450 + } + }, + { + "id": 123849449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3745581, + 53.2326105 + ], + [ + 6.3746506, + 53.2326105 + ], + [ + 6.3746506, + 53.2326837 + ], + [ + 6.3745581, + 53.2326837 + ], + [ + 6.3745581, + 53.2326105 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T12:26:41Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 3, + "modify": 0, + "delete": 0, + "area": 6.77100000026005e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "create": 3, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 3, + "change_within_25m": 5 + }, + "id": 123849449 + } + }, + { + "id": 123849211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.8179812, + 53.0424808 + ], + [ + 8.8189602, + 53.0424808 + ], + [ + 8.8189602, + 53.0428776 + ], + [ + 8.8179812, + 53.0428776 + ], + [ + 8.8179812, + 53.0424808 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niels Elgaard Larsen", + "uid": "1288", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T12:21:20Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "no" + ], + "leisure": [ + "dog_park" + ], + "small_dog": [ + "shared" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.88467199996931e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123849211 + } + }, + { + "id": 123847579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.8568433, + 47.9980214 + ], + [ + 7.8568433, + 47.9980214 + ], + [ + 7.8568433, + 47.9980214 + ], + [ + 7.8568433, + 47.9980214 + ], + [ + 7.8568433, + 47.9980214 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T11:42:56Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/igD30OX.jpg" + ], + "access": [ + "yes" + ], + "leisure": [ + "playground" + ], + "surface": [ + "woodchips" + ], + "wheelchair": [ + "limited" + ], + "opening_hours": [ + "sunrise-sunset" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 123847579 + } + }, + { + "id": 123846535, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.379468, + 50.8720933 + ], + [ + 4.379468, + 50.8720933 + ], + [ + 4.379468, + 50.8720933 + ], + [ + 4.379468, + 50.8720933 + ], + [ + 4.379468, + 50.8720933 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlexanderReb", + "uid": "16447083", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://8080-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T11:17:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://8080-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123846535 + } + }, + { + "id": 123846485, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ], + [ + 4.3498343, + 50.8662424 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T11:15:54Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/rVxcIvd.jpg" + ], + "access": [ + "customers" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123846485 + } + }, + { + "id": 123846021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3730894, + 50.8387723 + ], + [ + 4.3730894, + 50.8387723 + ], + [ + 4.3730894, + 50.8387723 + ], + [ + 4.3730894, + 50.8387723 + ], + [ + 4.3730894, + 50.8387723 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T11:05:24Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "image:0": [ + "https://i.imgur.com/S3M59uZ.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "rainbow_crossings", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123846021 + } + }, + { + "id": 123845951, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T11:03:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/index.html", + "theme": "rainbow_crossings", + "locale": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123845951 + } + }, + { + "id": 123844847, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3216341, + 52.465545 + ], + [ + 13.3216341, + 52.465545 + ], + [ + 13.3216341, + 52.465545 + ], + [ + 13.3216341, + 52.465545 + ], + [ + 13.3216341, + 52.465545 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T10:36:31Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-20", + "2022-07-17" + ], + "pump:status": [ + "ok", + "blocked" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123844847 + } + }, + { + "id": 123844707, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2871062, + 50.8013397 + ], + [ + 4.2871062, + 50.8013397 + ], + [ + 4.2871062, + 50.8013397 + ], + [ + 4.2871062, + 50.8013397 + ], + [ + 4.2871062, + 50.8013397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mizuna", + "uid": "12496737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T10:33:06Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123844707 + } + }, + { + "id": 123844462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.027127, + 51.9915138 + ], + [ + 14.0960091, + 51.9915138 + ], + [ + 14.0960091, + 52.0298784 + ], + [ + 14.027127, + 52.0298784 + ], + [ + 14.027127, + 51.9915138 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T10:26:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.00264263421366008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123844462 + } + }, + { + "id": 123841349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.0260997, + 51.7782894 + ], + [ + 14.0260997, + 51.7782894 + ], + [ + 14.0260997, + 51.7782894 + ], + [ + 14.0260997, + 51.7782894 + ], + [ + 14.0260997, + 51.7782894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T09:16:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123841349 + } + }, + { + "id": 123841037, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4062348, + 50.7594223 + ], + [ + 3.587651, + 50.7594223 + ], + [ + 3.587651, + 50.8349046 + ], + [ + 3.4062348, + 50.8349046 + ], + [ + 3.4062348, + 50.7594223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T09:09:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/JSJEpQh.jpg", + "https://i.imgur.com/6NOgTR7.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0136937120332608, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123841037 + } + }, + { + "id": 123840168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.007386, + 51.7861317 + ], + [ + 14.007386, + 51.7861317 + ], + [ + 14.007386, + 51.7861317 + ], + [ + 14.007386, + 51.7861317 + ], + [ + 14.007386, + 51.7861317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9899285885", + "osm_id": 9899285885, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "emergency": "Wasser tank unterirdisch" + } + } + ], + "user": "EnricoP71", + "uid": "15704807", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-20T08:50:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123840168 + } + }, + { + "id": 123839939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3780429, + 50.8691168 + ], + [ + 4.3790066, + 50.8691168 + ], + [ + 4.3790066, + 50.8713231 + ], + [ + 4.3780429, + 50.8713231 + ], + [ + 4.3780429, + 50.8691168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlexanderReb", + "uid": "16447083", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://8081-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T08:46:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000212621130999903, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://8081-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123839939 + } + }, + { + "id": 123839852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4666068, + 50.7893835 + ], + [ + 3.5706814, + 50.7893835 + ], + [ + 3.5706814, + 50.815326 + ], + [ + 3.4666068, + 50.815326 + ], + [ + 3.4666068, + 50.7893835 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T08:44:42Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jGofxqH.jpg", + "https://i.imgur.com/4kpC07r.jpg", + "https://i.imgur.com/6OrmCfo.jpg", + "https://i.imgur.com/2rGvLlV.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00269995531049992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "id": 123839852 + } + }, + { + "id": 123837973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3963653, + 51.0409765 + ], + [ + 3.3966545, + 51.0409765 + ], + [ + 3.3966545, + 51.0411284 + ], + [ + 3.3963653, + 51.0411284 + ], + [ + 3.3963653, + 51.0409765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T08:00:50Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:date": [ + "2019-04-18", + "2012-09-24" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.3929479999657e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 7, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 123837973 + } + }, + { + "id": 123837228, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3307745, + 51.6631111 + ], + [ + 14.3398994, + 51.6631111 + ], + [ + 14.3398994, + 51.6702413 + ], + [ + 14.3307745, + 51.6702413 + ], + [ + 14.3307745, + 51.6631111 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T07:43:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.000065062361979988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123837228 + } + }, + { + "id": 123835174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.61875, + 51.7096253 + ], + [ + 13.6511993, + 51.7096253 + ], + [ + 13.6511993, + 51.7212528 + ], + [ + 13.61875, + 51.7212528 + ], + [ + 13.61875, + 51.7096253 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FFw Zeckerin", + "uid": "16592520", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T06:48:36Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "800l/min.", + "600l/min.", + "1000l/min.", + "200m3" + ], + "natural": [ + "water" + ] + }, + "create": 5, + "modify": 13, + "delete": 0, + "area": 0.000377304235750094, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123835174 + } + }, + { + "id": 123832834, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.66065, + 50.9326706 + ], + [ + 3.66065, + 50.9326706 + ], + [ + 3.66065, + 50.9326706 + ], + [ + 3.66065, + 50.9326706 + ], + [ + 3.66065, + 50.9326706 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-20T05:41:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/BAfRjcK.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123832834 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-21.json b/Docs/Tools/stats/stats.2022-7-21.json new file mode 100644 index 0000000000..a2ccac30cc --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-21.json @@ -0,0 +1,4391 @@ +{ + "features": [ + { + "id": 123913712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.397104, + 51.0410662 + ], + [ + 3.397104, + 51.0410662 + ], + [ + 3.397104, + 51.0410662 + ], + [ + 3.397104, + 51.0410662 + ], + [ + 3.397104, + 51.0410662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T23:16:11Z", + "reviewed_features": [], + "tag_changes": { + "office": [ + "government" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 123913712 + } + }, + { + "id": 123912833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4150553, + 45.3235043 + ], + [ + 8.4173997, + 45.3235043 + ], + [ + 8.4173997, + 45.3275375 + ], + [ + 8.4150553, + 45.3275375 + ], + [ + 8.4150553, + 45.3235043 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T22:36:36Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "name:etymology:wikidata": [ + "Q5625802", + "Q734108", + "Q113183089" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000945543407998874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 4, + "locale": "it", + "imagery": "osm" + }, + "id": 123912833 + } + }, + { + "id": 123909434, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9632704, + 48.8283176 + ], + [ + 12.9632704, + 48.8283176 + ], + [ + 12.9632704, + 48.8283176 + ], + [ + 12.9632704, + 48.8283176 + ], + [ + 12.9632704, + 48.8283176 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T20:42:57Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123909434 + } + }, + { + "id": 123909381, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0412151, + 48.8759329 + ], + [ + 13.0412151, + 48.8759329 + ], + [ + 13.0412151, + 48.8759329 + ], + [ + 13.0412151, + 48.8759329 + ], + [ + 13.0412151, + 48.8759329 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T20:40:31Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "yes" + ], + "tourism": [ + "caravan_site" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123909381 + } + }, + { + "id": 123907594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3739489, + 50.86695 + ], + [ + 4.3744523, + 50.86695 + ], + [ + 4.3744523, + 50.8678518 + ], + [ + 4.3739489, + 50.8678518 + ], + [ + 4.3739489, + 50.86695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T19:44:42Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/RlDywPI.jpg", + "https://i.imgur.com/bjW4vOk.jpg", + "https://i.imgur.com/y12fs78.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.53966119996552e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "id": 123907594 + } + }, + { + "id": 123901728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5585916, + 52.9944362 + ], + [ + 6.5585916, + 52.9944362 + ], + [ + 6.5585916, + 52.9944362 + ], + [ + 6.5585916, + 52.9944362 + ], + [ + 6.5585916, + 52.9944362 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T16:40:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/toilets.html", + "theme": "toilets", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 123901728 + } + }, + { + "id": 123900830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6987581, + 50.5633838 + ], + [ + 4.6987581, + 50.5633838 + ], + [ + 4.6987581, + 50.5633838 + ], + [ + 4.6987581, + 50.5633838 + ], + [ + 4.6987581, + 50.5633838 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T16:13:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/yJjhM5t.jpg" + ], + "amenity": [ + "bicycle_parking" + ], + "capacity": [ + "16" + ], + "bicycle_parking": [ + "bollard", + "stands" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 123900830 + } + }, + { + "id": 123899774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.540516, + 53.0068617 + ], + [ + 6.540516, + 53.0068617 + ], + [ + 6.540516, + 53.0068617 + ], + [ + 6.540516, + 53.0068617 + ], + [ + 6.540516, + 53.0068617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T15:42:51Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "recycling" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/waste.html", + "theme": "waste", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 123899774 + } + }, + { + "id": 123898634, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T15:10:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123898634 + } + }, + { + "id": 123898627, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T15:10:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 123898627 + } + }, + { + "id": 123898607, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T15:10:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123898607 + } + }, + { + "id": 123898363, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.699198, + 50.5618002 + ], + [ + 4.699198, + 50.5618002 + ], + [ + 4.699198, + 50.5618002 + ], + [ + 4.699198, + 50.5618002 + ], + [ + 4.699198, + 50.5618002 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FabienneWilmet", + "uid": "13029843", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T15:05:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 123898363 + } + }, + { + "id": 123898044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4371683, + 50.8479392 + ], + [ + 4.4371683, + 50.8479392 + ], + [ + 4.4371683, + 50.8479392 + ], + [ + 4.4371683, + 50.8479392 + ], + [ + 4.4371683, + 50.8479392 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.22.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:57:12Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 9, + "create": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 11, + "move:node/9902102977": "improve_accuracy" + }, + "id": 123898044 + } + }, + { + "id": 123897820, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6413805, + -33.4579702 + ], + [ + -70.6413805, + -33.4579702 + ], + [ + -70.6413805, + -33.4579702 + ], + [ + -70.6413805, + -33.4579702 + ], + [ + -70.6413805, + -33.4579702 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T14:51:10Z", + "reviewed_features": [], + "tag_changes": { + "historic": [ + "memorial" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "create": 1, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 1 + }, + "id": 123897820 + } + }, + { + "id": 123897817, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.393501, + 45.3216469 + ], + [ + 8.412255, + 45.3216469 + ], + [ + 8.412255, + 45.3283355 + ], + [ + 8.393501, + 45.3283355 + ], + [ + 8.393501, + 45.3216469 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T14:51:07Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "unclassified", + "tertiary", + "living_street" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q569213", + "Q583", + "Q2717091", + "Q428308", + "Q1373", + "Q1372", + "Q167457", + "Q1451146", + "Q495", + "Q982573", + "Q13376", + "Q13375", + "Q1248", + "Q113173142", + "Q15981", + "Q441294", + "Q69194", + "Q471166", + "Q463243", + "Q155691", + "Q93182", + "Q3064018", + "Q1982632", + "Q104694031" + ] + }, + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.00012543800440007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 50, + "locale": "it", + "imagery": "osm" + }, + "id": 123897817 + } + }, + { + "id": 123896993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5695291, + 50.3628452 + ], + [ + 8.5695291, + 50.3628452 + ], + [ + 8.5695291, + 50.3628452 + ], + [ + 8.5695291, + 50.3628452 + ], + [ + 8.5695291, + 50.3628452 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:31:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "create": 1, + "locale": "de", + "imagery": "HDM_HOT" + }, + "id": 123896993 + } + }, + { + "id": 123896964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6628809, + 51.8123377 + ], + [ + 4.668645, + 51.8123377 + ], + [ + 4.668645, + 51.8135134 + ], + [ + 4.6628809, + 51.8135134 + ], + [ + 4.6628809, + 51.8123377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:30:18Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000067768523699847, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "id": 123896964 + } + }, + { + "id": 123896692, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.7918838, + 47.3280985 + ], + [ + -1.7918838, + 47.3280985 + ], + [ + -1.7918838, + 47.3280985 + ], + [ + -1.7918838, + 47.3280985 + ], + [ + -1.7918838, + 47.3280985 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:22:31Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "no" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123896692 + } + }, + { + "id": 123896476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5037814, + 50.3404039 + ], + [ + 8.5037814, + 50.3404039 + ], + [ + 8.5037814, + 50.3404039 + ], + [ + 8.5037814, + 50.3404039 + ], + [ + 8.5037814, + 50.3404039 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:16:02Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "caravan_site" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123896476 + } + }, + { + "id": 123896244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5905801, + -34.6444625 + ], + [ + -58.5905687, + -34.6444625 + ], + [ + -58.5905687, + -34.6444289 + ], + [ + -58.5905801, + -34.6444289 + ], + [ + -58.5905801, + -34.6444625 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:09:23Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "HD 17", + "HD 8" + ], + "railway": [ + "signal" + ], + "railway:signal:route:caption": [ + "HD 17" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.83039999961278e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "id": 123896244 + } + }, + { + "id": 123896121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3740477, + 52.1535371 + ], + [ + 5.3740477, + 52.1535371 + ], + [ + 5.3740477, + 52.1535371 + ], + [ + 5.3740477, + 52.1535371 + ], + [ + 5.3740477, + 52.1535371 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:06:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "elevator" + ], + "operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "id": 123896121 + } + }, + { + "id": 123895901, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5087851, + 50.3340268 + ], + [ + 8.5678554, + 50.3340268 + ], + [ + 8.5678554, + 50.3597918 + ], + [ + 8.5087851, + 50.3597918 + ], + [ + 8.5087851, + 50.3340268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T14:00:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking", + "recycling", + "waste_basket" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00152194627950037, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 5, + "create": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123895901 + } + }, + { + "id": 123894890, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5279749, + 50.3310203 + ], + [ + 8.6034456, + 50.3310203 + ], + [ + 8.6034456, + 50.3582945 + ], + [ + 8.5279749, + 50.3582945 + ], + [ + 8.5279749, + 50.3310203 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T13:35:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking", + "post_box" + ], + "highway": [ + "street_lamp" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00205840296594007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 11, + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 123894890 + } + }, + { + "id": 123894314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5280581, + 50.3307887 + ], + [ + 11.2817734, + 50.3307887 + ], + [ + 11.2817734, + 51.5170603 + ], + [ + 8.5280581, + 51.5170603 + ], + [ + 8.5280581, + 50.3307887 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T13:19:54Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle", + "bus", + "road", + "hiking" + ], + "amenity": [ + "parking", + "post_box" + ], + "highway": [ + "residential", + "footway", + "secondary", + "secondary_link" + ] + }, + "create": 6, + "modify": 0, + "delete": 0, + "area": 3.26665425487547, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "postboxes", + "create": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 123894314 + } + }, + { + "id": 123893924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5282191, + 50.3306305 + ], + [ + 8.5282191, + 50.3306305 + ], + [ + 8.5282191, + 50.3306305 + ], + [ + 8.5282191, + 50.3306305 + ], + [ + 8.5282191, + 50.3306305 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T13:09:05Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "toilets" + ], + "opening_hours": [ + "24/7" + ], + "toilets:position": [ + "seated;urinal" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123893924 + } + }, + { + "id": 123893776, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5326661, + 50.333484 + ], + [ + 8.5326661, + 50.333484 + ], + [ + 8.5326661, + 50.333484 + ], + [ + 8.5326661, + 50.333484 + ], + [ + 8.5326661, + 50.333484 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T13:05:29Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123893776 + } + }, + { + "id": 123893334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5594561, + 52.9949319 + ], + [ + 6.56991, + 52.9949319 + ], + [ + 6.56991, + 52.9987231 + ], + [ + 6.5594561, + 52.9987231 + ], + [ + 6.5594561, + 52.9949319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:55:45Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000396328256800205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 3 + }, + "id": 123893334 + } + }, + { + "id": 123893302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3495888, + 50.8658337 + ], + [ + 4.3496425, + 50.8658337 + ], + [ + 4.3496425, + 50.865873 + ], + [ + 4.3495888, + 50.865873 + ], + [ + 4.3495888, + 50.8658337 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:54:44Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "customers" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.11040999984529e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 123893302 + } + }, + { + "id": 123893220, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5687148, + 50.3613198 + ], + [ + 8.5695618, + 50.3613198 + ], + [ + 8.5695618, + 50.3655401 + ], + [ + 8.5687148, + 50.3655401 + ], + [ + 8.5687148, + 50.3613198 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:53:13Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "limited" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "sand" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000357459410000117, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123893220 + } + }, + { + "id": 123893205, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:52:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123893205 + } + }, + { + "id": 123893185, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:52:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123893185 + } + }, + { + "id": 123893056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5389986, + 50.35568 + ], + [ + 11.2818084, + 50.35568 + ], + [ + 11.2818084, + 51.5196996 + ], + [ + 8.5389986, + 51.5196996 + ], + [ + 8.5389986, + 50.35568 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:48:51Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "highway": [ + "tertiary" + ], + "maxspeed": [ + "100" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 3.19268436627209, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "split": 4, + "theme": "maxspeed", + "answer": 3, + "locale": "de", + "imagery": "osm", + "relation-fix": 4 + }, + "id": 123893056 + } + }, + { + "id": 123892623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6713859, + 50.1471514 + ], + [ + 8.6713859, + 50.1471514 + ], + [ + 8.6713859, + 50.1471514 + ], + [ + 8.6713859, + 50.1471514 + ], + [ + 8.6713859, + 50.1471514 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:37:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123892623 + } + }, + { + "id": 123892582, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5570098, + 50.1469932 + ], + [ + 8.671284, + 50.1469932 + ], + [ + 8.671284, + 50.3624936 + ], + [ + 8.5570098, + 50.3624936 + ], + [ + 8.5570098, + 50.1469932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:36:40Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0246261358096805, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 2, + "create": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 123892582 + } + }, + { + "id": 123892352, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6675987, + 50.1463126 + ], + [ + 8.6675987, + 50.1463126 + ], + [ + 8.6675987, + 50.1463126 + ], + [ + 8.6675987, + 50.1463126 + ], + [ + 8.6675987, + 50.1463126 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:31:06Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123892352 + } + }, + { + "id": 123892252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9738122, + 48.6354205 + ], + [ + 9.9738122, + 48.6354205 + ], + [ + 9.9738122, + 48.6354205 + ], + [ + 9.9738122, + 48.6354205 + ], + [ + 9.9738122, + 48.6354205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:29:06Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/7OGD46H.jpg" + ], + "amenity": [ + "parking" + ], + "parking": [ + "surface" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 123892252 + } + }, + { + "id": 123891998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9740351, + 48.6354319 + ], + [ + 9.9740351, + 48.6354319 + ], + [ + 9.9740351, + 48.6354319 + ], + [ + 9.9740351, + 48.6354319 + ], + [ + 9.9740351, + 48.6354319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:23:59Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/L0hscmh.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 123891998 + } + }, + { + "id": 123891978, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5123175, + 50.1467354 + ], + [ + 11.2793246, + 50.1467354 + ], + [ + 11.2793246, + 51.517556 + ], + [ + 8.5123175, + 51.517556 + ], + [ + 8.5123175, + 50.1467354 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:23:25Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bicycle", + "bus", + "road", + "hiking" + ], + "amenity": [ + "parking" + ], + "highway": [ + "service", + "residential", + "footway", + "secondary", + "secondary_link", + "track" + ], + "landuse": [ + "cemetery", + "forest" + ], + "natural": [ + "wetland" + ], + "building": [ + "yes" + ], + "man_made": [ + "tower" + ] + }, + "create": 17, + "modify": 2, + "delete": 0, + "area": 3.79307033302627, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 5, + "create": 17, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 5 + }, + "id": 123891978 + } + }, + { + "id": 123891894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6706027, + 50.1467457 + ], + [ + 8.6706027, + 50.1467457 + ], + [ + 8.6706027, + 50.1467457 + ], + [ + 8.6706027, + 50.1467457 + ], + [ + 8.6706027, + 50.1467457 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:21:22Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 123891894 + } + }, + { + "id": 123891697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6709729, + 50.146995 + ], + [ + 8.6709729, + 50.146995 + ], + [ + 8.6709729, + 50.146995 + ], + [ + 8.6709729, + 50.146995 + ], + [ + 8.6709729, + 50.146995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karl Holzlehner", + "uid": "16513028", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T12:17:16Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 4, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 4 + }, + "id": 123891697 + } + }, + { + "id": 123889905, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3820021, + 52.976565 + ], + [ + 13.5094473, + 52.976565 + ], + [ + 13.5094473, + 53.0340861 + ], + [ + 13.3820021, + 53.0340861 + ], + [ + 13.3820021, + 52.976565 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Carsten OHV", + "uid": "16603575", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T11:34:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 3, + "delete": 0, + "area": 0.00733078809372033, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123889905 + } + }, + { + "id": 123889036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.3936334, + 45.3183297 + ], + [ + 8.3980397, + 45.3183297 + ], + [ + 8.3980397, + 45.3218487 + ], + [ + 8.3936334, + 45.3218487 + ], + [ + 8.3936334, + 45.3183297 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T11:14:17Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "name:etymology:wikidata": [ + "Q113171133", + "Q113171076" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000155057696999855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 6, + "locale": "it", + "imagery": "osm" + }, + "id": 123889036 + } + }, + { + "id": 123886242, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9617953, + 48.8317808 + ], + [ + 12.9623943, + 48.8317808 + ], + [ + 12.9623943, + 48.8336155 + ], + [ + 12.9617953, + 48.8336155 + ], + [ + 12.9617953, + 48.8317808 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T10:06:37Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "pedestrian" + ], + "name:etymology:wikidata": [ + "Q44785" + ] + }, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00000109898530000085, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 15, + "locale": "de", + "imagery": "osm", + "change_within_500m": 2, + "change_within_1000m": 13 + }, + "id": 123886242 + } + }, + { + "id": 123885123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5209044, + 52.4861089 + ], + [ + 13.5246391, + 52.4861089 + ], + [ + 13.5246391, + 52.4890908 + ], + [ + 13.5209044, + 52.4890908 + ], + [ + 13.5209044, + 52.4861089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T09:44:21Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/QW057Q3.jpg", + "https://i.imgur.com/ekZyUbf.jpg" + ], + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-21" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000111365019300088, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 123885123 + } + }, + { + "id": 123885117, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9077325, + 51.1838971 + ], + [ + 4.9087142, + 51.1838971 + ], + [ + 4.9087142, + 51.1841112 + ], + [ + 4.9077325, + 51.1841112 + ], + [ + 4.9077325, + 51.1838971 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T09:44:14Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3948960", + "Gbg/3948972", + "Gbg/3948961" + ], + "source:geometry:date": [ + "2012-11-15" + ] + }, + "create": 41, + "modify": 15, + "delete": 0, + "area": 2.10181969994005e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 12, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 123885117 + } + }, + { + "id": 123884925, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9047111, + 51.1840674 + ], + [ + 4.9101519, + 51.1840674 + ], + [ + 4.9101519, + 51.1861051 + ], + [ + 4.9047111, + 51.1861051 + ], + [ + 4.9047111, + 51.1840674 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T09:39:47Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "shed", + "yes" + ], + "source:geometry:ref": [ + "Gbg/7019693", + "Gbg/1708461", + "Gbg/1708433", + "Gbg/1708430", + "Gbg/5125367", + "Gbg/6151978", + "Gbg/1708499", + "Gbg/1708488" + ], + "source:geometry:date": [ + "2021-10-25", + "2009-09-30", + "2015-03-30", + "2017-11-20", + "2019-07-09" + ] + }, + "create": 100, + "modify": 69, + "delete": 0, + "area": 0.0000110867181599742, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 61, + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "AGIV", + "conflation": 16 + }, + "id": 123884925 + } + }, + { + "id": 123884855, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9040821, + 51.1851866 + ], + [ + 4.9072344, + 51.1851866 + ], + [ + 4.9072344, + 51.1867829 + ], + [ + 4.9040821, + 51.1867829 + ], + [ + 4.9040821, + 51.1851866 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T09:37:52Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/1708443", + "Gbg/1708474", + "Gbg/3948878", + "Gbg/5403592", + "Gbg/5554927" + ], + "source:geometry:date": [ + "2009-09-30", + "2015-03-30", + "2012-11-15", + "2015-11-24", + "2016-05-02" + ] + }, + "create": 82, + "modify": 43, + "delete": 0, + "area": 0.00000503201648998633, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 38, + "theme": "grb", + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "id": 123884855 + } + }, + { + "id": 123884809, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9037825, + 51.1856357 + ], + [ + 4.9048358, + 51.1856357 + ], + [ + 4.9048358, + 51.1867593 + ], + [ + 4.9037825, + 51.1867593 + ], + [ + 4.9037825, + 51.1856357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T09:37:03Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3948861", + "Gbg/3948860", + "Gbg/3948859", + "Gbg/3948858", + "Gbg/5862421", + "Gbg/3948857", + "Gbg/3948873" + ], + "source:geometry:date": [ + "2021-10-25", + "2013-02-20", + "2012-11-15", + "2017-03-01", + "2018-10-24" + ] + }, + "create": 42, + "modify": 59, + "delete": 0, + "area": 0.00000118348787999932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 52, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "id": 123884809 + } + }, + { + "id": 123884763, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3527096, + 50.8566312 + ], + [ + 4.3527096, + 50.8566312 + ], + [ + 4.3527096, + 50.8566312 + ], + [ + 4.3527096, + 50.8566312 + ], + [ + 4.3527096, + 50.8566312 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T09:36:01Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "elevator" + ], + "operational_status": [ + "closed" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 123884763 + } + }, + { + "id": 123883607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4489835, + 52.5178773 + ], + [ + 13.4489835, + 52.5178773 + ], + [ + 13.4489835, + 52.5178773 + ], + [ + 13.4489835, + 52.5178773 + ], + [ + 13.4489835, + 52.5178773 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paddymonsun", + "uid": "4574701", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T09:12:11Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-21", + "2018" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123883607 + } + }, + { + "id": 123880704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4503042, + 50.868903 + ], + [ + 4.4503968, + 50.868903 + ], + [ + 4.4503968, + 50.8689783 + ], + [ + 4.4503042, + 50.8689783 + ], + [ + 4.4503042, + 50.868903 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T08:10:11Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/tXYd7rE.jpg" + ], + "leisure": [ + "playground" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.97277999992217e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 123880704 + } + }, + { + "id": 123879737, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9019609, + 51.1841411 + ], + [ + 4.9098724, + 51.1841411 + ], + [ + 4.9098724, + 51.1860571 + ], + [ + 4.9019609, + 51.1860571 + ], + [ + 4.9019609, + 51.1841411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T07:45:11Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "place_of_worship" + ], + "building": [ + "yes", + "house", + "church", + "roof", + "garage" + ], + "addr:housenumber": [ + "3;3A", + "3", + "8;8A", + "8" + ], + "source:geometry:ref": [ + "Gbg/5554909", + "Gbg/3948879", + "Gbg/3948993", + "Gbg/3948994", + "Gbg/3949001", + "Gbg/3949012", + "Gbg/3949013", + "Gbg/3948981", + "Gbg/3949014", + "Gbg/3949015", + "Gbg/3948880", + "Gbg/3948980", + "Gbg/3948881", + "Gbg/3948979", + "Gbg/3948892", + "Gbg/5862273", + "Gbg/5862476", + "Gbg/3948997", + "Gbg/3948995", + "Gbg/3949000", + "Gbg/3948998", + "Gbg/5403628", + "Gbg/3948996", + "Gbg/3952058", + "Gbg/3948999", + "Gbg/3948776", + "Gbg/3948775", + "Gbg/6508582", + "Gbg/3948774", + "Gbg/1708429", + "Gbg/1708428", + "Gbg/1708427", + "Gbg/1708435", + "Gbg/6966468", + "Gbg/6641292", + "Gbg/1708510", + "Gbg/1708511", + "Gbg/1708495", + "Gbg/1708490", + "Gbg/1708489", + "Gbg/1708485" + ], + "source:geometry:date": [ + "2016-05-02", + "2012-11-15", + "2013-02-20", + "2021-10-25", + "2017-03-01", + "2014-12-04", + "2015-11-24", + "2018-10-24", + "2020-06-05", + "2016-07-28", + "2009-09-30", + "2021-07-05", + "2019-07-09" + ] + }, + "create": 297, + "modify": 315, + "delete": 1, + "area": 0.0000151584340000118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 277, + "theme": "grb", + "answer": 4, + "delete": 1, + "import": 21, + "locale": "nl", + "imagery": "AGIV", + "conflation": 82 + }, + "id": 123879737 + } + }, + { + "id": 123879132, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9038759, + 51.1844828 + ], + [ + 4.9093796, + 51.1844828 + ], + [ + 4.9093796, + 51.186959 + ], + [ + 4.9038759, + 51.186959 + ], + [ + 4.9038759, + 51.1844828 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T07:30:05Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/1708475", + "Gbg/1708476", + "Gbg/3948894", + "Gbg/1708469", + "Gbg/1708471", + "Gbg/1708437", + "Gbg/1708444", + "Gbg/1708442", + "Gbg/1708441", + "Gbg/1708477", + "Gbg/1708440", + "Gbg/1708439", + "Gbg/1708438", + "Gbg/1708445", + "Gbg/1708446", + "Gbg/1708447", + "Gbg/1708473", + "Gbg/1708478", + "Gbg/1708472", + "Gbg/1708479", + "Gbg/1708432", + "Gbg/2915781", + "Gbg/1708467", + "Gbg/5125368", + "Gbg/5125370", + "Gbg/1708484", + "Gbg/5127670", + "Gbg/6155395", + "Gbg/7015234", + "Gbg/7015233", + "Gbg/1708561", + "Gbg/5127669" + ], + "source:geometry:date": [ + "2009-09-30", + "2018-10-24", + "2015-03-30", + "2017-11-20", + "2021-10-22" + ] + }, + "create": 195, + "modify": 216, + "delete": 2, + "area": 0.0000136282619400215, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 184, + "theme": "grb", + "answer": 1, + "delete": 2, + "import": 22, + "locale": "nl", + "imagery": "AGIV", + "conflation": 64 + }, + "id": 123879132 + } + }, + { + "id": 123873216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.638044, + -33.4591118 + ], + [ + -70.6374868, + -33.4591118 + ], + [ + -70.6374868, + -33.4590409 + ], + [ + -70.638044, + -33.4590409 + ], + [ + -70.638044, + -33.4591118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T04:31:02Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.95054800016038e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "es", + "imagery": "EsriWorldImagery", + "add-image": 2 + }, + "id": 123873216 + } + }, + { + "id": 123872768, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6407539, + -33.459011 + ], + [ + -70.6384776, + -33.459011 + ], + [ + -70.6384776, + -33.4577934 + ], + [ + -70.6407539, + -33.4577934 + ], + [ + -70.6407539, + -33.459011 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-21T04:09:59Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000027716228799994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 2, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 4 + }, + "id": 123872768 + } + }, + { + "id": 123872413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.5148802, + 48.5319084 + ], + [ + 9.5148967, + 48.5319084 + ], + [ + 9.5148967, + 48.5319307 + ], + [ + 9.5148802, + 48.5319307 + ], + [ + 9.5148802, + 48.5319084 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T03:48:31Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/vc0IPCm.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.67949999944145e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2 + }, + "id": 123872413 + } + }, + { + "id": 123871418, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -142.9536456, + 61.4351523 + ], + [ + -142.953645, + 61.4351523 + ], + [ + -142.953645, + 61.4351523 + ], + [ + -142.9536456, + 61.4351523 + ], + [ + -142.9536456, + 61.4351523 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jeepjockey", + "uid": "354701", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T02:28:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "Mapbox", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 7 + }, + "id": 123871418 + } + }, + { + "id": 123869985, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0235354, + 38.8267462 + ], + [ + 0.0913477, + 38.8267462 + ], + [ + 0.0913477, + 38.8430819 + ], + [ + 0.0235354, + 38.8430819 + ], + [ + 0.0235354, + 38.8267462 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T00:05:51Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no", + "yes" + ], + "highway": [ + "footway", + "path" + ], + "railway": [ + "abandoned" + ], + "separation": [ + "kerb" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00110776138910994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 3, + "locale": "ca", + "imagery": "CartoDB.Voyager" + }, + "id": 123869985 + } + }, + { + "id": 123869928, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.0713223, + 40.0404075 + ], + [ + -86.0713223, + 40.0404075 + ], + [ + -86.0713223, + 40.0404075 + ], + [ + -86.0713223, + 40.0404075 + ], + [ + -86.0713223, + 40.0404075 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-21T00:01:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 123869928 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-22.json b/Docs/Tools/stats/stats.2022-7-22.json new file mode 100644 index 0000000000..0c6e14a982 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-22.json @@ -0,0 +1,2328 @@ +{ + "features": [ + { + "id": 123958169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4179056, + 45.3141245 + ], + [ + 10.2293608, + 45.3141245 + ], + [ + 10.2293608, + 45.5364354 + ], + [ + 8.4179056, + 45.5364354 + ], + [ + 8.4179056, + 45.3141245 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T22:54:45Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary", + "unclassified", + "tertiary", + "pedestrian" + ], + "name:etymology:wikidata": [ + "Q42595", + "Q113205720", + "Q3676162", + "Q851323" + ] + }, + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.402706235821687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 24, + "locale": "it", + "imagery": "osm" + }, + "id": 123958169 + } + }, + { + "id": 123956365, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6669809, + 50.8925019 + ], + [ + 3.6842596, + 50.8925019 + ], + [ + 3.6842596, + 50.9165227 + ], + [ + 3.6669809, + 50.9165227 + ], + [ + 3.6669809, + 50.8925019 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T21:21:52Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Nb3XNrA.jpg", + "https://i.imgur.com/KZWoLwy.jpg", + "https://i.imgur.com/LQBJ7Tv.jpg", + "https://i.imgur.com/M1r8HKm.jpg", + "https://i.imgur.com/v8NePtn.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000415048196960038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "id": 123956365 + } + }, + { + "id": 123955439, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.7102019, + 51.4750333 + ], + [ + -2.7102019, + 51.4750333 + ], + [ + -2.7102019, + 51.4750333 + ], + [ + -2.7102019, + 51.4750333 + ], + [ + -2.7102019, + 51.4750333 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jumaka", + "uid": "129182", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T20:39:34Z", + "reviewed_features": [], + "tag_changes": { + "historic": [ + "memorial" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Positron" + }, + "id": 123955439 + } + }, + { + "id": 123954361, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.97261, + 51.1666063 + ], + [ + 4.9890077, + 51.1666063 + ], + [ + 4.9890077, + 51.1843282 + ], + [ + 4.97261, + 51.1843282 + ], + [ + 4.97261, + 51.1666063 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T19:58:51Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Annigo", + "Friture Annigo" + ], + "amenity": [ + "fast_food" + ], + "website": [ + "https://www.pizza-masters-geel.be", + "https://www.pastabar-forza.be/", + "https://www.frietjesonline.be" + ], + "delivery": [ + "yes" + ], + "takeaway": [ + "yes" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000290598399630078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 10, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123954361 + } + }, + { + "id": 123954317, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9890077, + 51.1666063 + ], + [ + 4.9890077, + 51.1666063 + ], + [ + 4.9890077, + 51.1666063 + ], + [ + 4.9890077, + 51.1666063 + ], + [ + 4.9890077, + 51.1666063 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T19:57:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123954317 + } + }, + { + "id": 123954272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9889905, + 51.1666063 + ], + [ + 4.9890077, + 51.1666063 + ], + [ + 4.9890077, + 51.1666552 + ], + [ + 4.9889905, + 51.1666552 + ], + [ + 4.9889905, + 51.1666063 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T19:55:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.41080000065203e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 123954272 + } + }, + { + "id": 123953209, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3531549, + 51.6521558 + ], + [ + 14.354327, + 51.6521558 + ], + [ + 14.354327, + 51.6853963 + ], + [ + 14.3531549, + 51.6853963 + ], + [ + 14.3531549, + 51.6521558 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9904734695", + "osm_id": 9904734695, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "emergency": "Wassertank" + } + } + ], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T19:22:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000389611900499906, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123953209 + } + }, + { + "id": 123952470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.0083221, + 52.11064 + ], + [ + 14.0083221, + 52.11064 + ], + [ + 14.0083221, + 52.11064 + ], + [ + 14.0083221, + 52.11064 + ], + [ + 14.0083221, + 52.11064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T18:57:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123952470 + } + }, + { + "id": 123949832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.4787769, + 51.3617279 + ], + [ + 14.4820296, + 51.3617279 + ], + [ + 14.4820296, + 51.362392 + ], + [ + 14.4787769, + 51.362392 + ], + [ + 14.4787769, + 51.3617279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hufkratzer", + "uid": "1377473", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T17:46:18Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "30" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000216011807000583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123949832 + } + }, + { + "id": 123949311, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3737702, + 50.8671657 + ], + [ + 4.3737702, + 50.8671657 + ], + [ + 4.3737702, + 50.8671657 + ], + [ + 4.3737702, + 50.8671657 + ], + [ + 4.3737702, + 50.8671657 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T17:34:30Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123949311 + } + }, + { + "id": 123943881, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3410555, + 51.3343573 + ], + [ + 13.3410555, + 51.3343573 + ], + [ + 13.3410555, + 51.3343573 + ], + [ + 13.3410555, + 51.3343573 + ], + [ + 13.3410555, + 51.3343573 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radler64ohne", + "uid": "2234817", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T15:00:34Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3 + }, + "id": 123943881 + } + }, + { + "id": 123942617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2158218, + 51.2006089 + ], + [ + 3.2158218, + 51.2006089 + ], + [ + 3.2158218, + 51.2006089 + ], + [ + 3.2158218, + 51.2006089 + ], + [ + 3.2158218, + 51.2006089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Simon Ongenae", + "uid": "16614724", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T14:30:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/6211698751": "disused" + }, + "id": 123942617 + } + }, + { + "id": 123942089, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2642592, + 51.3040058 + ], + [ + 13.272504, + 51.3040058 + ], + [ + 13.272504, + 51.3117395 + ], + [ + 13.2642592, + 51.3117395 + ], + [ + 13.2642592, + 51.3040058 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radler64ohne", + "uid": "2234817", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T14:17:05Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus" + ], + "highway": [ + "tertiary" + ], + "maxspeed": [ + "30", + "50", + "60" + ] + }, + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000063762809760023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "split": 3, + "theme": "maxspeed", + "answer": 5, + "locale": "de", + "imagery": "osm", + "relation-fix": 2 + }, + "id": 123942089 + } + }, + { + "id": 123942073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9548761, + 48.8280456 + ], + [ + 12.9639595, + 48.8280456 + ], + [ + 12.9639595, + 48.8319086 + ], + [ + 12.9548761, + 48.8319086 + ], + [ + 12.9548761, + 48.8280456 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T14:16:44Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "service" + ], + "tourism": [ + "museum" + ], + "building": [ + "school" + ], + "historic": [ + "building" + ], + "name:etymology:wikidata": [ + "Q75009459", + "Q1222050" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000350891741999582, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 123942073 + } + }, + { + "id": 123939815, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.9809878, + 49.4754608 + ], + [ + 10.9815566, + 49.4754608 + ], + [ + 10.9815566, + 49.4778511 + ], + [ + 10.9809878, + 49.4778511 + ], + [ + 10.9809878, + 49.4754608 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "delphiN", + "uid": "13192", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T13:24:12Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "denotation": [ + "garden", + "urban" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00000135960264000087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "id": 123939815 + } + }, + { + "id": 123939201, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9068028, + 51.1827995 + ], + [ + 4.9094513, + 51.1827995 + ], + [ + 4.9094513, + 51.1841659 + ], + [ + 4.9068028, + 51.1841659 + ], + [ + 4.9068028, + 51.1827995 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T13:10:23Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3948977" + ], + "source:geometry:date": [ + "2012-11-15" + ] + }, + "create": 193, + "modify": 9, + "delete": 0, + "area": 0.00000361891040000443, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 8, + "theme": "grb", + "import": 28, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123939201 + } + }, + { + "id": 123938771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.26417, + 51.3048439 + ], + [ + 13.2643014, + 51.3048439 + ], + [ + 13.2643014, + 51.3049395 + ], + [ + 13.26417, + 51.3049395 + ], + [ + 13.26417, + 51.3048439 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radler64ohne", + "uid": "2234817", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T12:59:24Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.256184000029e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 123938771 + } + }, + { + "id": 123938203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9421039, + 48.8274072 + ], + [ + 12.9637672, + 48.8274072 + ], + [ + 12.9637672, + 48.8434244 + ], + [ + 12.9421039, + 48.8434244 + ], + [ + 12.9421039, + 48.8274072 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T12:46:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "cinema" + ], + "highway": [ + "residential", + "path" + ], + "name:etymology:wikidata": [ + "Q50843436", + "Q260073", + "Q884746", + "Q884705", + "Q23787547" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000346985408760009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 123938203 + } + }, + { + "id": 123935612, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3405674, + 52.9765408 + ], + [ + 13.3405674, + 52.9765408 + ], + [ + 13.3405674, + 52.9765408 + ], + [ + 13.3405674, + 52.9765408 + ], + [ + 13.3405674, + 52.9765408 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Carsten OHV", + "uid": "16603575", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T11:44:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123935612 + } + }, + { + "id": 123935417, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.6942572, + 48.2401805 + ], + [ + 12.7079916, + 48.2401805 + ], + [ + 12.7079916, + 48.2411326 + ], + [ + 12.6942572, + 48.2411326 + ], + [ + 12.6942572, + 48.2401805 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "termoyer", + "uid": "782208", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T11:39:36Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary" + ], + "maxspeed": [ + "50" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00001307652223999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123935417 + } + }, + { + "id": 123934641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7998638, + 51.1514736 + ], + [ + 2.7998638, + 51.1514736 + ], + [ + 2.7998638, + 51.1514736 + ], + [ + 2.7998638, + 51.1514736 + ], + [ + 2.7998638, + 51.1514736 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T11:20:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 123934641 + } + }, + { + "id": 123931378, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8441432, + 48.815412 + ], + [ + 11.8441432, + 48.815412 + ], + [ + 11.8441432, + 48.815412 + ], + [ + 11.8441432, + 48.815412 + ], + [ + 11.8441432, + 48.815412 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T10:10:13Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "no" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_within_25m": 7 + }, + "id": 123931378 + } + }, + { + "id": 123929542, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1151895, + 54.3236382 + ], + [ + 10.1223694, + 54.3236382 + ], + [ + 10.1223694, + 54.3256943 + ], + [ + 10.1151895, + 54.3256943 + ], + [ + 10.1151895, + 54.3236382 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Discostu36", + "uid": "8265165", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T09:32:44Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary", + "residential", + "path" + ], + "cycleway": [ + "no", + "separate" + ], + "separation": [ + "parking_lane", + "dashed_line" + ], + "cycleway:surface": [ + "asphalt" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000147625923900323, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123929542 + } + }, + { + "id": 123929364, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1154258, + 54.3270751 + ], + [ + 10.1161881, + 54.3270751 + ], + [ + 10.1161881, + 54.327493 + ], + [ + 10.1154258, + 54.327493 + ], + [ + 10.1154258, + 54.3270751 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Discostu36", + "uid": "8265165", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T09:28:54Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ], + "surface": [ + "sand" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.18565169996205e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 123929364 + } + }, + { + "id": 123929001, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.822298, + 8.4813886 + ], + [ + 87.2989325, + 8.4813886 + ], + [ + 87.2989325, + 32.0484619 + ], + [ + 72.822298, + 32.0484619 + ], + [ + 72.822298, + 8.4813886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T09:21:06Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "tertiary", + "primary", + "primary_link", + "unclassified", + "living_street" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q7785243", + "Q7129065", + "Q13021", + "Q9513" + ] + }, + "create": 0, + "modify": 96, + "delete": 0, + "area": 341.171906398809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 112, + "locale": "en", + "imagery": "osm" + }, + "id": 123929001 + } + }, + { + "id": 123927518, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4138625, + 45.3198179 + ], + [ + 8.4363617, + 45.3198179 + ], + [ + 8.4363617, + 45.3291037 + ], + [ + 8.4138625, + 45.3291037 + ], + [ + 8.4138625, + 45.3198179 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T08:51:09Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "unclassified", + "residential", + "pedestrian", + "secondary" + ], + "name:etymology:wikidata": [ + "Q313188", + "Q3604376", + "Q51122", + "Q435151", + "Q113192457", + "Q2942854", + "Q113192081", + "Q47578", + "Q113192763", + "Q113193022", + "Q61970959", + "Q2851732", + "Q113192157", + "Q113192953", + "Q261082", + "Q3104278", + "Q113128010", + "Q113192038", + "Q318037", + "Q22338086", + "Q109758159" + ] + }, + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.000208923071360019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 47, + "locale": "it", + "imagery": "osm" + }, + "id": 123927518 + } + }, + { + "id": 123927026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4062549, + 51.0430412 + ], + [ + 3.4071422, + 51.0430412 + ], + [ + 3.4071422, + 51.0445256 + ], + [ + 3.4062549, + 51.0445256 + ], + [ + 3.4062549, + 51.0430412 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T08:39:53Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ], + "bicycle": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000131710812000227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/personal.html", + "theme": "personal", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 3 + }, + "id": 123927026 + } + }, + { + "id": 123925715, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3420219, + 52.546782 + ], + [ + 13.3477554, + 52.546782 + ], + [ + 13.3477554, + 52.5501085 + ], + [ + 13.3420219, + 52.5501085 + ], + [ + 13.3420219, + 52.546782 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T08:07:38Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-29", + "2020", + "2022-07-22", + "2022-07-16" + ], + "pump:status": [ + "broken", + "ok" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000190724877499995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123925715 + } + }, + { + "id": 123925501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3356759, + 52.551622 + ], + [ + 13.3412022, + 52.551622 + ], + [ + 13.3412022, + 52.5572254 + ], + [ + 13.3356759, + 52.5572254 + ], + [ + 13.3356759, + 52.551622 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-22T08:02:10Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-22", + "2020" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000309660694199884, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123925501 + } + }, + { + "id": 123924547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7522283, + 51.0750636 + ], + [ + 3.7522283, + 51.0750636 + ], + [ + 3.7522283, + 51.0750636 + ], + [ + 3.7522283, + 51.0750636 + ], + [ + 3.7522283, + 51.0750636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #healthcare", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T07:38:02Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/98Wmtxj.jpg" + ], + "amenity": [ + "pharmacy" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", + "theme": "healthcare", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 123924547 + } + }, + { + "id": 123924110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9619123, + 48.8305709 + ], + [ + 12.9627891, + 48.8305709 + ], + [ + 12.9627891, + 48.8318053 + ], + [ + 12.9619123, + 48.8318053 + ], + [ + 12.9619123, + 48.8305709 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-22T07:26:35Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "pedestrian", + "residential" + ], + "name:etymology:wikidata": [ + "Q72959" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000108232192000157, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 9, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 9 + }, + "id": 123924110 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-23.json b/Docs/Tools/stats/stats.2022-7-23.json new file mode 100644 index 0000000000..32db3903a4 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-23.json @@ -0,0 +1,3261 @@ +{ + "features": [ + { + "id": 123991608, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.1874671, + 47.6366492 + ], + [ + -116.9332011, + 47.6366492 + ], + [ + -116.9332011, + 47.735686 + ], + [ + -117.1874671, + 47.735686 + ], + [ + -117.1874671, + 47.6366492 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T22:05:35Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "tertiary", + "secondary" + ], + "maxspeed": [ + "25 mph", + "35 mph" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0251816909888002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 1, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "id": 123991608 + } + }, + { + "id": 123989489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4382963, + 52.9738984 + ], + [ + 13.4680393, + 52.9738984 + ], + [ + 13.4680393, + 52.9859346 + ], + [ + 13.4382963, + 52.9859346 + ], + [ + 13.4382963, + 52.9738984 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Carsten OHV", + "uid": "16603575", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T20:30:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000357992696599914, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123989489 + } + }, + { + "id": 123989175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1449015, + 49.2861696 + ], + [ + 13.1449445, + 49.2861696 + ], + [ + 13.1449445, + 49.2861704 + ], + [ + 13.1449015, + 49.2861704 + ], + [ + 13.1449015, + 49.2861696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T20:17:29Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Idb54LA.jpg", + "https://i.imgur.com/rQ0nVLx.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.44000000963029e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_50m": 2 + }, + "id": 123989175 + } + }, + { + "id": 123988928, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0053223, + 51.6715421 + ], + [ + 9.0053223, + 51.6715421 + ], + [ + 9.0053223, + 51.6715421 + ], + [ + 9.0053223, + 51.6715421 + ], + [ + 9.0053223, + 51.6715421 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Amenophis", + "uid": "53104", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T20:07:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 123988928 + } + }, + { + "id": 123987966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9287009, + 50.1727438 + ], + [ + 8.9301181, + 50.1727438 + ], + [ + 8.9301181, + 50.1744325 + ], + [ + 8.9287009, + 50.1744325 + ], + [ + 8.9287009, + 50.1727438 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T19:30:12Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "public", + "members" + ], + "leisure": [ + "pitch" + ], + "reservation": [ + "required" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000239322564000155, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 123987966 + } + }, + { + "id": 123987816, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3602027, + 50.8676644 + ], + [ + 4.3602027, + 50.8676644 + ], + [ + 4.3602027, + 50.8676644 + ], + [ + 4.3602027, + 50.8676644 + ], + [ + 4.3602027, + 50.8676644 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T19:24:24Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "kerb" + ], + "tactile_paving": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "id": 123987816 + } + }, + { + "id": 123987793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9265257, + 50.1734093 + ], + [ + 8.9313928, + 50.1734093 + ], + [ + 8.9313928, + 50.1757807 + ], + [ + 8.9265257, + 50.1757807 + ], + [ + 8.9265257, + 50.1734093 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T19:23:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ], + "capacity": [ + "40", + "32", + "27" + ], + "capacity:disabled": [ + "1", + "2" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000011541840939972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "id": 123987793 + } + }, + { + "id": 123987482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.927329, + 50.1733706 + ], + [ + 8.9284026, + 50.1733706 + ], + [ + 8.9284026, + 50.1741353 + ], + [ + 8.927329, + 50.1741353 + ], + [ + 8.927329, + 50.1733706 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T19:11:13Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "cycleway": [ + "no" + ], + "smoothness": [ + "good" + ], + "width:carriageway": [ + "7" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.20981920005029e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 4 + }, + "id": 123987482 + } + }, + { + "id": 123987449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6483447, + 50.9561049 + ], + [ + 3.6624708, + 50.9561049 + ], + [ + 3.6624708, + 50.956695 + ], + [ + 3.6483447, + 50.956695 + ], + [ + 3.6483447, + 50.9561049 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T19:09:51Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/QwQU0OE.jpg", + "https://i.imgur.com/1ZHHsdG.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000833581161005224, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 123987449 + } + }, + { + "id": 123986933, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.926653, + 50.172937 + ], + [ + 8.927329, + 50.172937 + ], + [ + 8.927329, + 50.1733706 + ], + [ + 8.926653, + 50.1733706 + ], + [ + 8.926653, + 50.172937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T18:50:29Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "cycleway": [ + "no" + ], + "smoothness": [ + "good" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.93113600000772e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 7, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 7 + }, + "id": 123986933 + } + }, + { + "id": 123985493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.6678789, + 49.2148328 + ], + [ + 12.6693365, + 49.2148328 + ], + [ + 12.6693365, + 49.215351 + ], + [ + 12.6678789, + 49.215351 + ], + [ + 12.6678789, + 49.2148328 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T17:58:19Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/XDG6ggy.jpg", + "https://i.imgur.com/Z72cYbR.jpg" + ], + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "wheelchair": [ + "no" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.55328319992517e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 5, + "change_within_500m": 4 + }, + "id": 123985493 + } + }, + { + "id": 123984287, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3793154, + 52.493169 + ], + [ + 13.3793154, + 52.493169 + ], + [ + 13.3793154, + 52.493169 + ], + [ + 13.3793154, + 52.493169 + ], + [ + 13.3793154, + 52.493169 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fillidefilla", + "uid": "10882026", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T17:17:22Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "eat@h2beveggie.de" + ], + "amenity": [ + "restaurant" + ], + "delivery": [ + "yes" + ], + "takeaway": [ + "yes" + ], + "diet:vegan": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ], + "service:electricity": [ + "ask" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 123984287 + } + }, + { + "id": 123984213, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3811143, + 52.4956644 + ], + [ + 13.3811143, + 52.4956644 + ], + [ + 13.3811143, + 52.4956644 + ], + [ + 13.3811143, + 52.4956644 + ], + [ + 13.3811143, + 52.4956644 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fillidefilla", + "uid": "10882026", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T17:14:30Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ], + "cargo_bike": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 123984213 + } + }, + { + "id": 123984121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.3039594, + 46.7951302 + ], + [ + 13.3795744, + 46.7951302 + ], + [ + 13.3795744, + 52.4950171 + ], + [ + 10.3039594, + 52.4950171 + ], + [ + 10.3039594, + 46.7951302 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fillidefilla", + "uid": "10882026", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T17:11:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 17.5306576479435, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 123984121 + } + }, + { + "id": 123983045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1397107, + 43.5358721 + ], + [ + 4.1397107, + 43.5358721 + ], + [ + 4.1397107, + 43.5358721 + ], + [ + 4.1397107, + 43.5358721 + ], + [ + 4.1397107, + 43.5358721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T16:39:36Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 123983045 + } + }, + { + "id": 123980974, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ], + [ + 13.3520526, + 52.546131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T15:43:01Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/z5RZhRg.jpg" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123980974 + } + }, + { + "id": 123978763, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3170306, + 52.0791492 + ], + [ + 4.3170306, + 52.0791492 + ], + [ + 4.3170306, + 52.0791492 + ], + [ + 4.3170306, + 52.0791492 + ], + [ + 4.3170306, + 52.0791492 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guushoekman", + "uid": "2618153", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T14:48:19Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "toys" + ], + "opening_hours": [ + "Fr 12:00-18:00;Mo-We 11:00-18:00;Sa 11:00-18:00;Su 12:00-18:00;Th 12:00-21:00" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 123978763 + } + }, + { + "id": 123978524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3530154, + 52.5398611 + ], + [ + 13.3530154, + 52.5398611 + ], + [ + 13.3530154, + 52.5398611 + ], + [ + 13.3530154, + 52.5398611 + ], + [ + 13.3530154, + 52.5398611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T14:42:36Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/r3LQoby.jpg" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 123978524 + } + }, + { + "id": 123978274, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3529617, + 52.5402949 + ], + [ + 13.3569552, + 52.5402949 + ], + [ + 13.3569552, + 52.5420303 + ], + [ + 13.3529617, + 52.5420303 + ], + [ + 13.3529617, + 52.5402949 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T14:37:06Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-23", + "2020" + ], + "pump:status": [ + "broken", + "ok" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000693031990000462, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123978274 + } + }, + { + "id": 123978125, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0104384, + 51.3035242 + ], + [ + 13.0104384, + 51.3035242 + ], + [ + 13.0104384, + 51.3035242 + ], + [ + 13.0104384, + 51.3035242 + ], + [ + 13.0104384, + 51.3035242 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9905964354", + "osm_id": 9905964354, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "radler64ohne", + "uid": "2234817", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T14:33:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "binoculars" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 123978125 + } + }, + { + "id": 123976619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9013659, + 51.1798717 + ], + [ + 4.9060596, + 51.1798717 + ], + [ + 4.9060596, + 51.1829188 + ], + [ + 4.9013659, + 51.1829188 + ], + [ + 4.9013659, + 51.1798717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T13:47:40Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "guest_house" + ], + "building": [ + "yes", + "house", + "residential", + "garage", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3948719", + "Gbg/3948718", + "Gbg/3948715", + "Gbg/3948714", + "Gbg/3948800", + "Gbg/3948713", + "Gbg/3948801", + "Gbg/3948712", + "Gbg/3948812", + "Gbg/3948813", + "Gbg/7019716", + "Gbg/3948815", + "Gbg/7020227", + "Gbg/7019717", + "Gbg/3948817", + "Gbg/3948818", + "Gbg/3948753", + "Gbg/3948752", + "Gbg/3948741", + "Gbg/3948740", + "Gbg/3948739", + "Gbg/3948738", + "Gbg/3948737", + "Gbg/3948500", + "Gbg/5403591", + "Gbg/3948699", + "Gbg/3948700", + "Gbg/3948701", + "Gbg/3951917", + "Gbg/5860969", + "Gbg/3948779" + ], + "source:geometry:date": [ + "2012-11-15", + "2015-11-24", + "2017-03-01", + "2020-06-05", + "2021-10-25", + "2016-05-02", + "2013-02-20" + ] + }, + "create": 170, + "modify": 240, + "delete": 4, + "area": 0.0000143021732700154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 209, + "theme": "grb", + "delete": 4, + "import": 15, + "locale": "nl", + "imagery": "AGIV", + "conflation": 62, + "change_over_5000m": 15 + }, + "id": 123976619 + } + }, + { + "id": 123976194, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0074511, + 52.3473238 + ], + [ + 5.0074511, + 52.3473238 + ], + [ + 5.0074511, + 52.3473238 + ], + [ + 5.0074511, + 52.3473238 + ], + [ + 5.0074511, + 52.3473238 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DS_020", + "uid": "2771494", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T13:34:28Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 123976194 + } + }, + { + "id": 123976010, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0019624, + 52.3460998 + ], + [ + 5.0022073, + 52.3460998 + ], + [ + 5.0022073, + 52.3462258 + ], + [ + 5.0019624, + 52.3462258 + ], + [ + 5.0019624, + 52.3460998 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DS_020", + "uid": "2771494", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T13:29:49Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.08574000004249e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "create": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 123976010 + } + }, + { + "id": 123972387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7697555, + 52.8421004 + ], + [ + 13.7724998, + 52.8421004 + ], + [ + 13.7724998, + 52.8428728 + ], + [ + 13.7697555, + 52.8428728 + ], + [ + 13.7697555, + 52.8421004 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T11:42:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000211969732000657, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 123972387 + } + }, + { + "id": 123971306, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5024233, + 53.7303268 + ], + [ + -0.3610841, + 53.7303268 + ], + [ + -0.3610841, + 53.7926327 + ], + [ + -0.5024233, + 53.7926327 + ], + [ + -0.5024233, + 53.7303268 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.20.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T11:08:52Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "secondary", + "tertiary", + "residential" + ], + "name:etymology:wikidata": [ + "Q128147", + "Q667", + "Q6652464", + "Q1003286", + "Q350", + "Q208257", + "Q42462", + "Q28469715", + "Q28469731", + "Q28469739", + "Q28469735", + "Q28469737", + "Q28469736", + "Q28469742", + "Q28469741", + "Q28469743", + "Q28469717", + "Q28469721", + "Q28469719", + "Q28469716", + "Q28469718", + "Q28469724", + "Q28469728", + "Q28469726", + "Q28469738", + "Q28469740", + "Q28469744", + "Q28469748", + "Q28469746", + "Q28469734", + "Q28469730", + "Q28469722", + "Q28469720", + "Q28469732", + "Q28469714", + "Q2162945" + ] + }, + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.00880626606127977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 75, + "locale": "en", + "imagery": "osm" + }, + "id": 123971306 + } + }, + { + "id": 123971095, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.6664451, + 49.2177339 + ], + [ + 12.6664451, + 49.2177339 + ], + [ + 12.6664451, + 49.2177339 + ], + [ + 12.6664451, + 49.2177339 + ], + [ + 12.6664451, + 49.2177339 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T11:01:05Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/fzNT8su.jpg" + ], + "amenity": [ + "charging_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 123971095 + } + }, + { + "id": 123968681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.309781, + 51.3010608 + ], + [ + 13.309781, + 51.3010608 + ], + [ + 13.309781, + 51.3010608 + ], + [ + 13.309781, + 51.3010608 + ], + [ + 13.309781, + 51.3010608 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radler64ohne", + "uid": "2234817", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T09:44:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 6, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 6 + }, + "id": 123968681 + } + }, + { + "id": 123968669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3499118, + 52.5476283 + ], + [ + 13.3532002, + 52.5476283 + ], + [ + 13.3532002, + 52.5477669 + ], + [ + 13.3499118, + 52.5477669 + ], + [ + 13.3499118, + 52.5476283 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T09:43:36Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-23", + "2020" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.55772239998956e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123968669 + } + }, + { + "id": 123968507, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1404155, + 48.5395496 + ], + [ + 8.1404155, + 48.5395496 + ], + [ + 8.1404155, + 48.5395496 + ], + [ + 8.1404155, + 48.5395496 + ], + [ + 8.1404155, + 48.5395496 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T09:38:53Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 123968507 + } + }, + { + "id": 123968460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1373345, + 48.5395496 + ], + [ + 8.1404155, + 48.5395496 + ], + [ + 8.1404155, + 48.5449056 + ], + [ + 8.1373345, + 48.5449056 + ], + [ + 8.1373345, + 48.5395496 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T09:37:21Z", + "reviewed_features": [], + "tag_changes": { + "seats": [ + "3" + ], + "colour": [ + "brown" + ], + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000165018359999964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 3, + "change_within_1000m": 4 + }, + "id": 123968460 + } + }, + { + "id": 123968033, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5542052, + 44.8471924 + ], + [ + -0.5535989, + 44.8471924 + ], + [ + -0.5535989, + 44.8476683 + ], + [ + -0.5542052, + 44.8476683 + ], + [ + -0.5542052, + 44.8471924 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T09:25:32Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "civic" + ], + "man_made": [ + "surveillance" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.88538170002989e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance.html", + "theme": "surveillance", + "answer": 2, + "create": 2, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 5 + }, + "id": 123968033 + } + }, + { + "id": 123965562, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OpenStreetMapContributor1", + "uid": "16427682", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T08:11:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/surveillance", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "AGIV" + }, + "id": 123965562 + } + }, + { + "id": 123964693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.393988, + 45.3042777 + ], + [ + 8.4455933, + 45.3042777 + ], + [ + 8.4455933, + 45.3469655 + ], + [ + 8.393988, + 45.3469655 + ], + [ + 8.393988, + 45.3042777 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T07:38:27Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "secondary", + "residential", + "unclassified", + "cycleway", + "pedestrian", + "service" + ], + "leisure": [ + "park" + ], + "name:etymology:wikidata": [ + "Q113217011", + "Q676555", + "Q42788", + "Q9200", + "Q63953289", + "Q9064286", + "Q207073;Q312302", + "Q3760293", + "Q2851732", + "Q701820", + "Q62132", + "Q33", + "Q2292457", + "Q31966", + "Q18446457", + "Q3904123" + ] + }, + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.00220291672534017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 55, + "locale": "it", + "imagery": "osm" + }, + "id": 123964693 + } + }, + { + "id": 123963460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7336678, + 50.9661758 + ], + [ + 3.9224237, + 50.9661758 + ], + [ + 3.9224237, + 51.0493556 + ], + [ + 3.7336678, + 51.0493556 + ], + [ + 3.7336678, + 50.9661758 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T06:40:25Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "highway": [ + "residential", + "secondary", + "tertiary", + "unclassified", + "track", + "living_street", + "path", + "service", + "footway" + ], + "landuse": [ + "forest" + ], + "leisure": [ + "nature_reserve", + "park" + ], + "name:etymology:wikidata": [ + "Q2497011", + "Q597997", + "Q5599", + "Q628124", + "Q9147", + "Q7178", + "Q336977", + "Q730696", + "Q18789", + "Q3353007", + "Q160984", + "Q37620", + "Q1428668", + "Q2481320", + "Q696355", + "Q2152548", + "Q36380", + "Q456673", + "Q49836", + "Q847", + "Q2736", + "Q25352", + "Q1846662", + "Q21766131", + "Q133704", + "Q185187", + "Q21764570", + "Q156907", + "Q124969", + "Q81666", + "Q129324", + "Q146149", + "Q36050", + "Q61105", + "Q164294", + "Q25432", + "Q160642", + "Q147618", + "Q19707", + "Q1287283", + "Q127849", + "Q131113", + "Q42292", + "Q29858", + "Q39861", + "Q12688", + "Q309953", + "Q842477", + "Q522308" + ] + }, + "create": 0, + "modify": 135, + "delete": 0, + "area": 0.0157006780108193, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 191, + "locale": "nl", + "imagery": "osm" + }, + "id": 123963460 + } + }, + { + "id": 123963171, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9030216, + 51.1815838 + ], + [ + 4.9048822, + 51.1815838 + ], + [ + 4.9048822, + 51.1829256 + ], + [ + 4.9030216, + 51.1829256 + ], + [ + 4.9030216, + 51.1815838 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T06:28:51Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/7019723", + "Gbg/3948792", + "Gbg/3948732", + "Gbg/3948793", + "Gbg/3948721", + "Gbg/3948794", + "Gbg/3948795", + "Gbg/3948796", + "Gbg/3948799", + "Gbg/3948780", + "Gbg/3948781", + "Gbg/3948754", + "Gbg/5862597", + "Gbg/3952017" + ], + "source:geometry:date": [ + "2021-10-25", + "2013-02-20", + "2012-11-15", + "2014-12-04", + "2015-11-24", + "2020-06-05" + ] + }, + "create": 66, + "modify": 93, + "delete": 2, + "area": 0.00000249655307999836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 81, + "theme": "grb", + "delete": 2, + "import": 5, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "id": 123963171 + } + }, + { + "id": 123963148, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9027495, + 51.1818574 + ], + [ + 4.9036406, + 51.1818574 + ], + [ + 4.9036406, + 51.1823321 + ], + [ + 4.9027495, + 51.1823321 + ], + [ + 4.9027495, + 51.1818574 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T06:27:29Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house" + ], + "source:geometry:ref": [ + "Gbg/3948734" + ], + "source:geometry:date": [ + "2019-09-04" + ] + }, + "create": 48, + "modify": 5, + "delete": 0, + "area": 4.23005170004822e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123963148 + } + }, + { + "id": 123963069, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3666515, + 52.48983 + ], + [ + 13.369248, + 52.48983 + ], + [ + 13.369248, + 52.4919467 + ], + [ + 13.3666515, + 52.4919467 + ], + [ + 13.3666515, + 52.48983 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queerfish", + "uid": "16620126", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T06:23:38Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-23" + ], + "pump:status": [ + "regelmäßig in Gebrauch für adoptierte Straßenbäume (giessdenkiez.de)", + "ok" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000549601155000723, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 11, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 123963069 + } + }, + { + "id": 123962538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.4829772, + 49.0995796 + ], + [ + 12.4830293, + 49.0995796 + ], + [ + 12.4830293, + 49.0996375 + ], + [ + 12.4829772, + 49.0996375 + ], + [ + 12.4829772, + 49.0995796 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T05:59:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YhdFSGd.jpg", + "https://i.imgur.com/jNiL8Mh.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.0165900000581e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2 + }, + "id": 123962538 + } + }, + { + "id": 123962256, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7060754, + 50.9767935 + ], + [ + 3.7060754, + 50.9767935 + ], + [ + 3.7060754, + 50.9767935 + ], + [ + 3.7060754, + 50.9767935 + ], + [ + 3.7060754, + 50.9767935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-23T05:44:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VBJ1TKv.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 123962256 + } + }, + { + "id": 123962019, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8958987, + 51.1809881 + ], + [ + 4.9070639, + 51.1809881 + ], + [ + 4.9070639, + 51.1845125 + ], + [ + 4.8958987, + 51.1845125 + ], + [ + 4.8958987, + 51.1809881 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-23T05:27:53Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "bicycle" + ], + "highway": [ + "tertiary" + ], + "building": [ + "yes", + "house", + "apartments", + "industrial", + "roof" + ], + "addr:street": [ + "Heidehof" + ], + "addr:housenumber": [ + "117", + "115", + "164;166", + "166", + "2-3;5", + "7-8;10", + "12-13;15", + "178", + "176" + ], + "source:geometry:ref": [ + "Gbg/3947866", + "Gbg/3948778", + "Gbg/3948973", + "Gbg/3948759", + "Gbg/3948841", + "Gbg/3948834", + "Gbg/3948756", + "Gbg/5862447", + "Gbg/3948840", + "Gbg/3948835", + "Gbg/3948755", + "Gbg/3948839", + "Gbg/3948819", + "Gbg/3948838", + "Gbg/3949596", + "Gbg/3948837", + "Gbg/3949597", + "Gbg/3948773", + "Gbg/3948772", + "Gbg/3948761", + "Gbg/3948956", + "Gbg/3948853", + "Gbg/3948760", + "Gbg/3948852", + "Gbg/3948757", + "Gbg/3948758", + "Gbg/3948496", + "Gbg/5554924", + "Gbg/5862369", + "Gbg/5403838", + "Gbg/4928327", + "Gbg/3948615", + "Gbg/3948616", + "Gbg/4679001", + "Gbg/3948618", + "Gbg/6570657", + "Gbg/6427362", + "Gbg/3948492", + "Gbg/3948481", + "Gbg/3947779", + "Gbg/6427357", + "Gbg/6427356", + "Gbg/6836019", + "Gbg/3948833", + "Gbg/3948836", + "Gbg/3948957", + "Gbg/3948954", + "Gbg/3948620", + "Gbg/3948633" + ], + "source:geometry:date": [ + "2021-10-25", + "2012-11-15", + "2013-02-20", + "2017-03-01", + "2015-11-24", + "2014-12-04", + "2019-02-20", + "2018-09-13", + "2020-09-16", + "2020-06-05" + ] + }, + "create": 613, + "modify": 434, + "delete": 0, + "area": 0.0000393506308799581, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 385, + "theme": "grb", + "answer": 6, + "import": 69, + "locale": "nl", + "imagery": "AGIV", + "conflation": 98 + }, + "id": 123962019 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-24.json b/Docs/Tools/stats/stats.2022-7-24.json new file mode 100644 index 0000000000..cee9af1171 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-24.json @@ -0,0 +1,7945 @@ +{ + "features": [ + { + "id": 124023491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9438773, + 47.0245703 + ], + [ + 8.9445161, + 47.0245703 + ], + [ + 8.9445161, + 47.0252068 + ], + [ + 8.9438773, + 47.0252068 + ], + [ + 8.9438773, + 47.0245703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T20:20:59Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "customers" + ], + "amenity": [ + "sanitary_dump_station" + ], + "water_point": [ + "yes" + ], + "sanitary_dump_station:grey_water": [ + "yes", + "no" + ], + "sanitary_dump_station:chemical_toilet": [ + "no", + "yes" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.06596199998641e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/campersite.html", + "theme": "campersite", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5, + "change_within_50m": 1 + }, + "id": 124023491 + } + }, + { + "id": 124022541, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T19:48:40Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "toilets" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4 + }, + "id": 124022541 + } + }, + { + "id": 124022515, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5722113, + 53.0263589 + ], + [ + 6.5722113, + 53.0263589 + ], + [ + 6.5722113, + 53.0263589 + ], + [ + 6.5722113, + 53.0263589 + ], + [ + 6.5722113, + 53.0263589 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T19:47:38Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ], + "automatic_door": [ + "motion" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/feature/onwheels-icons/onwheels.html", + "theme": "onwheels", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2 + }, + "id": 124022515 + } + }, + { + "id": 124020138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3569552, + 52.5420303 + ], + [ + 13.3569552, + 52.5420303 + ], + [ + 13.3569552, + 52.5420303 + ], + [ + 13.3569552, + 52.5420303 + ], + [ + 13.3569552, + 52.5420303 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "baumBefeuchter", + "uid": "16563010", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:27:31Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "unbekannt, mehr Pumpen nötig bis zu 60x mal oder mehr", + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124020138 + } + }, + { + "id": 124019465, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2960867, + 50.3041121 + ], + [ + 9.2960867, + 50.3041121 + ], + [ + 9.2960867, + 50.3041121 + ], + [ + 9.2960867, + 50.3041121 + ], + [ + 9.2960867, + 50.3041121 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:04:02Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:count": [ + "1" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124019465 + } + }, + { + "id": 124019405, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2936263, + 50.3025707 + ], + [ + 9.2981399, + 50.3025707 + ], + [ + 9.2981399, + 50.3044993 + ], + [ + 9.2936263, + 50.3044993 + ], + [ + 9.2936263, + 50.3025707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:02:10Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "street_lamp", + "residential" + ], + "light:lit": [ + "dusk-dawn" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000870492896003127, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 9, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019405 + } + }, + { + "id": 124019396, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:01:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 124019396 + } + }, + { + "id": 124019383, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ], + [ + 9.2960293, + 50.3035039 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:01:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019383 + } + }, + { + "id": 124019373, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:01:09Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:lit": [ + "dusk-dawn" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019373 + } + }, + { + "id": 124019368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:00:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019368 + } + }, + { + "id": 124019360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2961092, + 50.3044626 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:00:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124019360 + } + }, + { + "id": 124019350, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:00:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019350 + } + }, + { + "id": 124019336, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2961092, + 50.3044626 + ], + [ + 9.2965668, + 50.3044626 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2961092, + 50.3045205 + ], + [ + 9.2961092, + 50.3044626 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T18:00:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "light:direction": [ + "228" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.64950400007784e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019336 + } + }, + { + "id": 124019331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:59:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019331 + } + }, + { + "id": 124019325, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:59:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019325 + } + }, + { + "id": 124019319, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ], + [ + 9.2965668, + 50.3045205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:59:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124019319 + } + }, + { + "id": 124018971, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2973017, + 50.3042015 + ], + [ + 9.2973017, + 50.3042015 + ], + [ + 9.2973017, + 50.3042015 + ], + [ + 9.2973017, + 50.3042015 + ], + [ + 9.2973017, + 50.3042015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:49:11Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 7, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124018971 + } + }, + { + "id": 124018828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2884268, + 50.2584018 + ], + [ + 9.2884268, + 50.2584018 + ], + [ + 9.2884268, + 50.2584018 + ], + [ + 9.2884268, + 50.2584018 + ], + [ + 9.2884268, + 50.2584018 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:45:18Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124018828 + } + }, + { + "id": 124018534, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2849793, + 50.2544477 + ], + [ + 9.3190703, + 50.2544477 + ], + [ + 9.3190703, + 50.3172014 + ], + [ + 9.2849793, + 50.3172014 + ], + [ + 9.2849793, + 50.2544477 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:36:40Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "primary", + "tertiary", + "unclassified" + ], + "maxspeed": [ + "30", + "80", + "70", + "100", + "50" + ] + }, + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00213933638670007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 29, + "locale": "de", + "imagery": "osm" + }, + "id": 124018534 + } + }, + { + "id": 124018345, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3232036, + 52.454986 + ], + [ + 13.3232036, + 52.454986 + ], + [ + 13.3232036, + 52.454986 + ], + [ + 13.3232036, + 52.454986 + ], + [ + 13.3232036, + 52.454986 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:31:20Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-24" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124018345 + } + }, + { + "id": 124018315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3296141, + 52.4570676 + ], + [ + 13.3314562, + 52.4570676 + ], + [ + 13.3314562, + 52.4583115 + ], + [ + 13.3296141, + 52.4583115 + ], + [ + 13.3296141, + 52.4570676 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:30:04Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-24", + "2020-09-11" + ], + "pump:status": [ + "ok", + "blocked" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000022913881899966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124018315 + } + }, + { + "id": 124018230, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2924539, + 50.3058756 + ], + [ + 9.2977154, + 50.3058756 + ], + [ + 9.2977154, + 50.317875 + ], + [ + 9.2924539, + 50.317875 + ], + [ + 9.2924539, + 50.3058756 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:26:34Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "direction": [ + "79" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000631348430999979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 15, + "create": 3, + "locale": "de", + "imagery": "osm", + "move:node/9907957602": "improve_accuracy" + }, + "id": 124018230 + } + }, + { + "id": 124018214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2976064, + 50.315605 + ], + [ + 9.2977154, + 50.315605 + ], + [ + 9.2977154, + 50.3159146 + ], + [ + 9.2976064, + 50.3159146 + ], + [ + 9.2976064, + 50.315605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:25:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.37464000001898e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124018214 + } + }, + { + "id": 124017743, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1830943, + 50.1813675 + ], + [ + 9.2980034, + 50.1813675 + ], + [ + 9.2980034, + 50.3164223 + ], + [ + 9.1830943, + 50.3164223 + ], + [ + 9.1830943, + 50.1813675 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T17:09:38Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+49 6054 909584" + ], + "amenity": [ + "school", + "parking" + ], + "website": [ + "https://www.grundschule-brachttal.de" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "de" + ] + }, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0155190255186799, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 8, + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 124017743 + } + }, + { + "id": 124017165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2849405, + 50.2479555 + ], + [ + 9.3163781, + 50.2479555 + ], + [ + 9.3163781, + 50.3086641 + ], + [ + 9.2849405, + 50.3086641 + ], + [ + 9.2849405, + 50.2479555 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T16:50:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00190853268335996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 11, + "create": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 124017165 + } + }, + { + "id": 124017013, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2888751, + 50.2519141 + ], + [ + 9.2958618, + 50.2519141 + ], + [ + 9.2958618, + 50.2543374 + ], + [ + 9.2888751, + 50.2543374 + ], + [ + 9.2888751, + 50.2519141 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-161708142", + "osm_id": 161708142, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "building": "sports_centre" + } + } + ], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T16:46:58Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ], + "railway": [ + "station" + ], + "building": [ + "train_station", + "sports_centre" + ], + "entrance": [ + "yes" + ], + "kerb:height": [ + "0" + ], + "automatic_door": [ + "button" + ], + "public_transport": [ + "stop_area", + "station" + ] + }, + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000169308701099782, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 7, + "create": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 124017013 + } + }, + { + "id": 124016757, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2927889, + 50.2533183 + ], + [ + 9.2927889, + 50.2533183 + ], + [ + 9.2927889, + 50.2533183 + ], + [ + 9.2927889, + 50.2533183 + ], + [ + 9.2927889, + 50.2533183 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T16:38:35Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/fritures.html", + "theme": "fritures", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124016757 + } + }, + { + "id": 124016264, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1784919, + 50.1807113 + ], + [ + 9.3102466, + 50.1807113 + ], + [ + 9.3102466, + 50.3134722 + ], + [ + 9.1784919, + 50.3134722 + ], + [ + 9.1784919, + 50.1807113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T16:22:45Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "route": [ + "bicycle", + "hiking", + "bus", + "road" + ], + "barrier": [ + "kerb" + ], + "highway": [ + "residential", + "primary" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "asphalt" + ], + "maxspeed": [ + "30" + ], + "public_transport": [ + "stop_area" + ], + "width:carriageway": [ + "6.2", + "6.4" + ] + }, + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.0174918725512301, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 10, + "create": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 124016264 + } + }, + { + "id": 124015355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.289122, + 50.2359961 + ], + [ + 9.3319601, + 50.2359961 + ], + [ + 9.3319601, + 50.3142841 + ], + [ + 9.289122, + 50.3142841 + ], + [ + 9.289122, + 50.2359961 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:58:08Z", + "reviewed_features": [], + "tag_changes": { + "bin": [ + "yes" + ], + "lit": [ + "yes" + ], + "kerb": [ + "raised" + ], + "name": [ + "Il Figaro" + ], + "shop": [ + "hairdresser", + "e-cigarette", + "weapons", + "car" + ], + "bench": [ + "yes", + "no" + ], + "phone": [ + "+49 6053 9507", + "+49 6054 909584" + ], + "route": [ + "bicycle", + "hiking", + "bus", + "road" + ], + "amenity": [ + "parking", + "school" + ], + "barrier": [ + "cycle_barrier", + "kerb" + ], + "bicycle": [ + "yes" + ], + "highway": [ + "residential", + "primary", + "bus_stop" + ], + "leisure": [ + "picnic_table" + ], + "shelter": [ + "yes" + ], + "surface": [ + "asphalt" + ], + "website": [ + "https://www.grundschule-brachttal.de" + ], + "capacity": [ + "18", + "2", + "3" + ], + "maxspeed": [ + "30" + ], + "wheelchair": [ + "yes" + ], + "kerb:height": [ + "7 cm" + ], + "opening_hours": [ + "Sa 08:00-14:00;Tu-Fr 09:00-18:00" + ], + "school:gender": [ + "mixed" + ], + "tactile_paving": [ + "yes" + ], + "school:language": [ + "de" + ], + "public_transport": [ + "stop_area", + "platform" + ], + "capacity:disabled": [ + "18", + "2", + "3" + ], + "width:carriageway": [ + "6.2", + "6.4" + ] + }, + "create": 6, + "modify": 21, + "delete": 0, + "area": 0.00335370917279995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "answer": 42, + "create": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 124015355 + } + }, + { + "id": 124015234, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:54:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124015234 + } + }, + { + "id": 124015203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2882138, + 50.3139672 + ], + [ + 9.2882138, + 50.3139672 + ], + [ + 9.2882138, + 50.3139672 + ], + [ + 9.2882138, + 50.3139672 + ], + [ + 9.2882138, + 50.3139672 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:54:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124015203 + } + }, + { + "id": 124015152, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2983635, + 50.2994998 + ], + [ + 9.2998388, + 50.2994998 + ], + [ + 9.2998388, + 50.3029201 + ], + [ + 9.2983635, + 50.3029201 + ], + [ + 9.2983635, + 50.2994998 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:52:36Z", + "reviewed_features": [], + "tag_changes": { + "bin": [ + "yes" + ], + "lit": [ + "no" + ], + "bench": [ + "yes", + "no" + ], + "highway": [ + "bus_stop" + ], + "shelter": [ + "no" + ], + "wheelchair": [ + "yes" + ], + "public_transport": [ + "platform" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000504596859000004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/transit.html", + "theme": "transit", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 124015152 + } + }, + { + "id": 124015132, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2981448, + 50.3029507 + ], + [ + 9.2981448, + 50.3029507 + ], + [ + 9.2981448, + 50.3029507 + ], + [ + 9.2981448, + 50.3029507 + ], + [ + 9.2981448, + 50.3029507 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:52:05Z", + "reviewed_features": [], + "tag_changes": { + "bin": [ + "yes" + ], + "bench": [ + "yes" + ], + "highway": [ + "bus_stop" + ], + "wheelchair": [ + "yes" + ], + "public_transport": [ + "platform" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/transit.html", + "theme": "transit", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 124015132 + } + }, + { + "id": 124014615, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2945456, + 50.2241335 + ], + [ + 9.3486436, + 50.2241335 + ], + [ + 9.3486436, + 50.3094745 + ], + [ + 9.2945456, + 50.3094745 + ], + [ + 9.2945456, + 50.2241335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:36:01Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "route": [ + "hiking", + "bus", + "mtb", + "bicycle", + "road" + ], + "amenity": [ + "parking" + ], + "barrier": [ + "kerb" + ], + "highway": [ + "residential", + "primary", + "living_street" + ], + "surface": [ + "asphalt" + ], + "maxspeed": [ + "30" + ], + "public_transport": [ + "stop_area" + ], + "width:carriageway": [ + "6.2", + "6.4" + ] + }, + "create": 7, + "modify": 18, + "delete": 0, + "area": 0.00461677741800011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 25, + "create": 14, + "locale": "de", + "imagery": "osm" + }, + "id": 124014615 + } + }, + { + "id": 124014417, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2945456, + 50.3044993 + ], + [ + 9.2966185, + 50.3044993 + ], + [ + 9.2966185, + 50.3059377 + ], + [ + 9.2945456, + 50.3059377 + ], + [ + 9.2945456, + 50.3044993 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:30:45Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "road" + ], + "barrier": [ + "kerb" + ], + "highway": [ + "residential" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00000298165935999543, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 9, + "create": 6, + "locale": "de", + "imagery": "osm" + }, + "id": 124014417 + } + }, + { + "id": 124014223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2924555, + 50.3058358 + ], + [ + 9.2924555, + 50.3058358 + ], + [ + 9.2924555, + 50.3058358 + ], + [ + 9.2924555, + 50.3058358 + ], + [ + 9.2924555, + 50.3058358 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:26:40Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "bollard" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "cycle_infra", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124014223 + } + }, + { + "id": 124014108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2925547, + 50.2994537 + ], + [ + 9.3043858, + 50.2994537 + ], + [ + 9.3043858, + 50.3059438 + ], + [ + 9.2925547, + 50.3059438 + ], + [ + 9.2925547, + 50.2994537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:23:56Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "cycle_barrier" + ], + "cycle_barrier": [ + "single", + "double" + ], + "maxwidth:physical": [ + "2" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000767850221100085, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 14, + "create": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124014108 + } + }, + { + "id": 124014028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2880996, + 50.3069956 + ], + [ + 9.2959021, + 50.3069956 + ], + [ + 9.2959021, + 50.3144896 + ], + [ + 9.2880996, + 50.3144896 + ], + [ + 9.2880996, + 50.3069956 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Punchyrock636", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:21:16Z", + "reviewed_features": [], + "tag_changes": { + "route": [ + "bus", + "road" + ], + "amenity": [ + "parking" + ], + "capacity": [ + "18", + "9", + "10" + ], + "capacity:disabled": [ + "18", + "9", + "10" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000584719349999991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 7, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124014028 + } + }, + { + "id": 124013482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2979231, + 50.3028584 + ], + [ + 9.2979231, + 50.3028584 + ], + [ + 9.2979231, + 50.3028584 + ], + [ + 9.2979231, + 50.3028584 + ], + [ + 9.2979231, + 50.3028584 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9907742954", + "osm_id": 9907742954, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:06:23Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "maps", + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124013482 + } + }, + { + "id": 124013340, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2915824, + 50.2982806 + ], + [ + 9.3036963, + 50.2982806 + ], + [ + 9.3036963, + 50.3121225 + ], + [ + 9.2915824, + 50.3121225 + ], + [ + 9.2915824, + 50.2982806 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:03:06Z", + "reviewed_features": [], + "tag_changes": { + "waste": [ + "trash" + ], + "amenity": [ + "waste_basket", + "waste_disposal" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000167679392410047, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124013340 + } + }, + { + "id": 124013249, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1782698, + 50.2044785 + ], + [ + 9.1782698, + 50.2044785 + ], + [ + 9.1782698, + 50.2044785 + ], + [ + 9.1782698, + 50.2044785 + ], + [ + 9.1782698, + 50.2044785 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 22", + "uid": "16631753", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T15:01:07Z", + "reviewed_features": [], + "tag_changes": { + "dog": [ + "leashed" + ], + "amenity": [ + "bar" + ], + "service:electricity": [ + "limited" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124013249 + } + }, + { + "id": 124012526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0421826, + 50.2179876 + ], + [ + 9.0442049, + 50.2179876 + ], + [ + 9.0442049, + 50.2193177 + ], + [ + 9.0421826, + 50.2193177 + ], + [ + 9.0421826, + 50.2179876 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:41:58Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "school" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "de" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000268986122999413, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education.html", + "theme": "education", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124012526 + } + }, + { + "id": 124012485, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0421665, + 50.2180902 + ], + [ + 9.0421671, + 50.2180902 + ], + [ + 9.0421671, + 50.2180906 + ], + [ + 9.0421665, + 50.2180906 + ], + [ + 9.0421665, + 50.2180902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:40:45Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.39999998503899e-13, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 6, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124012485 + } + }, + { + "id": 124012475, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:40:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124012475 + } + }, + { + "id": 124012468, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:40:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124012468 + } + }, + { + "id": 124012465, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:40:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124012465 + } + }, + { + "id": 124012331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0454441, + 50.2204058 + ], + [ + 9.0454441, + 50.2204058 + ], + [ + 9.0454441, + 50.2204058 + ], + [ + 9.0454441, + 50.2204058 + ], + [ + 9.0454441, + 50.2204058 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:36:56Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124012331 + } + }, + { + "id": 124012108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0563058, + 50.2298532 + ], + [ + 9.0567382, + 50.2298532 + ], + [ + 9.0567382, + 50.2305632 + ], + [ + 9.0563058, + 50.2305632 + ], + [ + 9.0563058, + 50.2298532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:30:27Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "yes" + ], + "highway": [ + "bus_stop" + ], + "wheelchair": [ + "yes", + "limited" + ], + "public_transport": [ + "platform" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.07003999998658e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/transit.html", + "theme": "transit", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 124012108 + } + }, + { + "id": 124012049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0608132, + 50.2279186 + ], + [ + 9.0608132, + 50.2279186 + ], + [ + 9.0608132, + 50.2279186 + ], + [ + 9.0608132, + 50.2279186 + ], + [ + 9.0608132, + 50.2279186 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:28:25Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 10, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124012049 + } + }, + { + "id": 124012030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2628798, + 51.3046074 + ], + [ + 13.2628798, + 51.3046074 + ], + [ + 13.2628798, + 51.3046074 + ], + [ + 13.2628798, + 51.3046074 + ], + [ + 13.2628798, + 51.3046074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radler64ohne", + "uid": "2234817", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T14:27:55Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "pitch" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124012030 + } + }, + { + "id": 124012018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0667501, + 50.2306514 + ], + [ + 9.0681465, + 50.2306514 + ], + [ + 9.0681465, + 50.2313418 + ], + [ + 9.0667501, + 50.2313418 + ], + [ + 9.0667501, + 50.2306514 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:27:27Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "limited" + ], + "leisure": [ + "pitch" + ], + "surface": [ + "Kunstrasen" + ], + "reservation": [ + "recommended" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.6407456000414e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/sport_pitches.html", + "theme": "sport_pitches", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 124012018 + } + }, + { + "id": 124011952, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0418333, + 50.2189251 + ], + [ + 9.0658909, + 50.2189251 + ], + [ + 9.0658909, + 50.2300067 + ], + [ + 9.0418333, + 50.2300067 + ], + [ + 9.0418333, + 50.2189251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:25:15Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ], + "capacity": [ + "100", + "8", + "45" + ], + "capacity:disabled": [ + "2", + "4" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00026659670015992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 124011952 + } + }, + { + "id": 124011894, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:23:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124011894 + } + }, + { + "id": 124011821, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0593702, + 50.2272365 + ], + [ + 9.0626417, + 50.2272365 + ], + [ + 9.0626417, + 50.2300535 + ], + [ + 9.0593702, + 50.2300535 + ], + [ + 9.0593702, + 50.2272365 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:21:19Z", + "reviewed_features": [], + "tag_changes": { + "barrier": [ + "kerb" + ], + "highway": [ + "residential" + ], + "smoothness": [ + "excellent" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000921581550000184, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", + "theme": "kerbs_and_crossings", + "answer": 6, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124011821 + } + }, + { + "id": 124011774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0582267, + 50.2276253 + ], + [ + 9.0608136, + 50.2276253 + ], + [ + 9.0608136, + 50.2305722 + ], + [ + 9.0582267, + 50.2305722 + ], + [ + 9.0582267, + 50.2276253 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:19:52Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "entrance": [ + "yes" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000762333560999109, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/entrances.html", + "theme": "entrances", + "answer": 1, + "create": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 124011774 + } + }, + { + "id": 124011704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0593702, + 50.2272365 + ], + [ + 9.0626417, + 50.2272365 + ], + [ + 9.0626417, + 50.2300535 + ], + [ + 9.0593702, + 50.2300535 + ], + [ + 9.0593702, + 50.2272365 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:18:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000921581550000184, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124011704 + } + }, + { + "id": 124011683, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5064351, + 48.8196201 + ], + [ + 13.5064351, + 48.8196201 + ], + [ + 13.5064351, + 48.8196201 + ], + [ + 13.5064351, + 48.8196201 + ], + [ + 13.5064351, + 48.8196201 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:17:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "backrest": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/index.html", + "theme": "nature", + "answer": 1, + "locale": "de", + "change_within_100m": 1 + }, + "id": 124011683 + } + }, + { + "id": 124011635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0602915, + 50.2382206 + ], + [ + 9.0602915, + 50.2382206 + ], + [ + 9.0602915, + 50.2382206 + ], + [ + 9.0602915, + 50.2382206 + ], + [ + 9.0602915, + 50.2382206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9907611205", + "osm_id": 9907611205, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:16:33Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "binoculars" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/binoculars.html", + "theme": "binoculars", + "answer": 3, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124011635 + } + }, + { + "id": 124011625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1782698, + 50.1971951 + ], + [ + 9.1897837, + 50.1971951 + ], + [ + 9.1897837, + 50.2044785 + ], + [ + 9.1782698, + 50.2044785 + ], + [ + 9.1782698, + 50.1971951 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 22", + "uid": "16631753", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:16:24Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar", + "cafe" + ] + }, + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.0000838603392599756, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 12, + "create": 5, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 124011625 + } + }, + { + "id": 124011566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0631735, + 50.2276681 + ], + [ + 9.0631735, + 50.2276681 + ], + [ + 9.0631735, + 50.2276681 + ], + [ + 9.0631735, + 50.2276681 + ], + [ + 9.0631735, + 50.2276681 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:15:02Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "material": [ + "wood" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124011566 + } + }, + { + "id": 124011483, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0588096, + 50.2261718 + ], + [ + 9.0631735, + 50.2261718 + ], + [ + 9.0631735, + 50.2301132 + ], + [ + 9.0588096, + 50.2301132 + ], + [ + 9.0588096, + 50.2261718 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:12:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.0000171998754599768, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 18, + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 124011483 + } + }, + { + "id": 124011368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0559477, + 50.2294277 + ], + [ + 9.0594158, + 50.2294277 + ], + [ + 9.0594158, + 50.2305576 + ], + [ + 9.0559477, + 50.2305576 + ], + [ + 9.0559477, + 50.2294277 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:09:13Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000391860618998221, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 3, + "create": 3, + "locale": "de", + "imagery": "osm" + }, + "id": 124011368 + } + }, + { + "id": 124011259, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0671787, + 50.2296791 + ], + [ + 9.0671787, + 50.2296791 + ], + [ + 9.0671787, + 50.2296791 + ], + [ + 9.0671787, + 50.2296791 + ], + [ + 9.0671787, + 50.2296791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:06:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "restaurant" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124011259 + } + }, + { + "id": 124011123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0431911, + 50.2182314 + ], + [ + 9.067286, + 50.2182314 + ], + [ + 9.067286, + 50.2314699 + ], + [ + 9.0431911, + 50.2314699 + ], + [ + 9.0431911, + 50.2182314 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:02:33Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "lit": [ + "no" + ], + "access": [ + "customers" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "99" + ], + "min_age": [ + "1" + ], + "surface": [ + "grass" + ], + "website": [ + "https://www.jugendzentrum-ronneburg.de" + ], + "operator": [ + "Jugendzentrum Ronneburg (MKK)" + ], + "wheelchair": [ + "yes" + ], + "opening_hours": [ + "sunrise-sunset", + "24/7" + ] + }, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.000318980333649994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 12, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124011123 + } + }, + { + "id": 124011109, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0552588, + 50.2305434 + ], + [ + 9.0562589, + 50.2305434 + ], + [ + 9.0562589, + 50.2314699 + ], + [ + 9.0552588, + 50.2314699 + ], + [ + 9.0552588, + 50.2305434 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:02:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.26592649997421e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 124011109 + } + }, + { + "id": 124011062, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0577981, + 50.2308968 + ], + [ + 9.0583181, + 50.2308968 + ], + [ + 9.0583181, + 50.2312359 + ], + [ + 9.0577981, + 50.2312359 + ], + [ + 9.0577981, + 50.2308968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T14:00:14Z", + "reviewed_features": [], + "tag_changes": { + "leisure": [ + "playground" + ], + "wheelchair": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.76332000002567e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124011062 + } + }, + { + "id": 124011034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0577981, + 50.2308968 + ], + [ + 9.0583181, + 50.2308968 + ], + [ + 9.0583181, + 50.2312359 + ], + [ + 9.0577981, + 50.2312359 + ], + [ + 9.0577981, + 50.2308968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:59:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.76332000002567e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "id": 124011034 + } + }, + { + "id": 124010983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0587137, + 50.2300746 + ], + [ + 9.0587137, + 50.2300746 + ], + [ + 9.0587137, + 50.2300746 + ], + [ + 9.0587137, + 50.2300746 + ], + [ + 9.0587137, + 50.2300746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:58:04Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124010983 + } + }, + { + "id": 124010732, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0408532, + 50.2153289 + ], + [ + 9.0663797, + 50.2153289 + ], + [ + 9.0663797, + 50.2357814 + ], + [ + 9.0408532, + 50.2357814 + ], + [ + 9.0408532, + 50.2153289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:50:43Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "tertiary", + "residential", + "secondary", + "living_street", + "track" + ], + "name:etymology": [ + "unknown" + ], + "name:etymology:wikidata": [ + "Q55488", + "Q39614", + "Q3802", + "Q1302299", + "Q382481", + "Q12280", + "Q148988", + "Q5879", + "Q659", + "Q1351785", + "Q182470", + "Q16970", + "Q8502", + "Q8359" + ] + }, + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.000522080741249933, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 47, + "locale": "de", + "imagery": "osm" + }, + "id": 124010732 + } + }, + { + "id": 124010709, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3064821, + 50.2719724 + ], + [ + 9.3064821, + 50.2719724 + ], + [ + 9.3064821, + 50.2719724 + ], + [ + 9.3064821, + 50.2719724 + ], + [ + 9.3064821, + 50.2719724 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:50:14Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "pub" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 6, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124010709 + } + }, + { + "id": 124010619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9296719, + 50.1731825 + ], + [ + 8.9296719, + 50.1731825 + ], + [ + 8.9296719, + 50.1731825 + ], + [ + 8.9296719, + 50.1731825 + ], + [ + 8.9296719, + 50.1731825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:47:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124010619 + } + }, + { + "id": 124009854, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:27:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ], + "cuisine": [ + "chinese" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124009854 + } + }, + { + "id": 124009720, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ], + [ + 9.2930922, + 50.2537018 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:24:05Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "fast_food" + ] + }, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/food.html", + "theme": "food", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124009720 + } + }, + { + "id": 124009625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.299688, + 50.3043557 + ], + [ + 9.299688, + 50.3043557 + ], + [ + 9.299688, + 50.3043557 + ], + [ + 9.299688, + 50.3043557 + ], + [ + 9.299688, + 50.3043557 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:20:38Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 124009625 + } + }, + { + "id": 124009237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2616594, + 50.2851045 + ], + [ + 9.3023795, + 50.2851045 + ], + [ + 9.3023795, + 50.3139636 + ], + [ + 9.2616594, + 50.3139636 + ], + [ + 9.2616594, + 50.2851045 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:09:27Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ], + "parking": [ + "street_side", + "surface" + ], + "capacity": [ + "5", + "10" + ], + "capacity:disabled": [ + "5", + "10" + ] + }, + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00117514543790997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 18, + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 124009237 + } + }, + { + "id": 124009152, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.3028218, + 50.2994537 + ], + [ + 9.3043858, + 50.2994537 + ], + [ + 9.3043858, + 50.3006989 + ], + [ + 9.3028218, + 50.3006989 + ], + [ + 9.3028218, + 50.2994537 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:06:45Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "route": [ + "bicycle" + ], + "barrier": [ + "cycle_barrier" + ], + "highway": [ + "cycleway" + ], + "smoothness": [ + "good" + ], + "cycle_barrier": [ + "double" + ] + }, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000194749279999955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 16, + "create": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124009152 + } + }, + { + "id": 124008929, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.2981364, + 50.3029782 + ], + [ + 9.2996644, + 50.3029782 + ], + [ + 9.2996644, + 50.304399 + ], + [ + 9.2981364, + 50.304399 + ], + [ + 9.2981364, + 50.3029782 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "edgartkoschlar187", + "uid": "16631222", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T13:01:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000217098239999536, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "de", + "imagery": "osm" + }, + "id": 124008929 + } + }, + { + "id": 124007843, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4195831, + 50.7984455 + ], + [ + 4.4195831, + 50.7984455 + ], + [ + 4.4195831, + 50.7984455 + ], + [ + 4.4195831, + 50.7984455 + ], + [ + 4.4195831, + 50.7984455 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T12:30:29Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/86a3NYP.jpg" + ], + "amenity": [ + "bicycle_repair_station" + ], + "opening_hours": [ + "24/7" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 124007843 + } + }, + { + "id": 124007155, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8395688, + 48.6975766 + ], + [ + -3.8395688, + 48.6975766 + ], + [ + -3.8395688, + 48.6975766 + ], + [ + -3.8395688, + 48.6975766 + ], + [ + -3.8395688, + 48.6975766 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyril42e", + "uid": "1801525", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T12:12:28Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 124007155 + } + }, + { + "id": 124007134, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9351449, + 49.7813736 + ], + [ + 9.9351449, + 49.7813736 + ], + [ + 9.9351449, + 49.7813736 + ], + [ + 9.9351449, + 49.7813736 + ], + [ + 9.9351449, + 49.7813736 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wuerzblog", + "uid": "57291", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T12:11:53Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ] + }, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "answer": 10, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124007134 + } + }, + { + "id": 124006851, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5013039, + 52.4970694 + ], + [ + 13.5013039, + 52.4970694 + ], + [ + 13.5013039, + 52.4970694 + ], + [ + 13.5013039, + 52.4970694 + ], + [ + 13.5013039, + 52.4970694 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Walderfahrung", + "uid": "16630874", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T12:02:46Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124006851 + } + }, + { + "id": 124006452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.9287697, + 49.792706 + ], + [ + 9.9287697, + 49.792706 + ], + [ + 9.9287697, + 49.792706 + ], + [ + 9.9287697, + 49.792706 + ], + [ + 9.9287697, + 49.792706 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wuerzblog", + "uid": "57291", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T11:50:34Z", + "reviewed_features": [], + "tag_changes": { + "dog": [ + "yes" + ], + "amenity": [ + "cafe" + ], + "smoking": [ + "outside" + ], + "service:electricity": [ + "no" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "id": 124006452 + } + }, + { + "id": 124003543, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8772387, + 51.1562631 + ], + [ + 5.0047352, + 51.1562631 + ], + [ + 5.0047352, + 51.2104771 + ], + [ + 2.8772387, + 51.2104771 + ], + [ + 2.8772387, + 51.1562631 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T10:11:40Z", + "reviewed_features": [], + "tag_changes": { + "landuse": [ + "meadow", + "farmyard" + ], + "building": [ + "yes", + "house", + "office", + "roof" + ], + "addr:street": [ + "J.B.-Stessensstraat", + "J. B. Stessensstraat" + ], + "addr:housenumber": [ + "67;69", + "67,69", + "69;71", + "69-71" + ], + "source:geometry:ref": [ + "Gbg/1711298", + "Gbg/1713428", + "Gbg/1711297", + "Gbg/5124219", + "Gbg/1706211", + "Gbg/6155002", + "Gbg/1706216", + "Gbg/5124217", + "Gbg/6154405", + "Gbg/6153526", + "Gbg/6153174", + "Gbg/6152967", + "Gbg/1711415", + "Gbg/5126111" + ], + "source:geometry:date": [ + "2009-11-17", + "2015-03-30", + "2017-11-20", + "2012-10-10" + ] + }, + "create": 210, + "modify": 311, + "delete": 0, + "area": 0.115340095251004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 297, + "theme": "grb", + "answer": 2, + "import": 14, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 28, + "change_over_5000m": 1 + }, + "id": 124003543 + } + }, + { + "id": 124002833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4024884, + 45.3128165 + ], + [ + 9.0412114, + 45.3128165 + ], + [ + 9.0412114, + 45.6002287 + ], + [ + 8.4024884, + 45.6002287 + ], + [ + 8.4024884, + 45.3128165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ivanbranco", + "uid": "11220113", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T09:49:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "kindergarten", + "school" + ], + "highway": [ + "residential", + "primary", + "service", + "unclassified", + "tertiary" + ], + "landuse": [ + "education" + ], + "leisure": [ + "park", + "sports_centre" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q19001811", + "Q1286", + "Q47066", + "Q9409", + "Q273314", + "Q53133", + "Q3980759", + "Q3861947", + "Q113248387", + "Q182092", + "Q608238", + "Q113249925", + "Q128130", + "Q708202", + "Q963339", + "Q128226", + "Q48900", + "Q529146", + "Q872637", + "Q28870251", + "Q15924", + "Q625139", + "Q336731", + "Q183240", + "Q1374", + "Q762", + "Q113250495", + "Q680", + "Q3767329", + "Q81989", + "Q221503", + "Q676555", + "Q147015", + "Q1025312" + ] + }, + "create": 0, + "modify": 74, + "delete": 0, + "area": 0.183576782620604, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology", + "theme": "etymology", + "answer": 88, + "locale": "it", + "imagery": "osm" + }, + "id": 124002833 + } + }, + { + "id": 124002782, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T09:48:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/nature.html", + "theme": "nature", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_100m": 1 + }, + "id": 124002782 + } + }, + { + "id": 124001148, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6248593, + 52.4509662 + ], + [ + 13.6248593, + 52.4509662 + ], + [ + 13.6248593, + 52.4509662 + ], + [ + 13.6248593, + 52.4509662 + ], + [ + 13.6248593, + 52.4509662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T08:55:21Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-22", + "2022-07-10" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124001148 + } + }, + { + "id": 123999652, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8803732, + 51.1776254 + ], + [ + 4.9012972, + 51.1776254 + ], + [ + 4.9012972, + 51.1867329 + ], + [ + 4.8803732, + 51.1867329 + ], + [ + 4.8803732, + 51.1776254 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T08:06:59Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "weighbridge" + ], + "building": [ + "office", + "industrial", + "house", + "yes", + "roof" + ], + "addr:street": [ + "Watertorenstraat" + ], + "addr:housenumber": [ + "35" + ], + "source:geometry:ref": [ + "Gbg/7019601", + "Gbg/3950728", + "Gbg/3949843", + "Gbg/3949869", + "Gbg/3947974", + "Gbg/3947973", + "Gbg/6508495", + "Gbg/3947781", + "Gbg/6508520", + "Gbg/3947798", + "Gbg/5862342", + "Gbg/3947799", + "Gbg/3947784", + "Gbg/3947800", + "Gbg/3947785", + "Gbg/3947801", + "Gbg/7019737", + "Gbg/3947802", + "Gbg/3947787", + "Gbg/3947803", + "Gbg/3947780", + "Gbg/3947855", + "Gbg/3947778", + "Gbg/5862350", + "Gbg/5862309", + "Gbg/3950034", + "Gbg/6508498", + "Gbg/3950070", + "Gbg/6507762", + "Gbg/3950036", + "Gbg/6803374", + "Gbg/6803373", + "Gbg/3950133", + "Gbg/3950047", + "Gbg/3950141", + "Gbg/3950041", + "Gbg/3950007", + "Gbg/3950008", + "Gbg/6507761", + "Gbg/3947867", + "Gbg/3950080", + "Gbg/3950073", + "Gbg/3950112", + "Gbg/5860845", + "Gbg/6507770", + "Gbg/3950072", + "Gbg/5860840", + "Gbg/7019739", + "Gbg/3950068", + "Gbg/3950069", + "Gbg/3950019", + "Gbg/3950075", + "Gbg/3950074", + "Gbg/6507767", + "Gbg/3950099", + "Gbg/3949999", + "Gbg/5860836", + "Gbg/3950062", + "Gbg/5860856", + "Gbg/3950064", + "Gbg/3950159", + "Gbg/3950160", + "Gbg/3950010", + "Gbg/6803380", + "Gbg/6803378", + "Gbg/3950005", + "Gbg/3950001", + "Gbg/3950000", + "Gbg/7019696", + "Gbg/5860841", + "Gbg/3950020", + "Gbg/5860838", + "Gbg/3947853" + ], + "source:geometry:date": [ + "2021-10-25", + "2012-11-15", + "2019-09-04", + "2018-10-24", + "2013-02-20", + "2017-03-01", + "2018-02-26", + "2020-06-05", + "2014-05-02" + ] + }, + "create": 659, + "modify": 527, + "delete": 3, + "area": 0.000190565330000126, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 452, + "theme": "grb", + "answer": 1, + "delete": 3, + "import": 65, + "locale": "nl", + "imagery": "AGIV", + "conflation": 146 + }, + "id": 123999652 + } + }, + { + "id": 123999606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5481008, + 48.8028911 + ], + [ + 13.5481008, + 48.8028911 + ], + [ + 13.5481008, + 48.8028911 + ], + [ + 13.5481008, + 48.8028911 + ], + [ + 13.5481008, + 48.8028911 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T08:05:29Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bakery" + ], + "amenity": [ + "cafe" + ], + "website": [ + "https://m.baeckerei-kittl.de/de/fachgeschaefte.html" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 123999606 + } + }, + { + "id": 123999591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8991132, + 51.1795768 + ], + [ + 4.9026741, + 51.1795768 + ], + [ + 4.9026741, + 51.1809254 + ], + [ + 4.8991132, + 51.1809254 + ], + [ + 4.8991132, + 51.1795768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T08:05:04Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3948674", + "Gbg/3947796", + "Gbg/6803384", + "Gbg/3947795" + ], + "source:geometry:date": [ + "2013-02-20", + "2017-03-01", + "2021-10-25" + ] + }, + "create": 73, + "modify": 22, + "delete": 0, + "area": 0.00000480222973999904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 20, + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8 + }, + "id": 123999591 + } + }, + { + "id": 123999458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9940673, + 51.1650967 + ], + [ + 5.001737, + 51.1650967 + ], + [ + 5.001737, + 51.1696616 + ], + [ + 4.9940673, + 51.1696616 + ], + [ + 4.9940673, + 51.1650967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T08:00:24Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "track", + "path" + ], + "name:etymology:wikidata": [ + "Q1258926", + "Q12892" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000350114135299876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 12, + "locale": "nl", + "imagery": "osm" + }, + "id": 123999458 + } + }, + { + "id": 123999413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9005069, + 51.1797587 + ], + [ + 4.90201, + 51.1797587 + ], + [ + 4.90201, + 51.1807503 + ], + [ + 4.9005069, + 51.1807503 + ], + [ + 4.9005069, + 51.1797587 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T07:59:05Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3947841", + "Gbg/3947842", + "Gbg/3947843", + "Gbg/3947844", + "Gbg/3948672", + "Gbg/3948661", + "Gbg/3948660", + "Gbg/3948659", + "Gbg/6508513", + "Gbg/3948657" + ], + "source:geometry:date": [ + "2020-06-05", + "2013-02-20", + "2015-11-24", + "2012-11-15", + "2018-10-24" + ] + }, + "create": 35, + "modify": 38, + "delete": 0, + "area": 0.00000149047395999834, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 35, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "id": 123999413 + } + }, + { + "id": 123998940, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9005069, + 51.1802435 + ], + [ + 4.902542, + 51.1802435 + ], + [ + 4.902542, + 51.1814191 + ], + [ + 4.9005069, + 51.1814191 + ], + [ + 4.9005069, + 51.1802435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T07:41:10Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "addr:housenumber": [ + "134;134A", + "134" + ], + "source:geometry:ref": [ + "Gbg/3948654", + "Gbg/3948653", + "Gbg/3948652", + "Gbg/6508548", + "Gbg/3948640", + "Gbg/3948533", + "Gbg/6057084", + "Gbg/3948535", + "Gbg/3947841", + "Gbg/3947842", + "Gbg/3947843", + "Gbg/3947844", + "Gbg/5862279" + ], + "source:geometry:date": [ + "2013-02-20", + "2018-10-24", + "2021-10-25", + "2015-11-24", + "2017-10-16", + "2012-11-15", + "2020-06-05", + "2017-03-01" + ] + }, + "create": 136, + "modify": 87, + "delete": 0, + "area": 0.00000239246355999303, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 73, + "theme": "grb", + "answer": 1, + "import": 17, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "id": 123998940 + } + }, + { + "id": 123998884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9014402, + 51.1811318 + ], + [ + 4.9035953, + 51.1811318 + ], + [ + 4.9035953, + 51.183221 + ], + [ + 4.9014402, + 51.183221 + ], + [ + 4.9014402, + 51.1811318 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T07:38:19Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3948735", + "Gbg/5862427", + "Gbg/3948638", + "Gbg/3948637", + "Gbg/3948512", + "Gbg/5862506" + ], + "source:geometry:date": [ + "2019-09-04", + "2017-03-01", + "2013-02-20", + "2015-11-24" + ] + }, + "create": 56, + "modify": 45, + "delete": 0, + "area": 0.0000045024349200016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 41, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 12 + }, + "id": 123998884 + } + }, + { + "id": 123998880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9012347, + 51.1814424 + ], + [ + 4.9013678, + 51.1814424 + ], + [ + 4.9013678, + 51.1816028 + ], + [ + 4.9012347, + 51.1816028 + ], + [ + 4.9012347, + 51.1814424 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T07:38:09Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ], + "source:geometry:ref": [ + "Gbg/3948516" + ], + "source:geometry:date": [ + "2013-02-20" + ] + }, + "create": 2, + "modify": 6, + "delete": 0, + "area": 2.13492399998511e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 5, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123998880 + } + }, + { + "id": 123998873, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.901508, + 51.1814589 + ], + [ + 4.901824, + 51.1814589 + ], + [ + 4.901824, + 51.1815731 + ], + [ + 4.901508, + 51.1815731 + ], + [ + 4.901508, + 51.1814589 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T07:37:52Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3948515" + ], + "source:geometry:date": [ + "2012-11-15" + ] + }, + "create": 3, + "modify": 7, + "delete": 0, + "area": 3.60871999996734e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 6, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 123998873 + } + }, + { + "id": 123998868, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9018061, + 51.1813328 + ], + [ + 4.9029086, + 51.1813328 + ], + [ + 4.9029086, + 51.1820404 + ], + [ + 4.9018061, + 51.1820404 + ], + [ + 4.9018061, + 51.1813328 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T07:37:28Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/5862477", + "Gbg/3948636", + "Gbg/3948635" + ], + "source:geometry:date": [ + "2017-03-01", + "2012-11-15", + "2013-02-20" + ] + }, + "create": 39, + "modify": 21, + "delete": 0, + "area": 7.80128999998202e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 18, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "id": 123998868 + } + }, + { + "id": 123997166, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.590452, + -33.4607463 + ], + [ + -70.5672321, + -33.4607463 + ], + [ + -70.5672321, + -33.4443225 + ], + [ + -70.590452, + -33.4443225 + ], + [ + -70.590452, + -33.4607463 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T06:16:03Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Matias Rojas Guerrero" + ], + "image": [ + "https://i.imgur.com/Wv7Qqdp.jpg" + ], + "source": [ + "https://twitter.com/lareinapedalea/status/1309459574626422784" + ], + "historic": [ + "memorial" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000381358993619975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "answer": 2, + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 123997166 + } + }, + { + "id": 123996099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1443388, + 49.2848289 + ], + [ + 13.1449109, + 49.2848289 + ], + [ + 13.1449109, + 49.2860939 + ], + [ + 13.1443388, + 49.2860939 + ], + [ + 13.1443388, + 49.2848289 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T05:00:17Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "changing_table": [ + "no" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.23706499997261e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "id": 123996099 + } + }, + { + "id": 123995850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.8547247, + 49.3486955 + ], + [ + 12.8547367, + 49.3486955 + ], + [ + 12.8547367, + 49.348934 + ], + [ + 12.8547247, + 49.348934 + ], + [ + 12.8547247, + 49.3486955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-24T04:32:01Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Original Thai Massage" + ], + "shop": [ + "massage", + "hairdresser" + ], + "image": [ + "https://i.imgur.com/B5SwXgD.jpg", + "https://i.imgur.com/QVbiE3t.jpg" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.86199999999806e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 123995850 + } + }, + { + "id": 123994765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7466533, + -33.4923029 + ], + [ + -70.6416714, + -33.4923029 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.7466533, + -33.4499735 + ], + [ + -70.7466533, + -33.4923029 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T02:35:25Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Cristian Martínez" + ], + "image": [ + "https://i.imgur.com/M5PeTwh.jpg" + ], + "historic": [ + "memorial" + ], + "inscription": [ + "Hans Andres Venegas Salinas Q.E.P.D. 24-Dic-1988 / 19-Abr-2018", + "Hans Andres Venegas Salinas\nQ.E.P.D.\n24-Dic-1988 / 19-Abr-2018" + ] + }, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00444382083785992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "answer": 10, + "create": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "id": 123994765 + } + }, + { + "id": 123993986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T01:13:15Z", + "reviewed_features": [], + "tag_changes": { + "historic": [ + "memorial" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "create": 1, + "locale": "es", + "imagery": "EsriWorldImagery" + }, + "id": 123993986 + } + }, + { + "id": 123993932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.71082, + 44.9504902 + ], + [ + -92.71082, + 44.9504902 + ], + [ + -92.71082, + 44.9504902 + ], + [ + -92.71082, + 44.9504902 + ], + [ + -92.71082, + 44.9504902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "noliver", + "uid": "91568", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-24T01:07:01Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "red" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "id": 123993932 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-25.json b/Docs/Tools/stats/stats.2022-7-25.json new file mode 100644 index 0000000000..ee98fb4e88 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-25.json @@ -0,0 +1,3340 @@ +{ + "features": [ + { + "id": 124070832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5087183, + 47.3710668 + ], + [ + 8.5087897, + 47.3710668 + ], + [ + 8.5087897, + 47.3712519 + ], + [ + 8.5087183, + 47.3712519 + ], + [ + 8.5087183, + 47.3710668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pascal Mages", + "uid": "30566", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T22:16:01Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "residents", + "private" + ], + "amenity": [ + "waste_disposal" + ], + "location": [ + "underground" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.32161399996176e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 124070832 + } + }, + { + "id": 124070530, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.2284295, + 47.6242028 + ], + [ + -117.1966007, + 47.6242028 + ], + [ + -117.1966007, + 47.635149 + ], + [ + -117.2284295, + 47.635149 + ], + [ + -117.2284295, + 47.6242028 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T21:59:25Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "tertiary" + ], + "maxspeed": [ + "25 mph" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000348404410559974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 124070530 + } + }, + { + "id": 124070483, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T21:57:36Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/a6gMoq3.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1 + }, + "id": 124070483 + } + }, + { + "id": 124069117, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2097843, + 51.2188156 + ], + [ + 3.2215858, + 51.2188156 + ], + [ + 3.2215858, + 51.2217124 + ], + [ + 3.2097843, + 51.2217124 + ], + [ + 3.2097843, + 51.2188156 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T21:02:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "cycleway", + "residential", + "footway" + ], + "name:etymology:wikidata": [ + "Q24489" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000341865852000247, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 12 + }, + "id": 124069117 + } + }, + { + "id": 124069034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7519847, + 50.9957612 + ], + [ + 4.7554903, + 50.9957612 + ], + [ + 4.7554903, + 50.9962987 + ], + [ + 4.7519847, + 50.9962987 + ], + [ + 4.7519847, + 50.9957612 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T20:59:07Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "apartments", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/2804401", + "Gbg/6924120" + ], + "source:geometry:date": [ + "2011-06-22", + "2021-03-19" + ] + }, + "create": 59, + "modify": 10, + "delete": 0, + "area": 0.00000188426000000004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 8, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "id": 124069034 + } + }, + { + "id": 124067614, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3495561, + 50.8459882 + ], + [ + 4.3497429, + 50.8459882 + ], + [ + 4.3497429, + 50.8460763 + ], + [ + 4.3495561, + 50.8460763 + ], + [ + 4.3495561, + 50.8459882 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T20:11:43Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.64570799998456e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124067614 + } + }, + { + "id": 124067457, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3406296, + 50.8512164 + ], + [ + 4.3406296, + 50.8512164 + ], + [ + 4.3406296, + 50.8512164 + ], + [ + 4.3406296, + 50.8512164 + ], + [ + 4.3406296, + 50.8512164 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T20:04:56Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/AlurPOE.jpg" + ], + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 124067457 + } + }, + { + "id": 124064416, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1443388, + 49.285973 + ], + [ + 13.1445051, + 49.285973 + ], + [ + 13.1445051, + 49.2860939 + ], + [ + 13.1443388, + 49.2860939 + ], + [ + 13.1443388, + 49.285973 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T18:30:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FMeNokF.jpg" + ], + "amenity": [ + "toilets" + ], + "building": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.01056699998196e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 124064416 + } + }, + { + "id": 124064180, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1441347, + 49.2860596 + ], + [ + 13.1441347, + 49.2860596 + ], + [ + 13.1441347, + 49.2860596 + ], + [ + 13.1441347, + 49.2860596 + ], + [ + 13.1441347, + 49.2860596 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T18:24:10Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/H6NvOmK.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 124064180 + } + }, + { + "id": 124063862, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6787536, + 45.3598609 + ], + [ + 9.7004696, + 45.3598609 + ], + [ + 9.7004696, + 45.3650902 + ], + [ + 9.6787536, + 45.3650902 + ], + [ + 9.6787536, + 45.3598609 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T18:15:34Z", + "reviewed_features": [], + "tag_changes": { + "place": [ + "square" + ], + "amenity": [ + "school" + ], + "highway": [ + "residential", + "pedestrian", + "tertiary", + "service" + ], + "name:etymology:wikidata": [ + "Q83003", + "Q171834", + "Q539", + "Q1131884", + "Q333809", + "Q1064", + "Q187336", + "Q87620", + "Q53068", + "Q23873" + ] + }, + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.000113559478799918, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 56, + "locale": "it", + "imagery": "osm", + "change_over_5000m": 56 + }, + "id": 124063862 + } + }, + { + "id": 124055667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5172315, + 52.4890908 + ], + [ + 13.5246391, + 52.4890908 + ], + [ + 13.5246391, + 52.5044307 + ], + [ + 13.5172315, + 52.5044307 + ], + [ + 13.5172315, + 52.4890908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T14:36:24Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/ekZyUbf.jpg", + "https://i.imgur.com/Z0TPObS.jpg", + "https://i.imgur.com/cos7VMy.jpg", + "https://i.imgur.com/MEXFF84.jpg" + ], + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-25" + ], + "pump:status": [ + "ok", + "broken" + ] + }, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000113631843240013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 14, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 7 + }, + "id": 124055667 + } + }, + { + "id": 124055535, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3501914, + 50.8662403 + ], + [ + 4.3502382, + 50.8662403 + ], + [ + 4.3502382, + 50.8663556 + ], + [ + 4.3501914, + 50.8663556 + ], + [ + 4.3501914, + 50.8662403 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T14:33:08Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/D8SIO6q.jpg", + "https://i.imgur.com/1EweTBU.jpg" + ], + "highway": [ + "elevator" + ], + "door:width": [ + "96 cm" + ], + "hearing_loop": [ + "yes" + ], + "elevator:depth": [ + "140 cm" + ], + "elevator:width": [ + "110 cm" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.39603999985314e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5 + }, + "id": 124055535 + } + }, + { + "id": 124054999, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3502264, + 50.8662403 + ], + [ + 4.3503424, + 50.8662403 + ], + [ + 4.3503424, + 50.8666378 + ], + [ + 4.3502264, + 50.8666378 + ], + [ + 4.3502264, + 50.8662403 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlexanderReb", + "uid": "16447083", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T14:20:36Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/j2B6p30.jpg" + ], + "highway": [ + "elevator" + ], + "door:width": [ + "96 cm" + ], + "hearing_loop": [ + "yes" + ], + "elevator:depth": [ + "140 cm" + ], + "elevator:width": [ + "110 cm" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 4.6109999999537e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/theme.html", + "theme": "onwheels", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 124054999 + } + }, + { + "id": 124053521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.6432498, + -34.6525167 + ], + [ + -58.6432498, + -34.6525167 + ], + [ + -58.6432498, + -34.6525167 + ], + [ + -58.6432498, + -34.6525167 + ], + [ + -58.6432498, + -34.6525167 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T13:42:32Z", + "reviewed_features": [], + "tag_changes": { + "ref": [ + "CL 51" + ], + "railway": [ + "signal" + ], + "railway:signal:main:ref": [ + "CL 51" + ], + "railway:signal:shunting:ref": [ + "CL 49;CL 50" + ], + "railway:signal:minor:caption": [ + "CL 51" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_within_25m": 7 + }, + "id": 124053521 + } + }, + { + "id": 124052211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3753194, + 50.8411062 + ], + [ + 4.3753194, + 50.8411062 + ], + [ + 4.3753194, + 50.8411062 + ], + [ + 4.3753194, + 50.8411062 + ], + [ + 4.3753194, + 50.8411062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T13:11:33Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/psf4w4f.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 124052211 + } + }, + { + "id": 124051981, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3493369, + 50.8655878 + ], + [ + 4.350863, + 50.8655878 + ], + [ + 4.350863, + 50.8668593 + ], + [ + 4.3493369, + 50.8668593 + ], + [ + 4.3493369, + 50.8655878 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-444059131", + "name": "Herman Teirlinckgebouw", + "osm_id": 444059131, + "reasons": [ + 43 + ], + "version": 24, + "primary_tags": { + "building": "government" + } + } + ], + "user": "RobinJulien", + "uid": "10173303", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T13:05:32Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "government" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000194043615000271, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels", + "theme": "onwheels", + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124051981 + } + }, + { + "id": 124051907, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8836952, + 43.6353603 + ], + [ + 3.8921642, + 43.6353603 + ], + [ + 3.8921642, + 43.640662 + ], + [ + 3.8836952, + 43.640662 + ], + [ + 3.8836952, + 43.6353603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T13:02:26Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/37A6fec.jpg", + "https://i.imgur.com/RWP9eWA.jpg", + "https://i.imgur.com/0VsdItt.jpg", + "https://i.imgur.com/VDqg5qJ.jpg", + "https://i.imgur.com/qF5P4sF.jpg", + "https://i.imgur.com/eRtHHcY.jpg", + "https://i.imgur.com/tIabUd1.jpg", + "https://i.imgur.com/FkHRL3y.jpg" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000449000972999725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "locale": "fr", + "imagery": "HDM_HOT", + "add-image": 8 + }, + "id": 124051907 + } + }, + { + "id": 124050523, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.0386055, + 48.5209647 + ], + [ + 9.0416068, + 48.5209647 + ], + [ + 9.0416068, + 48.5221067 + ], + [ + 9.0386055, + 48.5221067 + ], + [ + 9.0386055, + 48.5209647 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T12:29:11Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "name:etymology:wikidata": [ + "Q61666" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000342748460000584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 124050523 + } + }, + { + "id": 124050434, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.354734, + 50.8484874 + ], + [ + 4.3615133, + 50.8484874 + ], + [ + 4.3615133, + 50.8544786 + ], + [ + 4.354734, + 50.8544786 + ], + [ + 4.354734, + 50.8484874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hasan2022", + "uid": "16476676", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T12:27:23Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "toilets", + "reception_desk" + ], + "highway": [ + "elevator" + ], + "building": [ + "yes" + ] + }, + "create": 12, + "modify": 4, + "delete": 0, + "area": 0.000040616142159983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 17, + "create": 14, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124050434 + } + }, + { + "id": 124049895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T12:16:15Z", + "reviewed_features": [], + "tag_changes": { + "email": [ + "mobilite@woluwe1150.irisnet.be" + ], + "phone": [ + "+32 2 773 06 28" + ], + "manual": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "operator": [ + "Commune de Woluwé-Saint-Pierre - Gemeente Woluwe-Sint-Pieter" + ], + "manometer": [ + "broken" + ], + "service:bicycle:pump": [ + "yes", + "no" + ], + "service:bicycle:pump:operational_status": [ + "broken" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 7 + }, + "id": 124049895 + } + }, + { + "id": 124049756, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ], + [ + 4.4617128, + 50.8280792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T12:13:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 124049756 + } + }, + { + "id": 124046263, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T10:53:12Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "ceiling" + ], + "light:lit": [ + "dusk-dawn" + ], + "light:colour": [ + "orange" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/", + "theme": "street_lighting", + "answer": 3, + "locale": "en", + "change_within_25m": 3 + }, + "id": 124046263 + } + }, + { + "id": 124045947, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ], + [ + 3.2069655, + 41.9225502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "retiolus", + "uid": "11291363", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T10:45:49Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "create": 1, + "locale": "en", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1 + }, + "id": 124045947 + } + }, + { + "id": 124045061, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2160458, + 51.2193779 + ], + [ + 3.216644, + 51.2193779 + ], + [ + 3.216644, + 51.219777 + ], + [ + 3.2160458, + 51.219777 + ], + [ + 3.2160458, + 51.2193779 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T10:25:10Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "clothes" + ], + "building": [ + "yes" + ], + "payment:cash": [ + "yes" + ], + "payment:cards": [ + "yes" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.38741620001738e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 124045061 + } + }, + { + "id": 124044574, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9286044, + 50.1742784 + ], + [ + 8.9286044, + 50.1742784 + ], + [ + 8.9286044, + 50.1742784 + ], + [ + 8.9286044, + 50.1742784 + ], + [ + 8.9286044, + 50.1742784 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maxiiizibo", + "uid": "16513273", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T10:14:08Z", + "reviewed_features": [], + "tag_changes": { + "bicycle": [ + "yes" + ], + "highway": [ + "crossing" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124044574 + } + }, + { + "id": 124044339, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3498962, + 50.8662053 + ], + [ + 4.3504455, + 50.8662053 + ], + [ + 4.3504455, + 50.8668115 + ], + [ + 4.3498962, + 50.8668115 + ], + [ + 4.3498962, + 50.8662053 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T10:08:41Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ], + "image": [ + "https://i.imgur.com/E3qlRlI.jpg", + "https://i.imgur.com/28VGcPH.jpg", + "https://i.imgur.com/4LPlRW4.jpg" + ], + "width": [ + "0.98" + ], + "indoor": [ + "door" + ], + "amenity": [ + "cafe" + ], + "entrance": [ + "garage" + ], + "automatic_door": [ + "floor" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 3.32985660000187e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 9, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_over_5000m": 1, + "change_within_25m": 8, + "change_within_50m": 5 + }, + "id": 124044339 + } + }, + { + "id": 124043887, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3498962, + 50.8662053 + ], + [ + 4.3502264, + 50.8662053 + ], + [ + 4.3502264, + 50.8662572 + ], + [ + 4.3498962, + 50.8662572 + ], + [ + 4.3498962, + 50.8662053 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T09:58:53Z", + "reviewed_features": [], + "tag_changes": { + "width": [ + "1" + ], + "highway": [ + "elevator" + ] + }, + "create": 3, + "modify": 2, + "delete": 0, + "area": 1.71373800008671e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 7, + "create": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 3, + "change_within_25m": 7 + }, + "id": 124043887 + } + }, + { + "id": 124043853, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.520316, + 64.1288649 + ], + [ + 29.5219468, + 64.1288649 + ], + [ + 29.5219468, + 64.1316505 + ], + [ + 29.520316, + 64.1316505 + ], + [ + 29.520316, + 64.1288649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T09:58:13Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ], + "highway": [ + "cycleway" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000045427564800089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 124043853 + } + }, + { + "id": 124043581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3501083, + 50.8661304 + ], + [ + 4.3502366, + 50.8661304 + ], + [ + 4.3502366, + 50.8662286 + ], + [ + 4.3501083, + 50.8662286 + ], + [ + 4.3501083, + 50.8661304 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T09:52:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ExjRMRI.jpg" + ], + "amenity": [ + "reception_desk", + "restaurant" + ], + "image:0": [ + "https://i.imgur.com/LLCHdfY.jpg" + ], + "desk:height": [ + "0.84 m" + ], + "hearing_loop": [ + "yes" + ] + }, + "create": 2, + "modify": 7, + "delete": 0, + "area": 1.25990599995583e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 11, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_over_5000m": 2, + "change_within_25m": 15 + }, + "id": 124043581 + } + }, + { + "id": 124043304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3493369, + 50.8655878 + ], + [ + 4.350863, + 50.8655878 + ], + [ + 4.350863, + 50.8668593 + ], + [ + 4.3493369, + 50.8668593 + ], + [ + 4.3493369, + 50.8655878 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-444059131", + "name": "Herman Teirlinckgebouw", + "osm_id": 444059131, + "reasons": [ + 43 + ], + "version": 18, + "primary_tags": { + "building": "government" + } + } + ], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T09:46:22Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "hinged" + ], + "image": [ + "https://i.imgur.com/lPfEPkE.jpg", + "https://i.imgur.com/WPi2Gbd.jpg", + "https://i.imgur.com/Vqv3EFb.jpg", + "https://i.imgur.com/9yaiiLW.jpg" + ], + "width": [ + "0.95", + "1" + ], + "indoor": [ + "door" + ], + "amenity": [ + "toilets" + ], + "image:0": [ + "https://i.imgur.com/z13SbJ5.jpg" + ], + "building": [ + "government" + ], + "entrance": [ + "yes" + ], + "door:width": [ + "0.90 m" + ], + "wheelchair": [ + "yes", + "designated" + ], + "kerb:height": [ + "0" + ], + "automatic_door": [ + "no" + ] + }, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000194043615000271, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 16, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 6, + "change_within_25m": 24 + }, + "id": 124043304 + } + }, + { + "id": 124043232, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.34978, + 50.8657444 + ], + [ + 4.3498375, + 50.8657444 + ], + [ + 4.3498375, + 50.8658205 + ], + [ + 4.34978, + 50.8658205 + ], + [ + 4.34978, + 50.8657444 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IAmAlexRebai", + "uid": "16587324", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T09:44:28Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/FyPDozS.jpg" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.37575000003471e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 124043232 + } + }, + { + "id": 124042921, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T09:37:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 124042921 + } + }, + { + "id": 124042526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0228722, + 50.689731 + ], + [ + 7.0238991, + 50.689731 + ], + [ + 7.0238991, + 50.6945055 + ], + [ + 7.0228722, + 50.6945055 + ], + [ + 7.0228722, + 50.689731 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ogmios", + "uid": "81983", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T09:29:17Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ], + "support": [ + "pole", + "catenary" + ], + "lamp_mount": [ + "bent_mast" + ], + "light:count": [ + "1" + ], + "light:direction": [ + "280", + "293", + "291", + "292" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000490293404999757, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "theme": "street_lighting", + "answer": 17, + "locale": "en", + "imagery": "osm", + "change_within_50m": 8, + "change_within_100m": 8, + "change_within_500m": 1 + }, + "id": 124042526 + } + }, + { + "id": 124042317, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3496797, + 50.865936 + ], + [ + 4.3504159, + 50.865936 + ], + [ + 4.3504159, + 50.8663556 + ], + [ + 4.3496797, + 50.8663556 + ], + [ + 4.3496797, + 50.865936 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlexanderReb", + "uid": "16447083", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T09:25:03Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "reception_desk" + ], + "highway": [ + "elevator" + ], + "entrance": [ + "yes" + ] + }, + "create": 5, + "modify": 1, + "delete": 0, + "area": 3.08909520000345e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "create": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5 + }, + "id": 124042317 + } + }, + { + "id": 124042112, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1716972, + 52.2716106 + ], + [ + 13.2078612, + 52.2716106 + ], + [ + 13.2078612, + 52.2962372 + ], + [ + 13.1716972, + 52.2962372 + ], + [ + 13.1716972, + 52.2716106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alexx4", + "uid": "14523679", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T09:20:39Z", + "reviewed_features": [], + "tag_changes": { + "note": [ + "Bitte Löschen", + "Bitte löschen" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000890596362399903, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124042112 + } + }, + { + "id": 124041356, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.9317215, + 49.5991954 + ], + [ + 11.1568971, + 49.5991954 + ], + [ + 11.1568971, + 49.6336117 + ], + [ + 10.9317215, + 49.6336117 + ], + [ + 10.9317215, + 49.5991954 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T09:05:14Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary", + "tertiary", + "service", + "path", + "living_street", + "footway", + "unclassified", + "track" + ], + "name:etymology:wikidata": [ + "Q157449", + "Q681224", + "Q1299978", + "Q64851922", + "Q2090", + "Q503092", + "Q49655", + "Q3126", + "Q1771083", + "Q16116", + "Q14859", + "Q2999", + "Q3936", + "Q3923", + "Q504762", + "Q1355993", + "Q64851973", + "Q60619", + "Q6938", + "Q12024", + "Q25618", + "Q57405461", + "Q66363887", + "Q2307369", + "Q503026", + "Q72606711", + "Q503237", + "Q72873621", + "Q503035", + "Q79915", + "Q131448", + "Q156767", + "Q29858", + "Q1604803", + "Q2503881", + "Q1602739", + "Q503233", + "Q506544", + "Q64851851", + "Q25243", + "Q9082", + "Q504567", + "Q502597", + "Q507090", + "Q25432", + "Q507319", + "Q64852050", + "Q74083105", + "Q1356757" + ] + }, + "create": 0, + "modify": 154, + "delete": 0, + "area": 0.00774971100228084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 202, + "locale": "en", + "imagery": "osm" + }, + "id": 124041356 + } + }, + { + "id": 124040649, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3679458, + 52.502515 + ], + [ + 13.3920191, + 52.502515 + ], + [ + 13.3920191, + 52.5098523 + ], + [ + 13.3679458, + 52.5098523 + ], + [ + 13.3679458, + 52.502515 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex030", + "uid": "418040", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T08:51:32Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-24", + "2022-07-23", + "2020" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000176633024089916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124040649 + } + }, + { + "id": 124037368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.2901337, + 52.4261246 + ], + [ + 14.3318018, + 52.4261246 + ], + [ + 14.3318018, + 52.4400869 + ], + [ + 14.2901337, + 52.4400869 + ], + [ + 14.2901337, + 52.4261246 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Reiko Rockendorf", + "uid": "16637335", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T07:37:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 18, + "delete": 0, + "area": 0.000581782512629809, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124037368 + } + }, + { + "id": 124033092, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5428933, + 48.7983616 + ], + [ + 13.5428933, + 48.7983616 + ], + [ + 13.5428933, + 48.7983616 + ], + [ + 13.5428933, + 48.7983616 + ], + [ + 13.5428933, + 48.7983616 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T05:51:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/YkmuuVk.jpg" + ], + "image:0": [ + "https://i.imgur.com/nwH41L5.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2 + }, + "id": 124033092 + } + }, + { + "id": 124032436, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.1965875, + 47.6358446 + ], + [ + -117.060119, + 47.6358446 + ], + [ + -117.060119, + 47.667966 + ], + [ + -117.1965875, + 47.667966 + ], + [ + -117.1965875, + 47.6358446 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-25T05:28:20Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "tertiary", + "secondary", + "unclassified" + ], + "maxspeed": [ + "25 mph", + "35 mph", + "15 mph" + ] + }, + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.00438355927590037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 20, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_1000m": 2, + "change_within_5000m": 15 + }, + "id": 124032436 + } + }, + { + "id": 124031363, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9022846, + 49.2611934 + ], + [ + 13.9022846, + 49.2611934 + ], + [ + 13.9022846, + 49.2611934 + ], + [ + 13.9022846, + 49.2611934 + ], + [ + 13.9022846, + 49.2611934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T04:50:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/psjbSOy.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124031363 + } + }, + { + "id": 124031263, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T04:46:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124031263 + } + }, + { + "id": 124031185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9019509, + 49.2610888 + ], + [ + 13.9019509, + 49.2610888 + ], + [ + 13.9019509, + 49.2610888 + ], + [ + 13.9019509, + 49.2610888 + ], + [ + 13.9019509, + 49.2610888 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-25T04:42:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/7aeOkPr.jpg" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 124031185 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-26.json b/Docs/Tools/stats/stats.2022-7-26.json new file mode 100644 index 0000000000..5d98a41275 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-26.json @@ -0,0 +1,4871 @@ +{ + "features": [ + { + "id": 124116161, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.136347, + 39.9275168 + ], + [ + -86.1283761, + 39.9275168 + ], + [ + -86.1283761, + 39.9279836 + ], + [ + -86.136347, + 39.9279836 + ], + [ + -86.136347, + 39.9275168 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T23:39:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station", + "bicycle_parking", + "drinking_water" + ], + "service:bicycle:pump": [ + "yes" + ], + "service:bicycle:tools": [ + "no" + ] + }, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000372081611998658, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "create": 2, + "locale": "en", + "imagery": "Mapbox", + "change_over_5000m": 1, + "change_within_25m": 3, + "move:node/3003576212": "improve_accuracy" + }, + "id": 124116161 + } + }, + { + "id": 124114336, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8598485, + 51.1492175 + ], + [ + 4.9216207, + 51.1492175 + ], + [ + 4.9216207, + 51.1650441 + ], + [ + 4.8598485, + 51.1650441 + ], + [ + 4.8598485, + 51.1492175 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T21:40:26Z", + "reviewed_features": [], + "tag_changes": { + "name": [ + "Kapel Onze-Lieve-Vrouw van het Heilig Hart", + "OLV van het Heilig Hert" + ], + "shop": [ + "car_repair" + ], + "route": [ + "bicycle", + "mtb" + ], + "aeroway": [ + "hangar" + ], + "highway": [ + "track", + "service", + "unclassified" + ], + "landuse": [ + "forest", + "grass", + "residential" + ], + "alt_name": [ + "De kapel van Schaatsbergen" + ], + "building": [ + "industrial", + "yes", + "house", + "chapel", + "garage", + "roof" + ], + "historic": [ + "chapel" + ], + "military": [ + "bunker" + ], + "architect": [ + "Jan Baptist Smets" + ], + "addr:street": [ + "Larumseweg" + ], + "nohousenumber": [ + "yes" + ], + "addr:housenumber": [ + "2;2A", + "2", + "105" + ], + "heritage:website": [ + "https://id.erfgoed.net/erfgoedobjecten/47525" + ], + "heritage:operator": [ + "OnroerendErfgoed" + ], + "wikimedia_commons": [ + "File:Olen_Rijtestraat_zonder_nummer_-_154410_-_onroerenderfgoed.jpg" + ], + "source:geometry:ref": [ + "Gbg/4045633", + "Gbg/6803487", + "Gbg/4045468", + "Gbg/4048291", + "Gbg/4048293", + "Gbg/6508501", + "Gbg/3839019", + "Gbg/4047569", + "Gbg/4045174", + "Gbg/4045173", + "Gbg/4045172", + "Gbg/6508531", + "Gbg/4045166", + "Gbg/4047119", + "Gbg/5167695", + "Gbg/5862528", + "Gbg/4045179", + "Gbg/4045178", + "Gbg/4045177", + "Gbg/4047700", + "Gbg/4045161", + "Gbg/4045160", + "Gbg/4045627", + "Gbg/4045628", + "Gbg/4048630", + "Gbg/4045629", + "Gbg/4045630", + "Gbg/4045631", + "Gbg/4045622", + "Gbg/4045623", + "Gbg/4045624", + "Gbg/4045625", + "Gbg/4045604", + "Gbg/4045603", + "Gbg/4045602", + "Gbg/4048807", + "Gbg/4045159", + "Gbg/4047656", + "Gbg/4045157", + "Gbg/4045156", + "Gbg/4045616", + "Gbg/4047655", + "Gbg/4045189", + "Gbg/3838112", + "Gbg/3838089", + "Gbg/3838059", + "Gbg/3838069", + "Gbg/3838070", + "Gbg/3838071", + "Gbg/4928312", + "Gbg/3838111", + "Gbg/3838068", + "Gbg/3838066", + "Gbg/3838065", + "Gbg/3838064", + "Gbg/3838088", + "Gbg/3838073", + "Gbg/3838087", + "Gbg/3838110", + "Gbg/3838086", + "Gbg/4928311", + "Gbg/3838085", + "Gbg/4928310", + "Gbg/4928288", + "Gbg/4045196", + "Gbg/4045182", + "Gbg/4045202", + "Gbg/4045195", + "Gbg/4045194", + "Gbg/7020110", + "Gbg/3838134", + "Gbg/5861340", + "Gbg/4013643" + ], + "ref:OnroerendErfgoed": [ + "47525" + ], + "source:geometry:date": [ + "2013-01-16", + "2020-06-05", + "2018-10-24", + "2015-05-06", + "2017-03-01", + "2013-02-20", + "2012-09-17", + "2014-12-04", + "2015-11-24", + "2021-09-10", + "2018-09-13", + "2016-05-02", + "2021-10-25", + "2013-01-07" + ], + "year_of_construction": [ + "1893" + ], + "OnroerendErfgoed:criteria": [ + "BE" + ] + }, + "create": 502, + "modify": 552, + "delete": 5, + "area": 0.000977643900520249, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 476, + "theme": "grb", + "answer": 3, + "delete": 5, + "import": 42, + "locale": "nl", + "imagery": "AGIV", + "conflation": 146 + }, + "id": 124114336 + } + }, + { + "id": 124113615, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.4947572, + 64.1296046 + ], + [ + 29.4948377, + 64.1296046 + ], + [ + 29.4948377, + 64.1296187 + ], + [ + 29.4947572, + 64.1296187 + ], + [ + 29.4947572, + 64.1296046 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T21:10:48Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "brown" + ], + "amenity": [ + "bench", + "waste_basket" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.13505000014829e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "mml-orto" + }, + "id": 124113615 + } + }, + { + "id": 124113608, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.4947572, + 64.1296187 + ], + [ + 29.4947572, + 64.1296187 + ], + [ + 29.4947572, + 64.1296187 + ], + [ + 29.4947572, + 64.1296187 + ], + [ + 29.4947572, + 64.1296187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T21:10:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "mml-orto" + }, + "id": 124113608 + } + }, + { + "id": 124112565, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.494784, + 64.1279474 + ], + [ + 29.5422189, + 64.1279474 + ], + [ + 29.5422189, + 64.1310511 + ], + [ + 29.494784, + 64.1310511 + ], + [ + 29.494784, + 64.1279474 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T20:32:14Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "waste_basket" + ] + }, + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000147223699129862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste_basket.html", + "theme": "waste_basket", + "answer": 3, + "create": 3, + "locale": "en", + "imagery": "mml-orto" + }, + "id": 124112565 + } + }, + { + "id": 124112499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9448646, + 47.0252344 + ], + [ + 8.9462318, + 47.0252344 + ], + [ + 8.9462318, + 47.025506 + ], + [ + 8.9448646, + 47.025506 + ], + [ + 8.9448646, + 47.0252344 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T20:30:12Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved", + "needleleaved" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.71331519996719e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3, + "change_within_50m": 2 + }, + "id": 124112499 + } + }, + { + "id": 124110803, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7326829, + 52.032167 + ], + [ + 13.7326829, + 52.032167 + ], + [ + 13.7326829, + 52.032167 + ], + [ + 13.7326829, + 52.032167 + ], + [ + 13.7326829, + 52.032167 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:33:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 124110803 + } + }, + { + "id": 124110726, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7330111, + 52.0311765 + ], + [ + 13.7367381, + 52.0311765 + ], + [ + 13.7367381, + 52.0318707 + ], + [ + 13.7330111, + 52.0318707 + ], + [ + 13.7330111, + 52.0311765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:30:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.0000025872833999926, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 10, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 12 + }, + "id": 124110726 + } + }, + { + "id": 124110692, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7332552, + 52.0316366 + ], + [ + 13.7334183, + 52.0316366 + ], + [ + 13.7334183, + 52.0317948 + ], + [ + 13.7332552, + 52.0317948 + ], + [ + 13.7332552, + 52.0316366 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:29:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.58024200002123e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 124110692 + } + }, + { + "id": 124110321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7347059, + 52.0310655 + ], + [ + 13.7347059, + 52.0310655 + ], + [ + 13.7347059, + 52.0310655 + ], + [ + 13.7347059, + 52.0310655 + ], + [ + 13.7347059, + 52.0310655 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9913178928", + "osm_id": 9913178928, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:18:19Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "map" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 124110321 + } + }, + { + "id": 124110112, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7353016, + 52.0309049 + ], + [ + 13.7360753, + 52.0309049 + ], + [ + 13.7360753, + 52.0314422 + ], + [ + 13.7353016, + 52.0314422 + ], + [ + 13.7353016, + 52.0309049 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:12:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 4.15709009998187e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "answer": 3, + "create": 3, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 4, + "change_over_5000m": 3, + "change_within_25m": 7 + }, + "id": 124110112 + } + }, + { + "id": 124110060, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7337135, + 52.030997 + ], + [ + 13.7368503, + 52.030997 + ], + [ + 13.7368503, + 52.0316282 + ], + [ + 13.7337135, + 52.0316282 + ], + [ + 13.7337135, + 52.030997 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:11:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00000197994816000264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/waste.html", + "theme": "waste", + "answer": 10, + "create": 4, + "locale": "en", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 4, + "change_within_25m": 15 + }, + "id": 124110060 + } + }, + { + "id": 124110035, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7348882, + 52.0311262 + ], + [ + 13.7369546, + 52.0311262 + ], + [ + 13.7369546, + 52.0317192 + ], + [ + 13.7348882, + 52.0317192 + ], + [ + 13.7348882, + 52.0311262 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:10:35Z", + "reviewed_features": [], + "tag_changes": { + "lit": [ + "no" + ], + "leisure": [ + "playground" + ], + "max_age": [ + "14" + ], + "surface": [ + "sand" + ], + "operator": [ + "Tropical Islands" + ], + "wheelchair": [ + "no" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000122537519998979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 5 + }, + "id": 124110035 + } + }, + { + "id": 124110008, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7369546, + 52.0314679 + ], + [ + 13.7369546, + 52.0314679 + ], + [ + 13.7369546, + 52.0314679 + ], + [ + 13.7369546, + 52.0314679 + ], + [ + 13.7369546, + 52.0314679 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:09:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/playgrounds.html", + "theme": "playgrounds", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 124110008 + } + }, + { + "id": 124109781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7334183, + 52.03132 + ], + [ + 13.7387493, + 52.03132 + ], + [ + 13.7387493, + 52.0317504 + ], + [ + 13.7334183, + 52.0317504 + ], + [ + 13.7334183, + 52.03132 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T19:03:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 9, + "delete": 0, + "area": 0.00000229446239999494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "answer": 33, + "create": 8, + "locale": "en", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 8, + "change_within_25m": 40 + }, + "id": 124109781 + } + }, + { + "id": 124109037, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.530727, + 48.7986872 + ], + [ + 13.530727, + 48.7986872 + ], + [ + 13.530727, + 48.7986872 + ], + [ + 13.530727, + 48.7986872 + ], + [ + 13.530727, + 48.7986872 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T18:40:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 5 + }, + "id": 124109037 + } + }, + { + "id": 124108470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6419512, + -33.4585131 + ], + [ + -70.6410943, + -33.4585131 + ], + [ + -70.6410943, + -33.457898 + ], + [ + -70.6419512, + -33.457898 + ], + [ + -70.6419512, + -33.4585131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T18:25:14Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/dgmyn3D.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 2, + "modify": 3, + "delete": 0, + "area": 5.27079189990449e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "create": 2, + "locale": "es", + "imagery": "EsriWorldImagery", + "add-image": 3, + "change_over_5000m": 4 + }, + "id": 124108470 + } + }, + { + "id": 124108178, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.371955, + 50.8389828 + ], + [ + 4.3722822, + 50.8389828 + ], + [ + 4.3722822, + 50.8396101 + ], + [ + 4.371955, + 50.8396101 + ], + [ + 4.371955, + 50.8389828 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T18:17:12Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/kq44MIE.jpg" + ], + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.05252560001686e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 124108178 + } + }, + { + "id": 124105106, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.3167664, + 49.2583372 + ], + [ + 15.3169741, + 49.2583372 + ], + [ + 15.3169741, + 49.2585447 + ], + [ + 15.3167664, + 49.2585447 + ], + [ + 15.3167664, + 49.2583372 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T16:55:55Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ef1HZiO.jpg" + ], + "amenity": [ + "fire_station" + ], + "building": [ + "civic" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.30977500001741e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/hailhydrant.html", + "theme": "hailhydrant", + "locale": "de", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "id": 124105106 + } + }, + { + "id": 124104908, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.3137793, + 49.2589661 + ], + [ + 15.3137793, + 49.2589661 + ], + [ + 15.3137793, + 49.2589661 + ], + [ + 15.3137793, + 49.2589661 + ], + [ + 15.3137793, + 49.2589661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T16:51:25Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/luMOvGQ.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124104908 + } + }, + { + "id": 124104465, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.584495, + 53.0170977 + ], + [ + 6.5864125, + 53.0170977 + ], + [ + 6.5864125, + 53.0183255 + ], + [ + 6.584495, + 53.0183255 + ], + [ + 6.584495, + 53.0170977 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T16:41:17Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding", + "automatic" + ], + "width": [ + "1.78" + ], + "building": [ + "retail" + ], + "entrance": [ + "main", + "shop" + ], + "kerb:height": [ + "0" + ], + "automatic_door": [ + "motion" + ] + }, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000235430650000368, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/entrances.html", + "theme": "entrances", + "answer": 15, + "create": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 7, + "change_within_1000m": 12 + }, + "id": 124104465 + } + }, + { + "id": 124104316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.3130951, + 49.2580325 + ], + [ + 15.3176725, + 49.2580325 + ], + [ + 15.3176725, + 49.2597369 + ], + [ + 15.3130951, + 49.2597369 + ], + [ + 15.3130951, + 49.2580325 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T16:37:35Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ghPOrdV.jpg", + "https://i.imgur.com/5P3u0PV.jpg" + ], + "highway": [ + "bus_stop" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000780172056000669, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/personal.html", + "theme": "personal", + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 124104316 + } + }, + { + "id": 124104144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.63971, + -33.4575867 + ], + [ + -70.63971, + -33.4575867 + ], + [ + -70.63971, + -33.4575867 + ], + [ + -70.63971, + -33.4575867 + ], + [ + -70.63971, + -33.4575867 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T16:33:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "id": 124104144 + } + }, + { + "id": 124103791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3603832, + 52.4838013 + ], + [ + 13.3603832, + 52.4838013 + ], + [ + 13.3603832, + 52.4838013 + ], + [ + 13.3603832, + 52.4838013 + ], + [ + 13.3603832, + 52.4838013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BeaMe", + "uid": "16652088", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T16:23:21Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-03-09" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124103791 + } + }, + { + "id": 124103073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9024311, + 51.1736791 + ], + [ + 4.9024311, + 51.1736791 + ], + [ + 4.9024311, + 51.1736791 + ], + [ + 4.9024311, + 51.1736791 + ], + [ + 4.9024311, + 51.1736791 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T16:03:35Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "yes" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/shops.html", + "theme": "shops", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 124103073 + } + }, + { + "id": 124102499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6388406, + -33.4598352 + ], + [ + -70.6388406, + -33.4598352 + ], + [ + -70.6388406, + -33.4598352 + ], + [ + -70.6388406, + -33.4598352 + ], + [ + -70.6388406, + -33.4598352 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T15:47:46Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/QPsSUbD.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3 + }, + "id": 124102499 + } + }, + { + "id": 124102461, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.5386867, + 49.2892046 + ], + [ + 14.5401029, + 49.2892046 + ], + [ + 14.5401029, + 49.2895838 + ], + [ + 14.5386867, + 49.2895838 + ], + [ + 14.5386867, + 49.2892046 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T15:46:31Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ounn9dX.jpg", + "https://i.imgur.com/2farpjT.jpg", + "https://i.imgur.com/pYntO0y.jpg", + "https://i.imgur.com/My65Nl7.jpg" + ], + "tourism": [ + "artwork" + ], + "artwork_type": [ + "sculpture" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.37023040007135e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 7 + }, + "id": 124102461 + } + }, + { + "id": 124100096, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8588967, + 51.1552668 + ], + [ + 4.8598536, + 51.1552668 + ], + [ + 4.8598536, + 51.1573685 + ], + [ + 4.8588967, + 51.1573685 + ], + [ + 4.8588967, + 51.1552668 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T14:46:49Z", + "reviewed_features": [], + "tag_changes": { + "colour": [ + "gray" + ], + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000201111672999788, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "move": 1, + "theme": "benches", + "answer": 6, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 6, + "change_within_500m": 3, + "move:node/9912665922": "improve_accuracy" + }, + "id": 124100096 + } + }, + { + "id": 124098167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3561591, + 50.8607836 + ], + [ + 4.3561591, + 50.8607836 + ], + [ + 4.3561591, + 50.8607836 + ], + [ + 4.3561591, + 50.8607836 + ], + [ + 4.3561591, + 50.8607836 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jeborsel", + "uid": "16650871", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T13:56:22Z", + "reviewed_features": [], + "tag_changes": { + "automatic_door": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124098167 + } + }, + { + "id": 124096749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9184929, + 51.1645768 + ], + [ + 4.9207979, + 51.1645768 + ], + [ + 4.9207979, + 51.1650423 + ], + [ + 4.9184929, + 51.1650423 + ], + [ + 4.9184929, + 51.1645768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T13:18:03Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "roof", + "yes" + ], + "source:geometry:ref": [ + "Gbg/3838067", + "Gbg/5862541", + "Gbg/3838062", + "Gbg/3838060", + "Gbg/3838061" + ], + "source:geometry:date": [ + "2012-09-17", + "2017-03-01" + ] + }, + "create": 27, + "modify": 27, + "delete": 0, + "area": 0.00000107297750000964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 22, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "id": 124096749 + } + }, + { + "id": 124096666, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9179593, + 51.1644867 + ], + [ + 4.9196871, + 51.1644867 + ], + [ + 4.9196871, + 51.1658622 + ], + [ + 4.9179593, + 51.1658622 + ], + [ + 4.9179593, + 51.1644867 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T13:16:01Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "shed", + "yes", + "garage" + ], + "source:geometry:ref": [ + "Gbg/3838098", + "Gbg/3838057", + "Gbg/4928307", + "Gbg/3838108", + "Gbg/3838058", + "Gbg/6427344", + "Gbg/6508033", + "Gbg/3838959" + ], + "source:geometry:date": [ + "2012-09-17", + "2014-12-04", + "2018-10-24", + "2013-02-20" + ] + }, + "create": 15, + "modify": 47, + "delete": 8, + "area": 0.00000237658890000341, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 36, + "theme": "grb", + "answer": 3, + "delete": 8, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 16 + }, + "id": 124096666 + } + }, + { + "id": 124096620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9190986, + 51.1649937 + ], + [ + 4.9204697, + 51.1649937 + ], + [ + 4.9204697, + 51.1654739 + ], + [ + 4.9190986, + 51.1654739 + ], + [ + 4.9190986, + 51.1649937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T13:14:43Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "shed" + ], + "source:geometry:ref": [ + "Gbg/3838104", + "Gbg/3838105", + "Gbg/3838106", + "Gbg/5862113", + "Gbg/3838958", + "Gbg/3838957", + "Gbg/5861829" + ], + "source:geometry:date": [ + "2013-02-20", + "2012-09-17", + "2017-03-01" + ] + }, + "create": 3, + "modify": 53, + "delete": 0, + "area": 6.58402220007549e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 45, + "theme": "grb", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "id": 124096620 + } + }, + { + "id": 124096614, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9204993, + 51.1654213 + ], + [ + 4.9205826, + 51.1654213 + ], + [ + 4.9205826, + 51.1654992 + ], + [ + 4.9204993, + 51.1654992 + ], + [ + 4.9204993, + 51.1654213 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T13:14:33Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/3838956" + ], + "source:geometry:date": [ + "2015-11-24" + ] + }, + "create": 0, + "modify": 5, + "delete": 1, + "area": 6.48907000007165e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "delete": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 124096614 + } + }, + { + "id": 124096603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9205228, + 51.1653862 + ], + [ + 4.9205867, + 51.1653862 + ], + [ + 4.9205867, + 51.1654223 + ], + [ + 4.9205228, + 51.1654223 + ], + [ + 4.9205228, + 51.1653862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T13:14:24Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ], + "source:geometry:ref": [ + "Gbg/3838955" + ], + "source:geometry:date": [ + "2012-09-17" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.30679000019345e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "id": 124096603 + } + }, + { + "id": 124096324, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0936975, + 50.7256195 + ], + [ + 7.0937478, + 50.7256195 + ], + [ + 7.0937478, + 50.7257928 + ], + [ + 7.0936975, + 50.7257928 + ], + [ + 7.0936975, + 50.7256195 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ogmios", + "uid": "81983", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T13:06:17Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/6G6nPDh.jpg", + "https://i.imgur.com/lnRxxrr.jpg", + "https://i.imgur.com/X6Ru2pL.jpg" + ], + "natural": [ + "tree" + ], + "denotation": [ + "garden", + "park" + ], + "species:wikidata": [ + "Q156944", + "Q146149", + "Q161105" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 8.71698999997942e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 7 + }, + "id": 124096324 + } + }, + { + "id": 124095644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.5535733, + 48.1233787 + ], + [ + 11.5535733, + 48.1233787 + ], + [ + 11.5535733, + 48.1233787 + ], + [ + 11.5535733, + 48.1233787 + ], + [ + 11.5535733, + 48.1233787 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "spieltag2", + "uid": "1168537", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T12:50:33Z", + "reviewed_features": [], + "tag_changes": { + "bench": [ + "yes" + ], + "highway": [ + "bus_stop" + ], + "shelter": [ + "yes" + ], + "wheelchair": [ + "yes" + ], + "public_transport": [ + "stop_position" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/transit.html", + "theme": "transit", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 124095644 + } + }, + { + "id": 124095244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8947598, + 51.164707 + ], + [ + 4.9302568, + 51.164707 + ], + [ + 4.9302568, + 51.1907655 + ], + [ + 4.8947598, + 51.1907655 + ], + [ + 4.8947598, + 51.164707 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T12:41:22Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "shed", + "garage", + "detached", + "roof" + ], + "addr:street": [ + "Spendijk", + "Spendijk / Olenseweg" + ], + "addr:housenumber": [ + "1" + ], + "source:geometry:ref": [ + "Gbg/1708464", + "Gbg/3948876", + "Gbg/3838084", + "Gbg/5862435", + "Gbg/3838082", + "Gbg/3838081", + "Gbg/6803492", + "Gbg/3838100", + "Gbg/3838101", + "Gbg/3838102", + "Gbg/3838103", + "Gbg/5862349", + "Gbg/3947883", + "Gbg/1709103", + "Gbg/1709042", + "Gbg/1708684", + "Gbg/5122931", + "Gbg/1708691", + "Gbg/5122929", + "Gbg/5122930", + "Gbg/6155156", + "Gbg/6151876", + "Gbg/1715039", + "Gbg/1715038", + "Gbg/1715037", + "Gbg/4928237", + "Gbg/3838954", + "Gbg/3838944" + ], + "source:geometry:date": [ + "2009-09-30", + "2015-11-24", + "2020-06-05", + "2017-03-01", + "2012-09-17", + "2021-10-25", + "2014-12-04", + "2020-03-16", + "2015-03-30", + "2017-11-20", + "2009-11-20" + ] + }, + "create": 128, + "modify": 256, + "delete": 7, + "area": 0.000924998574499929, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 225, + "theme": "grb", + "answer": 5, + "delete": 7, + "import": 14, + "locale": "nl", + "imagery": "AGIV", + "conflation": 56 + }, + "id": 124095244 + } + }, + { + "id": 124095134, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8990454, + 51.1903892 + ], + [ + 4.8996016, + 51.1903892 + ], + [ + 4.8996016, + 51.1910363 + ], + [ + 4.8990454, + 51.1910363 + ], + [ + 4.8990454, + 51.1903892 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T12:38:52Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "shed" + ], + "source:geometry:ref": [ + "Gbg/1715034", + "Gbg/1715035", + "Gbg/1715040", + "Gbg/6966330", + "Gbg/6642411", + "Gbg/5125386" + ], + "source:geometry:date": [ + "2009-11-20", + "2017-11-20", + "2021-07-05", + "2019-07-09", + "2015-03-30" + ] + }, + "create": 3, + "modify": 41, + "delete": 0, + "area": 3.59917020000558e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 37, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 12 + }, + "id": 124095134 + } + }, + { + "id": 124095003, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8962561, + 51.1906474 + ], + [ + 4.8995677, + 51.1906474 + ], + [ + 4.8995677, + 51.1918668 + ], + [ + 4.8962561, + 51.1918668 + ], + [ + 4.8962561, + 51.1906474 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T12:35:30Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "shed", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/6966329", + "Gbg/1715033", + "Gbg/5123498", + "Gbg/5123497", + "Gbg/1715030", + "Gbg/1715042", + "Gbg/5654850" + ], + "source:geometry:date": [ + "2021-07-05", + "2009-11-20", + "2015-03-30", + "2017-11-20", + "2016-07-28" + ] + }, + "create": 78, + "modify": 56, + "delete": 2, + "area": 0.0000040381650399885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 49, + "theme": "grb", + "delete": 2, + "import": 13, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "id": 124095003 + } + }, + { + "id": 124094606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8964216, + 51.1893566 + ], + [ + 4.904842, + 51.1893566 + ], + [ + 4.904842, + 51.191014 + ], + [ + 4.8964216, + 51.191014 + ], + [ + 4.8964216, + 51.1893566 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T12:27:34Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3947897", + "Gbg/3947896", + "Gbg/3947895", + "Gbg/3947894", + "Gbg/6155181", + "Gbg/1715032", + "Gbg/5122903", + "Gbg/6641302", + "Gbg/6155198", + "Gbg/1715123", + "Gbg/1715092", + "Gbg/1715122", + "Gbg/1715091", + "Gbg/1715065", + "Gbg/1715063", + "Gbg/5403822", + "Gba/551563", + "Gbg/6966332", + "Gbg/6966331" + ], + "source:geometry:date": [ + "2012-11-15", + "2017-11-20", + "2009-11-20", + "2016-11-21", + "2019-07-09", + "2015-11-24", + "2021-07-05" + ] + }, + "create": 107, + "modify": 138, + "delete": 2, + "area": 0.0000139559709599933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 119, + "theme": "grb", + "delete": 2, + "import": 12, + "locale": "nl", + "imagery": "AGIV", + "conflation": 38 + }, + "id": 124094606 + } + }, + { + "id": 124094517, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9016832, + 51.1889524 + ], + [ + 4.9037694, + 51.1889524 + ], + [ + 4.9037694, + 51.190033 + ], + [ + 4.9016832, + 51.190033 + ], + [ + 4.9016832, + 51.1889524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T12:26:19Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes" + ], + "addr:housenumber": [ + "12;14", + "12-14" + ], + "source:geometry:ref": [ + "Gbg/1715051", + "Gbg/1715061", + "Gbg/1715052", + "Gbg/1715047", + "Gbg/1715048", + "Gbg/1715049", + "Gbg/1715050", + "Gbg/1715044", + "Gbg/1715045" + ], + "source:geometry:date": [ + "2009-11-20", + "2016-07-28" + ] + }, + "create": 31, + "modify": 95, + "delete": 0, + "area": 0.00000225434772000337, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 87, + "theme": "grb", + "answer": 1, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 18 + }, + "id": 124094517 + } + }, + { + "id": 124089779, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.340811, + 44.5105744 + ], + [ + 11.340811, + 44.5105744 + ], + [ + 11.340811, + 44.5105744 + ], + [ + 11.340811, + 44.5105744 + ], + [ + 11.340811, + 44.5105744 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T10:48:39Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "id": 124089779 + } + }, + { + "id": 124089248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1847799, + 49.0375884 + ], + [ + 14.1847799, + 49.0375884 + ], + [ + 14.1847799, + 49.0375884 + ], + [ + 14.1847799, + 49.0375884 + ], + [ + 14.1847799, + 49.0375884 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T10:36:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ygkaSf4.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124089248 + } + }, + { + "id": 124089244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1822079, + 48.6966104 + ], + [ + 2.1871302, + 48.6966104 + ], + [ + 2.1871302, + 48.6974422 + ], + [ + 2.1822079, + 48.6974422 + ], + [ + 2.1822079, + 48.6966104 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SorryImAnOctopus", + "uid": "13079289", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T10:36:40Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "access": [ + "yes" + ], + "rental": [ + "ebike" + ], + "amenity": [ + "bicycle_parking", + "charging_station", + "bicycle_rental" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "website": [ + "https://www.zoov.eu/fr" + ], + "motorcar": [ + "yes" + ], + "cargo_bike": [ + "yes" + ], + "opening_hours": [ + "24/7" + ], + "bicycle_rental": [ + "docking_station" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000409436914000137, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124089244 + } + }, + { + "id": 124088919, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0936351, + 50.7255392 + ], + [ + 7.0936351, + 50.7255392 + ], + [ + 7.0936351, + 50.7255392 + ], + [ + 7.0936351, + 50.7255392 + ], + [ + 7.0936351, + 50.7255392 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ogmios", + "uid": "81983", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T10:29:43Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/R78togJ.jpg" + ], + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q146149" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees", + "theme": "trees", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 124088919 + } + }, + { + "id": 124088640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5662176, + 52.4376784 + ], + [ + 13.6017327, + 52.4376784 + ], + [ + 13.6017327, + 52.4456638 + ], + [ + 13.5662176, + 52.4456638 + ], + [ + 13.5662176, + 52.4376784 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T10:23:51Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-26", + "2022-07-03" + ], + "pump:status": [ + "ok", + "blocked" + ] + }, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000283602279539836, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 16, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124088640 + } + }, + { + "id": 124084681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ], + [ + 13.9018104, + 49.2584823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T08:59:00Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/wUvMGeV.jpg" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 124084681 + } + }, + { + "id": 124084375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.900041, + 49.2585096 + ], + [ + 13.9004433, + 49.2585096 + ], + [ + 13.9004433, + 49.2587144 + ], + [ + 13.900041, + 49.2587144 + ], + [ + 13.900041, + 49.2585096 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T08:52:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/JO4IBfJ.jpg" + ], + "amenity": [ + "parking" + ], + "parking": [ + "surface" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.23910400022259e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2 + }, + "id": 124084375 + } + }, + { + "id": 124083453, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9027798, + 49.2600504 + ], + [ + 13.9027798, + 49.2600504 + ], + [ + 13.9027798, + 49.2600504 + ], + [ + 13.9027798, + 49.2600504 + ], + [ + 13.9027798, + 49.2600504 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T08:33:32Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/Vl3S1gk.jpg" + ], + "amenity": [ + "public_bookcase" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 124083453 + } + }, + { + "id": 124083379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3514598, + 50.866326 + ], + [ + 4.3514598, + 50.866326 + ], + [ + 4.3514598, + 50.866326 + ], + [ + 4.3514598, + 50.866326 + ], + [ + 4.3514598, + 50.866326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlexanderReb", + "uid": "16447083", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T08:31:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/theme.html", + "theme": "onwheels", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124083379 + } + }, + { + "id": 124081308, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7000704, + 49.3210318 + ], + [ + 13.7000704, + 49.3210318 + ], + [ + 13.7000704, + 49.3210318 + ], + [ + 13.7000704, + 49.3210318 + ], + [ + 13.7000704, + 49.3210318 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T07:40:36Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/x0NjeZY.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 124081308 + } + }, + { + "id": 124081121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9054137, + 51.1802039 + ], + [ + 4.9099098, + 51.1802039 + ], + [ + 4.9099098, + 51.1824117 + ], + [ + 4.9054137, + 51.1824117 + ], + [ + 4.9054137, + 51.1802039 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T07:34:22Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3948832", + "Gbg/3949051", + "Gbg/3949048", + "Gbg/3949049", + "Gbg/6508570", + "Gbg/3949212", + "Gbg/3949213", + "Gbg/3949046", + "Gbg/3949045", + "Gbg/3949044", + "Gbg/3949043", + "Gbg/3949042", + "Gbg/3949041", + "Gbg/3949595" + ], + "source:geometry:date": [ + "2012-11-15", + "2018-10-24", + "2013-02-20" + ] + }, + "create": 206, + "modify": 86, + "delete": 0, + "area": 0.00000992648958000318, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 72, + "theme": "grb", + "import": 30, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "id": 124081121 + } + }, + { + "id": 124080264, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.5110838, + 64.1212424 + ], + [ + 29.8368864, + 64.1212424 + ], + [ + 29.8368864, + 64.3884578 + ], + [ + 29.5110838, + 64.3884578 + ], + [ + 29.5110838, + 64.1212424 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T07:11:49Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_box" + ] + }, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0870594720800391, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124080264 + } + }, + { + "id": 124079882, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6994612, + 49.3210975 + ], + [ + 13.6994612, + 49.3210975 + ], + [ + 13.6994612, + 49.3210975 + ], + [ + 13.6994612, + 49.3210975 + ], + [ + 13.6994612, + 49.3210975 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T07:00:48Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "no" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 124079882 + } + }, + { + "id": 124079244, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9063727, + 51.1807937 + ], + [ + 4.9111445, + 51.1807937 + ], + [ + 4.9111445, + 51.1823049 + ], + [ + 4.9063727, + 51.1823049 + ], + [ + 4.9063727, + 51.1807937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T06:39:18Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ], + "source:geometry:ref": [ + "Gbg/3948898", + "Gbg/3949020", + "Gbg/3948899", + "Gbg/3949021", + "Gbg/3948900", + "Gbg/3949019", + "Gbg/3949018", + "Gbg/3948901", + "Gbg/3949017", + "Gbg/3948912", + "Gbg/3948913", + "Gbg/3949016", + "Gbg/3948914", + "Gbg/3948916", + "Gbg/7019714", + "Gbg/3948896", + "Gbg/3948897", + "Gbg/3949032", + "Gbg/4928345", + "Gbg/3949034", + "Gbg/3949036", + "Gbg/3949037", + "Gbg/3949038" + ], + "source:geometry:date": [ + "2012-11-15", + "2017-03-01", + "2013-02-20", + "2018-10-24", + "2021-10-25", + "2014-12-04" + ] + }, + "create": 186, + "modify": 176, + "delete": 2, + "area": 0.00000721114415997977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 155, + "theme": "grb", + "delete": 2, + "import": 29, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46 + }, + "id": 124079244 + } + }, + { + "id": 124078380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5246391, + 52.4890908 + ], + [ + 13.5246391, + 52.4890908 + ], + [ + 13.5246391, + 52.4890908 + ], + [ + 13.5246391, + 52.4890908 + ], + [ + 13.5246391, + 52.4890908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T06:14:18Z", + "reviewed_features": [], + "tag_changes": { + "image:0": [ + "https://i.imgur.com/ohhP3pw.jpg" + ], + "man_made": [ + "water_well" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 124078380 + } + }, + { + "id": 124077832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9054353, + 51.1817328 + ], + [ + 4.9112997, + 51.1817328 + ], + [ + 4.9112997, + 51.1843531 + ], + [ + 4.9054353, + 51.1843531 + ], + [ + 4.9054353, + 51.1817328 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T05:56:34Z", + "reviewed_features": [], + "tag_changes": { + "uid": [ + "586389" + ], + "user": [ + "D!zzy" + ], + "version": [ + "1" + ], + "building": [ + "yes", + "roof", + "house" + ], + "changeset": [ + "16890244" + ], + "timestamp": [ + "2013-07-09T17:58:48Z" + ], + "source:geometry:ref": [ + "Gbg/3948856", + "Gbg/3948919", + "Gbg/3948920", + "Gbg/3948953", + "Gbg/6803123", + "Gbg/3948935", + "Gbg/3948932", + "Gbg/3948939", + "Gbg/3948936", + "Gbg/3948915", + "Gbg/3948917", + "Gbg/3948933", + "Gbg/3948937", + "Gbg/3948934", + "Gbg/3948952", + "Gbg/3948855", + "Gbg/3948976", + "Gbg/3948854", + "Gbg/6508572", + "Gbg/3948918", + "Gbg/3948940", + "Gbg/5862390", + "Gbg/3948941", + "Gbg/3952156", + "Gbg/5861038", + "Gbg/5861027", + "Gbg/4928608", + "Gbg/1708454", + "Gbg/1708453", + "Gbg/1708424", + "Gbg/1708425", + "Gbg/1708426", + "Gbg/6149500", + "Gbg/1708482", + "Gbg/6148979" + ], + "source:geometry:date": [ + "2012-11-15", + "2013-02-20", + "2020-06-05", + "2018-10-24", + "2017-03-01", + "2016-05-02", + "2009-09-30", + "2017-11-20" + ] + }, + "create": 273, + "modify": 317, + "delete": 0, + "area": 0.0000153664873200225, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 282, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "AGIV", + "conflation": 70 + }, + "id": 124077832 + } + }, + { + "id": 124077747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9086581, + 51.1822357 + ], + [ + 4.9102625, + 51.1822357 + ], + [ + 4.9102625, + 51.184182 + ], + [ + 4.9086581, + 51.184182 + ], + [ + 4.9086581, + 51.1822357 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T05:53:32Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes", + "house", + "roof" + ], + "addr:street": [ + "Grensstraat" + ], + "addr:housenumber": [ + "36", + "37" + ], + "source:geometry:ref": [ + "Gbg/3948938", + "Gbg/1710970", + "Gbg/1708460", + "Gbg/5122918", + "Gbg/1708462", + "Gbg/1708463", + "Gbg/1708455", + "Gbg/5122922", + "Gbg/1708457", + "Gbg/1708459", + "Gbg/6966612", + "Gbg/6834589" + ], + "source:geometry:date": [ + "2012-11-15", + "2017-11-20", + "2015-03-30", + "2009-09-30", + "2021-07-05", + "2020-09-04" + ] + }, + "create": 43, + "modify": 90, + "delete": 0, + "area": 0.00000312264371999976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "move": 78, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 24 + }, + "id": 124077747 + } + }, + { + "id": 124072966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4471091, + 52.5193287 + ], + [ + 13.4525515, + 52.5193287 + ], + [ + 13.4525515, + 52.5251867 + ], + [ + 13.4471091, + 52.5251867 + ], + [ + 13.4471091, + 52.5193287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BerolinaPlatz", + "uid": "16645084", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-26T00:50:49Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "Die Pumpe wurde entfernt. Hier gibt es keine Pumpe mehr. Stand: 2022", + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000318815791999787, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124072966 + } + }, + { + "id": 124072336, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.218239, + 47.6053578 + ], + [ + -117.1967167, + 47.6053578 + ], + [ + -117.1967167, + 47.6206696 + ], + [ + -117.218239, + 47.6206696 + ], + [ + -117.218239, + 47.6053578 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-26T00:01:03Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential" + ], + "maxspeed": [ + "25 mph" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000329545153139996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 124072336 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-27.json b/Docs/Tools/stats/stats.2022-7-27.json new file mode 100644 index 0000000000..08219d3f85 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-27.json @@ -0,0 +1,3048 @@ +{ + "features": [ + { + "id": 124161282, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5327342, + -34.6392569 + ], + [ + -58.5327342, + -34.6392569 + ], + [ + -58.5327342, + -34.6392569 + ], + [ + -58.5327342, + -34.6392569 + ], + [ + -58.5327342, + -34.6392569 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T23:55:23Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "signal" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 5, + "create": 1, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 5 + }, + "id": 124161282 + } + }, + { + "id": 124161217, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ], + [ + -70.6416714, + -33.4499735 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T23:49:54Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/eMkwUpm.jpg" + ], + "historic": [ + "memorial" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/ghostbikes.html", + "theme": "ghostbikes", + "locale": "en", + "imagery": "CartoDB.Positron", + "add-image": 1 + }, + "id": 124161217 + } + }, + { + "id": 124160745, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7379716, + 50.7371929 + ], + [ + 3.7379716, + 50.7371929 + ], + [ + 3.7379716, + 50.7371929 + ], + [ + 3.7379716, + 50.7371929 + ], + [ + 3.7379716, + 50.7371929 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T23:09:39Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/ohWLbct.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 124160745 + } + }, + { + "id": 124160107, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.128883, + 39.9755497 + ], + [ + -86.128883, + 39.9755497 + ], + [ + -86.128883, + 39.9755497 + ], + [ + -86.128883, + 39.9755497 + ], + [ + -86.128883, + 39.9755497 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T22:23:19Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 124160107 + } + }, + { + "id": 124160037, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1288777, + 39.9754052 + ], + [ + -86.1288214, + 39.9754052 + ], + [ + -86.1288214, + 39.9754094 + ], + [ + -86.1288777, + 39.9754094 + ], + [ + -86.1288777, + 39.9754052 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T22:18:57Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_repair_station", + "bicycle_parking" + ] + }, + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.3645999995096e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 6, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "id": 124160037 + } + }, + { + "id": 124157333, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.46807, + 64.1280205 + ], + [ + 29.4728972, + 64.1280205 + ], + [ + 29.4728972, + 64.1298258 + ], + [ + 29.46807, + 64.1298258 + ], + [ + 29.46807, + 64.1280205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T20:32:00Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "street_lamp" + ] + }, + "create": 9, + "modify": 1, + "delete": 0, + "area": 0.00000871454415999998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/street_lighting.html", + "move": 1, + "theme": "street_lighting", + "answer": 2, + "create": 9, + "locale": "en", + "imagery": "mml-orto", + "move:node/9909683041": "improve_accuracy" + }, + "id": 124157333 + } + }, + { + "id": 124157040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 29.4723882, + 64.1291692 + ], + [ + 29.5178336, + 64.1291692 + ], + [ + 29.5178336, + 64.1295508 + ], + [ + 29.4723882, + 64.1295508 + ], + [ + 29.4723882, + 64.1291692 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T20:22:37Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000173419646398724, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "move": 1, + "theme": "trees", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "mml-orto", + "move:node/9909683040": "improve_accuracy" + }, + "id": 124157040 + } + }, + { + "id": 124156354, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T20:03:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 124156354 + } + }, + { + "id": 124156330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.483103, + 49.2902435 + ], + [ + 15.483103, + 49.2902435 + ], + [ + 15.483103, + 49.2902435 + ], + [ + 15.483103, + 49.2902435 + ], + [ + 15.483103, + 49.2902435 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T20:02:47Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/47Zscmh.jpg" + ], + "tourism": [ + "artwork" + ], + "artwork_type": [ + "sculpture" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124156330 + } + }, + { + "id": 124156055, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T19:54:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 124156055 + } + }, + { + "id": 124154485, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3417019, + 51.6672337 + ], + [ + 14.3417019, + 51.6672337 + ], + [ + 14.3417019, + 51.6672337 + ], + [ + 14.3417019, + 51.6672337 + ], + [ + 14.3417019, + 51.6672337 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tomtom616", + "uid": "16546724", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T19:01:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124154485 + } + }, + { + "id": 124154448, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0251685, + 50.6905223 + ], + [ + 7.0251685, + 50.6905223 + ], + [ + 7.0251685, + 50.6905223 + ], + [ + 7.0251685, + 50.6905223 + ], + [ + 7.0251685, + 50.6905223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ogmios", + "uid": "81983", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T19:00:50Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "species:wikidata": [ + "Q156895" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 3 + }, + "id": 124154448 + } + }, + { + "id": 124153705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.6020496, + 42.5880798 + ], + [ + 12.6020496, + 42.5880798 + ], + [ + 12.6020496, + 42.5880798 + ], + [ + 12.6020496, + 42.5880798 + ], + [ + 12.6020496, + 42.5880798 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gabriele Ponzo", + "uid": "10074887", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T18:38:53Z", + "reviewed_features": [], + "tag_changes": { + "bus": [ + "no" + ], + "hgv": [ + "no" + ], + "amenity": [ + "charging_station" + ], + "bicycle": [ + "no" + ], + "scooter": [ + "no" + ], + "motorcar": [ + "yes" + ], + "opening_hours": [ + "24/7" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 2, + "locale": "it", + "imagery": "CartoDB.Voyager" + }, + "id": 124153705 + } + }, + { + "id": 124152247, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3619419, + 52.4914261 + ], + [ + 13.3625761, + 52.4914261 + ], + [ + 13.3625761, + 52.4932957 + ], + [ + 13.3619419, + 52.4932957 + ], + [ + 13.3619419, + 52.4914261 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queerfish", + "uid": "16620126", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T17:54:12Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "pump:status": [ + "Wird regelmäßig für die Straßenbaumbewässerung genutzt (queerfish | giessdenkiez.de)", + "queerfish nutzt diese Pumpe für Straßenbaumbewässerung (giessdenkiez.de)" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000118570032000013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124152247 + } + }, + { + "id": 124150160, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3860751, + 52.5167667 + ], + [ + 13.3860751, + 52.5167667 + ], + [ + 13.3860751, + 52.5167667 + ], + [ + 13.3860751, + 52.5167667 + ], + [ + 13.3860751, + 52.5167667 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T16:55:00Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/d6UheOw.jpg" + ], + "bottle": [ + "no" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 124150160 + } + }, + { + "id": 124148731, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.4831327, + 49.2900845 + ], + [ + 15.4831327, + 49.2900845 + ], + [ + 15.4831327, + 49.2900845 + ], + [ + 15.4831327, + 49.2900845 + ], + [ + 15.4831327, + 49.2900845 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T16:18:20Z", + "reviewed_features": [], + "tag_changes": { + "bottle": [ + "no" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 124148731 + } + }, + { + "id": 124148269, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/limits.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T16:05:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/limits.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 124148269 + } + }, + { + "id": 124145305, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6523787, + 45.0145251 + ], + [ + 4.6523787, + 45.0145251 + ], + [ + 4.6523787, + 45.0145251 + ], + [ + 4.6523787, + 45.0145251 + ], + [ + 4.6523787, + 45.0145251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gnaf", + "uid": "16661315", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T14:48:41Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 124145305 + } + }, + { + "id": 124144234, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3660039, + 50.8548443 + ], + [ + 4.3667392, + 50.8548443 + ], + [ + 4.3667392, + 50.8556218 + ], + [ + 4.3660039, + 50.8556218 + ], + [ + 4.3660039, + 50.8548443 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T14:24:56Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "hotel" + ], + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.71695749998339e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 4, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 7 + }, + "id": 124144234 + } + }, + { + "id": 124144203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.8416474, + 15.8370078 + ], + [ + 88.3636577, + 15.8370078 + ], + [ + 88.3636577, + 28.6662101 + ], + [ + 72.8416474, + 28.6662101 + ], + [ + 72.8416474, + 15.8370078 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T14:24:00Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "college" + ], + "barrier": [ + "fence" + ], + "highway": [ + "mini_roundabout", + "tertiary", + "residential", + "unclassified", + "secondary" + ], + "leisure": [ + "park" + ], + "tourism": [ + "museum" + ], + "name:etymology:wikidata": [ + "Q314394", + "Q512431" + ] + }, + "create": 0, + "modify": 33, + "delete": 0, + "area": 199.135010241384, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 42, + "locale": "en", + "imagery": "osm" + }, + "id": 124144203 + } + }, + { + "id": 124144176, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2821889, + 52.472466 + ], + [ + 13.2821889, + 52.472466 + ], + [ + 13.2821889, + 52.472466 + ], + [ + 13.2821889, + 52.472466 + ], + [ + 13.2821889, + 52.472466 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ChSchadler", + "uid": "16563053", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T14:23:08Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-27" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124144176 + } + }, + { + "id": 124143061, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T13:55:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 27, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 27 + }, + "id": 124143061 + } + }, + { + "id": 124142215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3259037, + 52.4301839 + ], + [ + 14.3259037, + 52.4301839 + ], + [ + 14.3259037, + 52.4301839 + ], + [ + 14.3259037, + 52.4301839 + ], + [ + 14.3259037, + 52.4301839 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Reiko Rockendorf", + "uid": "16637335", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T13:36:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124142215 + } + }, + { + "id": 124141948, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1897978, + 52.5365089 + ], + [ + 13.2130552, + 52.5365089 + ], + [ + 13.2130552, + 52.5518991 + ], + [ + 13.1897978, + 52.5518991 + ], + [ + 13.1897978, + 52.5365089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T13:30:18Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-27", + "2019-07-25" + ], + "pump:status": [ + "broken", + "ok" + ] + }, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000357936037479977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 22, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124141948 + } + }, + { + "id": 124138156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5123634, + 50.8239934 + ], + [ + 4.521153, + 50.8239934 + ], + [ + 4.521153, + 50.8305204 + ], + [ + 4.5123634, + 50.8305204 + ], + [ + 4.5123634, + 50.8239934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolien1234", + "uid": "16659925", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T12:08:31Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 56, + "modify": 10, + "delete": 3, + "area": 0.0000573697191999863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "move": 11, + "theme": "toerisme_vlaanderen", + "answer": 6, + "create": 56, + "locale": "nl", + "imagery": "AGIV", + "deletion": 3, + "move:node/-18": "improve_accuracy", + "move:node/-28": "improve_accuracy", + "move:node/9911748646": "improve_accuracy", + "move:node/9914476383": "improve_accuracy", + "move:node/9914483646": "improve_accuracy", + "move:node/9914491733": "improve_accuracy", + "move:node/9914550755": "improve_accuracy", + "move:node/9914660952": "improve_accuracy", + "deletion:node/3175383908": "not found", + "deletion:node/9914495661": "testing point", + "deletion:node/9914550755": "duplicate" + }, + "id": 124138156 + } + }, + { + "id": 124137888, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.0666229, + 14.5853122 + ], + [ + 121.0666282, + 14.5853122 + ], + [ + 121.0666282, + 14.5853668 + ], + [ + 121.0666229, + 14.5853668 + ], + [ + 121.0666229, + 14.5853122 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tubbylita", + "uid": "16660054", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T12:03:08Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bar" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.8937999988255e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "move": 1, + "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm", + "move:node/9914446516": "improve_accuracy" + }, + "id": 124137888 + } + }, + { + "id": 124134777, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ], + [ + 13.3794023, + 52.5095536 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wjtje", + "uid": "11949970", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T10:54:58Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/VIuGLEp.jpg" + ], + "bottle": [ + "no", + "yes" + ], + "amenity": [ + "drinking_water" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/drinking_water.html", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 124134777 + } + }, + { + "id": 124134304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2200635, + 52.5263608 + ], + [ + 13.2200635, + 52.5263608 + ], + [ + 13.2200635, + 52.5263608 + ], + [ + 13.2200635, + 52.5263608 + ], + [ + 13.2200635, + 52.5263608 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T10:44:08Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-27" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124134304 + } + }, + { + "id": 124133581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1955018, + 52.5321585 + ], + [ + 13.2038262, + 52.5321585 + ], + [ + 13.2038262, + 52.5361782 + ], + [ + 13.1955018, + 52.5361782 + ], + [ + 13.1955018, + 52.5321585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T10:29:59Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-27" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000334615906800026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124133581 + } + }, + { + "id": 124132271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4932445, + 52.2219404 + ], + [ + 5.4932445, + 52.2219404 + ], + [ + 5.4932445, + 52.2219404 + ], + [ + 5.4932445, + 52.2219404 + ], + [ + 5.4932445, + 52.2219404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T10:00:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 124132271 + } + }, + { + "id": 124130765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.1231323, + 49.6051377 + ], + [ + 11.1305198, + 49.6051377 + ], + [ + 11.1305198, + 49.6120825 + ], + [ + 11.1231323, + 49.6120825 + ], + [ + 11.1231323, + 49.6051377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T09:31:23Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "living_street" + ], + "name:etymology:wikidata": [ + "Q41390036", + "Q110993973", + "Q41388731" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000513047099999964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 124130765 + } + }, + { + "id": 124130746, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3966114, + 51.0407931 + ], + [ + 3.3966114, + 51.0407931 + ], + [ + 3.3966114, + 51.0407931 + ], + [ + 3.3966114, + 51.0407931 + ], + [ + 3.3966114, + 51.0407931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T09:30:54Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "post_box" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/postboxes.html", + "theme": "postboxes", + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 124130746 + } + }, + { + "id": 124128013, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8106272, + 51.4642163 + ], + [ + 13.9048558, + 51.4642163 + ], + [ + 13.9048558, + 51.4932094 + ], + [ + 13.8106272, + 51.4932094 + ], + [ + 13.8106272, + 51.4642163 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "duracellakku", + "uid": "7590124", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T08:33:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 7, + "delete": 0, + "area": 0.00273197922266007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124128013 + } + }, + { + "id": 124126540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.734105, + 8.4938249 + ], + [ + 92.5733758, + 8.4938249 + ], + [ + 92.5733758, + 30.323282 + ], + [ + 73.734105, + 30.323282 + ], + [ + 73.734105, + 8.4938249 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T07:58:30Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary", + "service", + "unclassified", + "tertiary", + "primary", + "tertiary_link" + ], + "landuse": [ + "residential" + ], + "leisure": [ + "park" + ], + "boundary": [ + "administrative", + "political", + "marker" + ], + "building": [ + "yes" + ], + "name:etymology:wikidata": [ + "Q1154693", + "Q7240159", + "Q90756270", + "Q684198", + "Q7399623", + "Q3630453", + "Q2628981", + "Q3634691", + "Q312966" + ] + }, + "create": 0, + "modify": 80, + "delete": 0, + "area": 411.251053723883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/etymology.html", + "theme": "etymology", + "answer": 132, + "locale": "en", + "imagery": "osm" + }, + "id": 124126540 + } + }, + { + "id": 124124655, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8130036, + 51.4716902 + ], + [ + 13.9100754, + 51.4716902 + ], + [ + 13.9100754, + 51.483389 + ], + [ + 13.8130036, + 51.483389 + ], + [ + 13.8130036, + 51.4716902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "duracellakku", + "uid": "7590124", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T07:15:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 2, + "delete": 0, + "area": 0.00113562357384048, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124124655 + } + }, + { + "id": 124120443, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.314284, + 49.2594423 + ], + [ + 15.314284, + 49.2594423 + ], + [ + 15.314284, + 49.2594423 + ], + [ + 15.314284, + 49.2594423 + ], + [ + 15.314284, + 49.2594423 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T05:10:07Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/5iFF39o.jpg" + ], + "tourism": [ + "artwork" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124120443 + } + }, + { + "id": 124120000, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9673514, + 54.6904815 + ], + [ + 11.9673514, + 54.6904815 + ], + [ + 11.9673514, + 54.6904815 + ], + [ + 11.9673514, + 54.6904815 + ], + [ + 11.9673514, + 54.6904815 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dk011074", + "uid": "85402", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T04:52:07Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "charging_station" + ] + }, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "answer": 12, + "create": 1, + "locale": "en", + "imagery": "Geodatastyrelsen_Denmark", + "add-image": 2, + "change_over_5000m": 15 + }, + "id": 124120000 + } + }, + { + "id": 124119306, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9627646, + 48.8271261 + ], + [ + 12.9644641, + 48.8271261 + ], + [ + 12.9644641, + 48.8290292 + ], + [ + 12.9627646, + 48.8290292 + ], + [ + 12.9627646, + 48.8271261 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T04:20:35Z", + "reviewed_features": [], + "tag_changes": { + "shop": [ + "bicycle" + ], + "service:bicycle:rental": [ + "yes" + ], + "service:bicycle:repair": [ + "yes" + ], + "service:bicycle:retail": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000323431845000133, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2, + "change_within_500m": 2 + }, + "id": 124119306 + } + }, + { + "id": 124118607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.3169395, + 49.2585561 + ], + [ + 15.3169395, + 49.2585561 + ], + [ + 15.3169395, + 49.2585561 + ], + [ + 15.3169395, + 49.2585561 + ], + [ + 15.3169395, + 49.2585561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T03:46:12Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/INtqw2Q.jpg" + ], + "tourism": [ + "information" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maps.html", + "theme": "maps", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "id": 124118607 + } + }, + { + "id": 124118270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.3061122, + 49.2538665 + ], + [ + 15.306748, + 49.2538665 + ], + [ + 15.306748, + 49.2540712 + ], + [ + 15.3061122, + 49.2540712 + ], + [ + 15.3061122, + 49.2538665 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #transit", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T03:18:30Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/oEUaFE7.jpg", + "https://i.imgur.com/cXkSmpE.jpg" + ], + "highway": [ + "bus_stop" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.30148259998749e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/transit.html", + "theme": "transit", + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 124118270 + } + }, + { + "id": 124118095, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.2104905, + 47.6478439 + ], + [ + -117.1298578, + 47.6478439 + ], + [ + -117.1298578, + 47.6636153 + ], + [ + -117.2104905, + 47.6636153 + ], + [ + -117.2104905, + 47.6478439 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #education", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T03:00:22Z", + "reviewed_features": [], + "tag_changes": { + "phone": [ + "+1 509 558 5100" + ], + "amenity": [ + "school" + ], + "capacity": [ + "270" + ], + "school:gender": [ + "mixed" + ], + "school:language": [ + "en" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00127169056478002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/education.html", + "theme": "education", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124118095 + } + }, + { + "id": 124118019, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.1964358, + 47.6478756 + ], + [ + -117.1923964, + 47.6478756 + ], + [ + -117.1923964, + 47.6506935 + ], + [ + -117.1964358, + 47.6506935 + ], + [ + -117.1964358, + 47.6478756 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-27T02:54:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ], + "capacity": [ + "6" + ], + "capacity:disabled": [ + "10", + "4", + "2" + ] + }, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000113826252600047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 4, + "locale": "en", + "imagery": "Mapbox" + }, + "id": 124118019 + } + }, + { + "id": 124117728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.637488, + -33.4600296 + ], + [ + -70.6374384, + -33.4600296 + ], + [ + -70.6374384, + -33.4599711 + ], + [ + -70.637488, + -33.4599711 + ], + [ + -70.637488, + -33.4600296 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-27T02:21:13Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/v5LjVU2.jpg", + "https://i.imgur.com/xG0fP5K.jpg" + ], + "natural": [ + "tree" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.90160000073016e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2 + }, + "id": 124117728 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-28.json b/Docs/Tools/stats/stats.2022-7-28.json new file mode 100644 index 0000000000..7bb071ddfa --- /dev/null +++ b/Docs/Tools/stats/stats.2022-7-28.json @@ -0,0 +1,3400 @@ +{ + "features": [ + { + "id": 124206612, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9373451, + 42.6812754 + ], + [ + 2.9376092, + 42.6812754 + ], + [ + 2.9376092, + 42.6814783 + ], + [ + 2.9373451, + 42.6814783 + ], + [ + 2.9373451, + 42.6812754 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #rainbow_crossings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T23:28:13Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "crossing" + ], + "crossing:marking": [ + "rainbow" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.35858900012963e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/rainbow_crossings.html", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 2 + }, + "id": 124206612 + } + }, + { + "id": 124203501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1510186, + 48.380229 + ], + [ + 9.1812202, + 48.380229 + ], + [ + 9.1812202, + 48.390305 + ], + [ + 9.1510186, + 48.390305 + ], + [ + 9.1510186, + 48.380229 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SeeIt123", + "uid": "16674589", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T21:02:44Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "parking" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.000304311321599937, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/parkings.html", + "theme": "parkings", + "answer": 9, + "create": 4, + "locale": "de", + "imagery": "osm" + }, + "id": 124203501 + } + }, + { + "id": 124202942, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T20:44:52Z", + "reviewed_features": [], + "tag_changes": { + "access": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 124202942 + } + }, + { + "id": 124202646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.4471091, + 52.5183341 + ], + [ + 13.451872, + 52.5183341 + ], + [ + 13.451872, + 52.5193287 + ], + [ + 13.4471091, + 52.5193287 + ], + [ + 13.4471091, + 52.5183341 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SeeIt123", + "uid": "16674589", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T20:33:43Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-28", + "2018" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 1, + "area": 0.00000473718034002611, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/1274104661": "not found" + }, + "id": 124202646 + } + }, + { + "id": 124202607, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7334233, + 51.0133649 + ], + [ + 3.7453822, + 51.0133649 + ], + [ + 3.7453822, + 51.0352804 + ], + [ + 3.7334233, + 51.0352804 + ], + [ + 3.7334233, + 51.0133649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T20:32:14Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/i2ClBXW.jpg", + "https://i.imgur.com/k2eswSP.jpg", + "https://i.imgur.com/QxcsL62.jpg", + "https://i.imgur.com/QwnC7AK.jpg", + "https://i.imgur.com/BtqdtpG.jpg", + "https://i.imgur.com/znFaz2D.jpg", + "https://i.imgur.com/kr69p4z.jpg" + ], + "amenity": [ + "bench" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000262085272949979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/benches.html", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "id": 124202607 + } + }, + { + "id": 124202481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1097432, + 52.0976755 + ], + [ + 5.1141105, + 52.0976755 + ], + [ + 5.1141105, + 52.1042969 + ], + [ + 5.1097432, + 52.1042969 + ], + [ + 5.1097432, + 52.0976755 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T20:26:40Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.0000289176402200022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 10, + "create": 6, + "locale": "en", + "imagery": "osm", + "add-image": 6 + }, + "id": 124202481 + } + }, + { + "id": 124202285, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0994779, + 52.0962987 + ], + [ + 5.1284287, + 52.0962987 + ], + [ + 5.1284287, + 52.1178026 + ], + [ + 5.0994779, + 52.1178026 + ], + [ + 5.0994779, + 52.0962987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T20:19:42Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/UwvWIqe.png" + ], + "tourism": [ + "artwork" + ], + "artist_name": [ + "Jan is de Man & DeefFeed" + ], + "artwork_type": [ + "mural" + ] + }, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.000622555108119963, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 6, + "create": 4, + "locale": "en", + "imagery": "osm", + "add-image": 5 + }, + "id": 124202285 + } + }, + { + "id": 124202049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ogmios", + "uid": "81983", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T20:12:03Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/WroTpLi.jpg" + ], + "natural": [ + "tree" + ], + "denotation": [ + "urban" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 124202049 + } + }, + { + "id": 124202040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9834191, + 48.8497497 + ], + [ + 12.9834423, + 48.8497497 + ], + [ + 12.9834423, + 48.8497516 + ], + [ + 12.9834191, + 48.8497516 + ], + [ + 12.9834191, + 48.8497497 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T20:11:50Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/1N96aZW.jpg" + ], + "access": [ + "yes" + ], + "bottle": [ + "yes" + ], + "amenity": [ + "bicycle_repair_station" + ], + "man_made": [ + "water_tap" + ], + "service:bicycle:pump:operational_status": [ + "operational" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.40800000193217e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 4 + }, + "id": 124202040 + } + }, + { + "id": 124200695, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ], + [ + 7.023214, + 50.6918819 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ogmios", + "uid": "81983", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T19:28:46Z", + "reviewed_features": [], + "tag_changes": { + "natural": [ + "tree" + ], + "leaf_type": [ + "broadleaved" + ], + "leaf_cycle": [ + "deciduous" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/trees.html", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 124200695 + } + }, + { + "id": 124200690, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6324487, + 52.450505 + ], + [ + 13.6343075, + 52.450505 + ], + [ + 13.6343075, + 52.4578187 + ], + [ + 13.6324487, + 52.4578187 + ], + [ + 13.6324487, + 52.450505 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T19:28:42Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-28", + "2022-07-10", + "2020-02-15" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000135947055600013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124200690 + } + }, + { + "id": 124200658, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3453395, + 50.8659811 + ], + [ + 4.3453395, + 50.8659811 + ], + [ + 4.3453395, + 50.8659811 + ], + [ + 4.3453395, + 50.8659811 + ], + [ + 4.3453395, + 50.8659811 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T19:28:00Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no", + "yes" + ], + "amenity": [ + "toilets" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "id": 124200658 + } + }, + { + "id": 124200493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0817046, + 52.0656456 + ], + [ + 5.1414356, + 52.0656456 + ], + [ + 5.1414356, + 52.1049059 + ], + [ + 5.0817046, + 52.1049059 + ], + [ + 5.0817046, + 52.0656456 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T19:22:40Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/jSgNrFa.png", + "https://i.imgur.com/g7pZEbo.png", + "https://i.imgur.com/rSEhExI.png" + ], + "image:0": [ + "https://i.imgur.com/3778o2J.png" + ], + "tourism": [ + "artwork" + ], + "artist_name": [ + "De strakke hand" + ], + "artwork_type": [ + "mural", + "graffiti" + ] + }, + "create": 22, + "modify": 25, + "delete": 0, + "area": 0.00234505697929972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "move": 1, + "theme": "artwork", + "answer": 33, + "create": 22, + "locale": "en", + "imagery": "osm", + "add-image": 25, + "move:node/9917683361": "improve_accuracy" + }, + "id": 124200493 + } + }, + { + "id": 124200133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3590807, + 50.8200345 + ], + [ + 4.3593308, + 50.8200345 + ], + [ + 4.3593308, + 50.8201855 + ], + [ + 4.3590807, + 50.8201855 + ], + [ + 4.3590807, + 50.8200345 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T19:12:28Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "yes" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.77651000007024e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 1, + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "id": 124200133 + } + }, + { + "id": 124197510, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4111738, + 50.748191 + ], + [ + 3.4111738, + 50.748191 + ], + [ + 3.4111738, + 50.748191 + ], + [ + 3.4111738, + 50.748191 + ], + [ + 3.4111738, + 50.748191 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T17:54:17Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ], + "image:0": [ + "https://i.imgur.com/sDM9sHw.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 124197510 + } + }, + { + "id": 124197295, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4004145, + 51.043391 + ], + [ + 3.4006077, + 51.043391 + ], + [ + 3.4006077, + 51.0435455 + ], + [ + 3.4004145, + 51.0435455 + ], + [ + 3.4004145, + 51.043391 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T17:47:14Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.98494000001405e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "create": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124197295 + } + }, + { + "id": 124196069, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6212464, + 52.4535258 + ], + [ + 13.6355299, + 52.4535258 + ], + [ + 13.6355299, + 52.4549429 + ], + [ + 13.6212464, + 52.4549429 + ], + [ + 13.6212464, + 52.4535258 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Paulus Maximus", + "uid": "16562534", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T17:11:13Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-28", + "2022-07-10" + ], + "pump:status": [ + "ok" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000202411478499652, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 124196069 + } + }, + { + "id": 124196054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3337656, + 50.8354464 + ], + [ + 4.3337656, + 50.8354464 + ], + [ + 4.3337656, + 50.8354464 + ], + [ + 4.3337656, + 50.8354464 + ], + [ + 4.3337656, + 50.8354464 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T17:11:03Z", + "reviewed_features": [], + "tag_changes": { + "rental": [ + "city_bike" + ], + "amenity": [ + "bicycle_rental" + ], + "payment:app": [ + "yes" + ], + "payment:cash": [ + "no" + ], + "payment:cards": [ + "no" + ], + "bicycle_rental": [ + "dropoff_point" + ], + "payment:membership_card": [ + "no" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_100m": 3 + }, + "id": 124196054 + } + }, + { + "id": 124195378, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3460828, + 50.8663641 + ], + [ + 4.3460828, + 50.8663641 + ], + [ + 4.3460828, + 50.8663641 + ], + [ + 4.3460828, + 50.8663641 + ], + [ + 4.3460828, + 50.8663641 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T16:52:26Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "id": 124195378 + } + }, + { + "id": 124195010, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3295454, + 50.8388468 + ], + [ + 4.3300281, + 50.8388468 + ], + [ + 4.3300281, + 50.8392113 + ], + [ + 4.3295454, + 50.8392113 + ], + [ + 4.3295454, + 50.8388468 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T16:43:21Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bicycle_parking" + ] + }, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.75944150001678e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 124195010 + } + }, + { + "id": 124192261, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.279142, + 52.4078401 + ], + [ + 14.3172991, + 52.4078401 + ], + [ + 14.3172991, + 52.4491967 + ], + [ + 14.279142, + 52.4491967 + ], + [ + 14.279142, + 52.4078401 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Reiko Rockendorf", + "uid": "16637335", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T15:27:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.00157804792185999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124192261 + } + }, + { + "id": 124191399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.361821, + 52.4914155 + ], + [ + 13.3625761, + 52.4914155 + ], + [ + 13.3625761, + 52.4932957 + ], + [ + 13.361821, + 52.4932957 + ], + [ + 13.361821, + 52.4914155 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queerfish", + "uid": "16620126", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T15:07:36Z", + "reviewed_features": [], + "tag_changes": { + "man_made": [ + "water_well" + ], + "check_date": [ + "2022-07-28" + ] + }, + "create": 0, + "modify": 3, + "delete": 1, + "area": 0.00000141973901999487, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme", + "move": 1, + "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "move:node/5239619476": "improve_accuracy", + "deletion:node/5239619476": "duplicate" + }, + "id": 124191399 + } + }, + { + "id": 124190665, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3736063, + 50.8380947 + ], + [ + 4.3736063, + 50.8380947 + ], + [ + 4.3736063, + 50.8380947 + ], + [ + 4.3736063, + 50.8380947 + ], + [ + 4.3736063, + 50.8380947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "oeuropeu", + "uid": "16088041", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T14:49:40Z", + "reviewed_features": [], + "tag_changes": { + "door": [ + "sliding" + ], + "width": [ + "2 meters" + ], + "entrance": [ + "secondary", + "staircase" + ], + "kerb:height": [ + "0" + ], + "automatic_door": [ + "motion" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124190665 + } + }, + { + "id": 124188012, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5273918, + 50.8323992 + ], + [ + 4.5378041, + 50.8323992 + ], + [ + 4.5378041, + 50.8347759 + ], + [ + 4.5273918, + 50.8347759 + ], + [ + 4.5273918, + 50.8323992 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolien1234", + "uid": "16659925", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T13:44:01Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000024746913409991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 124188012 + } + }, + { + "id": 124186807, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7073079, + -34.6667118 + ], + [ + -58.7072881, + -34.6667118 + ], + [ + -58.7072881, + -34.6666371 + ], + [ + -58.7073079, + -34.6666371 + ], + [ + -58.7073079, + -34.6667118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T13:18:56Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "crossing" + ], + "supervised": [ + "no" + ], + "crossing:bell": [ + "no" + ], + "crossing:light": [ + "no" + ], + "crossing:chicane": [ + "yes" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.47906000027951e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 9, + "locale": "es", + "imagery": "osm", + "change_within_25m": 9 + }, + "id": 124186807 + } + }, + { + "id": 124186733, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7178971, + -34.6669765 + ], + [ + -58.7073079, + -34.6669765 + ], + [ + -58.7073079, + -34.6659937 + ], + [ + -58.7178971, + -34.6659937 + ], + [ + -58.7178971, + -34.6669765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T13:16:50Z", + "reviewed_features": [], + "tag_changes": { + "railway": [ + "crossing" + ], + "supervised": [ + "no" + ], + "crossing:bell": [ + "no" + ], + "crossing:light": [ + "no" + ], + "crossing:chicane": [ + "yes" + ] + }, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000010407065759952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/theme.html", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 20, + "locale": "es", + "imagery": "osm", + "change_within_25m": 8, + "change_within_50m": 4, + "change_within_500m": 8 + }, + "id": 124186733 + } + }, + { + "id": 124184873, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.1297253, + 39.976458 + ], + [ + -86.1297253, + 39.976458 + ], + [ + -86.1297253, + 39.976458 + ], + [ + -86.1297253, + 39.976458 + ], + [ + -86.1297253, + 39.976458 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kanellar", + "uid": "16249964", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T12:30:36Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "drinking_water" + ] + }, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cyclofix.html", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 124184873 + } + }, + { + "id": 124184638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5185566, + 50.8258715 + ], + [ + 4.5298943, + 50.8258715 + ], + [ + 4.5298943, + 50.8309804 + ], + [ + 4.5185566, + 50.8309804 + ], + [ + 4.5185566, + 50.8258715 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolien1234", + "uid": "16659925", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T12:26:09Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 28, + "modify": 0, + "delete": 1, + "area": 0.0000579231755300346, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", + "theme": "toerisme_vlaanderen", + "create": 28, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "deletion:node/9917036417": "testing point" + }, + "id": 124184638 + } + }, + { + "id": 124184509, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3495888, + 50.8658337 + ], + [ + 4.3497872, + 50.8658337 + ], + [ + 4.3497872, + 50.8659881 + ], + [ + 4.3495888, + 50.8659881 + ], + [ + 4.3495888, + 50.8658337 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T12:23:31Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "image": [ + "https://i.imgur.com/s7HAZYt.jpg" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "designated", + "yes" + ], + "kerb:height": [ + "0" + ], + "automatic_door": [ + "no" + ], + "changing_table": [ + "no" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.06329599998326e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/onwheels.html", + "theme": "onwheels", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 11 + }, + "id": 124184509 + } + }, + { + "id": 124183852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9620174, + 48.8337165 + ], + [ + 12.9620174, + 48.8337165 + ], + [ + 12.9620174, + 48.8337165 + ], + [ + 12.9620174, + 48.8337165 + ], + [ + 12.9620174, + 48.8337165 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "APneunzehn74", + "uid": "12180500", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T12:12:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/aed.html", + "theme": "aed", + "answer": 5, + "create": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2, + "change_within_50m": 5 + }, + "id": 124183852 + } + }, + { + "id": 124182426, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8024518, + 51.4654646 + ], + [ + 13.9061916, + 51.4654646 + ], + [ + 13.9061916, + 51.4944368 + ], + [ + 13.8024518, + 51.4944368 + ], + [ + 13.8024518, + 51.4654646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "duracellakku", + "uid": "7590124", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T11:42:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 18, + "delete": 0, + "area": 0.00300557023356055, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 124182426 + } + }, + { + "id": 124175666, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.5922915, + 49.2021449 + ], + [ + 16.6050691, + 49.2021449 + ], + [ + 16.6050691, + 49.2192867 + ], + [ + 16.5922915, + 49.2192867 + ], + [ + 16.5922915, + 49.2021449 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "martin-kokos", + "uid": "297918", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T09:18:04Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "cycleway" + ], + "separation": [ + "kerb" + ], + "smoothness": [ + "good" + ] + }, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000219031063679962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/cycle_infra.html", + "theme": "cycle_infra", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 124175666 + } + }, + { + "id": 124174886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8849652, + 51.2192955 + ], + [ + 2.8849652, + 51.2192955 + ], + [ + 2.8849652, + 51.2192955 + ], + [ + 2.8849652, + 51.2192955 + ], + [ + 2.8849652, + 51.2192955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T09:03:38Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "bench" + ] + }, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "import:node/9916617531": "source: https://osm.org/note/3261957" + }, + "id": 124174886 + } + }, + { + "id": 124174804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T09:01:48Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/2ews4Q8.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 124174804 + } + }, + { + "id": 124174727, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ], + [ + 4.3496107, + 50.8658363 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #onwheels", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T09:00:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", + "theme": "onwheels", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "id": 124174727 + } + }, + { + "id": 124172801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.0939751, + 49.0640208 + ], + [ + 16.0940036, + 49.0640208 + ], + [ + 16.0940036, + 49.0640845 + ], + [ + 16.0939751, + 49.0640845 + ], + [ + 16.0939751, + 49.0640208 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T08:21:01Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no" + ], + "access": [ + "customers" + ], + "amenity": [ + "toilets" + ], + "wheelchair": [ + "no" + ], + "opening_hours": [ + "24/7" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.81544999989512e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 7, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 124172801 + } + }, + { + "id": 124169578, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6028212, + 50.7443664 + ], + [ + 3.6028212, + 50.7443664 + ], + [ + 3.6028212, + 50.7443664 + ], + [ + 3.6028212, + 50.7443664 + ], + [ + 3.6028212, + 50.7443664 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T07:01:47Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "public_bookcase" + ], + "image:0": [ + "https://i.imgur.com/nK4IEEb.jpg" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/bookcases.html", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 124169578 + } + }, + { + "id": 124169208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2901268, + 50.8913499 + ], + [ + 3.2918711, + 50.8913499 + ], + [ + 3.2918711, + 50.8936563 + ], + [ + 3.2901268, + 50.8936563 + ], + [ + 3.2901268, + 50.8913499 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T06:50:58Z", + "reviewed_features": [], + "tag_changes": { + "building": [ + "house", + "yes", + "roof" + ] + }, + "create": 106, + "modify": 0, + "delete": 0, + "area": 0.00000402305352000318, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/grb.html", + "theme": "grb", + "import": 54, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 124169208 + } + }, + { + "id": 124166766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6685619, + 50.7403084 + ], + [ + 3.7431513, + 50.7403084 + ], + [ + 3.7431513, + 50.7462567 + ], + [ + 3.6685619, + 50.7462567 + ], + [ + 3.6685619, + 50.7403084 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vjyblauw", + "uid": "2844254", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T05:41:21Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/9sxVNwy.jpg", + "https://i.imgur.com/X8mdMpA.jpg", + "https://i.imgur.com/MiM2BO9.jpg", + "https://i.imgur.com/nJ35NDo.jpg", + "https://i.imgur.com/bkh1lMH.jpg", + "https://i.imgur.com/SYtqPEB.jpg" + ], + "amenity": [ + "bench" + ], + "leisure": [ + "picnic_table" + ] + }, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000443680128020003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "id": 124166766 + } + }, + { + "id": 124165747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.4829448, + 49.2170834 + ], + [ + 15.8722507, + 49.2170834 + ], + [ + 15.8722507, + 49.2904159 + ], + [ + 15.4829448, + 49.2904159 + ], + [ + 15.4829448, + 49.2170834 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-07-28T05:10:14Z", + "reviewed_features": [], + "tag_changes": { + "fee": [ + "no", + "yes" + ], + "image": [ + "https://i.imgur.com/49naPmw.jpg", + "https://i.imgur.com/CMCFZ8p.jpg" + ], + "access": [ + "yes" + ], + "charge": [ + "5" + ], + "amenity": [ + "toilets" + ], + "opening_hours": [ + "Mo-Fr 07:00-17:00;Sa-Su 08:00-17:00", + "Mo-Fr 17:00-18:00; Sa, Su 08:00-17:00" + ], + "toilets:position": [ + "seated;urinal" + ], + "toilets:handwashing": [ + "yes" + ], + "toilets:paper_supplied": [ + "yes" + ] + }, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0285487749117498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/toilets.html", + "theme": "toilets", + "answer": 12, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "id": 124165747 + } + }, + { + "id": 124165572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.1965774, + 47.6384083 + ], + [ + -117.1537622, + 47.6384083 + ], + [ + -117.1537622, + 47.6801441 + ], + [ + -117.1965774, + 47.6801441 + ], + [ + -117.1965774, + 47.6384083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-457362965", + "name": "North Flora Road", + "osm_id": 457362965, + "reasons": [ + 87 + ], + "version": 4, + "primary_tags": { + "highway": "secondary" + } + }, + { + "url": "way-457362963", + "name": "North Flora Road", + "osm_id": 457362963, + "reasons": [ + 87 + ], + "version": 2, + "primary_tags": { + "highway": "secondary" + } + }, + { + "url": "way-457362964", + "name": "North Flora Road", + "osm_id": 457362964, + "reasons": [ + 87 + ], + "version": 3, + "primary_tags": { + "highway": "secondary" + } + } + ], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #maxspeed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T05:04:12Z", + "reviewed_features": [], + "tag_changes": { + "highway": [ + "residential", + "secondary" + ], + "maxspeed": [ + "25 mph", + "35 mph", + "30 mph" + ] + }, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0017869266241596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/maxspeed.html", + "theme": "maxspeed", + "answer": 12, + "locale": "en", + "imagery": "osm" + }, + "id": 124165572 + } + }, + { + "id": 124163829, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.8772508, + 49.2148279 + ], + [ + 15.8772508, + 49.2148279 + ], + [ + 15.8772508, + 49.2148279 + ], + [ + 15.8772508, + 49.2148279 + ], + [ + 15.8772508, + 49.2148279 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "5R-MFT", + "uid": "3417876", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T03:37:45Z", + "reviewed_features": [], + "tag_changes": { + "image": [ + "https://i.imgur.com/oiIgdfM.jpg" + ], + "amenity": [ + "charging_station" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/charging_stations.html", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 124163829 + } + }, + { + "id": 124163106, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.2126657, + 47.6566645 + ], + [ + -117.2122407, + 47.6566645 + ], + [ + -117.2122407, + 47.6568999 + ], + [ + -117.2126657, + 47.6568999 + ], + [ + -117.2126657, + 47.6566645 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T02:36:48Z", + "reviewed_features": [], + "tag_changes": { + "amenity": [ + "veterinary" + ], + "building": [ + "yes" + ], + "opening_hours": [ + "Mo-Fr 07:00-19:00;Sa 08:00-17:00;Su 12:00-17:00" + ] + }, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.00045000002119e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 124163106 + } + }, + { + "id": 124163098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -117.2126657, + 47.6566645 + ], + [ + -117.2122407, + 47.6566645 + ], + [ + -117.2122407, + 47.6568999 + ], + [ + -117.2126657, + 47.6568999 + ], + [ + -117.2126657, + 47.6566645 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Coloradohusky", + "uid": "16345213", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #pets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T02:35:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.00045000002119e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/pets.html", + "theme": "pets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 124163098 + } + }, + { + "id": 124163090, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6312953, + -33.4471609 + ], + [ + -70.6033341, + -33.4471609 + ], + [ + -70.6033341, + -33.4245599 + ], + [ + -70.6312953, + -33.4245599 + ], + [ + -70.6312953, + -33.4471609 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.23.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-07-28T02:34:31Z", + "reviewed_features": [], + "tag_changes": { + "tourism": [ + "artwork" + ] + }, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000631951081200207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "https://mapcomplete.osm.be/artwork.html", + "theme": "artwork", + "answer": 3, + "create": 2, + "locale": "zh_Hans", + "imagery": "osm", + "add-image": 2 + }, + "id": 124163090 + } + } + ] +} \ No newline at end of file diff --git a/Docs/URL_Parameters.md b/Docs/URL_Parameters.md index de23e49552..60d7aa0356 100644 --- a/Docs/URL_Parameters.md +++ b/Docs/URL_Parameters.md @@ -11,6 +11,12 @@ - [What is a URL parameter?](#what-is-a-url-parameter) - [language](#language) - [fs-translation-mode](#fs-translation-mode) + - [tab](#tab) + - [welcome-control-toggle](#welcome-control-toggle) + - [download-control-toggle](#download-control-toggle) + - [filter-toggle](#filter-toggle) + - [copyright-toggle](#copyright-toggle) + - [currentview-toggle](#currentview-toggle) - [fs-userbadge](#fs-userbadge) - [fs-search](#fs-search) - [fs-background](#fs-background) @@ -76,6 +82,48 @@ Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. + tab +----- + + The tab that is shown in the welcome-message. The default value is _0_ + + + + welcome-control-toggle +------------------------ + + Whether or not the welcome panel is shown The default value is _false_ + + + + download-control-toggle +------------------------- + + Whether or not the download panel is shown The default value is _false_ + + + + filter-toggle +--------------- + + Whether or not the filter view is shown The default value is _false_ + + + + copyright-toggle +------------------ + + Whether or not the copyright view is shown The default value is _false_ + + + + currentview-toggle +-------------------- + + Whether or not the current view box is shown The default value is _false_ + + + fs-userbadge -------------- diff --git a/Logic/Actors/AvailableBaseLayers.ts b/Logic/Actors/AvailableBaseLayers.ts index c7b84247ba..db0d6ebe65 100644 --- a/Logic/Actors/AvailableBaseLayers.ts +++ b/Logic/Actors/AvailableBaseLayers.ts @@ -1,14 +1,14 @@ import BaseLayer from "../../Models/BaseLayer"; -import {UIEventSource} from "../UIEventSource"; +import {ImmutableStore, Store, UIEventSource} from "../UIEventSource"; import Loc from "../../Models/Loc"; export interface AvailableBaseLayersObj { readonly osmCarto: BaseLayer; layerOverview: BaseLayer[]; - AvailableLayersAt(location: UIEventSource): UIEventSource + AvailableLayersAt(location: Store): Store - SelectBestLayerAccordingTo(location: UIEventSource, preferedCategory: UIEventSource): UIEventSource; + SelectBestLayerAccordingTo(location: Store, preferedCategory: Store): Store; } @@ -24,12 +24,12 @@ export default class AvailableBaseLayers { private static implementation: AvailableBaseLayersObj - static AvailableLayersAt(location: UIEventSource): UIEventSource { - return AvailableBaseLayers.implementation?.AvailableLayersAt(location) ?? new UIEventSource([]); + static AvailableLayersAt(location: Store): Store { + return AvailableBaseLayers.implementation?.AvailableLayersAt(location) ?? new ImmutableStore([]); } - static SelectBestLayerAccordingTo(location: UIEventSource, preferedCategory: UIEventSource): UIEventSource { - return AvailableBaseLayers.implementation?.SelectBestLayerAccordingTo(location, preferedCategory) ?? new UIEventSource(undefined); + static SelectBestLayerAccordingTo(location: Store, preferedCategory: UIEventSource): Store { + return AvailableBaseLayers.implementation?.SelectBestLayerAccordingTo(location, preferedCategory) ?? new ImmutableStore(undefined); } diff --git a/Logic/Actors/AvailableBaseLayersImplementation.ts b/Logic/Actors/AvailableBaseLayersImplementation.ts index 6b12013feb..67e2bb2c3c 100644 --- a/Logic/Actors/AvailableBaseLayersImplementation.ts +++ b/Logic/Actors/AvailableBaseLayersImplementation.ts @@ -1,5 +1,5 @@ import BaseLayer from "../../Models/BaseLayer"; -import {UIEventSource} from "../UIEventSource"; +import {Store, Stores} from "../UIEventSource"; import Loc from "../../Models/Loc"; import {GeoOperations} from "../GeoOperations"; import * as editorlayerindex from "../../assets/editor-layer-index.json"; @@ -29,7 +29,7 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL public readonly layerOverview = AvailableBaseLayersImplementation.LoadRasterIndex().concat(AvailableBaseLayersImplementation.LoadProviderIndex()); public readonly globalLayers = this.layerOverview.filter(layer => layer.feature?.geometry === undefined || layer.feature?.geometry === null) - public readonly localLayers = this.layerOverview.filter(layer => layer.feature?.geometry !== undefined && layer.featuer?.geometry !== null) + public readonly localLayers = this.layerOverview.filter(layer => layer.feature?.geometry !== undefined && layer.feature?.geometry !== null) private static LoadRasterIndex(): BaseLayer[] { const layers: BaseLayer[] = [] @@ -202,8 +202,8 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL }); } - public AvailableLayersAt(location: UIEventSource): UIEventSource { - return UIEventSource.ListStabilized(location.map( + public AvailableLayersAt(location: Store): Store { + return Stores.ListStabilized(location.map( (currentLocation) => { if (currentLocation === undefined) { return this.layerOverview; @@ -212,7 +212,7 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL })); } - public SelectBestLayerAccordingTo(location: UIEventSource, preferedCategory: UIEventSource): UIEventSource { + public SelectBestLayerAccordingTo(location: Store, preferedCategory: Store): Store { return this.AvailableLayersAt(location) .map(available => { // First float all 'best layers' to the top @@ -264,7 +264,7 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL if (lon === undefined || lat === undefined) { return availableLayers.concat(this.globalLayers); } - const lonlat = [lon, lat]; + const lonlat : [number, number] = [lon, lat]; for (const layerOverviewItem of this.localLayers) { const layer = layerOverviewItem; const bbox = BBox.get(layer.feature) diff --git a/Logic/Actors/GeoLocationHandler.ts b/Logic/Actors/GeoLocationHandler.ts index 24e8e5268a..c7ca5ae567 100644 --- a/Logic/Actors/GeoLocationHandler.ts +++ b/Logic/Actors/GeoLocationHandler.ts @@ -1,14 +1,14 @@ -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import Svg from "../../Svg"; import {LocalStorageSource} from "../Web/LocalStorageSource"; import {VariableUiElement} from "../../UI/Base/VariableUIElement"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import {QueryParameters} from "../Web/QueryParameters"; -import FeatureSource from "../FeatureSource/FeatureSource"; import {BBox} from "../BBox"; import Constants from "../../Models/Constants"; +import SimpleFeatureSource from "../FeatureSource/Sources/SimpleFeatureSource"; -export interface GeoLocationPointProperties { +export interface GeoLocationPointProperties { id: "gps", "user:location": "yes", "date": string, @@ -22,7 +22,7 @@ export interface GeoLocationPointProperties { export default class GeoLocationHandler extends VariableUiElement { - private readonly currentLocation?: FeatureSource + private readonly currentLocation?: SimpleFeatureSource /** * Wether or not the geolocation is active, aka the user requested the current location @@ -43,7 +43,7 @@ export default class GeoLocationHandler extends VariableUiElement { * Literally: _currentGPSLocation.data != undefined * @private */ - private readonly _hasLocation: UIEventSource; + private readonly _hasLocation: Store; private readonly _currentGPSLocation: UIEventSource; /** * Kept in order to update the marker @@ -70,7 +70,7 @@ export default class GeoLocationHandler extends VariableUiElement { constructor( state: { selectedElement: UIEventSource; - currentUserLocation?: FeatureSource, + currentUserLocation?: SimpleFeatureSource, leafletMap: UIEventSource, layoutToUse: LayoutConfig, featureSwitchGeolocation: UIEventSource @@ -236,12 +236,9 @@ export default class GeoLocationHandler extends VariableUiElement { self.currentLocation?.features?.setData([{feature, freshness: new Date()}]) - const timeSinceRequest = - (new Date().getTime() - (self._lastUserRequest.data?.getTime() ?? 0)) / 1000; - if (willFocus.data) { console.log("Zooming to user location: willFocus is set") - willFocus.setData(false) + lastClick.setData(undefined); autozoomDone = true; self.MoveToCurrentLocation(16); } else if (self._isLocked.data) { diff --git a/Logic/Actors/OverpassFeatureSource.ts b/Logic/Actors/OverpassFeatureSource.ts index fbd4bd911b..d6db8be4a1 100644 --- a/Logic/Actors/OverpassFeatureSource.ts +++ b/Logic/Actors/OverpassFeatureSource.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import {Or} from "../Tags/Or"; import {Overpass} from "../Osm/Overpass"; import FeatureSource from "../FeatureSource/FeatureSource"; @@ -34,13 +34,13 @@ export default class OverpassFeatureSource implements FeatureSource { private readonly retries: UIEventSource = new UIEventSource(0); private readonly state: { - readonly locationControl: UIEventSource, + readonly locationControl: Store, readonly layoutToUse: LayoutConfig, - readonly overpassUrl: UIEventSource; - readonly overpassTimeout: UIEventSource; - readonly currentBounds: UIEventSource + readonly overpassUrl: Store; + readonly overpassTimeout: Store; + readonly currentBounds: Store } - private readonly _isActive: UIEventSource + private readonly _isActive: Store /** * Callback to handle all the data */ @@ -54,16 +54,16 @@ export default class OverpassFeatureSource implements FeatureSource { constructor( state: { - readonly locationControl: UIEventSource, + readonly locationControl: Store, readonly layoutToUse: LayoutConfig, - readonly overpassUrl: UIEventSource; - readonly overpassTimeout: UIEventSource; - readonly overpassMaxZoom: UIEventSource, - readonly currentBounds: UIEventSource + readonly overpassUrl: Store; + readonly overpassTimeout: Store; + readonly overpassMaxZoom: Store, + readonly currentBounds: Store }, options: { - padToTiles: UIEventSource, - isActive?: UIEventSource, + padToTiles: Store, + isActive?: Store, relationTracker: RelationsTracker, onBboxLoaded?: (bbox: BBox, date: Date, layers: LayerConfig[], zoomlevel: number) => void, freshnesses?: Map diff --git a/Logic/Actors/TitleHandler.ts b/Logic/Actors/TitleHandler.ts index 8593ecf184..5bfd92c5b9 100644 --- a/Logic/Actors/TitleHandler.ts +++ b/Logic/Actors/TitleHandler.ts @@ -1,5 +1,4 @@ -import {UIEventSource} from "../UIEventSource"; -import Translations from "../../UI/i18n/Translations"; +import {Store, UIEventSource} from "../UIEventSource"; import Locale from "../../UI/i18n/Locale"; import TagRenderingAnswer from "../../UI/Popup/TagRenderingAnswer"; import Combine from "../../UI/Base/Combine"; @@ -9,11 +8,11 @@ import {Utils} from "../../Utils"; export default class TitleHandler { constructor(state: { - selectedElement: UIEventSource, + selectedElement: Store, layoutToUse: LayoutConfig, allElements: ElementStorage }) { - const currentTitle: UIEventSource = state.selectedElement.map( + const currentTitle: Store = state.selectedElement.map( selected => { const layout = state.layoutToUse const defaultTitle = layout?.title?.txt ?? "MapComplete" @@ -30,7 +29,7 @@ export default class TitleHandler { if (layer.source.osmTags.matchesProperties(tags)) { const tagsSource = state.allElements.getEventSourceById(tags.id) ?? new UIEventSource(tags) const title = new TagRenderingAnswer(tagsSource, layer.title, {}) - return new Combine([defaultTitle, " | ", title]).ConstructElement()?.innerText ?? defaultTitle; + return new Combine([defaultTitle, " | ", title]).ConstructElement()?.textContent ?? defaultTitle; } } return defaultTitle diff --git a/Logic/ContributorCount.ts b/Logic/ContributorCount.ts index 08eb496c53..99b9c503c5 100644 --- a/Logic/ContributorCount.ts +++ b/Logic/ContributorCount.ts @@ -1,5 +1,5 @@ /// Given a feature source, calculates a list of OSM-contributors who mapped the latest versions -import {UIEventSource} from "./UIEventSource"; +import {Store, UIEventSource} from "./UIEventSource"; import FeaturePipeline from "./FeatureSource/FeaturePipeline"; import Loc from "../Models/Loc"; import {BBox} from "./BBox"; @@ -7,10 +7,10 @@ import {BBox} from "./BBox"; export default class ContributorCount { public readonly Contributors: UIEventSource> = new UIEventSource>(new Map()); - private readonly state: { featurePipeline: FeaturePipeline, currentBounds: UIEventSource, locationControl: UIEventSource }; + private readonly state: { featurePipeline: FeaturePipeline, currentBounds: Store, locationControl: Store }; private lastUpdate: Date = undefined; - constructor(state: { featurePipeline: FeaturePipeline, currentBounds: UIEventSource, locationControl: UIEventSource }) { + constructor(state: { featurePipeline: FeaturePipeline, currentBounds: Store, locationControl: Store }) { this.state = state; const self = this; state.currentBounds.map(bbox => { diff --git a/Logic/DetermineLayout.ts b/Logic/DetermineLayout.ts index b935481e88..b85f6e40ca 100644 --- a/Logic/DetermineLayout.ts +++ b/Logic/DetermineLayout.ts @@ -9,7 +9,6 @@ import BaseUIElement from "../UI/BaseUIElement"; import {UIEventSource} from "./UIEventSource"; import {LocalStorageSource} from "./Web/LocalStorageSource"; import LZString from "lz-string"; -import * as personal from "../assets/themes/personal/personal.json"; import {FixLegacyTheme} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; import SharedTagRenderings from "../Customizations/SharedTagRenderings"; @@ -52,17 +51,7 @@ export default class DetermineLayout { console.log("Using layout", layoutId); } layoutId = QueryParameters.GetQueryParameter("layout", layoutId, "The layout to load into MapComplete").data; - const layoutToUse: LayoutConfig = AllKnownLayouts.allKnownLayouts.get(layoutId?.toLowerCase()); - - if (layoutToUse?.id === personal.id) { - layoutToUse.layers = AllKnownLayouts.AllPublicLayers() - for (const layer of layoutToUse.layers) { - layer.minzoomVisible = Math.max(layer.minzoomVisible, layer.minzoom) - layer.minzoom = Math.max(16, layer.minzoom) - } - } - - return layoutToUse + return AllKnownLayouts.allKnownLayouts.get(layoutId?.toLowerCase()) } public static LoadLayoutFromHash( @@ -128,7 +117,7 @@ export default class DetermineLayout { error.SetClass("alert"), new SubtleButton(Svg.back_svg(), "Go back to the theme overview", - {url: window.location.protocol + "//" + window.location.hostname + "/index.html", newTab: false}), + {url: window.location.protocol + "//" + window.location.host + "/index.html", newTab: false}), json !== undefined ? new SubtleButton(Svg.download_svg(),"Download the JSON file").onClick(() => { Utils.offerContentsAsDownloadableFile(JSON.stringify(json, null, " "), "theme_definition.json") }) : undefined @@ -137,7 +126,7 @@ export default class DetermineLayout { .AttachTo("centermessage"); } - private static prepCustomTheme(json: any, sourceUrl?: string): LayoutConfig { + private static prepCustomTheme(json: any, sourceUrl?: string, forceId?: string): LayoutConfig { if(json.layers === undefined && json.tagRenderings !== undefined){ const iconTr = json.mapRendering.map(mr => mr.icon).find(icon => icon !== undefined) @@ -161,15 +150,18 @@ export default class DetermineLayout { } const converState = { tagRenderings: SharedTagRenderings.SharedTagRenderingJson, - sharedLayers: knownLayersDict + sharedLayers: knownLayersDict, + publicLayers: new Set() } json = new FixLegacyTheme().convertStrict(json, "While loading a dynamic theme") const raw = json; json = new FixImages(DetermineLayout._knownImages).convertStrict(json, "While fixing the images") + json.enableNoteImports = json.enableNoteImports ?? false; json = new PrepareTheme(converState).convertStrict(json, "While preparing a dynamic theme") console.log("The layoutconfig is ", json) + json.id = forceId ?? json.id return new LayoutConfig(json, false, { definitionRaw: JSON.stringify(raw, null, " "), @@ -187,9 +179,13 @@ export default class DetermineLayout { let parsed = await Utils.downloadJson(link) try { - parsed.id = link; + let forcedId = parsed.id + const url = new URL(link) + if(!(url.hostname === "localhost" || url.hostname === "127.0.0.1")){ + forcedId = link; + } console.log("Loaded remote link:", link) - return DetermineLayout.prepCustomTheme(parsed, link) + return DetermineLayout.prepCustomTheme(parsed, link, forcedId); } catch (e) { console.error(e) DetermineLayout.ShowErrorOnCustomTheme( diff --git a/Logic/ElementStorage.ts b/Logic/ElementStorage.ts index 1ab5dc9bc1..2a23a90544 100644 --- a/Logic/ElementStorage.ts +++ b/Logic/ElementStorage.ts @@ -2,6 +2,7 @@ * Keeps track of a dictionary 'elementID' -> UIEventSource */ import {UIEventSource} from "./UIEventSource"; +import {GeoJSONObject} from "@turf/turf"; export class ElementStorage { diff --git a/Logic/ExtraFunctions.ts b/Logic/ExtraFunctions.ts index 9a97ff39e9..71549df337 100644 --- a/Logic/ExtraFunctions.ts +++ b/Logic/ExtraFunctions.ts @@ -5,6 +5,7 @@ import BaseUIElement from "../UI/BaseUIElement"; import List from "../UI/Base/List"; import Title from "../UI/Base/Title"; import {BBox} from "./BBox"; +import {Feature, Geometry, MultiPolygon, Polygon} from "@turf/turf"; export interface ExtraFuncParams { /** @@ -12,9 +13,9 @@ export interface ExtraFuncParams { * Note that more features then requested can be given back. * Format: [ [ geojson, geojson, geojson, ... ], [geojson, ...], ...] */ - getFeaturesWithin: (layerId: string, bbox: BBox) => any[][], + getFeaturesWithin: (layerId: string, bbox: BBox) => Feature[][], memberships: RelationsTracker - getFeatureById: (id: string) => any + getFeatureById: (id: string) => Feature } /** @@ -24,42 +25,94 @@ interface ExtraFunction { readonly _name: string; readonly _args: string[]; readonly _doc: string; - readonly _f: (params: ExtraFuncParams, feat: any) => any; + readonly _f: (params: ExtraFuncParams, feat: Feature) => any; } +class EnclosingFunc implements ExtraFunction { + _name = "enclosingFeatures" + _doc = ["Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored)", "", + "The result is a list of features: `{feat: Polygon}[]`", + "This function will never return the feature itself."].join("\n") + _args = ["...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)"] + + _f(params: ExtraFuncParams, feat: Feature) { + return (...layerIds: string[]) => { + const result: { feat: any }[] = [] + const bbox = BBox.get(feat) + const seenIds = new Set() + seenIds.add(feat.properties.id) + for (const layerId of layerIds) { + const otherFeaturess = params.getFeaturesWithin(layerId, bbox) + if (otherFeaturess === undefined) { + continue; + } + if (otherFeaturess.length === 0) { + continue; + } + for (const otherFeatures of otherFeaturess) { + for (const otherFeature of otherFeatures) { + if (seenIds.has(otherFeature.properties.id)) { + continue + } + seenIds.add(otherFeature.properties.id) + if (otherFeature.geometry.type !== "Polygon" && otherFeature.geometry.type !== "MultiPolygon") { + continue; + } + if (GeoOperations.completelyWithin(feat, >otherFeature)) { + result.push({feat: otherFeature}) + } + } + } + } + + return result; + } + } +} class OverlapFunc implements ExtraFunction { _name = "overlapWith"; - _doc = "Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well." + - "If the current feature is a point, all features that this point is embeded in are given.\n\n" + - "The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.\n" + - "The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list\n" + - "\n" + - "For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`" + _doc = ["Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well.", + "If the current feature is a point, all features that this point is embeded in are given.", + "", + "The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.", + "The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list.", + "", + "For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`", + "", + "Also see [enclosingFeatures](#enclosingFeatures) which can be used to get all objects which fully contain this feature" + ].join("\n") _args = ["...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)"] _f(params, feat) { return (...layerIds: string[]) => { const result: { feat: any, overlap: number }[] = [] + const seenIds = new Set() const bbox = BBox.get(feat) for (const layerId of layerIds) { - const otherLayers = params.getFeaturesWithin(layerId, bbox) - if (otherLayers === undefined) { + const otherFeaturess = params.getFeaturesWithin(layerId, bbox) + if (otherFeaturess === undefined) { continue; } - if (otherLayers.length === 0) { + if (otherFeaturess.length === 0) { continue; } - for (const otherLayer of otherLayers) { - result.push(...GeoOperations.calculateOverlap(feat, otherLayer)); + for (const otherFeatures of otherFeaturess) { + const overlap = GeoOperations.calculateOverlap(feat, otherFeatures) + for (const overlappingFeature of overlap) { + if(seenIds.has(overlappingFeature.feat.properties.id)){ + continue + } + seenIds.add(overlappingFeature.feat.properties.id) + result.push(overlappingFeature) + } } } result.sort((a, b) => b.overlap - a.overlap) - return result; } } @@ -142,7 +195,7 @@ class DistanceToFunc implements ExtraFunction { class ClosestObjectFunc implements ExtraFunction { _name = "closest" - _doc = "Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet laoded)" + _doc = "Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded)" _args = ["list of features or a layer name or '*' to get all features"] @@ -392,6 +445,7 @@ export class ExtraFunctions { private static readonly allFuncs: ExtraFunction[] = [ new DistanceToFunc(), new OverlapFunc(), + new EnclosingFunc(), new IntersectionFunc(), new ClosestObjectFunc(), new ClosestNObjectFunc(), diff --git a/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts b/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts index 7ee072d403..d7b3768d1f 100644 --- a/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts +++ b/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts @@ -1,12 +1,12 @@ import FeatureSource from "../FeatureSource"; -import {UIEventSource} from "../../UIEventSource"; +import {Store} from "../../UIEventSource"; import {ElementStorage} from "../../ElementStorage"; /** * Makes sure that every feature is added to the ElementsStorage, so that the tags-eventsource can be retrieved */ export default class RegisteringAllFromFeatureSourceActor { - public readonly features: UIEventSource<{ feature: any; freshness: Date }[]>; + public readonly features: Store<{ feature: any; freshness: Date }[]>; public readonly name; constructor(source: FeatureSource, allElements: ElementStorage) { diff --git a/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts b/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts index b49a554833..360df9d42c 100644 --- a/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts +++ b/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts @@ -79,6 +79,9 @@ export default class SaveTileToLocalStorageActor { } loadedTiles.add(key) this.GetIdb(key).then((features: { feature: any, freshness: Date }[]) => { + if(features === undefined){ + return; + } console.debug("Loaded tile " + self._layer.id + "_" + key + " from disk") const src = new SimpleFeatureSource(self._flayer, key, new UIEventSource<{ feature: any; freshness: Date }[]>(features)) registerTile(src) diff --git a/Logic/FeatureSource/FeaturePipeline.ts b/Logic/FeatureSource/FeaturePipeline.ts index 87d4aedda7..09f88853e8 100644 --- a/Logic/FeatureSource/FeaturePipeline.ts +++ b/Logic/FeatureSource/FeaturePipeline.ts @@ -3,7 +3,7 @@ import FilteringFeatureSource from "./Sources/FilteringFeatureSource"; import PerLayerFeatureSourceSplitter from "./PerLayerFeatureSourceSplitter"; import FeatureSource, {FeatureSourceForLayer, IndexedFeatureSource, Tiled} from "./FeatureSource"; import TiledFeatureSource from "./TiledFeatureSource/TiledFeatureSource"; -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import {TileHierarchyTools} from "./TiledFeatureSource/TileHierarchy"; import RememberingSource from "./Sources/RememberingSource"; import OverpassFeatureSource from "../Actors/OverpassFeatureSource"; @@ -23,6 +23,11 @@ import TileFreshnessCalculator from "./TileFreshnessCalculator"; import FullNodeDatabaseSource from "./TiledFeatureSource/FullNodeDatabaseSource"; import MapState from "../State/MapState"; import {ElementStorage} from "../ElementStorage"; +import {OsmFeature} from "../../Models/OsmFeature"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import {FilterState} from "../../Models/FilteredLayer"; +import {GeoOperations} from "../GeoOperations"; +import {Utils} from "../../Utils"; /** @@ -38,8 +43,8 @@ import {ElementStorage} from "../ElementStorage"; */ export default class FeaturePipeline { - public readonly sufficientlyZoomed: UIEventSource; - public readonly runningQuery: UIEventSource; + public readonly sufficientlyZoomed: Store; + public readonly runningQuery: Store; public readonly timeout: UIEventSource; public readonly somethingLoaded: UIEventSource = new UIEventSource(false) public readonly newDataLoadedSignal: UIEventSource = new UIEventSource(undefined) @@ -314,7 +319,7 @@ export default class FeaturePipeline { // We don't bother to split them over tiles as it'll contain little features by default, so we simply add them like this perLayerHierarchy.get(perLayer.layer.layerDef.id).registerTile(perLayer) // AT last, we always apply the metatags whenever possible - perLayer.features.addCallbackAndRunD(feats => { + perLayer.features.addCallbackAndRunD(_ => { self.onNewDataLoaded(perLayer); }) @@ -337,15 +342,19 @@ export default class FeaturePipeline { } - public GetAllFeaturesWithin(bbox: BBox): any[][] { + public GetAllFeaturesWithin(bbox: BBox): OsmFeature[][] { const self = this - const tiles = [] + const tiles: OsmFeature[][] = [] Array.from(this.perLayerHierarchy.keys()) - .forEach(key => tiles.push(...self.GetFeaturesWithin(key, bbox))) + .forEach(key => { + const fetched : OsmFeature[][] = self.GetFeaturesWithin(key, bbox) + tiles.push(...fetched); + }) return tiles; } - public GetAllFeaturesAndMetaWithin(bbox: BBox, layerIdWhitelist?: Set): {features: any[], layer: string}[] { + public GetAllFeaturesAndMetaWithin(bbox: BBox, layerIdWhitelist?: Set): + {features: OsmFeature[], layer: string}[] { const self = this const tiles :{features: any[], layer: string}[]= [] Array.from(this.perLayerHierarchy.keys()) @@ -361,7 +370,11 @@ export default class FeaturePipeline { return tiles; } - public GetFeaturesWithin(layerId: string, bbox: BBox): any[][] { + /** + * Gets all the tiles which overlap with the given BBOX. + * This might imply that extra features might be shown + */ + public GetFeaturesWithin(layerId: string, bbox: BBox): OsmFeature[][] { if (layerId === "*") { return this.GetAllFeaturesWithin(bbox) } @@ -417,7 +430,7 @@ export default class FeaturePipeline { /* * Gives an UIEventSource containing the tileIndexes of the tiles that should be loaded from OSM * */ - private getNeededTilesFromOsm(isSufficientlyZoomed: UIEventSource): UIEventSource { + private getNeededTilesFromOsm(isSufficientlyZoomed: Store): Store { const self = this return this.state.currentBounds.map(bbox => { if (bbox === undefined) { @@ -450,12 +463,12 @@ export default class FeaturePipeline { private initOverpassUpdater(state: { allElements: ElementStorage; layoutToUse: LayoutConfig, - currentBounds: UIEventSource, - locationControl: UIEventSource, - readonly overpassUrl: UIEventSource; - readonly overpassTimeout: UIEventSource; - readonly overpassMaxZoom: UIEventSource, - }, useOsmApi: UIEventSource): OverpassFeatureSource { + currentBounds: Store, + locationControl: Store, + readonly overpassUrl: Store; + readonly overpassTimeout: Store; + readonly overpassMaxZoom: Store, + }, useOsmApi: Store): OverpassFeatureSource { const minzoom = Math.min(...state.layoutToUse.layers.map(layer => layer.minzoom)) const overpassIsActive = state.currentBounds.map(bbox => { if (bbox === undefined) { @@ -504,6 +517,62 @@ export default class FeaturePipeline { return updater; } + /** + * Builds upon 'GetAllFeaturesAndMetaWithin', but does stricter BBOX-checking and applies the filters + */ + public getAllVisibleElementsWithmeta(bbox: BBox): { center: [number, number], element: OsmFeature, layer: LayerConfig }[] { + if (bbox === undefined) { + console.warn("No bbox") + return [] + } + + const layers = Utils.toIdRecord(this.state.layoutToUse.layers) + const elementsWithMeta: { features: OsmFeature[], layer: string }[] = this.GetAllFeaturesAndMetaWithin(bbox) + + let elements: {center: [number, number], element: OsmFeature, layer: LayerConfig }[] = [] + let seenElements = new Set() + for (const elementsWithMetaElement of elementsWithMeta) { + const layer = layers[elementsWithMetaElement.layer] + if(layer.title === undefined){ + continue + } + const filtered = this.state.filteredLayers.data.find(fl => fl.layerDef == layer); + for (let i = 0; i < elementsWithMetaElement.features.length; i++) { + const element = elementsWithMetaElement.features[i]; + if (!filtered.isDisplayed.data) { + continue + } + if (seenElements.has(element.properties.id)) { + continue + } + seenElements.add(element.properties.id) + if (!bbox.overlapsWith(BBox.get(element))) { + continue + } + if (layer?.isShown !== undefined && !layer.isShown.matchesProperties(element)) { + continue + } + const activeFilters: FilterState[] = Array.from(filtered.appliedFilters.data.values()); + if (!activeFilters.every(filter => filter?.currentFilter === undefined || filter?.currentFilter?.matchesProperties(element.properties))) { + continue + } + const center = GeoOperations.centerpointCoordinates(element); + elements.push({ + element, + center, + layer: layers[elementsWithMetaElement.layer], + }) + + } + } + + + + + return elements; + } + + /** * Inject a new point */ diff --git a/Logic/FeatureSource/FeatureSource.ts b/Logic/FeatureSource/FeatureSource.ts index df8b564128..f28d2cde9a 100644 --- a/Logic/FeatureSource/FeatureSource.ts +++ b/Logic/FeatureSource/FeatureSource.ts @@ -1,9 +1,11 @@ -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import FilteredLayer from "../../Models/FilteredLayer"; import {BBox} from "../BBox"; +import {Feature, Geometry} from "@turf/turf"; +import {OsmFeature} from "../../Models/OsmFeature"; export default interface FeatureSource { - features: UIEventSource<{ feature: any, freshness: Date }[]>; + features: Store<{ feature: OsmFeature, freshness: Date }[]>; /** * Mainly used for debuging */ @@ -26,14 +28,5 @@ export interface FeatureSourceForLayer extends FeatureSource { * A feature source which is aware of the indexes it contains */ export interface IndexedFeatureSource extends FeatureSource { - readonly containedIds: UIEventSource> -} - -/** - * A feature source which has some extra data about it's state - */ -export interface FeatureSourceState { - readonly sufficientlyZoomed: UIEventSource; - readonly runningQuery: UIEventSource; - readonly timeout: UIEventSource; + readonly containedIds: Store> } diff --git a/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts b/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts index cfa15af1f5..f19e917c67 100644 --- a/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts +++ b/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts @@ -1,5 +1,5 @@ import FeatureSource, {FeatureSourceForLayer, Tiled} from "./FeatureSource"; -import {UIEventSource} from "../UIEventSource"; +import {Store} from "../UIEventSource"; import FilteredLayer from "../../Models/FilteredLayer"; import SimpleFeatureSource from "./Sources/SimpleFeatureSource"; @@ -11,7 +11,7 @@ import SimpleFeatureSource from "./Sources/SimpleFeatureSource"; */ export default class PerLayerFeatureSourceSplitter { - constructor(layers: UIEventSource, + constructor(layers: Store, handleLayerData: (source: FeatureSourceForLayer & Tiled) => void, upstream: FeatureSource, options?: { @@ -19,7 +19,7 @@ export default class PerLayerFeatureSourceSplitter { handleLeftovers?: (featuresWithoutLayer: any[]) => void }) { - const knownLayers = new Map() + const knownLayers = new Map() function update() { const features = upstream.features?.data; diff --git a/Logic/FeatureSource/Sources/FeatureSourceMerger.ts b/Logic/FeatureSource/Sources/FeatureSourceMerger.ts index 99a9b9bc55..cf621aca35 100644 --- a/Logic/FeatureSource/Sources/FeatureSourceMerger.ts +++ b/Logic/FeatureSource/Sources/FeatureSourceMerger.ts @@ -1,13 +1,10 @@ -/** - * Merges features from different featureSources for a single layer - * Uses the freshest feature available in the case multiple sources offer data with the same identifier - */ import {UIEventSource} from "../../UIEventSource"; import FeatureSource, {FeatureSourceForLayer, IndexedFeatureSource, Tiled} from "../FeatureSource"; import FilteredLayer from "../../../Models/FilteredLayer"; import {Tiles} from "../../../Models/TileRange"; import {BBox} from "../../BBox"; + export default class FeatureSourceMerger implements FeatureSourceForLayer, Tiled, IndexedFeatureSource { public features: UIEventSource<{ feature: any; freshness: Date }[]> = new UIEventSource<{ feature: any; freshness: Date }[]>([]); @@ -17,7 +14,10 @@ export default class FeatureSourceMerger implements FeatureSourceForLayer, Tiled public readonly bbox: BBox; public readonly containedIds: UIEventSource> = new UIEventSource>(new Set()) private readonly _sources: UIEventSource; - + /** + * Merges features from different featureSources for a single layer + * Uses the freshest feature available in the case multiple sources offer data with the same identifier + */ constructor(layer: FilteredLayer, tileIndex: number, bbox: BBox, sources: UIEventSource) { this.tileIndex = tileIndex; this.bbox = bbox; diff --git a/Logic/FeatureSource/Sources/FilteringFeatureSource.ts b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts index 1d049568a7..dc97e1d3a0 100644 --- a/Logic/FeatureSource/Sources/FilteringFeatureSource.ts +++ b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts @@ -1,9 +1,10 @@ -import {UIEventSource} from "../../UIEventSource"; -import FilteredLayer from "../../../Models/FilteredLayer"; +import {Store, UIEventSource} from "../../UIEventSource"; +import FilteredLayer, {FilterState} from "../../../Models/FilteredLayer"; import {FeatureSourceForLayer, Tiled} from "../FeatureSource"; import {BBox} from "../../BBox"; import {ElementStorage} from "../../ElementStorage"; import {TagsFilter} from "../../Tags/TagsFilter"; +import {OsmFeature} from "../../../Models/OsmFeature"; export default class FilteringFeatureSource implements FeatureSourceForLayer, Tiled { public features: UIEventSource<{ feature: any; freshness: Date }[]> = @@ -14,7 +15,9 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti public readonly bbox: BBox private readonly upstream: FeatureSourceForLayer; private readonly state: { - locationControl: UIEventSource<{ zoom: number }>; selectedElement: UIEventSource, + locationControl: Store<{ zoom: number }>; + selectedElement: Store, + globalFilters: Store<{ filter: FilterState }[]>, allElements: ElementStorage }; private readonly _alreadyRegistered = new Set>(); @@ -23,9 +26,10 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti constructor( state: { - locationControl: UIEventSource<{ zoom: number }>, - selectedElement: UIEventSource, - allElements: ElementStorage + locationControl: Store<{ zoom: number }>, + selectedElement: Store, + allElements: ElementStorage, + globalFilters: Store<{ filter: FilterState }[]> }, tileIndex, upstream: FeatureSourceForLayer, @@ -58,6 +62,10 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti metataggingUpdated?.addCallback(_ => { self._is_dirty.setData(true) }) + + state.globalFilters.addCallback(_ => { + self.update() + }) this.update(); } @@ -65,28 +73,32 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti private update() { const self = this; const layer = this.upstream.layer; - const features: { feature: any; freshness: Date }[] = (this.upstream.features.data ?? []); + const features: { feature: OsmFeature; freshness: Date }[] = (this.upstream.features.data ?? []); const includedFeatureIds = new Set(); + const globalFilters = self.state.globalFilters.data.map(f => f.filter); const newFeatures = (features ?? []).filter((f) => { self.registerCallback(f.feature) - const isShown = layer.layerDef.isShown; + const isShown: TagsFilter = layer.layerDef.isShown; const tags = f.feature.properties; - if (isShown.IsKnown(tags)) { - const result = layer.layerDef.isShown.GetRenderValue( - f.feature.properties - ).txt; - if (result !== "yes") { - return false; - } + if (isShown !== undefined && !isShown.matchesProperties(tags) ) { + return false; } const tagsFilter = Array.from(layer.appliedFilters?.data?.values() ?? []) for (const filter of tagsFilter) { const neededTags: TagsFilter = filter?.currentFilter if (neededTags !== undefined && !neededTags.matchesProperties(f.feature.properties)) { - // Hidden by the filter on the layer itself - we want to hide it no matter wat + // Hidden by the filter on the layer itself - we want to hide it no matter what + return false; + } + } + + for (const filter of globalFilters) { + const neededTags: TagsFilter = filter?.currentFilter + if (neededTags !== undefined && !neededTags.matchesProperties(f.feature.properties)) { + // Hidden by the filter on the layer itself - we want to hide it no matter what return false; } } diff --git a/Logic/FeatureSource/Sources/GeoJsonSource.ts b/Logic/FeatureSource/Sources/GeoJsonSource.ts index ed9bcb61c9..3c4e9142dc 100644 --- a/Logic/FeatureSource/Sources/GeoJsonSource.ts +++ b/Logic/FeatureSource/Sources/GeoJsonSource.ts @@ -79,9 +79,31 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { private LoadJSONFrom(url: string) { const eventSource = this.features; const self = this; - Utils.downloadJson(url) + Utils.downloadJsonCached(url, 60 * 60) .then(json => { self.state.setData("loaded") + // TODO: move somewhere else, just for testing + // Check for maproulette data + if (url.startsWith("https://maproulette.org/api/v2/tasks/box/")) { + console.log("MapRoulette data detected") + const data = json; + let maprouletteFeatures: any[] = []; + data.forEach(element => { + maprouletteFeatures.push({ + type: "Feature", + geometry: { + type: "Point", + coordinates: [element.point.lng, element.point.lat] + }, + properties: { + // Map all properties to the feature + ...element, + } + }); + }); + json.features = maprouletteFeatures; + } + if (json.features === undefined || json.features === null) { return; } diff --git a/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts b/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts index 232cd3113c..19f4511e79 100644 --- a/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts +++ b/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts @@ -9,7 +9,10 @@ export class NewGeometryFromChangesFeatureSource implements FeatureSource { // This class name truly puts the 'Java' into 'Javascript' /** - * A feature source containing exclusively new elements + * A feature source containing exclusively new elements. + * + * These elements are probably created by the 'SimpleAddUi' which generates a new point, but the import functionality might create a line or polygon too. + * Other sources of new points are e.g. imports from nodes */ public readonly features: UIEventSource<{ feature: any; freshness: Date }[]> = new UIEventSource<{ feature: any; freshness: Date }[]>([]); public readonly name: string = "newFeatures"; diff --git a/Logic/FeatureSource/Sources/RememberingSource.ts b/Logic/FeatureSource/Sources/RememberingSource.ts index c9a5e97e4b..344107f075 100644 --- a/Logic/FeatureSource/Sources/RememberingSource.ts +++ b/Logic/FeatureSource/Sources/RememberingSource.ts @@ -3,12 +3,12 @@ * Data coming from upstream will always overwrite a previous value */ import FeatureSource, {Tiled} from "../FeatureSource"; -import {UIEventSource} from "../../UIEventSource"; +import {Store, UIEventSource} from "../../UIEventSource"; import {BBox} from "../../BBox"; export default class RememberingSource implements FeatureSource, Tiled { - public readonly features: UIEventSource<{ feature: any, freshness: Date }[]>; + public readonly features: Store<{ feature: any, freshness: Date }[]>; public readonly name; public readonly tileIndex: number public readonly bbox: BBox @@ -20,17 +20,15 @@ export default class RememberingSource implements FeatureSource, Tiled { this.bbox = source.bbox; const empty = []; - this.features = source.features.map(features => { + const featureSource = new UIEventSource<{feature: any, freshness: Date}[]>(empty) + this.features = featureSource + source.features.addCallbackAndRunD(features => { const oldFeatures = self.features?.data ?? empty; - if (features === undefined) { - return oldFeatures; - } - // Then new ids const ids = new Set(features.map(f => f.feature.properties.id + f.feature.geometry.type)); // the old data const oldData = oldFeatures.filter(old => !ids.has(old.feature.properties.id + old.feature.geometry.type)) - return [...features, ...oldData]; + featureSource.setData([...features, ...oldData]) }) } diff --git a/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts b/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts index 1f5d8cbb41..8a8ba609c8 100644 --- a/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts +++ b/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts @@ -1,38 +1,103 @@ /** * This feature source helps the ShowDataLayer class: it introduces the necessary extra features and indicates with what renderConfig it should be rendered. */ -import {UIEventSource} from "../../UIEventSource"; +import {Store} from "../../UIEventSource"; import {GeoOperations} from "../../GeoOperations"; import FeatureSource from "../FeatureSource"; import PointRenderingConfig from "../../../Models/ThemeConfig/PointRenderingConfig"; import LayerConfig from "../../../Models/ThemeConfig/LayerConfig"; +import LineRenderingConfig from "../../../Models/ThemeConfig/LineRenderingConfig"; export default class RenderingMultiPlexerFeatureSource { - public readonly features: UIEventSource<(any & { pointRenderingIndex: number | undefined, lineRenderingIndex: number | undefined })[]>; + public readonly features: Store<(any & { pointRenderingIndex: number | undefined, lineRenderingIndex: number | undefined })[]>; + private readonly pointRenderings: { rendering: PointRenderingConfig; index: number }[]; + private centroidRenderings: { rendering: PointRenderingConfig; index: number }[]; + private projectedCentroidRenderings: { rendering: PointRenderingConfig; index: number }[]; + private startRenderings: { rendering: PointRenderingConfig; index: number }[]; + private endRenderings: { rendering: PointRenderingConfig; index: number }[]; + private hasCentroid: boolean; + private lineRenderObjects: LineRenderingConfig[]; + + private inspectFeature(feat, addAsPoint: (feat, rendering, centerpoint: [number, number]) => void, withIndex: any[]){ + if (feat.geometry.type === "Point") { + + for (const rendering of this.pointRenderings) { + withIndex.push({ + ...feat, + pointRenderingIndex: rendering.index + }) + } + } else { + // This is a a line: add the centroids + let centerpoint: [number, number] = undefined; + let projectedCenterPoint : [number, number] = undefined + if(this.hasCentroid){ + centerpoint = GeoOperations.centerpointCoordinates(feat) + if(this.projectedCentroidRenderings.length > 0){ + projectedCenterPoint = <[number,number]> GeoOperations.nearestPoint(feat, centerpoint).geometry.coordinates + } + } + for (const rendering of this.centroidRenderings) { + addAsPoint(feat, rendering, centerpoint) + } + + + if (feat.geometry.type === "LineString") { + + for (const rendering of this.projectedCentroidRenderings) { + addAsPoint(feat, rendering, projectedCenterPoint) + } + + // Add start- and endpoints + const coordinates = feat.geometry.coordinates + for (const rendering of this.startRenderings) { + addAsPoint(feat, rendering, coordinates[0]) + } + for (const rendering of this.endRenderings) { + const coordinate = coordinates[coordinates.length - 1] + addAsPoint(feat, rendering, coordinate) + } + + }else{ + for (const rendering of this.projectedCentroidRenderings) { + addAsPoint(feat, rendering, centerpoint) + } + } + + // AT last, add it 'as is' to what we should render + for (let i = 0; i < this.lineRenderObjects.length; i++) { + withIndex.push({ + ...feat, + lineRenderingIndex: i + }) + } + + } + } + constructor(upstream: FeatureSource, layer: LayerConfig) { const pointRenderObjects: { rendering: PointRenderingConfig, index: number }[] = layer.mapRendering.map((r, i) => ({ rendering: r, index: i })) - const pointRenderings = pointRenderObjects.filter(r => r.rendering.location.has("point")) - const centroidRenderings = pointRenderObjects.filter(r => r.rendering.location.has("centroid")) - const projectedCentroidRenderings = pointRenderObjects.filter(r => r.rendering.location.has("projected_centerpoint")) - const startRenderings = pointRenderObjects.filter(r => r.rendering.location.has("start")) - const endRenderings = pointRenderObjects.filter(r => r.rendering.location.has("end")) - const hasCentroid = centroidRenderings.length > 0 || projectedCentroidRenderings.length > 0 - const lineRenderObjects = layer.lineRendering + this.pointRenderings = pointRenderObjects.filter(r => r.rendering.location.has("point")) + this.centroidRenderings = pointRenderObjects.filter(r => r.rendering.location.has("centroid")) + this.projectedCentroidRenderings = pointRenderObjects.filter(r => r.rendering.location.has("projected_centerpoint")) + this.startRenderings = pointRenderObjects.filter(r => r.rendering.location.has("start")) + this.endRenderings = pointRenderObjects.filter(r => r.rendering.location.has("end")) + this.hasCentroid = this.centroidRenderings.length > 0 || this.projectedCentroidRenderings.length > 0 + this.lineRenderObjects = layer.lineRendering this.features = upstream.features.map( features => { if (features === undefined) { - return; + return undefined; } - const withIndex: (any & { pointRenderingIndex: number | undefined, lineRenderingIndex: number | undefined, multiLineStringIndex: number | undefined })[] = []; - + const withIndex: any[] = []; function addAsPoint(feat, rendering, coordinate) { const patched = { @@ -45,63 +110,14 @@ export default class RenderingMultiPlexerFeatureSource { } withIndex.push(patched) } + for (const f of features) { const feat = f.feature; - if (feat.geometry.type === "Point") { - - for (const rendering of pointRenderings) { - withIndex.push({ - ...feat, - pointRenderingIndex: rendering.index - }) - } - } else { - // This is a a line: add the centroids - let centerpoint: [number, number] = undefined; - let projectedCenterPoint : [number, number] = undefined - if(hasCentroid){ - centerpoint = GeoOperations.centerpointCoordinates(feat) - if(projectedCentroidRenderings.length > 0){ - projectedCenterPoint = <[number,number]> GeoOperations.nearestPoint(feat, centerpoint).geometry.coordinates - } - } - for (const rendering of centroidRenderings) { - addAsPoint(feat, rendering, centerpoint) - } - - - if (feat.geometry.type === "LineString") { - - for (const rendering of projectedCentroidRenderings) { - addAsPoint(feat, rendering, projectedCenterPoint) - } - - // Add start- and endpoints - const coordinates = feat.geometry.coordinates - for (const rendering of startRenderings) { - addAsPoint(feat, rendering, coordinates[0]) - } - for (const rendering of endRenderings) { - const coordinate = coordinates[coordinates.length - 1] - addAsPoint(feat, rendering, coordinate) - } - - }else{ - for (const rendering of projectedCentroidRenderings) { - addAsPoint(feat, rendering, centerpoint) - } - } - - // AT last, add it 'as is' to what we should render - for (let i = 0; i < lineRenderObjects.length; i++) { - withIndex.push({ - ...feat, - lineRenderingIndex: i - }) - } - + if(feat === undefined){ + continue } + this.inspectFeature(feat, addAsPoint, withIndex) } diff --git a/Logic/FeatureSource/Sources/SimpleFeatureSource.ts b/Logic/FeatureSource/Sources/SimpleFeatureSource.ts index 52007d2f5b..63937763ed 100644 --- a/Logic/FeatureSource/Sources/SimpleFeatureSource.ts +++ b/Logic/FeatureSource/Sources/SimpleFeatureSource.ts @@ -10,7 +10,7 @@ export default class SimpleFeatureSource implements FeatureSourceForLayer, Tiled public readonly bbox: BBox = BBox.global; public readonly tileIndex: number; - constructor(layer: FilteredLayer, tileIndex: number, featureSource?: UIEventSource<{ feature: any; freshness: Date }[]>) { + constructor(layer: FilteredLayer, tileIndex: number, featureSource?: UIEventSource<{ feature: any; freshness: Date }[]> ) { this.name = "SimpleFeatureSource(" + layer.layerDef.id + ")" this.layer = layer this.tileIndex = tileIndex ?? 0; diff --git a/Logic/FeatureSource/Sources/StaticFeatureSource.ts b/Logic/FeatureSource/Sources/StaticFeatureSource.ts index 2d8aef37df..3a1b3baca5 100644 --- a/Logic/FeatureSource/Sources/StaticFeatureSource.ts +++ b/Logic/FeatureSource/Sources/StaticFeatureSource.ts @@ -1,31 +1,62 @@ -import FeatureSource from "../FeatureSource"; -import {UIEventSource} from "../../UIEventSource"; +import FeatureSource, {FeatureSourceForLayer, Tiled} from "../FeatureSource"; +import {ImmutableStore, Store, UIEventSource} from "../../UIEventSource"; +import {stat} from "fs"; +import FilteredLayer from "../../../Models/FilteredLayer"; +import {BBox} from "../../BBox"; +import {Feature} from "@turf/turf"; /** - * A simple dummy implementation for whenever it is needed + * A simple, read only feature store. */ export default class StaticFeatureSource implements FeatureSource { - public readonly features: UIEventSource<{ feature: any; freshness: Date }[]>; - public readonly name: string = "StaticFeatureSource" + public readonly features: Store<{ feature: any; freshness: Date }[]>; + public readonly name: string - constructor(features: any[] | UIEventSource>, useFeaturesDirectly) { - const now = new Date(); - if(features === undefined){ + constructor(features: Store<{ feature: Feature, freshness: Date }[]>, name = "StaticFeatureSource") { + if (features === undefined) { throw "Static feature source received undefined as source" } - if (useFeaturesDirectly) { - // @ts-ignore - this.features = features - } else if (features instanceof UIEventSource) { - // @ts-ignore - this.features = features.map(features => features?.map(f => ({feature: f, freshness: now}) ?? [])) - } else { - this.features = new UIEventSource(features?.map(f => ({ - feature: f, - freshness: now - }))??[]) - } + this.name = name; + this.features = features; + } + + public static fromGeojsonAndDate(features: { feature: Feature, freshness: Date }[], name = "StaticFeatureSourceFromGeojsonAndDate"): StaticFeatureSource { + return new StaticFeatureSource(new ImmutableStore(features), name); } -} \ No newline at end of file + public static fromGeojson(geojson: Feature[], name = "StaticFeatureSourceFromGeojson"): StaticFeatureSource { + const now = new Date(); + return StaticFeatureSource.fromGeojsonAndDate(geojson.map(feature => ({feature, freshness: now})), name); + } + + public static fromGeojsonStore(geojson: Store, name = "StaticFeatureSourceFromGeojson"): StaticFeatureSource { + const now = new Date(); + const mapped : Store<{feature: Feature, freshness: Date}[]> = geojson.map(features => features.map(feature => ({feature, freshness: now}))) + return new StaticFeatureSource(mapped, name); + } + + static fromDateless(featureSource: Store<{ feature: Feature }[]>, name = "StaticFeatureSourceFromDateless") { + const now = new Date(); + return new StaticFeatureSource(featureSource.map(features => features.map(feature => ({ + feature: feature.feature, + freshness: now + }))), name); + } +} + +export class TiledStaticFeatureSource extends StaticFeatureSource implements Tiled, FeatureSourceForLayer{ + + public readonly bbox: BBox = BBox.global; + public readonly tileIndex: number; + public readonly layer: FilteredLayer; + + constructor(features: Store<{ feature: any, freshness: Date }[]>, layer: FilteredLayer ,tileIndex : number = 0) { + super(features); + this.tileIndex = tileIndex ; + this.layer= layer; + this.bbox = BBox.fromTileIndex(this.tileIndex) + } + + +} diff --git a/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts b/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts index 5eaa8f84d3..330c0386f5 100644 --- a/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts @@ -2,15 +2,16 @@ import {Utils} from "../../../Utils"; import * as OsmToGeoJson from "osmtogeojson"; import StaticFeatureSource from "../Sources/StaticFeatureSource"; import PerLayerFeatureSourceSplitter from "../PerLayerFeatureSourceSplitter"; -import {UIEventSource} from "../../UIEventSource"; +import {Store, UIEventSource} from "../../UIEventSource"; import FilteredLayer from "../../../Models/FilteredLayer"; import {FeatureSourceForLayer, Tiled} from "../FeatureSource"; import {Tiles} from "../../../Models/TileRange"; import {BBox} from "../../BBox"; -import {OsmConnection} from "../../Osm/OsmConnection"; import LayoutConfig from "../../../Models/ThemeConfig/LayoutConfig"; import {Or} from "../../Tags/Or"; import {TagsFilter} from "../../Tags/TagsFilter"; +import {OsmObject} from "../../Osm/OsmObject"; +import {FeatureCollection} from "@turf/turf"; /** * If a tile is needed (requested via the UIEventSource in the constructor), will download the appropriate tile and pass it via 'handleTile' @@ -20,73 +21,105 @@ export default class OsmFeatureSource { public readonly downloadedTiles = new Set() public rawDataHandlers: ((osmJson: any, tileId: number) => void)[] = [] private readonly _backend: string; - private readonly filteredLayers: UIEventSource; + private readonly filteredLayers: Store; private readonly handleTile: (fs: (FeatureSourceForLayer & Tiled)) => void; - private isActive: UIEventSource; + private isActive: Store; private options: { handleTile: (tile: FeatureSourceForLayer & Tiled) => void; - isActive: UIEventSource, - neededTiles: UIEventSource, - state: { - readonly osmConnection: OsmConnection; - }, + isActive: Store, + neededTiles: Store, markTileVisited?: (tileId: number) => void }; private readonly allowedTags: TagsFilter; + /** + * + * @param options: allowedFeatures is normally calculated from the layoutToUse + */ constructor(options: { handleTile: (tile: FeatureSourceForLayer & Tiled) => void; - isActive: UIEventSource, - neededTiles: UIEventSource, + isActive: Store, + neededTiles: Store, state: { readonly filteredLayers: UIEventSource; - readonly osmConnection: OsmConnection; - readonly layoutToUse: LayoutConfig + readonly osmConnection: { + Backend(): string + }; + readonly layoutToUse?: LayoutConfig }, + readonly allowedFeatures?: TagsFilter, markTileVisited?: (tileId: number) => void }) { this.options = options; - this._backend = options.state.osmConnection._oauth_config.url; + this._backend = options.state.osmConnection.Backend(); this.filteredLayers = options.state.filteredLayers.map(layers => layers.filter(layer => layer.layerDef.source.geojsonSource === undefined)) this.handleTile = options.handleTile this.isActive = options.isActive const self = this options.neededTiles.addCallbackAndRunD(neededTiles => { - if (options.isActive?.data === false) { - return; - } - - neededTiles = neededTiles.filter(tile => !self.downloadedTiles.has(tile)) - - if (neededTiles.length == 0) { - return; - } - - self.isRunning.setData(true) - try { - - for (const neededTile of neededTiles) { - self.downloadedTiles.add(neededTile) - self.LoadTile(...Tiles.tile_from_index(neededTile)).then(_ => { - console.debug("Tile ", Tiles.tile_from_index(neededTile).join("/"), "loaded from OSM") - }) - } - } catch (e) { - console.error(e) - } finally { - self.isRunning.setData(false) - } + self.Update(neededTiles) }) const neededLayers = (options.state.layoutToUse?.layers ?? []) .filter(layer => !layer.doNotDownload) .filter(layer => layer.source.geojsonSource === undefined || layer.source.isOsmCacheLayer) - this.allowedTags = new Or(neededLayers.map(l => l.source.osmTags)) + this.allowedTags = options.allowedFeatures ?? new Or(neededLayers.map(l => l.source.osmTags)) + } + + private async Update(neededTiles: number[]) { + if (this.options.isActive?.data === false) { + return; + } + + neededTiles = neededTiles.filter(tile => !this.downloadedTiles.has(tile)) + + if (neededTiles.length == 0) { + return; + } + + this.isRunning.setData(true) + try { + + for (const neededTile of neededTiles) { + this.downloadedTiles.add(neededTile) + await this.LoadTile(...Tiles.tile_from_index(neededTile)) + } + } catch (e) { + console.error(e) + } finally { + this.isRunning.setData(false) + } + } + + /** + * The requested tile might only contain part of the relation. + * + * This method will download the full relation and return it as geojson if it was incomplete. + * If the feature is already complete (or is not a relation), the feature will be returned + */ + private async patchIncompleteRelations(feature: {properties: {id: string}}, + originalJson: {elements: {type: "node" | "way" | "relation", id: number, } []}): Promise { + if(!feature.properties.id.startsWith("relation")){ + return feature + } + const relationSpec = originalJson.elements.find(f => "relation/"+f.id === feature.properties.id) + const members : {type: string, ref: number}[] = relationSpec["members"] + for (const member of members) { + const isFound = originalJson.elements.some(f => f.id === member.ref && f.type === member.type) + if (isFound) { + continue + } + + // This member is missing. We redownload the entire relation instead + console.debug("Fetching incomplete relation "+feature.properties.id) + return (await OsmObject.DownloadObjectAsync(feature.properties.id)).asGeoJson() + } + return feature; } private async LoadTile(z, x, y): Promise { - if (z > 25) { + if (z >= 22) { throw "This is an absurd high zoom level" } @@ -96,22 +129,29 @@ export default class OsmFeatureSource { const bbox = BBox.fromTile(z, x, y) const url = `${this._backend}/api/0.6/map?bbox=${bbox.minLon},${bbox.minLat},${bbox.maxLon},${bbox.maxLat}` - try { + let error = undefined; + try { const osmJson = await Utils.downloadJson(url) try { - console.debug("Got tile", z, x, y, "from the osm api") + + console.log("Got tile", z, x, y, "from the osm api") this.rawDataHandlers.forEach(handler => handler(osmJson, Tiles.tile_index(z, x, y))) - const geojson = OsmToGeoJson.default(osmJson, + const geojson = > OsmToGeoJson.default(osmJson, // @ts-ignore { flatProperties: true }); + // The geojson contains _all_ features at the given location // We only keep what is needed geojson.features = geojson.features.filter(feature => this.allowedTags.matchesProperties(feature.properties)) + + for (let i = 0; i < geojson.features.length; i++) { + geojson.features[i] = await this.patchIncompleteRelations(geojson.features[i], osmJson) + } geojson.features.forEach(f => { f.properties["_backend"] = this._backend }) @@ -119,7 +159,7 @@ export default class OsmFeatureSource { const index = Tiles.tile_index(z, x, y); new PerLayerFeatureSourceSplitter(this.filteredLayers, this.handleTile, - new StaticFeatureSource(geojson.features, false), + StaticFeatureSource.fromGeojson(geojson.features), { tileIndex: index } @@ -127,9 +167,11 @@ export default class OsmFeatureSource { if (this.options.markTileVisited) { this.options.markTileVisited(index) } - } catch (e) { - console.error("Weird error: ", e) + }catch(e){ + console.error("PANIC: got the tile from the OSM-api, but something crashed handling this tile") + error = e; } + } catch (e) { console.error("Could not download tile", z, x, y, "due to", e, "; retrying with smaller bounds") if (e === "rate limited") { @@ -139,9 +181,11 @@ export default class OsmFeatureSource { await this.LoadTile(z + 1, 1 + x * 2, y * 2) await this.LoadTile(z + 1, x * 2, 1 + y * 2) await this.LoadTile(z + 1, 1 + x * 2, 1 + y * 2) - return; } + if(error !== undefined){ + throw error; + } } diff --git a/Logic/FeatureSource/TiledFeatureSource/TileHierarchy.ts b/Logic/FeatureSource/TiledFeatureSource/TileHierarchy.ts index f2e43069d1..cd6b3dda7e 100644 --- a/Logic/FeatureSource/TiledFeatureSource/TileHierarchy.ts +++ b/Logic/FeatureSource/TiledFeatureSource/TileHierarchy.ts @@ -13,7 +13,7 @@ export default interface TileHierarchy { export class TileHierarchyTools { public static getTiles(hierarchy: TileHierarchy, bbox: BBox): T[] { - const result = [] + const result: T[] = [] hierarchy.loadedTiles.forEach((tile) => { if (tile.bbox.overlapsWith(bbox)) { result.push(tile) diff --git a/Logic/FeatureSource/TiledFeatureSource/TiledFeatureSource.ts b/Logic/FeatureSource/TiledFeatureSource/TiledFeatureSource.ts index 26e3694cff..be0f78e7b3 100644 --- a/Logic/FeatureSource/TiledFeatureSource/TiledFeatureSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/TiledFeatureSource.ts @@ -1,5 +1,5 @@ import FeatureSource, {FeatureSourceForLayer, IndexedFeatureSource, Tiled} from "../FeatureSource"; -import {UIEventSource} from "../../UIEventSource"; +import {Store, UIEventSource} from "../../UIEventSource"; import FilteredLayer from "../../../Models/FilteredLayer"; import TileHierarchy from "./TileHierarchy"; import {Tiles} from "../../../Models/TileRange"; @@ -24,7 +24,7 @@ export default class TiledFeatureSource implements Tiled, IndexedFeatureSource, public readonly maxFeatureCount: number; public readonly name; public readonly features: UIEventSource<{ feature: any, freshness: Date }[]> - public readonly containedIds: UIEventSource> + public readonly containedIds: Store> public readonly bbox: BBox; public readonly tileIndex: number; diff --git a/Logic/GeoOperations.ts b/Logic/GeoOperations.ts index df99a707a2..e758d55463 100644 --- a/Logic/GeoOperations.ts +++ b/Logic/GeoOperations.ts @@ -3,6 +3,7 @@ import {BBox} from "./BBox"; import togpx from "togpx" import Constants from "../Models/Constants"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; +import {AllGeoJSON, booleanWithin, Coord, Feature, Geometry, MultiPolygon, Polygon, Properties} from "@turf/turf"; export class GeoOperations { @@ -28,7 +29,7 @@ export class GeoOperations { * Returns [lon,lat] coordinates * @param feature */ - static centerpointCoordinates(feature: any): [number, number] { + static centerpointCoordinates(feature: AllGeoJSON): [number, number] { return <[number, number]>turf.center(feature).geometry.coordinates; } @@ -141,7 +142,10 @@ export class GeoOperations { return result; } - public static pointInPolygonCoordinates(x: number, y: number, coordinates: [number, number][][]) { + /** + * Helper function which does the heavy lifting for 'inside' + */ + private static pointInPolygonCoordinates(x: number, y: number, coordinates: [number, number][][]) { const inside = GeoOperations.pointWithinRing(x, y, /*This is the outer ring of the polygon */coordinates[0]) if (!inside) { return false; @@ -729,7 +733,45 @@ export class GeoOperations { } + /** + * Takes two points and finds the geographic bearing between them, i.e. the angle measured in degrees from the north line (0 degrees) + */ + public static bearing(a: Coord, b: Coord): number { + return turf.bearing(a, b) + } + /** + * Returns 'true' if one feature contains the other feature + * + * const pond: Feature = { + * "type": "Feature", + * "properties": {"natural":"water","water":"pond"}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [4.362924098968506,50.8435422298544 ], + * [4.363272786140442,50.8435219059949 ], + * [4.363213777542114,50.8437420806679 ], + * [4.362924098968506,50.8435422298544 ] + * ]]}} + * const park: Feature = { + * "type": "Feature", + * "properties": {"leisure":"park"}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [ 4.36073541641235,50.84323737103244 ], + * [ 4.36469435691833, 50.8423905305197 ], + * [ 4.36659336090087, 50.8458997374786 ], + * [ 4.36254858970642, 50.8468007074916 ], + * [ 4.36073541641235, 50.8432373710324 ] + * ]]}} + * GeoOperations.completelyWithin(pond, park) // => true + * GeoOperations.completelyWithin(park, pond) // => false + */ + static completelyWithin(feature: Feature, possiblyEncloingFeature: Feature) : boolean { + return booleanWithin(feature, possiblyEncloingFeature); + } } diff --git a/Logic/ImageProviders/AllImageProviders.ts b/Logic/ImageProviders/AllImageProviders.ts index 3abdc49d09..413e513757 100644 --- a/Logic/ImageProviders/AllImageProviders.ts +++ b/Logic/ImageProviders/AllImageProviders.ts @@ -2,7 +2,7 @@ import {Mapillary} from "./Mapillary"; import {WikimediaImageProvider} from "./WikimediaImageProvider"; import {Imgur} from "./Imgur"; import GenericImageProvider from "./GenericImageProvider"; -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import ImageProvider, {ProvidedImage} from "./ImageProvider"; import {WikidataImageProvider} from "./WikidataImageProvider"; @@ -19,15 +19,25 @@ export default class AllImageProviders { new GenericImageProvider( [].concat(...Imgur.defaultValuePrefix, ...WikimediaImageProvider.commonsPrefixes, ...Mapillary.valuePrefixes) ) - ] + private static providersByName= { + "imgur": Imgur.singleton, +"mapillary": Mapillary.singleton, + "wikidata": WikidataImageProvider.singleton, + "wikimedia": WikimediaImageProvider.singleton + } + + public static byName(name: string){ + return AllImageProviders.providersByName[name.toLowerCase()] + } + public static defaultKeys = [].concat(AllImageProviders.ImageAttributionSource.map(provider => provider.defaultKeyPrefixes)) private static _cache: Map> = new Map>() - public static LoadImagesFor(tags: UIEventSource, tagKey?: string[]): UIEventSource { + public static LoadImagesFor(tags: Store, tagKey?: string[]): Store { if (tags.data.id === undefined) { return undefined; } diff --git a/Logic/ImageProviders/GenericImageProvider.ts b/Logic/ImageProviders/GenericImageProvider.ts index 02011687d1..ab35a65017 100644 --- a/Logic/ImageProviders/GenericImageProvider.ts +++ b/Logic/ImageProviders/GenericImageProvider.ts @@ -34,7 +34,7 @@ export default class GenericImageProvider extends ImageProvider { return undefined; } - protected DownloadAttribution(url: string) { + public DownloadAttribution(url: string) { return undefined } diff --git a/Logic/ImageProviders/ImageProvider.ts b/Logic/ImageProviders/ImageProvider.ts index dded72a0b1..d73e75fd84 100644 --- a/Logic/ImageProviders/ImageProvider.ts +++ b/Logic/ImageProviders/ImageProvider.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import BaseUIElement from "../../UI/BaseUIElement"; import {LicenseInfo} from "./LicenseInfo"; import {Utils} from "../../Utils"; @@ -12,25 +12,13 @@ export interface ProvidedImage { export default abstract class ImageProvider { public abstract readonly defaultKeyPrefixes: string[] - - private _cache = new Map>() - - GetAttributionFor(url: string): UIEventSource { - const cached = this._cache.get(url); - if (cached !== undefined) { - return cached; - } - const src = UIEventSource.FromPromise(this.DownloadAttribution(url)) - this._cache.set(url, src) - return src; - } - + public abstract SourceIcon(backlinkSource?: string): BaseUIElement; /** * Given a properies object, maps it onto _all_ the available pictures for this imageProvider */ - public GetRelevantUrls(allTags: UIEventSource, options?: { + public GetRelevantUrls(allTags: Store, options?: { prefixes?: string[] }): UIEventSource { const prefixes = options?.prefixes ?? this.defaultKeyPrefixes @@ -75,6 +63,6 @@ export default abstract class ImageProvider { public abstract ExtractUrls(key: string, value: string): Promise[]>; - protected abstract DownloadAttribution(url: string): Promise; + public abstract DownloadAttribution(url: string): Promise; } \ No newline at end of file diff --git a/Logic/ImageProviders/Imgur.ts b/Logic/ImageProviders/Imgur.ts index d7de993c00..715813f7b5 100644 --- a/Logic/ImageProviders/Imgur.ts +++ b/Logic/ImageProviders/Imgur.ts @@ -99,18 +99,30 @@ export class Imgur extends ImageProvider { return [] } - protected DownloadAttribution: (url: string) => Promise = async (url: string) => { + /** + * Download the attribution from attribution + * + * const data = {"data":{"id":"I9t6B7B","title":"Station Knokke","description":"author:Pieter Vander Vennet\r\nlicense:CC-BY 4.0\r\nosmid:node\/9812712386","datetime":1655052078,"type":"image\/jpeg","animated":false,"width":2400,"height":1795,"size":910872,"views":2,"bandwidth":1821744,"vote":null,"favorite":false,"nsfw":false,"section":null,"account_url":null,"account_id":null,"is_ad":false,"in_most_viral":false,"has_sound":false,"tags":[],"ad_type":0,"ad_url":"","edited":"0","in_gallery":false,"link":"https:\/\/i.imgur.com\/I9t6B7B.jpg","ad_config":{"safeFlags":["not_in_gallery","share"],"highRiskFlags":[],"unsafeFlags":["sixth_mod_unsafe"],"wallUnsafeFlags":[],"showsAds":false,"showAdLevel":1}},"success":true,"status":200} + * Utils.injectJsonDownloadForTests("https://api.imgur.com/3/image/E0RuAK3", data) + * const licenseInfo = await Imgur.singleton.DownloadAttribution("https://i.imgur.com/E0RuAK3.jpg") + * const expected = new LicenseInfo() + * expected.licenseShortName = "CC-BY 4.0" + * expected.artist = "Pieter Vander Vennet" + * licenseInfo // => expected + */ + public async DownloadAttribution (url: string) : Promise { const hash = url.substr("https://i.imgur.com/".length).split(".jpg")[0]; const apiUrl = 'https://api.imgur.com/3/image/' + hash; - const response = await Utils.downloadJson(apiUrl, {Authorization: 'Client-ID ' + Constants.ImgurApiKey}) + const response = await Utils.downloadJsonCached(apiUrl, 365*24*60*60, + {Authorization: 'Client-ID ' + Constants.ImgurApiKey}) const descr: string = response.data.description ?? ""; const data: any = {}; for (const tag of descr.split("\n")) { const kv = tag.split(":"); const k = kv[0]; - data[k] = kv[1]?.replace("\r", ""); + data[k] = kv[1]?.replace(/\r/g, ""); } diff --git a/Logic/ImageProviders/LicenseInfo.ts b/Logic/ImageProviders/LicenseInfo.ts index b295af1d4f..d6353c5b68 100644 --- a/Logic/ImageProviders/LicenseInfo.ts +++ b/Logic/ImageProviders/LicenseInfo.ts @@ -1,7 +1,7 @@ export class LicenseInfo { title: string = "" artist: string = ""; - license: string = ""; + license: string = undefined; licenseShortName: string = ""; usageTerms: string = ""; attributionRequired: boolean = false; diff --git a/Logic/ImageProviders/Mapillary.ts b/Logic/ImageProviders/Mapillary.ts index 1486c73a21..ffbf14945d 100644 --- a/Logic/ImageProviders/Mapillary.ts +++ b/Logic/ImageProviders/Mapillary.ts @@ -12,11 +12,48 @@ export class Mapillary extends ImageProvider { public static readonly valuePrefixes = [Mapillary.valuePrefix, "http://mapillary.com", "https://mapillary.com", "http://www.mapillary.com", "https://www.mapillary.com"] defaultKeyPrefixes = ["mapillary", "image"] + /** + * Indicates that this is the same URL + * Ignores 'stp' parameter + * + * const a = "https://scontent-bru2-1.xx.fbcdn.net/m1/v/t6/An8xm5SGLt20ETziNqzhhBd8b8S5GHLiIu8N6BbyqHFohFAQoaJJPG8i5yQiSwjYmEqXSfVeoCmpiyBJICEkQK98JOB21kkJoBS8VdhYa-Ty93lBnznQyesJBtKcb32foGut2Hgt10hEMWJbE3dDgA?stp=s1024x768&ccb=10-5&oh=00_AT-ZGTXHzihoaQYBILmEiAEKR64z_IWiTlcAYq_D7Ka0-Q&oe=6278C456&_nc_sid=122ab1" + * const b = "https://scontent-bru2-1.xx.fbcdn.net/m1/v/t6/An8xm5SGLt20ETziNqzhhBd8b8S5GHLiIu8N6BbyqHFohFAQoaJJPG8i5yQiSwjYmEqXSfVeoCmpiyBJICEkQK98JOB21kkJoBS8VdhYa-Ty93lBnznQyesJBtKcb32foGut2Hgt10hEMWJbE3dDgA?stp=s256x192&ccb=10-5&oh=00_AT9BZ1Rpc9zbY_uNu92A_4gj1joiy1b6VtgtLIu_7wh9Bg&oe=6278C456&_nc_sid=122ab1" + * Mapillary.sameUrl(a, b) => true + */ + static sameUrl(a: string, b: string): boolean { + if (a === b) { + return true + } + try { + const aUrl = new URL(a) + const bUrl = new URL(b) + if (aUrl.host !== bUrl.host || aUrl.pathname !== bUrl.pathname) { + return false; + } + let allSame = true; + aUrl.searchParams.forEach((value, key) => { + if (key === "stp") { + // This is the key indicating the image size on mapillary; we ignore it + return + } + if (value !== bUrl.searchParams.get(key)) { + allSame = false + return + } + }) + return allSame; + + } catch (e) { + console.debug("Could not compare ", a, "and", b, "due to", e) + } + return false; + + } + /** * Returns the correct key for API v4.0 */ private static ExtractKeyFromURL(value: string): number { - let key: string; const newApiFormat = value.match(/https?:\/\/www.mapillary.com\/app\/\?pKey=([0-9]*)/) @@ -24,6 +61,8 @@ export class Mapillary extends ImageProvider { key = newApiFormat[1] } else if (value.startsWith(Mapillary.valuePrefix)) { key = value.substring(0, value.lastIndexOf("?")).substring(value.lastIndexOf("/") + 1) + } else if (value.match("[0-9]*")) { + key = value; } const keyAsNumber = Number(key) @@ -42,7 +81,7 @@ export class Mapillary extends ImageProvider { return [this.PrepareUrlAsync(key, value)] } - protected async DownloadAttribution(url: string): Promise { + public async DownloadAttribution(url: string): Promise { const license = new LicenseInfo() license.artist = "Contributor name unavailable"; license.license = "CC BY-SA 4.0"; @@ -58,7 +97,7 @@ export class Mapillary extends ImageProvider { } const metadataUrl = 'https://graph.mapillary.com/' + mapillaryId + '?fields=thumb_1024_url&&access_token=' + Constants.mapillary_client_token_v4; - const response = await Utils.downloadJson(metadataUrl) + const response = await Utils.downloadJsonCached(metadataUrl,60*60) const url = response["thumb_1024_url"]; return { url: url, diff --git a/Logic/ImageProviders/WikidataImageProvider.ts b/Logic/ImageProviders/WikidataImageProvider.ts index c3d72d064d..4bcb7c2fe3 100644 --- a/Logic/ImageProviders/WikidataImageProvider.ts +++ b/Logic/ImageProviders/WikidataImageProvider.ts @@ -46,7 +46,7 @@ export class WikidataImageProvider extends ImageProvider { return allImages } - protected DownloadAttribution(url: string): Promise { + public DownloadAttribution(url: string): Promise { throw new Error("Method not implemented; shouldn't be needed!"); } diff --git a/Logic/ImageProviders/WikimediaImageProvider.ts b/Logic/ImageProviders/WikimediaImageProvider.ts index ec9920640b..352900f04b 100644 --- a/Logic/ImageProviders/WikimediaImageProvider.ts +++ b/Logic/ImageProviders/WikimediaImageProvider.ts @@ -112,7 +112,7 @@ export class WikimediaImageProvider extends ImageProvider { return [Promise.resolve(this.UrlForImage("File:" + value))] } - protected async DownloadAttribution(filename: string): Promise { + public async DownloadAttribution(filename: string): Promise { filename = WikimediaImageProvider.ExtractFileName(filename) if (filename === "") { @@ -123,7 +123,7 @@ export class WikimediaImageProvider extends ImageProvider { "api.php?action=query&prop=imageinfo&iiprop=extmetadata&" + "titles=" + filename + "&format=json&origin=*"; - const data = await Utils.downloadJson(url) + const data = await Utils.downloadJsonCached(url,365*24*60*60) const licenseInfo = new LicenseInfo(); const pageInfo = data.query.pages[-1] if (pageInfo === undefined) { diff --git a/Logic/Maproulette.ts b/Logic/Maproulette.ts new file mode 100644 index 0000000000..470bb75d8a --- /dev/null +++ b/Logic/Maproulette.ts @@ -0,0 +1,39 @@ +import Constants from "../Models/Constants"; + +export default class Maproulette { + /** + * The API endpoint to use + */ + endpoint: string; + + /** + * The API key to use for all requests + */ + private apiKey: string; + + /** + * Creates a new Maproulette instance + * @param endpoint The API endpoint to use + */ + constructor(endpoint: string = "https://maproulette.org/api/v2") { + this.endpoint = endpoint; + this.apiKey = Constants.MaprouletteApiKey; + } + + /** + * Close a task + * @param taskId The task to close + */ + async closeTask(taskId: number): Promise { + const response = await fetch(`${this.endpoint}/task/${taskId}/1`, { + method: "PUT", + headers: { + "Content-Type": "application/json", + "apiKey": this.apiKey, + }, + }); + if (response.status !== 304) { + console.log(`Failed to close task: ${response.status}`); + } + } +} diff --git a/Logic/MetaTagging.ts b/Logic/MetaTagging.ts index a73476d36f..f7224689fb 100644 --- a/Logic/MetaTagging.ts +++ b/Logic/MetaTagging.ts @@ -35,6 +35,7 @@ export default class MetaTagging { return; } + console.log("Recalculating metatags...") const metatagsToApply: SimpleMetaTagger[] = [] for (const metatag of SimpleMetaTaggers.metatags) { if (metatag.includesDates) { @@ -155,7 +156,6 @@ export default class MetaTagging { // Lazy function const f = (feature: any) => { - const oldValue = feature.properties[key] delete feature.properties[key] Object.defineProperty(feature.properties, key, { configurable: true, diff --git a/Logic/Osm/Actions/ChangeTagAction.ts b/Logic/Osm/Actions/ChangeTagAction.ts index 963e8e9468..c4a08f34f0 100644 --- a/Logic/Osm/Actions/ChangeTagAction.ts +++ b/Logic/Osm/Actions/ChangeTagAction.ts @@ -9,7 +9,8 @@ export default class ChangeTagAction extends OsmChangeAction { private readonly _currentTags: any; private readonly _meta: { theme: string, changeType: string }; - constructor(elementId: string, tagsFilter: TagsFilter, currentTags: any, meta: { + constructor(elementId: string, + tagsFilter: TagsFilter, currentTags: any, meta: { theme: string, changeType: "answer" | "soft-delete" | "add-image" | string }) { diff --git a/Logic/Osm/Actions/CreateNewNodeAction.ts b/Logic/Osm/Actions/CreateNewNodeAction.ts index 7a545c7e01..9ddc5a23e1 100644 --- a/Logic/Osm/Actions/CreateNewNodeAction.ts +++ b/Logic/Osm/Actions/CreateNewNodeAction.ts @@ -72,7 +72,7 @@ export default class CreateNewNodeAction extends OsmCreateAction { this.setElementId(id) for (const kv of this._basicTags) { if (typeof kv.value !== "string") { - throw "Invalid value: don't use a regex in a preset" + throw "Invalid value: don't use non-string value in a preset. The tag "+kv.key+"="+kv.value+" is not a string, the value is a "+typeof kv.value } properties[kv.key] = kv.value; } @@ -93,7 +93,7 @@ export default class CreateNewNodeAction extends OsmCreateAction { // Project the point onto the way - + console.log("Snapping a node onto an existing way...") const geojson = this._snapOnto.asGeoJson() const projected = GeoOperations.nearestPoint(geojson, [this._lon, this._lat]) const projectedCoor= <[number, number]>projected.geometry.coordinates diff --git a/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts b/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts index 95911f432f..273b511da5 100644 --- a/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts +++ b/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts @@ -182,7 +182,7 @@ export default class CreateWayWithPointReuseAction extends OsmCreateAction { features.push(newGeometry) } - return new StaticFeatureSource(features, false) + return StaticFeatureSource.fromGeojson(features) } public async CreateChangeDescriptions(changes: Changes): Promise { diff --git a/Logic/Osm/Actions/ReplaceGeometryAction.ts b/Logic/Osm/Actions/ReplaceGeometryAction.ts index f642b2d042..4e125f2a5b 100644 --- a/Logic/Osm/Actions/ReplaceGeometryAction.ts +++ b/Logic/Osm/Actions/ReplaceGeometryAction.ts @@ -11,7 +11,7 @@ import ChangeTagAction from "./ChangeTagAction"; import {And} from "../../Tags/And"; import {Utils} from "../../../Utils"; import {OsmConnection} from "../OsmConnection"; -import {GeoJSONObject} from "@turf/turf"; +import {Feature} from "@turf/turf"; import FeaturePipeline from "../../FeatureSource/FeaturePipeline"; export default class ReplaceGeometryAction extends OsmChangeAction { @@ -83,7 +83,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction { // noinspection JSUnusedGlobalSymbols public async getPreview(): Promise { const {closestIds, allNodesById, detachedNodes, reprojectedNodes} = await this.GetClosestIds(); - const preview: GeoJSONObject[] = closestIds.map((newId, i) => { + const preview: Feature[] = closestIds.map((newId, i) => { if (this.identicalTo[i] !== undefined) { return undefined } @@ -122,7 +122,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction { reprojectedNodes.forEach(({newLat, newLon, nodeId}) => { const origNode = allNodesById.get(nodeId); - const feature = { + const feature : Feature = { type: "Feature", properties: { "move": "yes", @@ -142,7 +142,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction { detachedNodes.forEach(({reason}, id) => { const origNode = allNodesById.get(id); - const feature = { + const feature : Feature = { type: "Feature", properties: { "detach": "yes", @@ -159,7 +159,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction { }) - return new StaticFeatureSource(Utils.NoNull(preview), false) + return StaticFeatureSource.fromGeojson(Utils.NoNull(preview)) } diff --git a/Logic/Osm/Changes.ts b/Logic/Osm/Changes.ts index 17b93b9ae9..ff0cde50bf 100644 --- a/Logic/Osm/Changes.ts +++ b/Logic/Osm/Changes.ts @@ -159,7 +159,7 @@ export class Changes { const recentLocationPoints = locations.map(ff => ff.feature) .filter(feat => feat.geometry.type === "Point") .filter(feat => { - const visitTime = new Date((feat.properties).date) + const visitTime = new Date((feat.properties).date) // In seconds const diff = (now.getTime() - visitTime.getTime()) / 1000 return diff < Constants.nearbyVisitTime; @@ -222,6 +222,11 @@ export class Changes { } console.log("Got the fresh objects!", osmObjects, "pending: ", pending) + if(pending.length == 0){ + console.log("No pending changes...") + return true; + } + const perType = Array.from( Utils.Hist(pending.filter(descr => descr.meta.changeType !== undefined && descr.meta.changeType !== null) .map(descr => descr.meta.changeType)), ([key, count]) => ( @@ -327,7 +332,7 @@ export class Changes { const successes = await Promise.all(Array.from(pendingPerTheme, async ([theme, pendingChanges]) => { try { - const openChangeset = this.state.osmConnection.GetPreference("current-open-changeset-" + theme).map( + const openChangeset = this.state.osmConnection.GetPreference("current-open-changeset-" + theme).sync( str => { const n = Number(str); if (isNaN(n)) { diff --git a/Logic/Osm/Geocoding.ts b/Logic/Osm/Geocoding.ts index 7f8749c508..bb6687faa3 100644 --- a/Logic/Osm/Geocoding.ts +++ b/Logic/Osm/Geocoding.ts @@ -5,7 +5,8 @@ import {BBox} from "../BBox"; export interface GeoCodeResult { display_name: string, lat: number, lon: number, boundingbox: number[], - osm_type: string, osm_id: string + osm_type: "node" | "way" | "relation", + osm_id: string } export class Geocoding { diff --git a/Logic/Osm/OsmConnection.ts b/Logic/Osm/OsmConnection.ts index 5b8408583a..6699e17d62 100644 --- a/Logic/Osm/OsmConnection.ts +++ b/Logic/Osm/OsmConnection.ts @@ -1,5 +1,5 @@ import osmAuth from "osm-auth"; -import {UIEventSource} from "../UIEventSource"; +import {Store, Stores, UIEventSource} from "../UIEventSource"; import {OsmPreferences} from "./OsmPreferences"; import {ChangesetHandler} from "./ChangesetHandler"; import {ElementStorage} from "../ElementStorage"; @@ -44,7 +44,7 @@ export class OsmConnection { } public auth; public userDetails: UIEventSource; - public isLoggedIn: UIEventSource + public isLoggedIn: Store public loadingStatus = new UIEventSource<"not-attempted" | "loading" | "error" | "logged-in">("not-attempted") public preferencesHandler: OsmPreferences; public readonly _oauth_config: { @@ -86,13 +86,15 @@ export class OsmConnection { ud.totalMessages = 42; } const self = this; - this.isLoggedIn = this.userDetails.map(user => user.loggedIn).addCallback(isLoggedIn => { + this.isLoggedIn = this.userDetails.map(user => user.loggedIn); + this.isLoggedIn.addCallback(isLoggedIn => { if (self.userDetails.data.loggedIn == false && isLoggedIn == true) { // We have an inconsistency: the userdetails say we _didn't_ log in, but this actor says we do // This means someone attempted to toggle this; so we attempt to login! self.AttemptLogin() } }); + this._dryRun = options.dryRun ?? new UIEventSource(false); this.updateAuthObject(); @@ -122,8 +124,8 @@ export class OsmConnection { return new ChangesetHandler(this._dryRun, this, allElements, changes, this.auth); } - public GetPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource { - return this.preferencesHandler.GetPreference(key, prefix); + public GetPreference(key: string, defaultValue: string = undefined, prefix: string = "mapcomplete-"): UIEventSource { + return this.preferencesHandler.GetPreference(key, defaultValue, prefix); } public GetLongPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource { @@ -143,6 +145,10 @@ export class OsmConnection { console.log("Logged out") this.loadingStatus.setData("not-attempted") } + + public Backend(): string { + return this._oauth_config.url; + } public AttemptLogin() { this.loadingStatus.setData("loading") @@ -228,7 +234,7 @@ export class OsmConnection { } if (this._dryRun.data) { console.warn("Dryrun enabled - not actually closing note ", id, " with text ", text) - return new Promise((ok, error) => { + return new Promise((ok) => { ok() }); } @@ -236,7 +242,7 @@ export class OsmConnection { this.auth.xhr({ method: 'POST', path: `/api/0.6/notes/${id}/close${textSuffix}`, - }, function (err, response) { + }, function (err, _) { if (err !== null) { error(err) } else { @@ -251,7 +257,7 @@ export class OsmConnection { public reopenNote(id: number | string, text?: string): Promise { if (this._dryRun.data) { console.warn("Dryrun enabled - not actually reopening note ", id, " with text ", text) - return new Promise((ok, error) => { + return new Promise((ok) => { ok() }); } @@ -263,7 +269,7 @@ export class OsmConnection { this.auth.xhr({ method: 'POST', path: `/api/0.6/notes/${id}/reopen${textSuffix}` - }, function (err, response) { + }, function (err, _) { if (err !== null) { error(err) } else { @@ -278,7 +284,7 @@ export class OsmConnection { public openNote(lat: number, lon: number, text: string): Promise<{ id: number }> { if (this._dryRun.data) { console.warn("Dryrun enabled - not actually opening note with text ", text) - return new Promise<{ id: number }>((ok, error) => { + return new Promise<{ id: number }>((ok) => { window.setTimeout(() => ok({id: Math.floor(Math.random() * 1000)}), Math.random() * 5000) }); } @@ -312,10 +318,10 @@ export class OsmConnection { } - public addCommentToNode(id: number | string, text: string): Promise { + public addCommentToNote(id: number | string, text: string): Promise { if (this._dryRun.data) { console.warn("Dryrun enabled - not actually adding comment ", text, "to note ", id) - return new Promise((ok, error) => { + return new Promise((ok) => { ok() }); } @@ -328,7 +334,7 @@ export class OsmConnection { method: 'POST', path: `/api/0.6/notes/${id}/comment?text=${encodeURIComponent(text)}` - }, function (err, response) { + }, function (err, _) { if (err !== null) { error(err) } else { @@ -374,7 +380,7 @@ export class OsmConnection { return; } this.isChecking = true; - UIEventSource.Chronic(5 * 60 * 1000).addCallback(_ => { + Stores.Chronic(5 * 60 * 1000).addCallback(_ => { if (self.isLoggedIn.data) { console.log("Checking for messages") self.AttemptLogin(); diff --git a/Logic/Osm/OsmObject.ts b/Logic/Osm/OsmObject.ts index f0ab35407a..0dd967bb0a 100644 --- a/Logic/Osm/OsmObject.ts +++ b/Logic/Osm/OsmObject.ts @@ -1,8 +1,8 @@ import {Utils} from "../../Utils"; import * as polygon_features from "../../assets/polygon-features.json"; -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import {BBox} from "../BBox"; - +import * as OsmToGeoJson from "osmtogeojson"; export abstract class OsmObject { @@ -38,9 +38,10 @@ export abstract class OsmObject { throw "Backend URL must begin with http" } this.backendURL = url; + this.DownloadObject("id/5") } - public static DownloadObject(id: string, forceRefresh: boolean = false): UIEventSource { + public static DownloadObject(id: string, forceRefresh: boolean = false): Store { let src: UIEventSource; if (OsmObject.objectCache.has(id)) { src = OsmObject.objectCache.get(id) @@ -77,10 +78,10 @@ export abstract class OsmObject { return undefined; } - const full = (id.startsWith("way")) ? "/full" : ""; + const full = (!id.startsWith("node")) ? "/full" : ""; const url = `${OsmObject.backendURL}api/0.6/${id}${full}`; - const rawData = await Utils.downloadJsonCached(url, 1000) - if(rawData === undefined){ + const rawData = await Utils.downloadJsonCached(url, 10000) + if (rawData === undefined) { return undefined } // A full query might contain more then just the requested object (e.g. nodes that are part of a way, where we only want the way) @@ -127,7 +128,7 @@ export abstract class OsmObject { return data.elements.map(wayInfo => { const rel = new OsmRelation(wayInfo.id) rel.LoadData(wayInfo) - rel.SaveExtraData(wayInfo) + rel.SaveExtraData(wayInfo, undefined) return rel }) } @@ -196,7 +197,13 @@ export abstract class OsmObject { break; case("relation"): osmObject = new OsmRelation(idN); - osmObject.SaveExtraData(element, []) + const allGeojsons = OsmToGeoJson.default({elements}, + // @ts-ignore + { + flatProperties: true + }); + const feature = allGeojsons.features.find(f => f.id === osmObject.type + "/" + osmObject.id) + osmObject.SaveExtraData(element, feature) break; } @@ -212,13 +219,16 @@ export abstract class OsmObject { /** * Uses the list of polygon features to determine if the given tags are a polygon or not. + * + * OsmObject.isPolygon({"building":"yes"}) // => true + * OsmObject.isPolygon({"highway":"residential"}) // => false * */ protected static isPolygon(tags: any): boolean { for (const tagsKey in tags) { if (!tags.hasOwnProperty(tagsKey)) { continue } - const polyGuide : { values: Set; blacklist: boolean } = OsmObject.polygonFeatures.get(tagsKey) + const polyGuide: { values: Set; blacklist: boolean } = OsmObject.polygonFeatures.get(tagsKey) if (polyGuide === undefined) { continue } @@ -228,12 +238,12 @@ export abstract class OsmObject { } // is the key contained? Then we have a match if the value is contained const doesMatch = polyGuide.values.has(tags[tagsKey]) - if(polyGuide.blacklist){ + if (polyGuide.blacklist) { return !doesMatch } return doesMatch } - + return false; } @@ -260,7 +270,7 @@ export abstract class OsmObject { public abstract asGeoJson(): any; - abstract SaveExtraData(element: any, allElements: OsmObject[]); + abstract SaveExtraData(element: any, allElements: OsmObject[] | any); /** * Generates the changeset-XML for tags @@ -431,7 +441,7 @@ export class OsmWay extends OsmObject { private isPolygon(): boolean { // Compare lat and lon seperately, as the coordinate array might not be a reference to the same object if (this.coordinates[0][0] !== this.coordinates[this.coordinates.length - 1][0] || - this.coordinates[0][1] !== this.coordinates[this.coordinates.length - 1][1] ) { + this.coordinates[0][1] !== this.coordinates[this.coordinates.length - 1][1]) { return false; // Not closed } return OsmObject.isPolygon(this.tags) @@ -447,6 +457,8 @@ export class OsmRelation extends OsmObject { role: string }[]; + private geojson = undefined + constructor(id: number) { super("relation", id); } @@ -472,11 +484,15 @@ ${members}${tags} } - SaveExtraData(element) { + SaveExtraData(element, geojson) { this.members = element.members; + this.geojson = geojson } asGeoJson(): any { + if (this.geojson !== undefined) { + return this.geojson; + } throw "Not Implemented" } } \ No newline at end of file diff --git a/Logic/Osm/OsmPreferences.ts b/Logic/Osm/OsmPreferences.ts index dc9b5c50e1..5500660629 100644 --- a/Logic/Osm/OsmPreferences.ts +++ b/Logic/Osm/OsmPreferences.ts @@ -1,10 +1,12 @@ import {UIEventSource} from "../UIEventSource"; import UserDetails, {OsmConnection} from "./OsmConnection"; import {Utils} from "../../Utils"; +import {DomEvent} from "leaflet"; +import preventDefault = DomEvent.preventDefault; export class OsmPreferences { - public preferences = new UIEventSource({}, "all-osm-preferences"); + public preferences = new UIEventSource>({}, "all-osm-preferences"); private readonly preferenceSources = new Map>() private auth: any; private userDetails: UIEventSource; @@ -35,7 +37,7 @@ export class OsmPreferences { const allStartWith = prefix + key + "-combined"; // Gives the number of combined preferences - const length = this.GetPreference(allStartWith + "-length", ""); + const length = this.GetPreference(allStartWith + "-length", "", ""); if( (allStartWith + "-length").length > 255){ throw "This preference key is too long, it has "+key.length+" characters, but at most "+(255 - "-length".length - "-combined".length - prefix.length)+" characters are allowed" @@ -51,10 +53,10 @@ export class OsmPreferences { let count = parseInt(length.data); for (let i = 0; i < count; i++) { // Delete all the preferences - self.GetPreference(allStartWith + "-" + i, "") + self.GetPreference(allStartWith + "-" + i, "", "") .setData(""); } - self.GetPreference(allStartWith + "-length", "") + self.GetPreference(allStartWith + "-length", "", "") .setData(""); return } @@ -67,7 +69,7 @@ export class OsmPreferences { if (i > 100) { throw "This long preference is getting very long... " } - self.GetPreference(allStartWith + "-" + i, "").setData(str.substr(0, 255)); + self.GetPreference(allStartWith + "-" + i, "","").setData(str.substr(0, 255)); str = str.substr(255); i++; } @@ -106,7 +108,10 @@ export class OsmPreferences { return source; } - public GetPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource { + public GetPreference(key: string, defaultValue : string = undefined, prefix: string = "mapcomplete-"): UIEventSource { + if(key.startsWith(prefix) && prefix !== ""){ + console.trace("A preference was requested which has a duplicate prefix in its key. This is probably a bug") + } key = prefix + key; key = key.replace(/[:\\\/"' {}.%]/g, '') if (key.length >= 255) { @@ -120,7 +125,7 @@ export class OsmPreferences { this.UpdatePreferences(); } - const pref = new UIEventSource(this.preferences.data[key], "osm-preference:" + key); + const pref = new UIEventSource(this.preferences.data[key] ?? defaultValue, "osm-preference:" + key); pref.addCallback((v) => { this.UploadPreference(key, v); }); @@ -147,7 +152,7 @@ export class OsmPreferences { const matches = prefixes.some(prefix => key.startsWith(prefix)) if (matches) { console.log("Clearing ", key) - self.GetPreference(key, "").setData("") + self.GetPreference(key, "", "").setData("") } } diff --git a/Logic/Osm/Overpass.ts b/Logic/Osm/Overpass.ts index b2205cb363..d4a5621a03 100644 --- a/Logic/Osm/Overpass.ts +++ b/Logic/Osm/Overpass.ts @@ -1,9 +1,10 @@ import {TagsFilter} from "../Tags/TagsFilter"; import RelationsTracker from "./RelationsTracker"; import {Utils} from "../../Utils"; -import {UIEventSource} from "../UIEventSource"; +import {ImmutableStore, Store} from "../UIEventSource"; import {BBox} from "../BBox"; import * as osmtogeojson from "osmtogeojson"; +import {FeatureCollection} from "@turf/turf"; /** * Interfaces overpass to get all the latest data @@ -11,7 +12,7 @@ import * as osmtogeojson from "osmtogeojson"; export class Overpass { private _filter: TagsFilter private readonly _interpreterUrl: string; - private readonly _timeout: UIEventSource; + private readonly _timeout: Store; private readonly _extraScripts: string[]; private _includeMeta: boolean; private _relationTracker: RelationsTracker; @@ -19,10 +20,10 @@ export class Overpass { constructor(filter: TagsFilter, extraScripts: string[], interpreterUrl: string, - timeout?: UIEventSource, + timeout?: Store, relationTracker?: RelationsTracker, includeMeta = true) { - this._timeout = timeout ?? new UIEventSource(90); + this._timeout = timeout ?? new ImmutableStore(90); this._interpreterUrl = interpreterUrl; const optimized = filter.optimize() if(optimized === true || optimized === false){ @@ -34,12 +35,19 @@ export class Overpass { this._relationTracker = relationTracker } - public async queryGeoJson(bounds: BBox): Promise<[any, Date]> { - - let query = this.buildQuery("[bbox:" + bounds.getSouth() + "," + bounds.getWest() + "," + bounds.getNorth() + "," + bounds.getEast() + "]") - + public async queryGeoJson(bounds: BBox): Promise<[FeatureCollection, Date]> { + const bbox = "[bbox:" + bounds.getSouth() + "," + bounds.getWest() + "," + bounds.getNorth() + "," + bounds.getEast() + "]"; + const query = this.buildScript(bbox) + return this.ExecuteQuery(query); + } + + public buildUrl(query: string){ + return `${this._interpreterUrl}?data=${encodeURIComponent(query)}` + } + + public async ExecuteQuery(query: string):Promise<[FeatureCollection, Date]> { const self = this; - const json = await Utils.downloadJson(query) + const json = await Utils.downloadJson(this.buildUrl(query)) if (json.elements.length === 0 && json.remark !== undefined) { console.warn("Timeout or other runtime error while querying overpass", json.remark); @@ -52,11 +60,12 @@ export class Overpass { self._relationTracker?.RegisterRelations(json) const geojson = osmtogeojson.default(json); const osmTime = new Date(json.osm3s.timestamp_osm_base); - return [geojson, osmTime]; + return [ geojson, osmTime]; } /** - * Constructs the actual script + * Constructs the actual script to execute on Overpass + * 'PostCall' can be used to set an extra range, see 'AsOverpassTurboLink' * * import {Tag} from "../Tags/Tag"; * @@ -79,12 +88,41 @@ export class Overpass { } return`[out:json][timeout:${this._timeout.data}]${bbox};(${filter});out body;${this._includeMeta ? 'out meta;' : ''}>;out skel qt;` } - - public buildQuery(bbox: string): string { - const query = this.buildScript(bbox) - return `${this._interpreterUrl}?data=${encodeURIComponent(query)}` + /** + * Constructs the actual script to execute on Overpass with geocoding + * 'PostCall' can be used to set an extra range, see 'AsOverpassTurboLink' + * + */ + public buildScriptInArea(area: {osm_type: "way" | "relation", osm_id: number}, pretty = false): string { + const filters = this._filter.asOverpass() + let filter = "" + for (const filterOr of filters) { + if(pretty){ + filter += " " + } + filter += 'nwr' + filterOr + '(area.searchArea);' + if(pretty){ + filter+="\n" + } + } + for (const extraScript of this._extraScripts) { + filter += '(' + extraScript + ');'; + } + let id = area.osm_id; + if(area.osm_type === "relation"){ + id += 3600000000 + } + return`[out:json][timeout:${this._timeout.data}]; + area(id:${id})->.searchArea; + (${filter}); + out body;${this._includeMeta ? 'out meta;' : ''}>;out skel qt;` } - + + + public buildQuery(bbox: string) { + return this.buildUrl(this.buildScript(bbox)) + } + /** * Little helper method to quickly open overpass-turbo in the browser */ diff --git a/Logic/SimpleMetaTagger.ts b/Logic/SimpleMetaTagger.ts index 714da8e757..ab665e6c37 100644 --- a/Logic/SimpleMetaTagger.ts +++ b/Logic/SimpleMetaTagger.ts @@ -8,6 +8,7 @@ import {FixedUiElement} from "../UI/Base/FixedUiElement"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; import {CountryCoder} from "latlon2country" import Constants from "../Models/Constants"; +import {TagUtils} from "./Tags/TagUtils"; export class SimpleMetaTagger { @@ -32,7 +33,7 @@ export class SimpleMetaTagger { if (!docs.cleanupRetagger) { for (const key of docs.keys) { if (!key.startsWith('_') && key.toLowerCase().indexOf("theme") < 0) { - throw `Incorrect metakey ${key}: it should start with underscore (_)` + throw `Incorrect key for a calculated meta value '${key}': it should start with underscore (_)` } } } @@ -211,6 +212,27 @@ export default class SimpleMetaTaggers { return true; }) ); + private static levels = new SimpleMetaTagger( + { + doc: "Extract the 'level'-tag into a normalized, ';'-separated value", + keys: ["_level"] + }, + ((feature) => { + if (feature.properties["level"] === undefined) { + return false; + } + + const l = feature.properties["level"] + const newValue = TagUtils.LevelsParser(l).join(";") + if(l === newValue) { + return false; + } + feature.properties["level"] = newValue + return true + + }) + ) + private static canonicalize = new SimpleMetaTagger( { doc: "If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. `1meter` will be rewritten to `1m`)", @@ -218,7 +240,7 @@ export default class SimpleMetaTaggers { }, ((feature, _, __, state) => { - const units = Utils.NoNull([].concat(...state?.layoutToUse?.layers?.map(layer => layer.units )?? [])); + const units = Utils.NoNull([].concat(...state?.layoutToUse?.layers?.map(layer => layer.units) ?? [])); if (units.length == 0) { return; } @@ -314,9 +336,10 @@ export default class SimpleMetaTaggers { lat: lat, lon: lon, address: { - country_code: tags._country.toLowerCase() + country_code: tags._country.toLowerCase(), + state: undefined } - }, {tag_key: "opening_hours"}); + }, {tag_key: "opening_hours"}); // Recalculate! return oh.getState() ? "yes" : "no"; @@ -326,12 +349,12 @@ export default class SimpleMetaTaggers { delete tags._isOpen tags["_isOpen"] = "parse_error"; } - }}); - - + } + }); + + const tagsSource = state.allElements.getEventSourceById(feature.properties.id); - - + }) ) @@ -399,7 +422,8 @@ export default class SimpleMetaTaggers { SimpleMetaTaggers.currentTime, SimpleMetaTaggers.objectMetaInfo, SimpleMetaTaggers.noBothButLeftRight, - SimpleMetaTaggers.geometryType + SimpleMetaTaggers.geometryType, + SimpleMetaTaggers.levels ]; public static readonly lazyTags: string[] = [].concat(...SimpleMetaTaggers.metatags.filter(tagger => tagger.isLazy) @@ -486,7 +510,7 @@ export default class SimpleMetaTaggers { const subElements: (string | BaseUIElement)[] = [ new Combine([ "Metatags are extra tags available, in order to display more data or to give better questions.", - "The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.", + "They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.", "**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object" ]).SetClass("flex-col") diff --git a/Logic/State/FeatureSwitchState.ts b/Logic/State/FeatureSwitchState.ts index 787d6a4eed..b14c2fd760 100644 --- a/Logic/State/FeatureSwitchState.ts +++ b/Logic/State/FeatureSwitchState.ts @@ -56,8 +56,9 @@ export default class FeatureSwitchState { ); // It takes the current layout, extracts the default value for this query parameter. A query parameter event source is then retrieved and flattened - return queryParam.map((str) => - str === undefined ? defaultValue : str !== "false" + return queryParam.sync((str) => + str === undefined ? defaultValue : str !== "false", [], + b => b == defaultValue ? undefined : (""+b) ) } @@ -163,7 +164,7 @@ export default class FeatureSwitchState { this.overpassUrl = QueryParameters.GetQueryParameter("overpassUrl", (layoutToUse?.overpassUrl ?? Constants.defaultOverpassUrls).join(","), "Point mapcomplete to a different overpass-instance. Example: https://overpass-api.de/api/interpreter" - ).map(param => param.split(","), [], urls => urls.join(",")) + ).sync(param => param.split(","), [], urls => urls.join(",")) this.overpassTimeout = UIEventSource.asFloat(QueryParameters.GetQueryParameter("overpassTimeout", "" + layoutToUse?.overpassTimeout, diff --git a/Logic/State/MapState.ts b/Logic/State/MapState.ts index 32aba550d6..9af4edf6b9 100644 --- a/Logic/State/MapState.ts +++ b/Logic/State/MapState.ts @@ -1,5 +1,5 @@ import UserRelatedState from "./UserRelatedState"; -import {UIEventSource} from "../UIEventSource"; +import {Store, Stores, UIEventSource} from "../UIEventSource"; import BaseLayer from "../../Models/BaseLayer"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import AvailableBaseLayers from "../Actors/AvailableBaseLayers"; @@ -18,6 +18,20 @@ import {GeoOperations} from "../GeoOperations"; import TitleHandler from "../Actors/TitleHandler"; import {BBox} from "../BBox"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import {TiledStaticFeatureSource} from "../FeatureSource/Sources/StaticFeatureSource"; +import {Translation, TypedTranslation} from "../../UI/i18n/Translation"; +import {Tag} from "../Tags/Tag"; + + +export interface GlobalFilter { + filter: FilterState, + id: string, + onNewPoint: { + safetyCheck: Translation, + confirmAddNew: TypedTranslation<{ preset: Translation }> + tags: Tag[] + } +} /** * Contains all the leaflet-map related state @@ -31,7 +45,7 @@ export default class MapState extends UserRelatedState { /** * A list of currently available background layers */ - public availableBackgroundLayers: UIEventSource; + public availableBackgroundLayers: Store; /** * The current background layer @@ -52,12 +66,12 @@ export default class MapState extends UserRelatedState { /** * The location as delivered by the GPS */ - public currentUserLocation: FeatureSourceForLayer & Tiled; + public currentUserLocation: SimpleFeatureSource; /** * All previously visited points */ - public historicalUserLocations: FeatureSourceForLayer & Tiled; + public historicalUserLocations: SimpleFeatureSource; /** * The number of seconds that the GPS-locations are stored in memory. * Time in seconds @@ -77,6 +91,12 @@ export default class MapState extends UserRelatedState { * Which layers are enabled in the current theme and what filters are applied onto them */ public filteredLayers: UIEventSource = new UIEventSource([], "filteredLayers"); + + /** + * Filters which apply onto all layers + */ + public globalFilters: UIEventSource = new UIEventSource([], "globalFilters") + /** * Which overlays are shown */ @@ -120,9 +140,9 @@ export default class MapState extends UserRelatedState { this.overlayToggles = this.layoutToUse?.tileLayerSources ?.filter(c => c.name !== undefined) ?.map(c => ({ - config: c, - isDisplayed: QueryParameters.GetBooleanQueryParameter("overlay-" + c.id, c.defaultState, "Wether or not the overlay " + c.id + " is shown") - })) ?? [] + config: c, + isDisplayed: QueryParameters.GetBooleanQueryParameter("overlay-" + c.id, c.defaultState, "Wether or not the overlay " + c.id + " is shown") + })) ?? [] this.filteredLayers = this.InitializeFilteredLayers() @@ -176,7 +196,7 @@ export default class MapState extends UserRelatedState { let i = 0 const self = this; - const features: UIEventSource<{ feature: any, freshness: Date }[]> = this.currentBounds.map(bounds => { + const features: Store<{ feature: any, freshness: Date }[]> = this.currentBounds.map(bounds => { if (bounds === undefined) { return [] } @@ -205,7 +225,7 @@ export default class MapState extends UserRelatedState { return [feature] }) - this.currentView = new SimpleFeatureSource(currentViewLayer, 0, features) + this.currentView = new TiledStaticFeatureSource(features, currentViewLayer); } private initGpsLocation() { @@ -289,13 +309,13 @@ export default class MapState extends UserRelatedState { }) let gpsLineLayerDef: FilteredLayer = this.filteredLayers.data.filter(l => l.layerDef.id === "gps_track")[0] if (gpsLineLayerDef !== undefined) { - this.historicalUserLocationsTrack = new SimpleFeatureSource(gpsLineLayerDef, Tiles.tile_index(0, 0, 0), asLine); + this.historicalUserLocationsTrack = new TiledStaticFeatureSource(asLine, gpsLineLayerDef); } } private initHomeLocation() { const empty = [] - const feature = UIEventSource.ListStabilized(this.osmConnection.userDetails.map(userDetails => { + const feature = Stores.ListStabilized(this.osmConnection.userDetails.map(userDetails => { if (userDetails === undefined) { return undefined; @@ -328,32 +348,30 @@ export default class MapState extends UserRelatedState { const flayer = this.filteredLayers.data.filter(l => l.layerDef.id === "home_location")[0] if (flayer !== undefined) { - this.homeLocation = new SimpleFeatureSource(flayer, Tiles.tile_index(0, 0, 0), feature) + this.homeLocation = new TiledStaticFeatureSource(feature, flayer) } } private getPref(key: string, layer: LayerConfig): UIEventSource { - const pref = this.osmConnection - .GetPreference(key) - .map(v => { - if(v === undefined){ + return this.osmConnection + .GetPreference(key, layer.shownByDefault + "") + .sync(v => { + if (v === undefined) { return undefined } return v === "true"; }, [], b => { - if(b === undefined){ + if (b === undefined) { return undefined } return "" + b; }) - pref.setData(layer.shownByDefault) - return pref } private InitializeFilteredLayers() { const layoutToUse = this.layoutToUse; - if(layoutToUse === undefined){ + if (layoutToUse === undefined) { return new UIEventSource([]) } const flayers: FilteredLayer[] = []; @@ -362,16 +380,15 @@ export default class MapState extends UserRelatedState { if (layer.syncSelection === "local") { isDisplayed = LocalStorageSource.GetParsed(layoutToUse.id + "-layer-" + layer.id + "-enabled", layer.shownByDefault) } else if (layer.syncSelection === "theme-only") { - isDisplayed = this.getPref(layoutToUse.id+ "-layer-" + layer.id + "-enabled", layer) + isDisplayed = this.getPref(layoutToUse.id + "-layer-" + layer.id + "-enabled", layer) } else if (layer.syncSelection === "global") { isDisplayed = this.getPref("layer-" + layer.id + "-enabled", layer) } else { - isDisplayed = QueryParameters.GetBooleanQueryParameter("layer-" + layer.id, layer.shownByDefault, "Wether or not layer "+layer.id+" is shown") + isDisplayed = QueryParameters.GetBooleanQueryParameter("layer-" + layer.id, layer.shownByDefault, "Wether or not layer " + layer.id + " is shown") } - const flayer: FilteredLayer = { - isDisplayed: isDisplayed, + isDisplayed, layerDef: layer, appliedFilters: new UIEventSource>(new Map()) }; diff --git a/Logic/State/UserRelatedState.ts b/Logic/State/UserRelatedState.ts index d18f536187..0fc43ebc87 100644 --- a/Logic/State/UserRelatedState.ts +++ b/Logic/State/UserRelatedState.ts @@ -1,7 +1,7 @@ import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import {OsmConnection} from "../Osm/OsmConnection"; import {MangroveIdentity} from "../Web/MangroveReviews"; -import {UIEventSource} from "../UIEventSource"; +import {Store, UIEventSource} from "../UIEventSource"; import {QueryParameters} from "../Web/QueryParameters"; import {LocalStorageSource} from "../Web/LocalStorageSource"; import {Utils} from "../../Utils"; @@ -12,6 +12,8 @@ import {Changes} from "../Osm/Changes"; import ChangeToElementsActor from "../Actors/ChangeToElementsActor"; import PendingChangesUploader from "../Actors/PendingChangesUploader"; import * as translators from "../../assets/translators.json" +import {post} from "jquery"; +import Maproulette from "../Maproulette"; /** * The part of the state which keeps track of user-related stuff, e.g. the OSM-connection, @@ -32,12 +34,15 @@ export default class UserRelatedState extends ElementsState { * The key for mangrove */ public mangroveIdentity: MangroveIdentity; - /** - * Which layers are enabled in the personal theme - */ - public favouriteLayers: UIEventSource; - public readonly isTranslator : UIEventSource; + /** + * Maproulette connection + */ + public maprouletteConnection: Maproulette; + + public readonly isTranslator : Store; + + public readonly installedUserThemes: Store constructor(layoutToUse: LayoutConfig, options?: { attemptLogin: true | boolean }) { super(layoutToUse); @@ -53,6 +58,10 @@ export default class UserRelatedState extends ElementsState { osmConfiguration: <'osm' | 'osm-test'>this.featureSwitchApiURL.data, attemptLogin: options?.attemptLogin }) + const translationMode = this.osmConnection.GetPreference("translation-mode").sync(str => str === undefined ? undefined : str === "true", [], b => b === undefined ? undefined : b+"") + + translationMode.syncWith(Locale.showLinkToWeblate) + this.isTranslator = this.osmConnection.userDetails.map(ud => { if(!ud.loggedIn){ return false; @@ -60,6 +69,7 @@ export default class UserRelatedState extends ElementsState { const name= ud.name.toLowerCase().replace(/\s+/g, '') return translators.contributors.some(c => c.contributor.toLowerCase().replace(/\s+/g, '') === name) }) + this.isTranslator.addCallbackAndRunD(ud => { if(ud){ Locale.showLinkToWeblate.setData(true) @@ -76,6 +86,8 @@ export default class UserRelatedState extends ElementsState { this.osmConnection.GetLongPreference("identity", "mangrove") ); + this.maprouletteConnection = new Maproulette(); + if (layoutToUse?.hideFromOverview) { this.osmConnection.isLoggedIn.addCallbackAndRunD(loggedIn => { if (loggedIn) { @@ -99,18 +111,9 @@ export default class UserRelatedState extends ElementsState { })) } - - // Important: the favourite layers are initialized _after_ the installed themes, as these might contain an installedTheme - this.favouriteLayers = LocalStorageSource.Get("favouriteLayers") - .syncWith(this.osmConnection.GetLongPreference("favouriteLayers")) - .map( - (str) => Utils.Dedup(str?.split(";")) ?? [], - [], - (layers) => Utils.Dedup(layers)?.join(";") - ); - this.InitializeLanguage(); new SelectedElementTagsUpdater(this) + this.installedUserThemes = this.InitInstalledUserThemes(); } @@ -137,7 +140,53 @@ export default class UserRelatedState extends ElementsState { Locale.language.setData(layoutToUse.language[0]); } }) - .ping(); + Locale.language.ping(); + } + + private InitInstalledUserThemes(): Store{ + const prefix = "mapcomplete-unofficial-theme-"; + const postfix = "-combined-length" + return this.osmConnection.preferencesHandler.preferences.map(prefs => + Object.keys(prefs) + .filter(k => k.startsWith(prefix) && k.endsWith(postfix)) + .map(k => k.substring(prefix.length, k.length - postfix.length)) + ) + } + + public GetUnofficialTheme(id: string): { + id: string + icon: string, + title: any, + shortDescription: any, + definition?: any, + isOfficial: boolean + } | undefined { + console.log("GETTING UNOFFICIAL THEME") + const pref = this.osmConnection.GetLongPreference("unofficial-theme-"+id) + const str = pref.data + + if (str === undefined || str === "undefined" || str === "") { + pref.setData(null) + return undefined + } + + try { + const value: { + id: string + icon: string, + title: any, + shortDescription: any, + definition?: any, + isOfficial: boolean + } = JSON.parse(str) + value.isOfficial = false + return value; + } catch (e) { + console.warn("Removing theme " + id + " as it could not be parsed from the preferences; the content is:", str) + pref.setData(null) + return undefined + } + } } \ No newline at end of file diff --git a/Logic/Tags/And.ts b/Logic/Tags/And.ts index 25799da1ce..e98e92e71c 100644 --- a/Logic/Tags/And.ts +++ b/Logic/Tags/And.ts @@ -5,6 +5,7 @@ import {Tag} from "./Tag"; import {RegexTag} from "./RegexTag"; export class And extends TagsFilter { + public and: TagsFilter[] constructor(and: TagsFilter[]) { @@ -373,5 +374,9 @@ export class And extends TagsFilter { return !this.and.some(t => !t.isNegative()); } + visit(f: (TagsFilter: any) => void) { + f(this) + this.and.forEach(sub => sub.visit(f)) + } } \ No newline at end of file diff --git a/Logic/Tags/ComparingTag.ts b/Logic/Tags/ComparingTag.ts index fa543350fe..8abbdbb161 100644 --- a/Logic/Tags/ComparingTag.ts +++ b/Logic/Tags/ComparingTag.ts @@ -52,10 +52,6 @@ export default class ComparingTag implements TagsFilter { return []; } - AsJson() { - return this.asHumanString(false, false, {}) - } - optimize(): TagsFilter | boolean { return this; } @@ -63,4 +59,8 @@ export default class ComparingTag implements TagsFilter { isNegative(): boolean { return true; } + + visit(f: (TagsFilter) => void) { + f(this) + } } \ No newline at end of file diff --git a/Logic/Tags/Or.ts b/Logic/Tags/Or.ts index b2aa7ec27c..d8b4feda79 100644 --- a/Logic/Tags/Or.ts +++ b/Logic/Tags/Or.ts @@ -261,6 +261,11 @@ export class Or extends TagsFilter { return this.or.some(t => t.isNegative()); } + visit(f: (TagsFilter: any) => void) { + f(this) + this.or.forEach(t => t.visit(f)) + } + } diff --git a/Logic/Tags/RegexTag.ts b/Logic/Tags/RegexTag.ts index a5db5a77f8..91dfb06a0f 100644 --- a/Logic/Tags/RegexTag.ts +++ b/Logic/Tags/RegexTag.ts @@ -43,6 +43,9 @@ export class RegexTag extends TagsFilter { * * // A regextag with a regex key should give correct output * new RegexTag(/a.*x/, /^..*$/).asOverpass() // => [ `[~"a.*x"~\"^..*$\"]` ] + * + * // A regextag with a case invariant flag should signal this to overpass + * new RegexTag("key", /^.*value.*$/i).asOverpass() // => [ `["key"~\"^.*value.*$\",i]` ] */ asOverpass(): string[] { const inv =this.invert ? "!" : "" @@ -57,7 +60,8 @@ export class RegexTag extends TagsFilter { // anything goes return [`[${inv}"${this.key}"]`] } - return [`["${this.key}"${inv}~"${src}"]`] + const modifier = this.value.ignoreCase ? ",i" : "" + return [`["${this.key}"${inv}~"${src}"${modifier}]`] }else{ // Normal key and normal value return [`["${this.key}"${inv}="${this.value}"]`]; @@ -256,10 +260,6 @@ export class RegexTag extends TagsFilter { return [] } - AsJson() { - return this.asHumanString() - } - optimize(): TagsFilter | boolean { return this; } @@ -267,4 +267,8 @@ export class RegexTag extends TagsFilter { isNegative(): boolean { return this.invert; } + + visit(f: (TagsFilter) => void) { + f(this) + } } \ No newline at end of file diff --git a/Logic/Tags/SubstitutingTag.ts b/Logic/Tags/SubstitutingTag.ts index 0cb941f140..ccc097956d 100644 --- a/Logic/Tags/SubstitutingTag.ts +++ b/Logic/Tags/SubstitutingTag.ts @@ -82,10 +82,6 @@ export default class SubstitutingTag implements TagsFilter { return [{k: this._key, v: v}]; } - AsJson() { - return this._key + (this._invert ? '!' : '') + "=" + this._value - } - optimize(): TagsFilter | boolean { return this; } @@ -93,4 +89,8 @@ export default class SubstitutingTag implements TagsFilter { isNegative(): boolean { return false; } + + visit(f: (TagsFilter: any) => void) { + f(this) + } } \ No newline at end of file diff --git a/Logic/Tags/Tag.ts b/Logic/Tags/Tag.ts index f8ee64aa00..803b793908 100644 --- a/Logic/Tags/Tag.ts +++ b/Logic/Tags/Tag.ts @@ -1,11 +1,10 @@ import {Utils} from "../../Utils"; -import {RegexTag} from "./RegexTag"; import {TagsFilter} from "./TagsFilter"; + export class Tag extends TagsFilter { public key: string public value: string - constructor(key: string, value: string) { super() this.key = key @@ -14,7 +13,7 @@ export class Tag extends TagsFilter { throw "Invalid key: undefined or empty"; } if (value === undefined) { - throw "Invalid value: value is undefined"; + throw `Invalid value while constructing a Tag with key '${key}': value is undefined`; } if (value === "*") { console.warn(`Got suspicious tag ${key}=* ; did you mean ${key}~* ?`) @@ -23,6 +22,8 @@ export class Tag extends TagsFilter { /** + * imort + * * const tag = new Tag("key","value") * tag.matchesProperties({"key": "value"}) // => true * tag.matchesProperties({"key": "z"}) // => false @@ -89,6 +90,9 @@ export class Tag extends TagsFilter { } /** + * + * import {RegexTag} from "./RegexTag"; + * * // should handle advanced regexes * new Tag("key", "aaa").shadows(new RegexTag("key", /a+/)) // => true * new Tag("key","value").shadows(new RegexTag("key", /^..*$/, true)) // => false @@ -129,4 +133,8 @@ export class Tag extends TagsFilter { isNegative(): boolean { return false; } + + visit(f: (TagsFilter) => void) { + f(this) + } } \ No newline at end of file diff --git a/Logic/Tags/TagUtils.ts b/Logic/Tags/TagUtils.ts index 064c9cab32..c9c9836e75 100644 --- a/Logic/Tags/TagUtils.ts +++ b/Logic/Tags/TagUtils.ts @@ -6,10 +6,12 @@ import ComparingTag from "./ComparingTag"; import {RegexTag} from "./RegexTag"; import SubstitutingTag from "./SubstitutingTag"; import {Or} from "./Or"; -import {AndOrTagConfigJson} from "../../Models/ThemeConfig/Json/TagConfigJson"; +import {TagConfigJson} from "../../Models/ThemeConfig/Json/TagConfigJson"; import {isRegExp} from "util"; import * as key_counts from "../../assets/key_totals.json" +type Tags = Record + export class TagUtils { private static keyCounts: { keys: any, tags: any } = key_counts["default"] ?? key_counts private static comparators @@ -56,11 +58,17 @@ export class TagUtils { return true; } + static SplitKeys(tagsFilters: TagsFilter[]): Record { + return this.SplitKeysRegex(tagsFilters, false); + } + /*** - * Creates a hash {key --> [values : string | Regex ]}, with all the values present in the tagsfilter + * Creates a hash {key --> [values : string | RegexTag ]}, with all the values present in the tagsfilter + * + * TagUtils.SplitKeysRegex([new Tag("isced:level", "bachelor; master")], true) // => {"isced:level": ["bachelor","master"]} */ - static SplitKeys(tagsFilters: TagsFilter[], allowRegex = false) { - const keyValues = {} // Map string -> string[] + static SplitKeysRegex(tagsFilters: TagsFilter[], allowRegex: boolean): Record { + const keyValues: Record = {} tagsFilters = [...tagsFilters] // copy all, use as queue while (tagsFilters.length > 0) { const tagsFilter = tagsFilters.shift(); @@ -78,7 +86,7 @@ export class TagUtils { if (keyValues[tagsFilter.key] === undefined) { keyValues[tagsFilter.key] = []; } - keyValues[tagsFilter.key].push(...tagsFilter.value.split(";")); + keyValues[tagsFilter.key].push(...tagsFilter.value.split(";").map(s => s.trim())); continue; } @@ -107,12 +115,21 @@ export class TagUtils { * Given multiple tagsfilters which can be used as answer, will take the tags with the same keys together as set. * E.g: * - * FlattenMultiAnswer([and: [ "x=a", "y=0;1"], and: ["x=b", "y=2"], and: ["x=", "y=3"]]) - * will result in - * ["x=a;b", "y=0;1;2;3"] + * const tag = TagUtils.Tag({"and": [ + * { + * and: [ "x=a", "y=0;1"], + * }, + * { + * and: ["x=", "y=3"] + * }, + * { + * and: ["x=b", "y=2"] + * } + * ]}) + * TagUtils.FlattenMultiAnswer([tag]) // => TagUtils.Tag({and:["x=a;b", "y=0;1;2;3"] }) * - * @param tagsFilters - * @constructor + * TagUtils.FlattenMultiAnswer(([new Tag("x","y"), new Tag("a","b")])) // => new And([new Tag("x","y"), new Tag("a","b")]) + * TagUtils.FlattenMultiAnswer(([new Tag("x","")])) // => new And([new Tag("x","")]) */ static FlattenMultiAnswer(tagsFilters: TagsFilter[]): And { if (tagsFilters === undefined) { @@ -122,7 +139,9 @@ export class TagUtils { let keyValues = TagUtils.SplitKeys(tagsFilters); const and: TagsFilter[] = [] for (const key in keyValues) { - and.push(new Tag(key, Utils.Dedup(keyValues[key]).join(";"))); + const values = Utils.Dedup(keyValues[key]).filter(v => v !== "") + values.sort() + and.push(new Tag(key, values.join(";"))); } return new And(and); } @@ -130,19 +149,23 @@ export class TagUtils { /** * Returns true if the properties match the tagsFilter, interpreted as a multikey. * Note that this might match a regex tag - * @param tag - * @param properties - * @constructor + * + * TagUtils.MatchesMultiAnswer(new Tag("isced:level","bachelor"), {"isced:level":"bachelor; master"}) // => true + * TagUtils.MatchesMultiAnswer(new Tag("isced:level","master"), {"isced:level":"bachelor;master"}) // => true + * TagUtils.MatchesMultiAnswer(new Tag("isced:level","doctorate"), {"isced:level":"bachelor; master"}) // => false + * + * // should match with a space too + * TagUtils.MatchesMultiAnswer(new Tag("isced:level","master"), {"isced:level":"bachelor; master"}) // => true */ - static MatchesMultiAnswer(tag: TagsFilter, properties: any): boolean { - const splitted = TagUtils.SplitKeys([tag], true); + static MatchesMultiAnswer(tag: TagsFilter, properties: Tags): boolean { + const splitted = TagUtils.SplitKeysRegex([tag], true); for (const splitKey in splitted) { const neededValues = splitted[splitKey]; if (properties[splitKey] === undefined) { return false; } - const actualValue = properties[splitKey].split(";"); + const actualValue = properties[splitKey].split(";").map(s => s.trim()); for (const neededValue of neededValues) { if (neededValue instanceof RegexTag) { @@ -169,6 +192,7 @@ export class TagUtils { /** * Returns wether or not a keys is (probably) a valid key. + * See 'Tags_format.md' for an overview of what every tag does * * // should accept common keys * TagUtils.isValidKey("name") // => true @@ -200,22 +224,31 @@ export class TagUtils { * * TagUtils.Tag("key=value") // => new Tag("key", "value") * TagUtils.Tag("key=") // => new Tag("key", "") - * TagUtils.Tag("key!=") // => new RegexTag("key", /^..*$/) - * TagUtils.Tag("key~*") // => new RegexTag("key", /^..*$/) + * TagUtils.Tag("key!=") // => new RegexTag("key", /^..*$/s) + * TagUtils.Tag("key~*") // => new RegexTag("key", /^..*$/s) + * TagUtils.Tag("name~i~somename") // => new RegexTag("name", /^somename$/si) * TagUtils.Tag("key!=value") // => new RegexTag("key", "value", true) - * TagUtils.Tag("vending~.*bicycle_tube.*") // => new RegexTag("vending", /^.*bicycle_tube.*$/) - * TagUtils.Tag("x!~y") // => new RegexTag("x", /^y$/, true) + * TagUtils.Tag("vending~.*bicycle_tube.*") // => new RegexTag("vending", /^.*bicycle_tube.*$/s) + * TagUtils.Tag("x!~y") // => new RegexTag("x", /^y$/s, true) * TagUtils.Tag({"and": ["key=value", "x=y"]}) // => new And([new Tag("key","value"), new Tag("x","y")]) - * TagUtils.Tag("name~[sS]peelbos.*") // => new RegexTag("name", /^[sS]peelbos.*$/) + * TagUtils.Tag("name~[sS]peelbos.*") // => new RegexTag("name", /^[sS]peelbos.*$/s) * TagUtils.Tag("survey:date:={_date:now}") // => new SubstitutingTag("survey:date", "{_date:now}") - * TagUtils.Tag("xyz!~\\[\\]") // => new RegexTag("xyz", /^\[\]$/, true) - * TagUtils.Tag("tags~(.*;)?amenity=public_bookcase(;.*)?") // => new RegexTag("tags", /^(.*;)?amenity=public_bookcase(;.*)?$/) - * TagUtils.Tag("service:bicycle:.*~~*") // => new RegexTag(/^service:bicycle:.*$/, /^..*$/) + * TagUtils.Tag("xyz!~\\[\\]") // => new RegexTag("xyz", /^\[\]$/s, true) + * TagUtils.Tag("tags~(.*;)?amenity=public_bookcase(;.*)?") // => new RegexTag("tags", /^(.*;)?amenity=public_bookcase(;.*)?$/s) + * TagUtils.Tag("service:bicycle:.*~~*") // => new RegexTag(/^service:bicycle:.*$/, /^..*$/s) + * TagUtils.Tag("_first_comment~.*{search}.*") // => new RegexTag('_first_comment', /^.*{search}.*$/s) * * TagUtils.Tag("xyz<5").matchesProperties({xyz: 4}) // => true * TagUtils.Tag("xyz<5").matchesProperties({xyz: 5}) // => false + * + * // RegexTags must match values with newlines + * TagUtils.Tag("note~.*aed.*").matchesProperties({note: "Hier bevindt zich wss een defibrillator. \\n\\n De aed bevindt zich op de 5de verdieping"}) // => true + * TagUtils.Tag("note~i~.*aed.*").matchesProperties({note: "Hier bevindt zich wss een defibrillator. \\n\\n De AED bevindt zich op de 5de verdieping"}) // => true + * + * // Must match case insensitive + * TagUtils.Tag("name~i~somename").matchesProperties({name: "SoMeName"}) // => true */ - public static Tag(json: AndOrTagConfigJson | string, context: string = ""): TagsFilter { + public static Tag(json: TagConfigJson, context: string = ""): TagsFilter { try { return this.TagUnsafe(json, context); } catch (e) { @@ -224,6 +257,20 @@ export class TagUtils { } } + /** + * Same as `.Tag`, except that this will return undefined if the json is undefined + * @param json + * @param context + * @constructor + */ + public static TagD(json?: TagConfigJson, context: string = ""): TagsFilter | undefined { + if (json === undefined) { + return undefined + } + return TagUtils.Tag(json, context) + } + + /** * INLINE sort of the given list */ @@ -247,22 +294,49 @@ export class TagUtils { return r } - private static TagUnsafe(json: AndOrTagConfigJson | string, context: string = ""): TagsFilter { + /** + * Parses the various parts of a regex tag + * + * TagUtils.parseRegexOperator("key~value") // => {invert: false, key: "key", value: "value", modifier: ""} + * TagUtils.parseRegexOperator("key!~value") // => {invert: true, key: "key", value: "value", modifier: ""} + * TagUtils.parseRegexOperator("key~i~value") // => {invert: false, key: "key", value: "value", modifier: "i"} + * TagUtils.parseRegexOperator("key!~i~someweirdvalue~qsdf") // => {invert: true, key: "key", value: "someweirdvalue~qsdf", modifier: "i"} + * TagUtils.parseRegexOperator("_image:0~value") // => {invert: false, key: "_image:0", value: "value", modifier: ""} + * TagUtils.parseRegexOperator("key~*") // => {invert: false, key: "key", value: "*", modifier: ""} + * TagUtils.parseRegexOperator("Brugs volgnummer~*") // => {invert: false, key: "Brugs volgnummer", value: "*", modifier: ""} + * TagUtils.parseRegexOperator("socket:USB-A~*") // => {invert: false, key: "socket:USB-A", value: "*", modifier: ""} + * TagUtils.parseRegexOperator("tileId~*") // => {invert: false, key: "tileId", value: "*", modifier: ""} + */ + public static parseRegexOperator(tag: string): { + invert: boolean; + key: string; + value: string; + modifier: "i" | ""; + } | null { + const match = tag.match(/^([_a-zA-Z0-9: -]+)(!)?~([i]~)?(.*)$/); + if (match == null) { + return null; + } + const [_, key, invert, modifier, value] = match; + return {key, value, invert: invert == "!", modifier: (modifier == "i~" ? "i" : "")}; + } + + private static TagUnsafe(json: TagConfigJson, context: string = ""): TagsFilter { if (json === undefined) { - throw `Error while parsing a tag: 'json' is undefined in ${context}. Make sure all the tags are defined and at least one tag is present in a complex expression` + throw new Error(`Error while parsing a tag: 'json' is undefined in ${context}. Make sure all the tags are defined and at least one tag is present in a complex expression`) } if (typeof (json) != "string") { - if (json.and !== undefined && json.or !== undefined) { + if (json["and"] !== undefined && json["or"] !== undefined) { throw `Error while parsing a TagConfig: got an object where both 'and' and 'or' are defined` } - if (json.and !== undefined) { - return new And(json.and.map(t => TagUtils.Tag(t, context))); + if (json["and"] !== undefined) { + return new And(json["and"].map(t => TagUtils.Tag(t, context))); } - if (json.or !== undefined) { - return new Or(json.or.map(t => TagUtils.Tag(t, context))); + if (json["or"] !== undefined) { + return new Or(json["or"].map(t => TagUtils.Tag(t, context))); } - throw "At " + context + ": unrecognized tag" + throw `At ${context}: unrecognized tag: ${JSON.stringify(json)}` } @@ -300,17 +374,6 @@ export class TagUtils { } } - if (tag.indexOf("!~") >= 0) { - const split = Utils.SplitFirst(tag, "!~"); - if (split[1] === "*") { - throw `Don't use 'key!~*' - use 'key=' instead (empty string as value (in the tag ${tag} while parsing ${context})` - } - return new RegexTag( - split[0], - new RegExp("^"+ split[1]+"$"), - true - ); - } if (tag.indexOf("~~") >= 0) { const split = Utils.SplitFirst(tag, "~~"); if (split[1] === "*") { @@ -318,9 +381,29 @@ export class TagUtils { } return new RegexTag( new RegExp("^" + split[0] + "$"), - new RegExp("^" + split[1] + "$") + new RegExp("^" + split[1] + "$", "s") ); } + const withRegex = TagUtils.parseRegexOperator(tag) + if (withRegex != null) { + if (withRegex.value === "*" && withRegex.invert) { + throw `Don't use 'key!~*' - use 'key=' instead (empty string as value (in the tag ${tag} while parsing ${context})` + } + if (withRegex.value === "") { + throw "Detected a regextag with an empty regex; this is not allowed. Use '" + withRegex.key + "='instead (at " + context + ")" + } + + let value: string | RegExp = withRegex.value; + if (value === "*") { + value = "..*" + } + return new RegexTag( + withRegex.key, + new RegExp("^" + value + "$", "s" + withRegex.modifier), + withRegex.invert + ); + } + if (tag.indexOf("!:=") >= 0) { const split = Utils.SplitFirst(tag, "!:="); return new SubstitutingTag(split[0], split[1], true); @@ -337,7 +420,7 @@ export class TagUtils { } if (split[1] === "") { split[1] = "..*" - return new RegexTag(split[0], /^..*$/) + return new RegexTag(split[0], /^..*$/s) } return new RegexTag( split[0], @@ -345,22 +428,8 @@ export class TagUtils { true ); } - if (tag.indexOf("~") >= 0) { - const split = Utils.SplitFirst(tag, "~"); - let value : string | RegExp = split[1] - if (split[1] === "") { - throw "Detected a regextag with an empty regex; this is not allowed. Use '" + split[0] + "='instead (at " + context + ")" - } - if (value === "*") { - value = /^..*$/ - }else { - value = new RegExp("^"+value+"$") - } - return new RegexTag( - split[0], - value - ); - } + + if (tag.indexOf("=") >= 0) { @@ -423,39 +492,49 @@ export class TagUtils { } return " (" + joined + ") " } + + public static ExtractSimpleTags(tf: TagsFilter) : Tag[] { + const result: Tag[] = [] + tf.visit(t => { + if(t instanceof Tag){ + result.push(t) + } + }) + return result; + } /** * Returns 'true' is opposite tags are detected. * Note that this method will never work perfectly - * + * * // should be false for some simple cases * TagUtils.ContainsOppositeTags([new Tag("key", "value"), new Tag("key0", "value")]) // => false * TagUtils.ContainsOppositeTags([new Tag("key", "value"), new Tag("key", "value0")]) // => false - * + * * // should detect simple cases * TagUtils.ContainsOppositeTags([new Tag("key", "value"), new RegexTag("key", "value", true)]) // => true * TagUtils.ContainsOppositeTags([new Tag("key", "value"), new RegexTag("key", /value/, true)]) // => true */ - public static ContainsOppositeTags(tags: (TagsFilter)[]) : boolean{ - for (let i = 0; i < tags.length; i++){ + public static ContainsOppositeTags(tags: (TagsFilter)[]): boolean { + for (let i = 0; i < tags.length; i++) { const tag = tags[i]; - if(!(tag instanceof Tag || tag instanceof RegexTag)){ + if (!(tag instanceof Tag || tag instanceof RegexTag)) { continue } - for (let j = i + 1; j < tags.length; j++){ + for (let j = i + 1; j < tags.length; j++) { const guard = tags[j]; - if(!(guard instanceof Tag || guard instanceof RegexTag)){ + if (!(guard instanceof Tag || guard instanceof RegexTag)) { continue } - if(guard.key !== tag.key) { + if (guard.key !== tag.key) { // Different keys: they can _never_ be opposites continue } - if((guard.value["source"] ?? guard.value) !== (tag.value["source"] ?? tag.value)){ + if ((guard.value["source"] ?? guard.value) !== (tag.value["source"] ?? tag.value)) { // different values: the can _never_ be opposites continue } - if( (guard["invert"] ?? false) !== (tag["invert"] ?? false) ) { + if ((guard["invert"] ?? false) !== (tag["invert"] ?? false)) { // The 'invert' flags are opposite, the key and value is the same for both // This means we have found opposite tags! return true @@ -470,28 +549,28 @@ export class TagUtils { * Returns a filtered version of 'listToFilter'. * For a list [t0, t1, t2], If `blackList` contains an equivalent (or broader) match of any `t`, this respective `t` is dropped from the returned list * Ignores nested ORS and ANDS - * + * * TagUtils.removeShadowedElementsFrom([new Tag("key","value")], [new Tag("key","value"), new Tag("other_key","value")]) // => [new Tag("other_key","value")] */ - public static removeShadowedElementsFrom(blacklist: TagsFilter[], listToFilter: TagsFilter[] ) : TagsFilter[] { + public static removeShadowedElementsFrom(blacklist: TagsFilter[], listToFilter: TagsFilter[]): TagsFilter[] { return listToFilter.filter(tf => !blacklist.some(guard => guard.shadows(tf))) } /** * Returns a filtered version of 'listToFilter', where no duplicates and no equivalents exists. - * + * * TagUtils.removeEquivalents([new RegexTag("key", /^..*$/), new Tag("key","value")]) // => [new Tag("key", "value")] */ - public static removeEquivalents( listToFilter: (Tag | RegexTag)[]) : TagsFilter[] { + public static removeEquivalents(listToFilter: (Tag | RegexTag)[]): TagsFilter[] { const result: TagsFilter[] = [] - outer: for (let i = 0; i < listToFilter.length; i++){ + outer: for (let i = 0; i < listToFilter.length; i++) { const tag = listToFilter[i]; - for (let j = 0; j < listToFilter.length; j++){ - if(i === j){ + for (let j = 0; j < listToFilter.length; j++) { + if (i === j) { continue } const guard = listToFilter[j]; - if(guard.shadows(tag)) { + if (guard.shadows(tag)) { // the guard 'kills' the tag: we continue the outer loop without adding the tag continue outer; } @@ -500,7 +579,7 @@ export class TagUtils { } return result } - + /** * Returns `true` if at least one element of the 'guards' shadows one element of the 'listToFilter'. * @@ -508,10 +587,43 @@ export class TagUtils { * TagUtils.containsEquivalents([new Tag("key","value")], [ new Tag("other_key","value")]) // => false * TagUtils.containsEquivalents([new Tag("key","value")], [ new Tag("key","other_value")]) // => false */ - public static containsEquivalents( guards: TagsFilter[], listToFilter: TagsFilter[] ) : boolean { + public static containsEquivalents(guards: TagsFilter[], listToFilter: TagsFilter[]): boolean { return listToFilter.some(tf => guards.some(guard => guard.shadows(tf))) } - - + + + /** + * Parses a level specifier to the various available levels + * + * TagUtils.LevelsParser("0") // => ["0"] + * TagUtils.LevelsParser("1") // => ["1"] + * TagUtils.LevelsParser("0;2") // => ["0","2"] + * TagUtils.LevelsParser("0-5") // => ["0","1","2","3","4","5"] + * TagUtils.LevelsParser("0") // => ["0"] + * TagUtils.LevelsParser("-1") // => ["-1"] + * TagUtils.LevelsParser("0;-1") // => ["0", "-1"] + * TagUtils.LevelsParser(undefined) // => [] + */ + public static LevelsParser(level: string): string[] { + let spec = Utils.NoNull([level]) + spec = [].concat(...spec.map(s => s?.split(";"))) + spec = [].concat(...spec.map(s => { + s = s.trim() + if (s.indexOf("-") < 0 || s.startsWith("-")) { + return s + } + const [start, end] = s.split("-").map(s => Number(s.trim())) + if (isNaN(start) || isNaN(end)) { + return undefined + } + const values = [] + for (let i = start; i <= end; i++) { + values.push(i + "") + } + return values + })) + return Utils.NoNull(spec); + } + } \ No newline at end of file diff --git a/Logic/Tags/TagsFilter.ts b/Logic/Tags/TagsFilter.ts index a99251bb2a..e02739c7ba 100644 --- a/Logic/Tags/TagsFilter.ts +++ b/Logic/Tags/TagsFilter.ts @@ -20,7 +20,7 @@ export abstract class TagsFilter { * Returns all normal key/value pairs * Regex tags, substitutions, comparisons, ... are exempt */ - abstract usedTags(): {key: string, value: string}[]; + abstract usedTags(): { key: string, value: string }[]; /** * Converts the tagsFilter into a list of key-values that should be uploaded to OSM. @@ -34,22 +34,27 @@ export abstract class TagsFilter { * Returns an optimized version (or self) of this tagsFilter */ abstract optimize(): TagsFilter | boolean; - + /** * Returns 'true' if the tagsfilter might select all features (i.e. the filter will return everything from OSM, except a few entries). - * + * * A typical negative tagsfilter is 'key!=value' - * + * * import {RegexTag} from "./RegexTag"; * import {Tag} from "./Tag"; * import {And} from "./And"; - * import {Or} from "./Or"; - * + * import {Or} from "./Or"; + * * new Tag("key","value").isNegative() // => false * new And([new RegexTag("key","value", true)]).isNegative() // => true * new Or([new RegexTag("key","value", true), new Tag("x","y")]).isNegative() // => true * new And([new RegexTag("key","value", true), new Tag("x","y")]).isNegative() // => false */ abstract isNegative(): boolean - + + /** + * Walks the entire tree, every tagsFilter will be passed into the function once + */ + abstract visit(f: ((TagsFilter) => void)); + } \ No newline at end of file diff --git a/Logic/UIEventSource.ts b/Logic/UIEventSource.ts index 31c9585b04..479940aa10 100644 --- a/Logic/UIEventSource.ts +++ b/Logic/UIEventSource.ts @@ -1,64 +1,10 @@ import {Utils} from "../Utils"; -export class UIEventSource { - - private static allSources: UIEventSource[] = UIEventSource.PrepPerf(); - public data: T; - public trace: boolean; - private readonly tag: string; - private _callbacks: ((t: T) => (boolean | void | any)) [] = []; - - constructor(data: T, tag: string = "") { - this.tag = tag; - this.data = data; - if (tag === undefined || tag === "") { - const callstack = new Error().stack.split("\n") - this.tag = callstack[1] - } - UIEventSource.allSources.push(this); - } - - static PrepPerf(): UIEventSource[] { - if (Utils.runningFromConsole) { - return []; - } - // @ts-ignore - window.mapcomplete_performance = () => { - console.log(UIEventSource.allSources.length, "uieventsources created"); - const copy = [...UIEventSource.allSources]; - copy.sort((a, b) => b._callbacks.length - a._callbacks.length); - console.log("Topten is:") - for (let i = 0; i < 10; i++) { - console.log(copy[i].tag, copy[i]); - } - return UIEventSource.allSources; - } - return []; - } - - public static flatten(source: UIEventSource>, possibleSources?: UIEventSource[]): UIEventSource { - const sink = new UIEventSource(source.data?.data); - - source.addCallback((latestData) => { - sink.setData(latestData?.data); - latestData.addCallback(data => { - if (source.data !== latestData) { - return true; - } - sink.setData(data) - }) - }); - - for (const possibleSource of possibleSources ?? []) { - possibleSource?.addCallback(() => { - sink.setData(source.data?.data); - }) - } - - return sink; - } - - public static Chronic(millis: number, asLong: () => boolean = undefined): UIEventSource { +/** + * Various static utils + */ +export class Stores { + public static Chronic(millis: number, asLong: () => boolean = undefined): Store { const source = new UIEventSource(undefined); function run() { @@ -72,17 +18,8 @@ export class UIEventSource { return source; } - /** - * Converts a promise into a UIVentsource, sets the UIEVentSource when the result is calculated. - * If the promise fails, the value will stay undefined - * @param promise - * @constructor - */ - public static FromPromise(promise: Promise): UIEventSource { - const src = new UIEventSource(undefined) - promise?.then(d => src.setData(d)) - promise?.catch(err => console.warn("Promise failed:", err)) - return src + public static FromPromiseWithErr(promise: Promise): Store<{ success: T } | { error: any }> { + return UIEventSource.FromPromiseWithErr(promise); } /** @@ -91,13 +28,17 @@ export class UIEventSource { * @param promise * @constructor */ - public static FromPromiseWithErr(promise: Promise): UIEventSource<{ success: T } | { error: any }> { - const src = new UIEventSource<{ success: T } | { error: any }>(undefined) - promise?.then(d => src.setData({success: d})) - promise?.catch(err => src.setData({error: err})) + public static FromPromise(promise: Promise): Store { + const src = new UIEventSource(undefined) + promise?.then(d => src.setData(d)) + promise?.catch(err => console.warn("Promise failed:", err)) return src } + public static flatten(source: Store>, possibleSources?: Store[]): Store { + return UIEventSource.flatten(source, possibleSources); + } + /** * Given a UIEVentSource with a list, returns a new UIEventSource which is only updated if the _contents_ of the list are different. * E.g. @@ -112,10 +53,9 @@ export class UIEventSource { * @param src * @constructor */ - public static ListStabilized(src: UIEventSource): UIEventSource { - - const stable = new UIEventSource(src.data) - src.addCallback(list => { + public static ListStabilized(src: Store): Store { + const stable = new UIEventSource(undefined) + src.addCallbackAndRun(list => { if (list === undefined) { stable.setData(undefined) return; @@ -124,6 +64,9 @@ export class UIEventSource { if (oldList === list) { return; } + if(oldList == list){ + return; + } if (oldList === undefined || oldList.length !== list.length) { stable.setData(list); return; @@ -141,46 +84,58 @@ export class UIEventSource { }) return stable } +} - public static asFloat(source: UIEventSource): UIEventSource { - return source.map( - (str) => { - let parsed = parseFloat(str); - return isNaN(parsed) ? undefined : parsed; - }, - [], - (fl) => { - if (fl === undefined || isNaN(fl)) { - return undefined; - } - return ("" + fl).substr(0, 8); +export abstract class Store { + abstract readonly data: T; + + /** + * OPtional value giving a title to the UIEventSource, mainly used for debugging + */ + public readonly tag: string | undefined; + + + constructor(tag: string = undefined) { + this.tag = tag; + if ((tag === undefined || tag === "")) { + let createStack = Utils.runningFromConsole; + if (!Utils.runningFromConsole) { + createStack = window.location.hostname === "127.0.0.1" } - ) - } - - public AsPromise(condition?: ((t: T )=> boolean)): Promise { - const self = this; - condition = condition ?? (t => t !== undefined) - return new Promise((resolve, reject) => { - if (condition(self.data)) { - resolve(self.data) - } else { - self.addCallbackD(data => { - resolve(data) - return true; // return true to unregister as we only need to be called once - }) + if (createStack) { + const callstack = new Error().stack.split("\n") + this.tag = callstack[1] } - }) + } } - public WaitForPromise(promise: Promise, onFail: ((any) => void)): UIEventSource { - const self = this; - promise?.then(d => self.setData(d)) - promise?.catch(err => onFail(err)) - return this - } + abstract map(f: ((t: T) => J)): Store + abstract map(f: ((t: T) => J), extraStoresToWatch: Store[]): Store - public withEqualityStabilized(comparator: (t: T | undefined, t1: T | undefined) => boolean): UIEventSource { + /** + * Add a callback function which will run on future data changes + */ + abstract addCallback(callback: (data: T) => void): (() => void); + + /** + * Adds a callback function, which will be run immediately. + * Only triggers if the current data is defined + */ + abstract addCallbackAndRunD(callback: (data: T) => void): (() => void); + + /** + * Add a callback function which will run on future data changes + * Only triggers if the data is defined + */ + abstract addCallbackD(callback: (data: T) => void): (() => void); + + /** + * Adds a callback function, which will be run immediately. + * Only triggers if the current data is defined + */ + abstract addCallbackAndRun(callback: (data: T) => void): (() => void); + + public withEqualityStabilized(comparator: (t: T | undefined, t1: T | undefined) => boolean): Store { let oldValue = undefined; return this.map(v => { if (v == oldValue) { @@ -194,73 +149,56 @@ export class UIEventSource { }) } - /** - * Adds a callback - * - * If the result of the callback is 'true', the callback is considered finished and will be removed again - * @param callback - */ - public addCallback(callback: ((latestData: T) => (boolean | void | any))): UIEventSource { - if (callback === console.log) { - // This ^^^ actually works! - throw "Don't add console.log directly as a callback - you'll won't be able to find it afterwards. Wrap it in a lambda instead." - } - if (this.trace) { - console.trace("Added a callback") - } - this._callbacks.push(callback); - return this; - } - - public addCallbackAndRun(callback: ((latestData: T) => (boolean | void | any))): UIEventSource { - const doDeleteCallback = callback(this.data); - if (doDeleteCallback !== true) { - this.addCallback(callback); - } - return this; - } - - public setData(t: T): UIEventSource { - if (this.data == t) { // MUST COMPARE BY REFERENCE! - return; - } - this.data = t; - this.ping(); - return this; - } - - public ping(): void { - let toDelete = undefined - let startTime = new Date().getTime() / 1000; - for (const callback of this._callbacks) { - if (callback(this.data) === true) { - // This callback wants to be deleted - // Note: it has to return precisely true in order to avoid accidental deletions - if (toDelete === undefined) { - toDelete = [callback] - } else { - toDelete.push(callback) - } - } - } - let endTime = new Date().getTime() / 1000 - if ((endTime - startTime) > 500) { - console.trace("Warning: a ping of ", this.tag, " took more then 500ms; this is probably a performance issue") - } - if (toDelete !== undefined) { - for (const toDeleteElement of toDelete) { - this._callbacks.splice(this._callbacks.indexOf(toDeleteElement), 1) - } - } - } - /** * Monadic bind function + * + * // simple test with bound and immutablestores + * const src = new UIEventSource(3) + * const bound = src.bind(i => new ImmutableStore(i * 2)) + * let lastValue = undefined; + * bound.addCallbackAndRun(v => lastValue = v); + * lastValue // => 6 + * src.setData(21) + * lastValue // => 42 + * + * // simple test with bind over a mapped value + * const src = new UIEventSource(0) + * const srcs : UIEventSource[] = [new UIEventSource("a"), new UIEventSource("b")] + * const bound = src.map(i => -i).bind(i => srcs[i]) + * let lastValue : string = undefined; + * bound.addCallbackAndRun(v => lastValue = v); + * lastValue // => "a" + * src.setData(-1) + * lastValue // => "b" + * srcs[1].setData("xyz") + * lastValue // => "xyz" + * srcs[0].setData("def") + * lastValue // => "xyz" + * src.setData(0) + * lastValue // => "def" + * + * + * + * // advanced test with bound + * const src = new UIEventSource(0) + * const srcs : UIEventSource[] = [new UIEventSource("a"), new UIEventSource("b")] + * const bound = src.bind(i => srcs[i]) + * let lastValue : string = undefined; + * bound.addCallbackAndRun(v => lastValue = v); + * lastValue // => "a" + * src.setData(1) + * lastValue // => "b" + * srcs[1].setData("xyz") + * lastValue // => "xyz" + * srcs[0].setData("def") + * lastValue // => "xyz" + * src.setData(0) + * lastValue // => "def" */ - public bind(f: ((t: T) => UIEventSource)): UIEventSource { + public bind(f: ((t: T) => Store)): Store { const mapped = this.map(f) const sink = new UIEventSource(undefined) - const seenEventSources = new Set>(); + const seenEventSources = new Set>(); mapped.addCallbackAndRun(newEventSource => { if (newEventSource === null) { sink.setData(null) @@ -282,18 +220,472 @@ export class UIEventSource { return sink; } + public stabilized(millisToStabilize): Store { + if (Utils.runningFromConsole) { + return this; + } + + const newSource = new UIEventSource(this.data); + + this.addCallback(latestData => { + window.setTimeout(() => { + if (this.data == latestData) { // compare by reference + newSource.setData(latestData); + } + }, millisToStabilize) + }); + + return newSource; + } + + public AsPromise(condition?: ((t: T) => boolean)): Promise { + const self = this; + condition = condition ?? (t => t !== undefined) + return new Promise((resolve) => { + if (condition(self.data)) { + resolve(self.data) + } else { + self.addCallbackD(data => { + resolve(data) + return true; // return true to unregister as we only need to be called once + }) + } + }) + } + +} + +export class ImmutableStore extends Store { + public readonly data: T; + + private static readonly pass: (() => void) = () => { + } + + constructor(data: T) { + super(); + this.data = data; + } + + addCallback(callback: (data: T) => void): (() => void) { + // pass: data will never change + return ImmutableStore.pass + } + + addCallbackAndRun(callback: (data: T) => void): (() => void) { + callback(this.data) + // no callback registry: data will never change + return ImmutableStore.pass + } + + addCallbackAndRunD(callback: (data: T) => void): (() => void) { + if (this.data !== undefined) { + callback(this.data) + } + // no callback registry: data will never change + return ImmutableStore.pass + } + + addCallbackD(callback: (data: T) => void): (() => void) { + // pass: data will never change + return ImmutableStore.pass + } + + + map(f: (t: T) => J, extraStores: Store[] = undefined): ImmutableStore { + if(extraStores?.length > 0){ + return new MappedStore(this, f, extraStores, undefined, f(this.data)) + } + return new ImmutableStore(f(this.data)); + } + + +} + +/** + * Keeps track of the callback functions + */ +class ListenerTracker { + private readonly _callbacks: ((t: T) => (boolean | void | any)) [] = []; + + public pingCount = 0; /** - * Monoidal map: + * Adds a callback which can be called; a function to unregister is returned + */ + public addCallback(callback: (t: T) => (boolean | void | any)): (() => void) { + if (callback === console.log) { + // This ^^^ actually works! + throw "Don't add console.log directly as a callback - you'll won't be able to find it afterwards. Wrap it in a lambda instead." + } + this._callbacks.push(callback); + + // Give back an unregister-function! + return () => { + const index = this._callbacks.indexOf(callback) + if (index >= 0) { + this._callbacks.splice(index, 1) + } + } + } + + /** + * Call all the callbacks. + * Returns the number of registered callbacks + */ + public ping(data: T): number { + this.pingCount ++; + let toDelete = undefined + let startTime = new Date().getTime() / 1000; + for (const callback of this._callbacks) { + if (callback(data) === true) { + // This callback wants to be deleted + // Note: it has to return precisely true in order to avoid accidental deletions + if (toDelete === undefined) { + toDelete = [callback] + } else { + toDelete.push(callback) + } + } + } + let endTime = new Date().getTime() / 1000 + if ((endTime - startTime) > 500) { + console.trace("Warning: a ping took more then 500ms; this is probably a performance issue") + } + if (toDelete !== undefined) { + for (const toDeleteElement of toDelete) { + this._callbacks.splice(this._callbacks.indexOf(toDeleteElement), 1) + } + } + return this._callbacks.length + } + + length() { + return this._callbacks.length + } +} + + +/** + * The mapped store is a helper type which does the mapping of a function. + * It'll fuse + */ +class MappedStore extends Store { + + private _upstream: Store; + private _upstreamCallbackHandler: ListenerTracker | undefined; + private _upstreamPingCount: number = -1; + private _unregisterFromUpstream: (() => void) + + private _f: (t: TIn) => T; + private readonly _extraStores: Store[] | undefined; + private _unregisterFromExtraStores: (() => void)[] | undefined + + private _callbacks: ListenerTracker = new ListenerTracker() + + private static readonly pass: () => {} + + + constructor(upstream: Store, f: (t: TIn) => T, extraStores: Store[], + upstreamListenerHandler: ListenerTracker | undefined, initialState: T) { + super(); + this._upstream = upstream; + this._upstreamCallbackHandler = upstreamListenerHandler + this._f = f; + this._data = initialState + this._upstreamPingCount = upstreamListenerHandler?.pingCount + this._extraStores = extraStores; + this.registerCallbacksToUpstream() + } + + private _data: T; + private _callbacksAreRegistered = false + + /** + * Gets the current data from the store + * + * const src = new UIEventSource(21) + * const mapped = src.map(i => i * 2) + * src.setData(3) + * mapped.data // => 6 + * + */ + get data(): T { + if (!this._callbacksAreRegistered) { + // Callbacks are not registered, so we haven't been listening for updates from the upstream which might have changed + if(this._upstreamCallbackHandler?.pingCount != this._upstreamPingCount){ + // Upstream has pinged - let's update our data first + this._data = this._f(this._upstream.data) + } + return this._data + } + return this._data + } + + + map(f: (t: T) => J, extraStores: (Store)[] = undefined): Store { + let stores: Store[] = undefined + if (extraStores?.length > 0 || this._extraStores?.length > 0) { + stores = [] + } + if (extraStores?.length > 0) { + stores.push(...extraStores) + } + if (this._extraStores?.length > 0) { + this._extraStores?.forEach(store => { + if (stores.indexOf(store) < 0) { + stores.push(store) + } + }) + } + return new MappedStore( + this, + f, // we could fuse the functions here (e.g. data => f(this._f(data), but this might result in _f being calculated multiple times, breaking things + stores, + this._callbacks, + f(this.data) + ); + } + + private unregisterFromUpstream() { + console.log("Unregistering callbacks for", this.tag) + this._callbacksAreRegistered = false; + this._unregisterFromUpstream() + this._unregisterFromExtraStores?.forEach(unr => unr()) + } + + private registerCallbacksToUpstream() { + const self = this + + this._unregisterFromUpstream = this._upstream.addCallback( + _ => self.update() + ) + this._unregisterFromExtraStores = this._extraStores?.map(store => + store?.addCallback(_ => self.update()) + ) + this._callbacksAreRegistered = true; + } + + private update(): void { + const newData = this._f(this._upstream.data) + this._upstreamPingCount = this._upstreamCallbackHandler?.pingCount + if (this._data == newData) { + return; + } + this._data = newData + this._callbacks.ping(this._data) + } + + addCallback(callback: (data: T) => (any | boolean | void)): (() => void) { + if (!this._callbacksAreRegistered) { + // This is the first callback that is added + // We register this 'map' to the upstream object and all the streams + this.registerCallbacksToUpstream() + } + const unregister = this._callbacks.addCallback(callback) + return () => { + unregister() + if (this._callbacks.length() == 0) { + this.unregisterFromUpstream() + } + } + } + + addCallbackAndRun(callback: (data: T) => (any | boolean | void)): (() => void) { + const unregister = this.addCallback(callback) + const doRemove = callback(this.data) + if (doRemove === true) { + unregister() + return MappedStore.pass + } + return unregister + } + + addCallbackAndRunD(callback: (data: T) => (any | boolean | void)): (() => void) { + return this.addCallbackAndRun(data => { + if (data !== undefined) { + return callback(data) + } + }) + } + + addCallbackD(callback: (data: T) => (any | boolean | void)): (() => void) { + return this.addCallback(data => { + if (data !== undefined) { + return callback(data) + } + }) + } + + +} + +export class UIEventSource extends Store { + + public data: T; + _callbacks: ListenerTracker = new ListenerTracker() + + private static readonly pass: () => {} + + constructor(data: T, tag: string = "") { + super(tag); + this.data = data; + } + + public static flatten(source: Store>, possibleSources?: Store[]): UIEventSource { + const sink = new UIEventSource(source.data?.data); + + source.addCallback((latestData) => { + sink.setData(latestData?.data); + latestData.addCallback(data => { + if (source.data !== latestData) { + return true; + } + sink.setData(data) + }) + }); + + for (const possibleSource of possibleSources ?? []) { + possibleSource?.addCallback(() => { + sink.setData(source.data?.data); + }) + } + + return sink; + } + + /** + * Converts a promise into a UIVentsource, sets the UIEVentSource when the result is calculated. + * If the promise fails, the value will stay undefined, but 'onError' will be called + */ + public static FromPromise(promise: Promise, onError: ((e: any) => void) = undefined): UIEventSource { + const src = new UIEventSource(undefined) + promise?.then(d => src.setData(d)) + promise?.catch(err => { + if (onError !== undefined) { + onError(err) + } else { + console.warn("Promise failed:", err); + } + }) + return src + } + + /** + * Converts a promise into a UIVentsource, sets the UIEVentSource when the result is calculated. + * If the promise fails, the value will stay undefined + * @param promise + * @constructor + */ + public static FromPromiseWithErr(promise: Promise): UIEventSource<{ success: T } | { error: any }> { + const src = new UIEventSource<{ success: T } | { error: any }>(undefined) + promise?.then(d => src.setData({success: d})) + promise?.catch(err => src.setData({error: err})) + return src + } + + public static asFloat(source: UIEventSource): UIEventSource { + return source.sync( + (str) => { + let parsed = parseFloat(str); + return isNaN(parsed) ? undefined : parsed; + }, + [], + (fl) => { + if (fl === undefined || isNaN(fl)) { + return undefined; + } + return ("" + fl).substr(0, 8); + } + ) + } + + /** + * Adds a callback + * + * If the result of the callback is 'true', the callback is considered finished and will be removed again + * @param callback + */ + public addCallback(callback: ((latestData: T) => (boolean | void | any))): (() => void) { + return this._callbacks.addCallback(callback); + } + + public addCallbackAndRun(callback: ((latestData: T) => (boolean | void | any))): (() => void) { + const doDeleteCallback = callback(this.data); + if (doDeleteCallback !== true) { + return this.addCallback(callback); + } else { + return UIEventSource.pass + } + } + + public addCallbackAndRunD(callback: (data: T) => void): (() => void) { + return this.addCallbackAndRun(data => { + if (data !== undefined && data !== null) { + return callback(data) + } + }) + } + + public addCallbackD(callback: (data: T) => void): (() => void) { + return this.addCallback(data => { + if (data !== undefined && data !== null) { + return callback(data) + } + }) + } + + public setData(t: T): UIEventSource { + if (this.data == t) { // MUST COMPARE BY REFERENCE! + return; + } + this.data = t; + this._callbacks.ping(t) + return this; + } + + public ping(): void { + this._callbacks.ping(this.data) + } + + /** + * Monoidal map which results in a read-only store + * Given a function 'f', will construct a new UIEventSource where the contents will always be "f(this.data)' + * @param f: The transforming function + * @param extraSources: also trigger the update if one of these sources change + * + * const src = new UIEventSource(10) + * const store = src.map(i => i * 2) + * store.data // => 20 + * let srcSeen = undefined; + * src.addCallback(v => { + * console.log("Triggered") + * srcSeen = v + * }) + * let lastSeen = undefined + * store.addCallback(v => { + * console.log("Triggered!") + * lastSeen = v + * }) + * src.setData(21) + * srcSeen // => 21 + * lastSeen // => 42 + */ + public map(f: ((t: T) => J), + extraSources: Store[] = []): Store { + return new MappedStore(this, f, extraSources, this._callbacks, f(this.data)); + } + + /** + * Two way sync with functions in both directions * Given a function 'f', will construct a new UIEventSource where the contents will always be "f(this.data)' * @param f: The transforming function * @param extraSources: also trigger the update if one of these sources change * @param g: a 'backfunction to let the sync run in two directions. (data of the new UIEVEntSource, currentData) => newData * @param allowUnregister: if set, the update will be halted if no listeners are registered */ - public map(f: ((t: T) => J), - extraSources: UIEventSource[] = [], - g: ((j: J, t: T) => T) = undefined, - allowUnregister = false): UIEventSource { + public sync(f: ((t: T) => J), + extraSources: Store[], + g: ((j: J, t: T) => T), + allowUnregister = false): UIEventSource { const self = this; const stack = new Error().stack.split("\n"); @@ -306,7 +698,7 @@ export class UIEventSource { const update = function () { newSource.setData(f(self.data)); - return allowUnregister && newSource._callbacks.length === 0 + return allowUnregister && newSource._callbacks.length() === 0 } this.addCallback(update); @@ -328,7 +720,7 @@ export class UIEventSource { const self = this; otherSource.addCallback((latest) => self.setData(latest)); if (reverseOverride) { - if(otherSource.data !== undefined){ + if (otherSource.data !== undefined) { this.setData(otherSource.data); } } else if (this.data === undefined) { @@ -339,40 +731,4 @@ export class UIEventSource { return this; } - public stabilized(millisToStabilize): UIEventSource { - if (Utils.runningFromConsole) { - return this; - } - - const newSource = new UIEventSource(this.data); - - let currentCallback = 0; - this.addCallback(latestData => { - currentCallback++; - const thisCallback = currentCallback; - window.setTimeout(() => { - if (thisCallback === currentCallback) { - newSource.setData(latestData); - } - }, millisToStabilize) - }); - - return newSource; - } - - addCallbackAndRunD(callback: (data: T) => void) { - this.addCallbackAndRun(data => { - if (data !== undefined && data !== null) { - return callback(data) - } - }) - } - - addCallbackD(callback: (data: T) => void) { - this.addCallback(data => { - if (data !== undefined && data !== null) { - return callback(data) - } - }) - } -} \ No newline at end of file +} diff --git a/Logic/Web/IdbLocalStorage.ts b/Logic/Web/IdbLocalStorage.ts index 78930e011e..f3d9298661 100644 --- a/Logic/Web/IdbLocalStorage.ts +++ b/Logic/Web/IdbLocalStorage.ts @@ -7,8 +7,12 @@ import {Utils} from "../../Utils"; */ export class IdbLocalStorage { - + private static readonly _sourceCache: Record> = {} + public static Get(key: string, options?: { defaultValue?: T, whenLoaded?: (t: T | null) => void }): UIEventSource { + if(IdbLocalStorage._sourceCache[key] !== undefined){ + return IdbLocalStorage._sourceCache[key] + } const src = new UIEventSource(options?.defaultValue, "idb-local-storage:" + key) if (Utils.runningFromConsole) { return src; @@ -26,6 +30,7 @@ export class IdbLocalStorage { options?.whenLoaded(null) } }) + IdbLocalStorage._sourceCache[key] = src; return src; } diff --git a/Logic/Web/LocalStorageSource.ts b/Logic/Web/LocalStorageSource.ts index 8f43969c23..2de23d4139 100644 --- a/Logic/Web/LocalStorageSource.ts +++ b/Logic/Web/LocalStorageSource.ts @@ -6,7 +6,7 @@ import {UIEventSource} from "../UIEventSource"; export class LocalStorageSource { static GetParsed(key: string, defaultValue: T): UIEventSource { - return LocalStorageSource.Get(key).map( + return LocalStorageSource.Get(key).sync( str => { if (str === undefined) { return defaultValue diff --git a/Logic/Web/QueryParameters.ts b/Logic/Web/QueryParameters.ts index 02a76dce5a..2257bf51f4 100644 --- a/Logic/Web/QueryParameters.ts +++ b/Logic/Web/QueryParameters.ts @@ -8,7 +8,7 @@ import {Utils} from "../../Utils"; export class QueryParameters { static defaults = {} - static documentation = {} + static documentation: Map = new Map() private static order: string [] = ["layout", "test", "z", "lat", "lon"]; private static _wasInitialized: Set = new Set() private static knownSources = {}; @@ -18,7 +18,7 @@ export class QueryParameters { if (!this.initialized) { this.init(); } - QueryParameters.documentation[key] = documentation; + QueryParameters.documentation.set(key, documentation); if (deflt !== undefined) { QueryParameters.defaults[key] = deflt; } @@ -33,7 +33,7 @@ export class QueryParameters { } public static GetBooleanQueryParameter(key: string, deflt: boolean, documentation?: string): UIEventSource { - return QueryParameters.GetQueryParameter(key, ""+ deflt, documentation).map(str => str === "true", [], b => "" + b) + return QueryParameters.GetQueryParameter(key, ""+ deflt, documentation).sync(str => str === "true", [], b => "" + b) } diff --git a/Logic/Web/Review.ts b/Logic/Web/Review.ts index 777330e449..4fe467b915 100644 --- a/Logic/Web/Review.ts +++ b/Logic/Web/Review.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../UIEventSource"; +import {Store} from "../UIEventSource"; export interface Review { comment?: string, @@ -9,5 +9,5 @@ export interface Review { /** * True if the current logged in user is the creator of this comment */ - made_by_user: UIEventSource + made_by_user: Store } \ No newline at end of file diff --git a/Logic/Web/Wikipedia.ts b/Logic/Web/Wikipedia.ts index 66d848b2e6..4a079c2513 100644 --- a/Logic/Web/Wikipedia.ts +++ b/Logic/Web/Wikipedia.ts @@ -3,6 +3,7 @@ */ import {Utils} from "../../Utils"; import {UIEventSource} from "../UIEventSource"; +import {WikipediaBoxOptions} from "../../UI/Wikipedia/WikipediaBox"; export default class Wikipedia { @@ -29,38 +30,139 @@ export default class Wikipedia { private static readonly _cache = new Map>() - public static GetArticle(options: { - pageName: string, - language?: "en" | string, - firstParagraphOnly?: false | boolean - }): UIEventSource<{ success: string } | { error: any }> { - const key = (options.language ?? "en") + ":" + options.pageName + ":" + (options.firstParagraphOnly ?? false) + + public readonly backend: string; + + constructor(options?: ({ language?: "en" | string } | { backend?: string })) { + this.backend = Wikipedia.getBackendUrl(options ?? {}); + } + + /** + * Tries to extract the language and article name from the given string + * + * Wikipedia.extractLanguageAndName("qsdf") // => undefined + * Wikipedia.extractLanguageAndName("nl:Warandeputten") // => {language: "nl", pageName: "Warandeputten"} + */ + public static extractLanguageAndName(input: string): { language: string, pageName: string } { + const matched = input.match("([^:]+):(.*)") + if (matched === undefined || matched === null) { + return undefined + } + const [_, language, pageName] = matched + return { + language, pageName + } + } + + /** + * Extracts the actual pagename; returns undefined if this came from a different wikimedia entry + * + * new Wikipedia({backend: "https://wiki.openstreetmap.org"}).extractPageName("https://wiki.openstreetmap.org/wiki/NL:Speelbos") // => "NL:Speelbos" + * new Wikipedia().extractPageName("https://wiki.openstreetmap.org/wiki/NL:Speelbos") // => undefined + */ + public extractPageName(input: string):string | undefined{ + if(!input.startsWith(this.backend)){ + return undefined + } + input = input.substring(this.backend.length); + + const matched = input.match("/?wiki/\(.+\)") + if (matched === undefined || matched === null) { + return undefined + } + const [_, pageName] = matched + return pageName + } + + private static getBackendUrl(options: { language?: "en" | string } | { backend?: "en.wikipedia.org" | string }): string { + let backend = "en.wikipedia.org" + if (options["backend"]) { + backend = options["backend"] + } else if (options["language"]) { + backend = `${options["language"] ?? "en"}.wikipedia.org` + } + if (!backend.startsWith("http")) { + backend = "https://" + backend + } + return backend + } + + public GetArticle(pageName: string, options: WikipediaBoxOptions): UIEventSource<{ success: string } | { error: any }> { + const key = this.backend + ":" + pageName + ":" + (options.firstParagraphOnly ?? false) const cached = Wikipedia._cache.get(key) if (cached !== undefined) { return cached } - const v = UIEventSource.FromPromiseWithErr(Wikipedia.GetArticleAsync(options)) + const v = UIEventSource.FromPromiseWithErr(this.GetArticleAsync(pageName, options)) Wikipedia._cache.set(key, v) return v; } - public static getDataUrl(options: {language?: "en" | string, pageName: string}): string{ - return `https://${options.language ?? "en"}.wikipedia.org/w/api.php?action=parse&format=json&origin=*&prop=text&page=` + options.pageName + public getDataUrl(pageName: string): string { + return `${this.backend}/w/api.php?action=parse&format=json&origin=*&prop=text&page=` + pageName } - public static getPageUrl(options: {language?: "en" | string, pageName: string}): string{ - return `https://${options.language ?? "en"}.wikipedia.org/wiki/` + options.pageName + public getPageUrl(pageName: string): string { + return `${this.backend}/wiki/${pageName}` } - - public static async GetArticleAsync(options: { - pageName: string, - language?: "en" | string, - firstParagraphOnly?: false | boolean - }): Promise { - const response = await Utils.downloadJson(Wikipedia.getDataUrl(options)) + /** + * Textual search of the specified wiki-instance. If searching Wikipedia, we recommend using wikidata.search instead + * @param searchTerm + */ + public async search(searchTerm: string): Promise<{ title: string, snippet: string }[]> { + const url = this.backend + "/w/api.php?action=query&format=json&list=search&srsearch=" + encodeURIComponent(searchTerm); + return (await Utils.downloadJson(url))["query"]["search"]; + } + + /** + * Searches via 'index.php' and scrapes the result. + * This gives better results then via the API + * @param searchTerm + */ + public async searchViaIndex(searchTerm: string): Promise<{ title: string, snippet: string, url: string } []> { + const url = `${this.backend}/w/index.php?search=${encodeURIComponent(searchTerm)}&ns0=1` + const result = await Utils.downloadAdvanced(url); + if(result["redirect"] ){ + const targetUrl = result["redirect"] + // This is an exact match + return [{ + title: this.extractPageName(targetUrl)?.trim(), + url: targetUrl, + snippet: "" + }] + } + const el = document.createElement('html'); + el.innerHTML = result["content"].replace(/href="\//g, "href=\""+this.backend+"/"); + const searchResults = el.getElementsByClassName("mw-search-results") + const individualResults = Array.from(searchResults[0]?.getElementsByClassName("mw-search-result") ?? []) + return individualResults.map(result => { + const toRemove = Array.from(result.getElementsByClassName("searchalttitle")) + for (const toRm of toRemove) { + toRm.parentElement.removeChild(toRm) + } + + return { + title: result.getElementsByClassName("mw-search-result-heading")[0].textContent.trim(), + url: result.getElementsByTagName("a")[0].href, + snippet: result.getElementsByClassName("searchresult")[0].textContent + } + }) + } + + public async GetArticleAsync(pageName: string, options: + { + firstParagraphOnly?: false | boolean + }): Promise { + + const response = await Utils.downloadJson(this.getDataUrl(pageName)) + if (response?.parse?.text === undefined) { + return undefined + } const html = response["parse"]["text"]["*"]; - + if (html === undefined) { + return undefined + } const div = document.createElement("div") div.innerHTML = html const content = Array.from(div.children)[0] @@ -81,11 +183,10 @@ export default class Wikipedia { const links = Array.from(content.getElementsByTagName("a")) // Rewrite relative links to absolute links + open them in a new tab - const language = options.language ?? "en" links.filter(link => link.getAttribute("href")?.startsWith("/") ?? false).forEach(link => { link.target = '_blank' // note: link.getAttribute("href") gets the textual value, link.href is the rewritten version which'll contain the host for relative paths - link.href = `https://${language}.wikipedia.org${link.getAttribute("href")}`; + link.href = `${this.backend}${link.getAttribute("href")}`; }) if (options?.firstParagraphOnly) { diff --git a/Models/Constants.ts b/Models/Constants.ts index 73c937293e..2590a98728 100644 --- a/Models/Constants.ts +++ b/Models/Constants.ts @@ -2,11 +2,20 @@ import {Utils} from "../Utils"; export default class Constants { - public static vNumber = "0.19.0-alpha"; + public static vNumber = "0.23.0"; public static ImgurApiKey = '7070e7167f0a25a' public static readonly mapillary_client_token_v4 = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85" + /** + * API key for Maproulette + * + * Currently there is no user-friendly way to get the user's API key. + * See https://github.com/maproulette/maproulette2/issues/476 for more information. + * Using an empty string however does work for most actions, but will attribute all actions to the Superuser. + */ + public static readonly MaprouletteApiKey = ""; + public static defaultOverpassUrls = [ // The official instance, 10000 queries per day per project allowed "https://overpass-api.de/api/interpreter", @@ -23,7 +32,7 @@ export default class Constants { /** * Layer IDs of layers which have special properties through built-in hooks */ - public static readonly priviliged_layers: string[] = [...Constants.added_by_default, "type_node", "note", "import_candidate", ...Constants.no_include] + public static readonly priviliged_layers: string[] = [...Constants.added_by_default, "type_node", "note", "import_candidate", "direction", ...Constants.no_include] // The user journey states thresholds when a new feature gets unlocked @@ -72,8 +81,8 @@ export default class Constants { static countryCoderEndpoint: string = "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/latlon2country"; private static isRetina(): boolean { - if (Utils.runningFromConsole) { - return; + if(Utils.runningFromConsole){ + return false; } // The cause for this line of code: https://github.com/pietervdvn/MapComplete/issues/115 // See https://stackoverflow.com/questions/19689715/what-is-the-best-way-to-detect-retina-support-on-a-device-using-javascript diff --git a/Models/Denomination.ts b/Models/Denomination.ts index 45f2e5be26..e287e08846 100644 --- a/Models/Denomination.ts +++ b/Models/Denomination.ts @@ -1,7 +1,7 @@ import {Translation} from "../UI/i18n/Translation"; import {ApplicableUnitJson} from "./ThemeConfig/Json/UnitConfigJson"; import Translations from "../UI/i18n/Translations"; -import {UIEventSource} from "../Logic/UIEventSource"; +import {Store, UIEventSource} from "../Logic/UIEventSource"; import BaseUIElement from "../UI/BaseUIElement"; import Toggle from "../UI/Input/Toggle"; @@ -49,7 +49,7 @@ export class Denomination { return (this._humanSingular ?? this._human).Clone() } - getToggledHuman(isSingular: UIEventSource): BaseUIElement { + getToggledHuman(isSingular: Store): BaseUIElement { if (this._humanSingular === undefined) { return this.human } diff --git a/Models/OsmFeature.ts b/Models/OsmFeature.ts new file mode 100644 index 0000000000..4753287ca3 --- /dev/null +++ b/Models/OsmFeature.ts @@ -0,0 +1,4 @@ +import {Feature, Geometry} from "@turf/turf"; + +export type OsmTags = Record & {id: string} +export type OsmFeature = Feature \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/AddContextToTranslations.ts b/Models/ThemeConfig/Conversion/AddContextToTranslations.ts index 9e3dc8c56a..af9961a893 100644 --- a/Models/ThemeConfig/Conversion/AddContextToTranslations.ts +++ b/Models/ThemeConfig/Conversion/AddContextToTranslations.ts @@ -95,9 +95,32 @@ export class AddContextToTranslations extends DesugaringStep { * ] * } * rewritten // => expected + * + * + * // Should ignore all if '#dont-translate' is set + * const theme = { + * "#dont-translate": "*", + * layers: [ + * { + * builtin: ["abc"], + * override: { + * title:{ + * en: "Some title" + * } + * } + * } + * ] + * } + * const rewritten = new AddContextToTranslations("prefix:").convert(theme, "context").result + * rewritten // => theme + * */ convert(json: T, context: string): { result: T; errors?: string[]; warnings?: string[]; information?: string[] } { + if(json["#dont-translate"] === "*"){ + return {result: json} + } + const result = Utils.WalkJson(json, (leaf, path) => { if(leaf === undefined || leaf === null){ return leaf diff --git a/Models/ThemeConfig/Conversion/Conversion.ts b/Models/ThemeConfig/Conversion/Conversion.ts index 5b6b72c008..48177827f7 100644 --- a/Models/ThemeConfig/Conversion/Conversion.ts +++ b/Models/ThemeConfig/Conversion/Conversion.ts @@ -4,7 +4,8 @@ import {Utils} from "../../../Utils"; export interface DesugaringContext { tagRenderings: Map - sharedLayers: Map + sharedLayers: Map, + publicLayers?: Set } export abstract class Conversion { @@ -38,6 +39,14 @@ export abstract class Conversion { return DesugaringStep.strict(fixed) } + public convertJoin(json: TIn, context: string, errors: string[], warnings?: string[], information?: string[]): TOut { + const fixed = this.convert(json, context) + errors?.push(...(fixed.errors ?? [])) + warnings?.push(...(fixed.warnings ?? [])) + information?.push(...(fixed.information ?? [])) + return fixed.result + } + public andThenF(f: (tout:TOut) => X ): Conversion{ return new Pipe( this, @@ -132,17 +141,21 @@ export class Each extends Conversion { export class On extends DesugaringStep { private readonly key: string; - private readonly step: Conversion; + private readonly step: ((t: T) => Conversion); - constructor(key: string, step: Conversion) { + constructor(key: string, step: Conversion | ((t: T )=> Conversion)) { super("Applies " + step.name + " onto property `"+key+"`", [key], `On(${key}, ${step.name})`); - this.step = step; + if(typeof step === "function"){ + this.step = step; + }else{ + this.step = _ => step + } this.key = key; } convert(json: T, context: string): { result: T; errors?: string[]; warnings?: string[], information?: string[] } { json = {...json} - const step = this.step + const step = this.step(json) const key = this.key; const value: P = json[key] if (value === undefined || value === null) { @@ -199,6 +212,24 @@ export class Concat extends Conversion { } } +export class FirstOf extends Conversion{ + private readonly _conversion: Conversion; + + constructor(conversion: Conversion) { + super("Picks the first result of the conversion step", [], "FirstOf("+conversion.name+")"); + this._conversion = conversion; + } + + convert(json: T, context: string): { result: X; errors?: string[]; warnings?: string[]; information?: string[] } { + const reslt = this._conversion.convert(json, context); + return { + ...reslt, + result: reslt.result[0] + }; + } + +} + export class Fuse extends DesugaringStep { private readonly steps: DesugaringStep[]; @@ -226,7 +257,7 @@ export class Fuse extends DesugaringStep { break; } }catch(e){ - console.error("Step "+step.name+" failed due to "+e); + console.error("Step "+step.name+" failed due to ",e,e.stack); throw e } } diff --git a/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts index 14bf636886..076c898aff 100644 --- a/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts +++ b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts @@ -3,7 +3,7 @@ import LayerConfig from "../LayerConfig"; import {LayerConfigJson} from "../Json/LayerConfigJson"; import Translations from "../../../UI/i18n/Translations"; import PointRenderingConfigJson from "../Json/PointRenderingConfigJson"; -import {Translation} from "../../../UI/i18n/Translation"; +import {Translation, TypedTranslation} from "../../../UI/i18n/Translation"; export default class CreateNoteImportLayer extends Conversion { /** @@ -16,7 +16,7 @@ export default class CreateNoteImportLayer extends Conversion r !== null && r["location"] !== undefined); const firstRender = (pointRenderings [0]) - if(firstRender === undefined){ - throw `Layer ${layerJson.id} does not have a pointRendering: `+context + if (firstRender === undefined) { + throw `Layer ${layerJson.id} does not have a pointRendering: ` + context } const title = layer.presets[0].title const importButton = {} { - const translations = t.importButton.Subs({layerId: layer.id, title: layer.presets[0].title}).translations + const translations = trs(t.importButton, {layerId: layer.id, title: layer.presets[0].title}) for (const key in translations) { - importButton[key] = "{" + translations[key] + "}" + if (key !== "_context") { + importButton[key] = "{" + translations[key] + "}" + } else { + importButton[key] = translations[key] + } } } @@ -61,13 +65,22 @@ export default class CreateNoteImportLayer extends Conversion(translation: TypedTranslation, subs: T): object { + return {...translation.Subs(subs).translations, "_context": translation.context} + } + const result: LayerConfigJson = { "id": "note_import_" + layer.id, // By disabling the name, the import-layers won't pollute the filter view "name": t.layerName.Subs({title: layer.title.render}).translations, - "description": t.description.Subs({title: layer.title.render}).translations, + "description": trs(t.description, {title: layer.title.render}), "source": { "osmTags": { "and": [ @@ -80,32 +93,20 @@ export default class CreateNoteImportLayer extends Conversion {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.osm.be/\\([a-zA-Z_-]+\\)\\(.html\\)?.*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()", "_comments_count=feat.get('comments').length", "_intro=(() => {const lines = feat.get('comments')[0].text.split('\\n'); lines.splice(feat.get('_trigger_index')-1, lines.length); return lines.filter(l => l !== '').join('
');})()", - "_tags=(() => {let lines = feat.properties['_first_comment'].split('\\n').map(l => l.trim()); lines.splice(0, feat.get('_trigger_index') + 1); lines = lines.filter(l => l != ''); return lines.join(';');})()" + "_tags=(() => {let lines = feat.get('comments')[0].text.split('\\n').map(l => l.trim()); lines.splice(0, feat.get('_trigger_index') + 1); lines = lines.filter(l => l != ''); return lines.join(';');})()" ], "isShown": { - "render": "no", - "mappings": [ - { - "if": "comments!~.*https://mapcomplete.osm.be.*", - "then": "no" - }, - { - "if": { - and: - ["_trigger_index~*", - {or: isShownIfAny} - ] - }, - "then": "yes" - } - ] + and: + ["_trigger_index~*", + {or: isShownIfAny} + ] }, "titleIcons": [ { @@ -140,7 +141,7 @@ export default class CreateNoteImportLayer extends Conversion { let relative = url.protocol + "//" + url.host + url.pathname relative = relative.substring(0, relative.lastIndexOf("/")) const self = this; + + if(relative.endsWith("assets/generated/themes")){ + warnings.push("Detected 'assets/generated/themes' as relative URL. I'm assuming that you are loading your file for the MC-repository, so I'm rewriting all image links as if they were absolute instead of relative") + relative = absolute + } function replaceString(leaf: string) { if (self._knownImages.has(leaf)) { diff --git a/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts b/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts index 547f8c57b4..dc25f2afc9 100644 --- a/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts +++ b/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts @@ -18,10 +18,12 @@ export class UpdateLegacyLayer extends DesugaringStep { private readonly _state: DesugaringContext; + private readonly _self: LayerConfigJson; - constructor(state: DesugaringContext) { + constructor(state: DesugaringContext, self: LayerConfigJson) { super("Converts a tagRenderingSpec into the full tagRendering, e.g. by substituting the tagRendering by the shared-question", [], "ExpandTagRendering"); this._state = state; + this._self = self; } convert(json: string | TagRenderingConfigJson | { builtin: string | string[]; override: any }, context: string): { result: TagRenderingConfigJson[]; errors: string[]; warnings: string[] } { @@ -32,42 +35,50 @@ class ExpandTagRendering extends Conversion= 0) { - const spl = name.split("."); - const layer = state.sharedLayers.get(spl[0]) - if (spl.length === 2 && layer !== undefined) { - const id = spl[1]; + if (name.indexOf(".") < 0) { + return undefined; + } - const layerTrs = layer.tagRenderings.filter(tr => tr["id"] !== undefined) - let matchingTrs: TagRenderingConfigJson[] - if (id === "*") { - matchingTrs = layerTrs - } else if (id.startsWith("*")) { - const id_ = id.substring(1) - matchingTrs = layerTrs.filter(tr => tr.group === id_ || tr.labels?.indexOf(id_) >= 0) - } else { - matchingTrs = layerTrs.filter(tr => tr.id === id) - } + const spl = name.split("."); + let layer = state.sharedLayers.get(spl[0]) + if (spl[0] === this._self.id) { + layer = this._self + } + + if (spl.length !== 2 || layer === undefined) { + return undefined + } + + const id = spl[1]; + + const layerTrs = layer.tagRenderings.filter(tr => tr["id"] !== undefined) + let matchingTrs: TagRenderingConfigJson[] + if (id === "*") { + matchingTrs = layerTrs + } else if (id.startsWith("*")) { + const id_ = id.substring(1) + matchingTrs = layerTrs.filter(tr => tr.group === id_ || tr.labels?.indexOf(id_) >= 0) + } else { + matchingTrs = layerTrs.filter(tr => tr.id === id) + } - const contextWriter = new AddContextToTranslations("layers:") - for (let i = 0; i < matchingTrs.length; i++) { - // The matched tagRenderings are 'stolen' from another layer. This means that they must match the layer condition before being shown - let found : TagRenderingConfigJson = Utils.Clone(matchingTrs[i]); - if (found.condition === undefined) { - found.condition = layer.source.osmTags - } else { - found.condition = {and: [found.condition, layer.source.osmTags]} - } - - found = contextWriter.convertStrict(found, layer.id+ ".tagRenderings."+found["id"]) - matchingTrs[i] = found - } - - if (matchingTrs.length !== 0) { - return matchingTrs - } + const contextWriter = new AddContextToTranslations("layers:") + for (let i = 0; i < matchingTrs.length; i++) { + // The matched tagRenderings are 'stolen' from another layer. This means that they must match the layer condition before being shown + let found: TagRenderingConfigJson = Utils.Clone(matchingTrs[i]); + if (found.condition === undefined) { + found.condition = layer.source.osmTags + } else { + found.condition = {and: [found.condition, layer.source.osmTags]} } + + found = contextWriter.convertStrict(found, layer.id + ".tagRenderings." + found["id"]) + matchingTrs[i] = found + } + + if (matchingTrs.length !== 0) { + return matchingTrs } return undefined; } @@ -84,17 +95,20 @@ class ExpandTagRendering extends Conversion 0) { + const [layerName, search] = name.split(".") + let layer = state.sharedLayers.get(layerName) + if (layerName === this._self.id) { + layer = this._self; + } + if (layer === undefined) { + const candidates = Utils.sortedByLevenshteinDistance(layerName, Array.from(state.sharedLayers.keys()), s => s) + if (state.sharedLayers.size === 0) { + warnings.push(ctx + ": BOOTSTRAPPING. Rerun generate layeroverview. While reusing tagrendering: " + name + ": layer " + layerName + " not found. Maybe you meant on of " + candidates.slice(0, 3).join(", ")) + } else { + errors.push(ctx + ": While reusing tagrendering: " + name + ": layer " + layerName + " not found. Maybe you meant on of " + candidates.slice(0, 3).join(", ")) + } + continue + } + candidates = Utils.NoNull(layer.tagRenderings.map(tr => tr["id"])).map(id => layerName + "." + id) + } + candidates = Utils.sortedByLevenshteinDistance(name, candidates, i => i); + errors.push(ctx + ": The tagRendering with identifier " + name + " was not found.\n\tDid you mean one of " + candidates.join(", ") + "?") continue } for (let foundTr of lookup) { @@ -158,7 +191,7 @@ export class ExpandRewrite extends Conversion, T[ * "someKey": "somevalue {xyz}" * } * ExpandRewrite.RewriteParts("{xyz}", "rewritten", spec) // => {"someKey": "somevalue rewritten"} - * + * * // should substitute all occurances in strings * const spec = { * "someKey": "The left|right side has {key:left|right}" @@ -177,8 +210,8 @@ export class ExpandRewrite extends Conversion, T[ if (typeof obj === "string") { // This is a simple string - we do a simple replace - while(obj.indexOf(keyToRewrite) >= 0){ - obj = obj.replace(keyToRewrite, target) + while (obj.indexOf(keyToRewrite) >= 0) { + obj = obj.replace(keyToRewrite, target) } return obj } @@ -189,17 +222,17 @@ export class ExpandRewrite extends Conversion, T[ if (typeof obj === "object") { obj = {...obj} - + const isTr = targetIsTranslation && Translations.isProbablyATranslation(obj) - + for (const key in obj) { let subtarget = target - if(isTr && target[key] !== undefined){ + if (isTr && target[key] !== undefined) { // The target is a translation AND the current object is a translation // This means we should recursively replace with the translated value subtarget = target[key] } - + obj[key] = replaceRecursive(obj[key], subtarget) } return obj @@ -223,7 +256,7 @@ export class ExpandRewrite extends Conversion, T[ * renderings: "The value of xyz is abc" * } * new ExpandRewrite().convertStrict(spec, "test") // => ["The value of X is A", "The value of Y is B", "The value of Z is C"] - * + * * // should rewrite with translations * const spec = >{ * rewrite: { @@ -277,9 +310,9 @@ export class ExpandRewrite extends Conversion, T[ {// sanity check: {rewrite: ["a", "b"] should have the right amount of 'intos' in every case for (let i = 0; i < rewrite.rewrite.into.length; i++) { const into = keysToRewrite.into[i] - if(into.length !== rewrite.rewrite.sourceString.length){ - throw `${context}.into.${i} Error in rewrite: there are ${rewrite.rewrite.sourceString.length} keys to rewrite, but entry ${i} has only ${into.length} values` - + if (into.length !== rewrite.rewrite.sourceString.length) { + throw `${context}.into.${i} Error in rewrite: there are ${rewrite.rewrite.sourceString.length} keys to rewrite, but entry ${i} has only ${into.length} values` + } } } @@ -302,94 +335,116 @@ export class ExpandRewrite extends Conversion, T[ /** * Converts a 'special' translation into a regular translation which uses parameters - * E.g. - * - * const tr = { - * "special": - * } */ export class RewriteSpecial extends DesugaringStep { constructor() { - super("Converts a 'special' translation into a regular translation which uses parameters", ["special"],"RewriteSpecial"); + super("Converts a 'special' translation into a regular translation which uses parameters", ["special"], "RewriteSpecial"); } /** * Does the heavy lifting and conversion - * + * * // should not do anything if no 'special'-key is present * RewriteSpecial.convertIfNeeded({"en": "xyz", "nl": "abc"}, [], "test") // => {"en": "xyz", "nl": "abc"} - * + * * // should handle a simple special case * RewriteSpecial.convertIfNeeded({"special": {"type":"image_carousel"}}, [], "test") // => {'*': "{image_carousel()}"} - * + * * // should handle special case with a parameter * RewriteSpecial.convertIfNeeded({"special": {"type":"image_carousel", "image_key": "some_image_key"}}, [], "test") // => {'*': "{image_carousel(some_image_key)}"} - * + * * // should handle special case with a translated parameter * const spec = {"special": {"type":"image_upload", "label": {"en": "Add a picture to this object", "nl": "Voeg een afbeelding toe"}}} * const r = RewriteSpecial.convertIfNeeded(spec, [], "test") * r // => {"en": "{image_upload(,Add a picture to this object)}", "nl": "{image_upload(,Voeg een afbeelding toe)}" } - * + * + * // should handle special case with a prefix and postfix + * const spec = {"special": {"type":"image_upload" }, before: {"en": "PREFIX "}, after: {"en": " POSTFIX", nl: " Achtervoegsel"} } + * const r = RewriteSpecial.convertIfNeeded(spec, [], "test") + * r // => {"en": "PREFIX {image_upload(,)} POSTFIX", "nl": "PREFIX {image_upload(,)} Achtervoegsel" } + * * // should warn for unexpected keys * const errors = [] * RewriteSpecial.convertIfNeeded({"special": {type: "image_carousel"}, "en": "xyz"}, errors, "test") // => {'*': "{image_carousel()}"} - * errors // => ["At test: Unexpected key in a special block: en"] - * + * errors // => ["The only keys allowed next to a 'special'-block are 'before' and 'after'. Perhaps you meant to put 'en' into the special block?"] + * * // should give an error on unknown visualisations * const errors = [] * RewriteSpecial.convertIfNeeded({"special": {type: "qsdf"}}, errors, "test") // => undefined * errors.length // => 1 * errors[0].indexOf("Special visualisation 'qsdf' not found") >= 0 // => true - * + * * // should give an error is 'type' is missing * const errors = [] * RewriteSpecial.convertIfNeeded({"special": {}}, errors, "test") // => undefined * errors // => ["A 'special'-block should define 'type' to indicate which visualisation should be used"] + * + * + * // an actual test + * const special = { + * "before": { + * "en": "

Entrances

This building has {_entrances_count} entrances:" + * }, + * "after": { + * "en": "{_entrances_count_without_width_count} entrances don't have width information yet" + * }, + * "special": { + * "type": "multi", + * "key": "_entrance_properties_with_width", + * "tagrendering": { + * "en": "An entrance of {canonical(width)}" + * } + * }} + * const errors = [] + * RewriteSpecial.convertIfNeeded(special, errors, "test") // => {"en": "

Entrances

This building has {_entrances_count} entrances:{multi(_entrance_properties_with_width,An entrance of &LBRACEcanonical&LPARENSwidth&RPARENS&RBRACE)}{_entrances_count_without_width_count} entrances don't have width information yet"} + * errors // => [] */ - private static convertIfNeeded(input: (object & {special : {type: string}}) | any, errors: string[], context: string): any { + private static convertIfNeeded(input: (object & { special: { type: string } }) | any, errors: string[], context: string): any { const special = input["special"] - if(special === undefined){ + if (special === undefined) { return input } - for (const wrongKey of Object.keys(input).filter(k => k !== "special")) { - errors.push(`At ${context}: Unexpected key in a special block: ${wrongKey}`) - } - const type = special["type"] - if(type === undefined){ + if (type === undefined) { errors.push("A 'special'-block should define 'type' to indicate which visualisation should be used") return undefined } + const vis = SpecialVisualizations.specialVisualizations.find(sp => sp.funcName === type) - if(vis === undefined){ + if (vis === undefined) { const options = Utils.sortedByLevenshteinDistance(type, SpecialVisualizations.specialVisualizations, sp => sp.funcName) errors.push(`Special visualisation '${type}' not found. Did you perhaps mean ${options[0].funcName}, ${options[1].funcName} or ${options[2].funcName}?\n\tFor all known special visualisations, please see https://github.com/pietervdvn/MapComplete/blob/develop/Docs/SpecialRenderings.md`) return undefined } - + errors.push(... + Array.from(Object.keys(input)).filter(k => k !== "special" && k !== "before" && k !== "after") + .map(k => { + return `The only keys allowed next to a 'special'-block are 'before' and 'after'. Perhaps you meant to put '${k}' into the special block?`; + })) + const argNamesList = vis.args.map(a => a.name) const argNames = new Set(argNamesList) // Check for obsolete and misspelled arguments errors.push(...Object.keys(special) .filter(k => !argNames.has(k)) - .filter(k => k !== "type") + .filter(k => k !== "type" && k !== "before" && k !== "after") .map(wrongArg => { - const byDistance = Utils.sortedByLevenshteinDistance(wrongArg, argNamesList, x => x) - return `Unexpected argument with name '${wrongArg}'. Did you mean ${byDistance[0]}?\n\tAll known arguments are ${ argNamesList.join(", ")}` ; - })) - + const byDistance = Utils.sortedByLevenshteinDistance(wrongArg, argNamesList, x => x) + return `Unexpected argument in special block at ${context} with name '${wrongArg}'. Did you mean ${byDistance[0]}?\n\tAll known arguments are ${argNamesList.join(", ")}`; + })) + // Check that all obligated arguments are present. They are obligated if they don't have a preset value for (const arg of vis.args) { if (arg.required !== true) { continue; } const param = special[arg.name] - if(param === undefined){ + if (param === undefined) { errors.push(`Obligated parameter '${arg.name}' not found`) } } - + const foundLanguages = new Set() const translatedArgs = argNamesList.map(nm => special[nm]) .filter(v => v !== undefined) @@ -397,29 +452,54 @@ export class RewriteSpecial extends DesugaringStep { for (const translatedArg of translatedArgs) { for (const ln of Object.keys(translatedArg)) { foundLanguages.add(ln) - } + } } - - if(foundLanguages.size === 0){ - const args= argNamesList.map(nm => special[nm] ?? "").join(",") - return {'*': `{${type}(${args})}` + + const before = Translations.T(input.before) + const after = Translations.T(input.after) + + for (const ln of Object.keys(before?.translations ?? {})) { + foundLanguages.add(ln) } + for (const ln of Object.keys(after?.translations ?? {})) { + foundLanguages.add(ln) } - + + if (foundLanguages.size === 0) { + const args = argNamesList.map(nm => special[nm] ?? "").join(",") + return { + '*': `{${type}(${args})}` + } + } + const result = {} const languages = Array.from(foundLanguages) languages.sort() for (const ln of languages) { const args = [] for (const argName of argNamesList) { - const v = special[argName] ?? "" - if(Translations.isProbablyATranslation(v)){ - args.push(new Translation(v).textFor(ln)) - }else{ + let v = special[argName] ?? "" + if (Translations.isProbablyATranslation(v)) { + v = new Translation(v).textFor(ln) + + } + + if (typeof v === "string") { + const txt = v.replace(/,/g, "&COMMA") + .replace(/\{/g, "&LBRACE") + .replace(/}/g, "&RBRACE") + .replace(/\(/g, "&LPARENS") + .replace(/\)/g, '&RPARENS') + args.push(txt) + } else if (typeof v === "object") { + args.push(JSON.stringify(v)) + } else { args.push(v) } } - result[ln] = `{${type}(${args.join(",")})}` + const beforeText = before?.textFor(ln) ?? "" + const afterText = after?.textFor(ln) ?? "" + result[ln] = `${beforeText}{${type}(${args.map(a => a).join(",")})}${afterText}` } return result } @@ -437,24 +517,40 @@ export class RewriteSpecial extends DesugaringStep { * const result = new RewriteSpecial().convert(tr,"test").result * const expected = {render: {'*': "{image_carousel(image)}"}, mappings: [{if: "other_image_key", then: {'*': "{image_carousel(other_image_key)}"}} ]} * result // => expected + * + * // Should put text before if specified + * const tr = { + * render: {special: {type: "image_carousel", image_key: "image"}, before: {en: "Some introduction"} }, + * } + * const result = new RewriteSpecial().convert(tr,"test").result + * const expected = {render: {'en': "Some introduction{image_carousel(image)}"}} + * result // => expected + * + * // Should put text after if specified + * const tr = { + * render: {special: {type: "image_carousel", image_key: "image"}, after: {en: "Some footer"} }, + * } + * const result = new RewriteSpecial().convert(tr,"test").result + * const expected = {render: {'en': "{image_carousel(image)}Some footer"}} + * result // => expected */ convert(json: TagRenderingConfigJson, context: string): { result: TagRenderingConfigJson; errors?: string[]; warnings?: string[]; information?: string[] } { const errors = [] json = Utils.Clone(json) - const paths : {path: string[], type?: any, typeHint?: string}[] = tagrenderingconfigmeta["default"] ?? tagrenderingconfigmeta + const paths: { path: string[], type?: any, typeHint?: string }[] = tagrenderingconfigmeta["default"] ?? tagrenderingconfigmeta for (const path of paths) { - if(path.typeHint !== "rendered"){ + if (path.typeHint !== "rendered") { continue } Utils.WalkPath(path.path, json, ((leaf, travelled) => RewriteSpecial.convertIfNeeded(leaf, errors, travelled.join(".")))) } - + return { - result:json, + result: json, errors }; } - + } export class PrepareLayer extends Fuse { @@ -463,10 +559,11 @@ export class PrepareLayer extends Fuse { "Fully prepares and expands a layer for the LayerConfig.", new On("tagRenderings", new Each(new RewriteSpecial())), new On("tagRenderings", new Concat(new ExpandRewrite()).andThenF(Utils.Flatten)), - new On("tagRenderings", new Concat(new ExpandTagRendering(state))), + new On("tagRenderings", layer => new Concat(new ExpandTagRendering(state, layer))), new On("mapRendering", new Concat(new ExpandRewrite()).andThenF(Utils.Flatten)), + new On("mapRendering", layer => new Each(new On("icon", new FirstOf(new ExpandTagRendering(state, layer))))), new SetDefault("titleIcons", ["defaults"]), - new On("titleIcons", new Concat(new ExpandTagRendering(state))) + new On("titleIcons", layer => new Concat(new ExpandTagRendering(state, layer))) ); } } \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/PrepareTheme.ts b/Models/ThemeConfig/Conversion/PrepareTheme.ts index 1d61f2a3b3..df0807120d 100644 --- a/Models/ThemeConfig/Conversion/PrepareTheme.ts +++ b/Models/ThemeConfig/Conversion/PrepareTheme.ts @@ -170,7 +170,13 @@ class AddImportLayers extends DesugaringStep { super("For every layer in the 'layers'-list, create a new layer which'll import notes. (Note that priviliged layers and layers which have a geojson-source set are ignored)", ["layers"], "AddImportLayers"); } - convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[] } { + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors?: string[], warnings?: string[] } { + if (!(json.enableNoteImports ?? true)) { + return { + warnings: ["Not creating a note import layers for theme "+json.id+" as they are disabled"], + result: json + }; + } const errors = [] json = {...json} @@ -178,39 +184,37 @@ class AddImportLayers extends DesugaringStep { json.layers = [...json.layers] - if (json.enableNoteImports ?? true) { - const creator = new CreateNoteImportLayer() - for (let i1 = 0; i1 < allLayers.length; i1++) { - const layer = allLayers[i1]; - if (Constants.priviliged_layers.indexOf(layer.id) >= 0) { - // Priviliged layers are skipped - continue - } + const creator = new CreateNoteImportLayer() + for (let i1 = 0; i1 < allLayers.length; i1++) { + const layer = allLayers[i1]; + if (Constants.priviliged_layers.indexOf(layer.id) >= 0) { + // Priviliged layers are skipped + continue + } - if (layer.source["geoJson"] !== undefined) { - // Layer which don't get their data from OSM are skipped - continue - } + if (layer.source["geoJson"] !== undefined) { + // Layer which don't get their data from OSM are skipped + continue + } - if (layer.title === undefined || layer.name === undefined) { - // Anonymous layers and layers without popup are skipped - continue - } + if (layer.title === undefined || layer.name === undefined) { + // Anonymous layers and layers without popup are skipped + continue + } - if (layer.presets === undefined || layer.presets.length == 0) { - // A preset is needed to be able to generate a new point - continue; - } + if (layer.presets === undefined || layer.presets.length == 0) { + // A preset is needed to be able to generate a new point + continue; + } - try { + try { - const importLayerResult = creator.convert(layer, context + ".(noteimportlayer)[" + i1 + "]") - if (importLayerResult.result !== undefined) { - json.layers.push(importLayerResult.result) - } - } catch (e) { - errors.push("Could not generate an import-layer for " + layer.id + " due to " + e) + const importLayerResult = creator.convert(layer, context + ".(noteimportlayer)[" + i1 + "]") + if (importLayerResult.result !== undefined) { + json.layers.push(importLayerResult.result) } + } catch (e) { + errors.push("Could not generate an import-layer for " + layer.id + " due to " + e) } } @@ -255,6 +259,7 @@ export class AddMiniMap extends DesugaringStep { if (!translation.hasOwnProperty(key)) { continue } + const template = translation[key] const parts = SubstitutedTranslation.ExtractSpecialComponents(template) const hasMiniMap = parts.filter(part => part.special !== undefined).some(special => special.special.func.funcName === "minimap") @@ -352,7 +357,7 @@ class AddDependencyLayersToTheme extends DesugaringStep { for (const layerConfig of alreadyLoaded) { try { - const layerDeps = DependencyCalculator.getLayerDependencies(new LayerConfig(layerConfig)) + const layerDeps = DependencyCalculator.getLayerDependencies(new LayerConfig(layerConfig, themeId+"(dependencies)")) dependencies.push(...layerDeps) } catch (e) { console.error(e) @@ -448,9 +453,16 @@ class PreparePersonalTheme extends DesugaringStep { if (json.id !== "personal") { return {result: json} } + + // The only thing this _really_ does, is adding the layer-ids into 'layers' + // All other preparations are done by the 'override-all'-block in personal.json - json.layers = Array.from(this._state.sharedLayers.keys()).filter(l => Constants.priviliged_layers.indexOf(l) < 0) - return {result: json}; + json.layers = Array.from(this._state.sharedLayers.keys()) + .filter(l => Constants.priviliged_layers.indexOf(l) < 0) + .filter(l => this._state.publicLayers.has(l)) + return {result: json, information: [ + "The personal theme has "+json.layers.length+" public layers" + ]}; } } diff --git a/Models/ThemeConfig/Conversion/Validation.ts b/Models/ThemeConfig/Conversion/Validation.ts index b0c121953b..1347da5fab 100644 --- a/Models/ThemeConfig/Conversion/Validation.ts +++ b/Models/ThemeConfig/Conversion/Validation.ts @@ -17,7 +17,7 @@ import {QuestionableTagRenderingConfigJson} from "../Json/QuestionableTagRenderi class ValidateLanguageCompleteness extends DesugaringStep { - + private readonly _languages: string[]; constructor(...languages: string[]) { @@ -45,19 +45,67 @@ class ValidateLanguageCompleteness extends DesugaringStep { } } +export class DoesImageExist extends DesugaringStep { + + private readonly _knownImagePaths: Set; + private readonly doesPathExist: (path: string) => boolean = undefined; + + constructor(knownImagePaths: Set, checkExistsSync: (path: string) => boolean = undefined) { + super("Checks if an image exists", [], "DoesImageExist"); + this._knownImagePaths = knownImagePaths; + this.doesPathExist = checkExistsSync; + } + + convert(image: string, context: string): { result: string; errors?: string[]; warnings?: string[]; information?: string[] } { + const errors = [] + const warnings = [] + const information = [] + if (image.indexOf("{") >= 0) { + information.push("Ignoring image with { in the path: " + image) + return {result: image} + } + + if (image === "assets/SocialImage.png") { + return {result: image} + } + if (image.match(/[a-z]*/)) { + + if (Svg.All[image + ".svg"] !== undefined) { + // This is a builtin img, e.g. 'checkmark' or 'crosshair' + return {result: image}; + } + } + + if (!this._knownImagePaths.has(image)) { + if (this.doesPathExist === undefined) { + errors.push(`Image with path ${image} not found or not attributed; it is used in ${context}`) + } else if (!this.doesPathExist(image)) { + errors.push(`Image with path ${image} does not exist; it is used in ${context}.\n Check for typo's and missing directories in the path.`) + } else { + errors.push(`Image with path ${image} is not attributed (but it exists); execute 'npm run query:licenses' to add the license information and/or run 'npm run generate:licenses' to compile all the license info`) + } + } + return { + result: image, + errors, warnings, information + } + } + +} + class ValidateTheme extends DesugaringStep { /** * The paths where this layer is originally saved. Triggers some extra checks * @private */ private readonly _path?: string; - private readonly knownImagePaths: Set; private readonly _isBuiltin: boolean; private _sharedTagRenderings: Map; + private readonly _validateImage: DesugaringStep; - constructor(knownImagePaths: Set, path: string, isBuiltin: boolean, sharedTagRenderings: Map) { + constructor(doesImageExist: DoesImageExist, path: string, isBuiltin: boolean, sharedTagRenderings: Map) { super("Doesn't change anything, but emits warnings and errors", [], "ValidateTheme"); - this.knownImagePaths = knownImagePaths; + this._validateImage = doesImageExist; this._path = path; this._isBuiltin = isBuiltin; this._sharedTagRenderings = sharedTagRenderings; @@ -89,26 +137,7 @@ class ValidateTheme extends DesugaringStep { errors.push("Found a remote image: " + remoteImage + " in theme " + json.id + ", please download it.") } for (const image of images) { - if (image.indexOf("{") >= 0) { - information.push("Ignoring image with { in the path: " + image) - continue - } - - if (image === "assets/SocialImage.png") { - continue - } - if (image.match(/[a-z]*/)) { - - if(Svg.All[image + ".svg"] !== undefined){ - // This is a builtin img, e.g. 'checkmark' or 'crosshair' - continue;// => - } - } - - if (this.knownImagePaths !== undefined && !this.knownImagePaths.has(image)) { - const ctx = context === undefined ? "" : ` in a layer defined in the theme ${context}` - errors.push(`Image with path ${image} not found or not attributed; it is used in ${json.id}${ctx}`) - } + this._validateImage.convertJoin(image, context === undefined ? "" : ` in a layer defined in the theme ${context}`, errors, warnings, information) } if (json.icon.endsWith(".svg")) { @@ -121,6 +150,18 @@ class ValidateTheme extends DesugaringStep { ` Width = ${width} height = ${height}`; (json.hideFromOverview ? warnings : errors).push(e) } + + const w = parseInt(width); + const h = parseInt(height) + if (w < 370 || h < 370) { + const e: string = [ + `the icon for theme ${json.id} is too small. Please rescale the icon at ${json.icon}`, + `Even though an SVG is 'infinitely scaleable', the icon should be dimensioned bigger. One of the build steps of the theme does convert the image to a PNG (to serve as PWA-icon) and having a small dimension will cause blurry images.`, + ` Width = ${width} height = ${height}; we recommend a size of at least 500px * 500px and to use a square aspect ratio.`, + ].join("\n"); + (json.hideFromOverview ? warnings : errors).push(e) + } + }) } catch (e) { console.error("Could not read " + json.icon + " due to " + e) @@ -138,9 +179,7 @@ class ValidateTheme extends DesugaringStep { if (theme.id !== filename) { errors.push("Theme ids should be the same as the name.json, but we got id: " + theme.id + " and filename " + filename + " (" + this._path + ")") } - if (!this.knownImagePaths.has(theme.icon)) { - errors.push("The theme image " + theme.icon + " is not attributed or not saved locally") - } + this._validateImage.convertJoin(theme.icon, context + ".icon", errors, warnings, information); const dups = Utils.Dupiclates(json.layers.map(layer => layer["id"])) if (dups.length > 0) { errors.push(`The theme ${json.id} defines multiple layers with id ${dups.join(", ")}`) @@ -151,10 +190,19 @@ class ValidateTheme extends DesugaringStep { errors.push(...checked.errors) } if (!json.hideFromOverview && theme.id !== "personal") { + + // The first key in the the title-field must be english, otherwise the title in the loading page will be the different language + const targetLanguage = theme.title.SupportedLanguages()[0] + if (targetLanguage !== "en") { + warnings.push(`TargetLanguage is not 'en' for public theme ${theme.id}, it is ${targetLanguage}. Move 'en' up in the title of the theme and set it as the first key`) + } + // Official, public themes must have a full english translation const checked = new ValidateLanguageCompleteness("en") .convert(theme, theme.id) errors.push(...checked.errors) + + } } catch (e) { @@ -171,10 +219,10 @@ class ValidateTheme extends DesugaringStep { } export class ValidateThemeAndLayers extends Fuse { - constructor(knownImagePaths: Set, path: string, isBuiltin: boolean, sharedTagRenderings: Map) { + constructor(doesImageExist: DoesImageExist, path: string, isBuiltin: boolean, sharedTagRenderings: Map) { super("Validates a theme and the contained layers", - new ValidateTheme(knownImagePaths, path, isBuiltin, sharedTagRenderings), - new On("layers", new Each(new ValidateLayer(undefined, false))) + new ValidateTheme(doesImageExist, path, isBuiltin, sharedTagRenderings), + new On("layers", new Each(new ValidateLayer(undefined, false, doesImageExist))) ); } } @@ -198,6 +246,10 @@ class OverrideShadowingCheck extends DesugaringStep { for (const layer of withOverride) { for (const key in overrideAll) { + if(key.endsWith("+") || key.startsWith("+")){ + // This key will _add_ to the list, not overwrite it - so no warning is needed + continue + } if (layer["override"][key] !== undefined || layer["override"]["=" + key] !== undefined) { const w = "The override of layer " + JSON.stringify(layer["builtin"]) + " has a shadowed property: " + key + " is overriden by overrideAll of the theme"; errors.push(w) @@ -210,22 +262,22 @@ class OverrideShadowingCheck extends DesugaringStep { } -class MiscThemeChecks extends DesugaringStep{ +class MiscThemeChecks extends DesugaringStep { constructor() { - super("Miscelleanous checks on the theme", [],"MiscThemesChecks"); + super("Miscelleanous checks on the theme", [], "MiscThemesChecks"); } - + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors?: string[]; warnings?: string[]; information?: string[] } { const warnings = [] const errors = [] - if(json.id !== "personal" && (json.layers === undefined || json.layers.length === 0)){ - errors.push("The theme "+json.id+" has no 'layers' defined ("+context+")") + if (json.id !== "personal" && (json.layers === undefined || json.layers.length === 0)) { + errors.push("The theme " + json.id + " has no 'layers' defined (" + context + ")") } - if(json.socialImage === ""){ - warnings.push("Social image for theme "+json.id+" is the emtpy string") + if (json.socialImage === "") { + warnings.push("Social image for theme " + json.id + " is the emtpy string") } return { - result :json, + result: json, warnings, errors }; @@ -246,28 +298,29 @@ export class PrevalidateTheme extends Fuse { export class DetectShadowedMappings extends DesugaringStep { private readonly _calculatedTagNames: string[]; + constructor(layerConfig?: LayerConfigJson) { super("Checks that the mappings don't shadow each other", [], "DetectShadowedMappings"); this._calculatedTagNames = DetectShadowedMappings.extractCalculatedTagNames(layerConfig); } /** - * + * * DetectShadowedMappings.extractCalculatedTagNames({calculatedTags: ["_abc:=js()"]}) // => ["_abc"] * DetectShadowedMappings.extractCalculatedTagNames({calculatedTags: ["_abc=js()"]}) // => ["_abc"] */ - private static extractCalculatedTagNames(layerConfig?: LayerConfigJson | {calculatedTags : string []}){ + private static extractCalculatedTagNames(layerConfig?: LayerConfigJson | { calculatedTags: string [] }) { return layerConfig?.calculatedTags?.map(ct => { - if(ct.indexOf(':=') >= 0){ + if (ct.indexOf(':=') >= 0) { return ct.split(':=')[0] } return ct.split("=")[0] }) ?? [] - + } /** - * + * * // should detect a simple shadowed mapping * const tr = {mappings: [ * { @@ -307,19 +360,20 @@ export class DetectShadowedMappings extends DesugaringStep { - const ifTags = TagUtils.Tag(m.if); - if(m.hideInAnswer !== undefined && m.hideInAnswer !== false && m.hideInAnswer !== true){ - let conditionTags = TagUtils.Tag( m.hideInAnswer) + const parsedConditions = json.mappings.map((m, i) => { + const ctx = `${context}.mappings[${i}]` + const ifTags = TagUtils.Tag(m.if, ctx); + if (m.hideInAnswer !== undefined && m.hideInAnswer !== false && m.hideInAnswer !== true) { + let conditionTags = TagUtils.Tag(m.hideInAnswer) // Merge the condition too! return new And([conditionTags, ifTags]) } return ifTags }) for (let i = 0; i < json.mappings.length; i++) { - if(!parsedConditions[i].isUsableAsAnswer()){ + if (!parsedConditions[i].isUsableAsAnswer()) { // There is no straightforward way to convert this mapping.if into a properties-object, so we simply skip this one // Yes, it might be shadowed, but running this check is to difficult right now continue @@ -331,7 +385,9 @@ export class DetectShadowedMappings extends DesugaringStep { - constructor() { + private readonly _doesImageExist: DoesImageExist; + + constructor(doesImageExist: DoesImageExist) { super("Checks that 'then'clauses in mappings don't have images, but use 'icon' instead", [], "DetectMappingsWithImages"); + this._doesImageExist = doesImageExist; } /** - * const r = new DetectMappingsWithImages().convert({ + * const r = new DetectMappingsWithImages(new DoesImageExist(new Set())).convert({ * "mappings": [ * { * "if": "bicycle_parking=stands", @@ -384,9 +444,9 @@ export class DetectMappingsWithImages extends DesugaringStep msg.indexOf("./assets/layers/bike_parking/staple.svg") >= 0) // => true */ convert(json: TagRenderingConfigJson, context: string): { result: TagRenderingConfigJson; errors?: string[]; warnings?: string[], information?: string[] } { - const errors = [] - const warnings = [] - const information = [] + const errors: string[] = [] + const warnings: string[] = [] + const information: string[] = [] if (json.mappings === undefined || json.mappings.length === 0) { return {result: json} } @@ -394,21 +454,27 @@ export class DetectMappingsWithImages extends DesugaringStep=0 - const images = Utils.Dedup(Translations.T(mapping.then).ExtractImages()) + const ignore = mapping["#"]?.indexOf(ignoreToken) >= 0 + const images = Utils.Dedup(Translations.T(mapping.then)?.ExtractImages() ?? []) const ctx = `${context}.mappings[${i}]` if (images.length > 0) { - if(!ignore){ + if (!ignore) { errors.push(`${ctx}: A mapping has an image in the 'then'-clause. Remove the image there and use \`"icon": \` instead. The images found are ${images.join(", ")}. (This check can be turned of by adding "#": "${ignoreToken}" in the mapping, but this is discouraged`) - }else{ + } else { information.push(`${ctx}: Ignored image ${images.join(", ")} in 'then'-clause of a mapping as this check has been disabled`) + + for (const image of images) { + this._doesImageExist.convertJoin(image, ctx, errors, warnings, information); + + } + } - }else if (ignore){ + } else if (ignore) { warnings.push(`${ctx}: unused '${ignoreToken}' - please remove this`) } } - return { + return { errors, warnings, information, @@ -418,10 +484,10 @@ export class DetectMappingsWithImages extends DesugaringStep { - constructor(layerConfig: LayerConfigJson) { + constructor(layerConfig?: LayerConfigJson, doesImageExist?: DoesImageExist) { super("Various validation on tagRenderingConfigs", - new DetectShadowedMappings( layerConfig), - new DetectMappingsWithImages() + new DetectShadowedMappings(layerConfig), + new DetectMappingsWithImages(doesImageExist) ); } } @@ -433,17 +499,20 @@ export class ValidateLayer extends DesugaringStep { */ private readonly _path?: string; private readonly _isBuiltin: boolean; + private readonly _doesImageExist: DoesImageExist; - constructor(path: string, isBuiltin: boolean) { + constructor(path: string, isBuiltin: boolean, doesImageExist: DoesImageExist) { super("Doesn't change anything, but emits warnings and errors", [], "ValidateLayer"); this._path = path; this._isBuiltin = isBuiltin; + this._doesImageExist = doesImageExist } convert(json: LayerConfigJson, context: string): { result: LayerConfigJson; errors: string[]; warnings?: string[], information?: string[] } { const errors = [] const warnings = [] const information = [] + context = "While validating a layer: "+context if (typeof json === "string") { errors.push(context + ": This layer hasn't been expanded: " + json) return { @@ -451,6 +520,15 @@ export class ValidateLayer extends DesugaringStep { errors } } + + if(json.tagRenderings !== undefined && json.tagRenderings.length > 0){ + if(json.title === undefined){ + errors.push(context + ": this layer does not have a title defined but it does have tagRenderings. Not having a title will disable the popups, resulting in an unclickable element. Please add a title. If not having a popup is intended and the tagrenderings need to be kept (e.g. in a library layer), set `title: null` to disable this error.") + } + if(json.title === null){ + information.push(context + ": title is `null`. This results in an element that cannot be clicked - even though tagRenderings is set.") + } + } if (json["builtin"] !== undefined) { errors.push(context + ": This layer hasn't been expanded: " + json) @@ -462,13 +540,13 @@ export class ValidateLayer extends DesugaringStep { { // duplicate ids in tagrenderings check - const duplicates = Utils.Dedup(Utils.Dupiclates( Utils.NoNull((json.tagRenderings ?? []).map(tr => tr["id"])))) - .filter(dupl => dupl !== "questions") - if(duplicates.length > 0){ - errors.push("At "+context+": some tagrenderings have a duplicate id: "+duplicates.join(", ")) + const duplicates = Utils.Dedup(Utils.Dupiclates(Utils.NoNull((json.tagRenderings ?? []).map(tr => tr["id"])))) + .filter(dupl => dupl !== "questions") + if (duplicates.length > 0) { + errors.push("At " + context + ": some tagrenderings have a duplicate id: " + duplicates.join(", ")) } } - + try { { // Some checks for legacy elements @@ -484,6 +562,10 @@ export class ValidateLayer extends DesugaringStep { if (json["hideUnderlayingFeaturesMinPercentage"] !== undefined) { errors.push(context + ": layer " + json.id + " contains an old 'hideUnderlayingFeaturesMinPercentage'") } + + if(json.isShown !== undefined && (json.isShown["render"] !== undefined || json.isShown["mappings"] !== undefined)){ + warnings.push(context + " has a tagRendering as `isShown`") + } } { // Check location of layer file @@ -525,10 +607,10 @@ export class ValidateLayer extends DesugaringStep { } } if (json.tagRenderings !== undefined) { - const r = new On("tagRenderings", new Each(new ValidateTagRenderings(json))).convert(json, context) - warnings.push(...(r.warnings??[])) - errors.push(...(r.errors??[])) - information.push(...(r.information??[])) + const r = new On("tagRenderings", new Each(new ValidateTagRenderings(json, this._doesImageExist))).convert(json, context) + warnings.push(...(r.warnings ?? [])) + errors.push(...(r.errors ?? [])) + information.push(...(r.information ?? [])) } if (json.presets !== undefined) { diff --git a/Models/ThemeConfig/FilterConfig.ts b/Models/ThemeConfig/FilterConfig.ts index a76a67a233..d649dacea7 100644 --- a/Models/ThemeConfig/FilterConfig.ts +++ b/Models/ThemeConfig/FilterConfig.ts @@ -4,18 +4,19 @@ import FilterConfigJson from "./Json/FilterConfigJson"; import Translations from "../../UI/i18n/Translations"; import {TagUtils} from "../../Logic/Tags/TagUtils"; import ValidatedTextField from "../../UI/Input/ValidatedTextField"; -import {AndOrTagConfigJson} from "./Json/TagConfigJson"; +import {TagConfigJson} from "./Json/TagConfigJson"; import {UIEventSource} from "../../Logic/UIEventSource"; import {FilterState} from "../FilteredLayer"; import {QueryParameters} from "../../Logic/Web/QueryParameters"; import {Utils} from "../../Utils"; +import {RegexTag} from "../../Logic/Tags/RegexTag"; export default class FilterConfig { public readonly id: string public readonly options: { question: Translation; osmTags: TagsFilter | undefined; - originalTagsSpec: string | AndOrTagConfigJson + originalTagsSpec: TagConfigJson fields: { name: string, type: string }[] }[]; public readonly defaultSelection? : number @@ -29,7 +30,6 @@ export default class FilterConfig { } if (json.id.match(/^[a-zA-Z0-9_-]*$/) === null) { throw `A filter with invalid id was found at ${context}. Ids should only contain letters, numbers or - _` - } if (json.options.map === undefined) { @@ -43,12 +43,13 @@ export default class FilterConfig { option.question, `${ctx}.question` ); - let osmTags = undefined; + let osmTags: undefined | TagsFilter = undefined; if ((option.fields?.length ?? 0) == 0 && option.osmTags !== undefined) { osmTags = TagUtils.Tag( option.osmTags, `${ctx}.osmTags` ); + FilterConfig.validateSearch(osmTags, ctx) } if (question === undefined) { throw `Invalid filter: no question given at ${ctx}` @@ -84,6 +85,10 @@ export default class FilterConfig { throw `Invalid filter: multiple filters are set as default, namely ${i} and ${defaultSelection} at ${context}` } } + + if(option.osmTags !== undefined){ + FilterConfig.validateSearch(TagUtils.Tag(option.osmTags), ctx) + } return {question: question, osmTags: osmTags, fields, originalTagsSpec: option.osmTags}; }); @@ -101,6 +106,26 @@ export default class FilterConfig { } + private static validateSearch(osmTags: TagsFilter, ctx: string){ + osmTags.visit(t => { + if (!(t instanceof RegexTag)) { + return; + } + if(typeof t.value == "string"){ + return; + } + + if(t.value.source == '^..*$' || t.value.source == '^[\\s\\S][\\s\\S]*$' /*Compiled regex with 'm'*/){ + return + } + + if(!t.value.ignoreCase) { + throw `At ${ctx}: The filter for key '${t.key}' uses a regex '${t.value}', but you should use a case invariant regex with ~i~ instead, as search should be case insensitive` + } + + }) + } + public initState(): UIEventSource { function reset(state: FilterState): string { @@ -129,7 +154,7 @@ export default class FilterConfig { })) // We map the query parameter for this case - return qp.map(str => { + return qp.sync(str => { const parsed = Number(str) if (isNaN(parsed)) { // Nope, not a correct number! @@ -143,7 +168,7 @@ export default class FilterConfig { const option = this.options[0] if (option.fields.length > 0) { - return qp.map(str => { + return qp.sync(str => { // There are variables in play! // str should encode a json-hash try { @@ -178,7 +203,7 @@ export default class FilterConfig { currentFilter: option.osmTags, state: "true" } - return qp.map( + return qp.sync( str => { // Only a single option exists here if (str === "true") { diff --git a/Models/ThemeConfig/Json/DeleteConfigJson.ts b/Models/ThemeConfig/Json/DeleteConfigJson.ts index 9b147bfb75..88ae47e4fa 100644 --- a/Models/ThemeConfig/Json/DeleteConfigJson.ts +++ b/Models/ThemeConfig/Json/DeleteConfigJson.ts @@ -1,4 +1,4 @@ -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; export interface DeleteConfigJson { @@ -41,7 +41,7 @@ export interface DeleteConfigJson { * The tags that will be given to the object. * This must remove tags so that the 'source/osmTags' won't match anymore */ - if: AndOrTagConfigJson, + if: TagConfigJson, /** * The human explanation for the options */ @@ -67,7 +67,7 @@ export interface DeleteConfigJson { * } * ``` */ - softDeletionTags?: AndOrTagConfigJson | string, + softDeletionTags?: TagConfigJson, /*** * By default, the contributor needs 20 previous changesets to delete points edited by others. * For some small features (e.g. bicycle racks) this is too much and this requirement can be lowered or dropped, which can be done here. diff --git a/Models/ThemeConfig/Json/FilterConfigJson.ts b/Models/ThemeConfig/Json/FilterConfigJson.ts index bd03200f3b..db0e258a80 100644 --- a/Models/ThemeConfig/Json/FilterConfigJson.ts +++ b/Models/ThemeConfig/Json/FilterConfigJson.ts @@ -1,4 +1,4 @@ -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; export default interface FilterConfigJson { /** @@ -13,7 +13,7 @@ export default interface FilterConfigJson { */ options: { question: string | any; - osmTags?: AndOrTagConfigJson | string, + osmTags?: TagConfigJson, default?: boolean, fields?: { /** diff --git a/Models/ThemeConfig/Json/LayerConfigJson.ts b/Models/ThemeConfig/Json/LayerConfigJson.ts index d54dd83186..e464ff3058 100644 --- a/Models/ThemeConfig/Json/LayerConfigJson.ts +++ b/Models/ThemeConfig/Json/LayerConfigJson.ts @@ -1,4 +1,4 @@ -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; import {TagRenderingConfigJson} from "./TagRenderingConfigJson"; import FilterConfigJson from "./FilterConfigJson"; import {DeleteConfigJson} from "./DeleteConfigJson"; @@ -47,17 +47,28 @@ export interface LayerConfigJson { /** * Every source must set which tags have to be present in order to load the given layer. */ - osmTags: AndOrTagConfigJson | string + osmTags: TagConfigJson /** * The maximum amount of seconds that a tile is allowed to linger in the cache */ maxCacheAge?: number }) & - ({ /* # Query OSM Via the overpass API with a custom script - * source: {overpassScript: ""} when you want to do special things. _This should be really rare_. - * This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query - * However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc... - */ + ({ + /** + * If set, this custom overpass-script will be used instead of building one by using the OSM-tags. + * Specifying OSM-tags is still obligatory and will still hide non-matching items and they will be used for the rest of the pipeline. + * _This should be really rare_. + * + * For example, when you want to fetch all grass-areas in parks and which are marked as publicly accessible: + * ``` + * "source": { + * "overpassScript": + * "way[\"leisure\"=\"park\"];node(w);is_in;area._[\"leisure\"=\"park\"];(way(area)[\"landuse\"=\"grass\"]; node(w); );", + * "osmTags": "access=yes" + * } + * ``` + * + */ overpassScript?: string } | { @@ -124,7 +135,7 @@ export interface LayerConfigJson { doNotDownload?: boolean; /** - * This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view. + * If set, only features matching this extra tag will be shown. * This is useful to hide certain features from view. * * Important: hiding features does not work dynamically, but is only calculated when the data is first renders. @@ -132,7 +143,7 @@ export interface LayerConfigJson { * * The default value is 'yes' */ - isShown?: TagRenderingConfigJson; + isShown?: TagConfigJson; /** * Advanced option - might be set by the theme compiler @@ -203,10 +214,10 @@ export interface LayerConfigJson { presets?: { /** * The title - shown on the 'add-new'-button. - * + * * This should include the article of the noun, e.g. 'a hydrant', 'a bicycle pump'. * This text will be inserted into `Add {category} here`, becoming `Add a hydrant here`. - * + * * Do _not_ indicate 'new': 'add a new shop here' is incorrect, as the shop might have existed forever, it could just be unmapped! */ title: string | any, @@ -267,7 +278,7 @@ export interface LayerConfigJson { * If one or more questions have a 'group' or 'label' set, select all the entries with the corresponding group or label with `otherlayer.*group` * Remark: if a tagRendering is 'lent' from another layer, the 'source'-tags are copied and added as condition. * If they are not wanted, remove them with an override - * + * * A special value is 'questions', which indicates the location of the questions box. If not specified, it'll be appended to the bottom of the featureInfobox. * * At last, one can define a group of renderings where parts of all strings will be replaced by multiple other strings. @@ -276,9 +287,10 @@ export interface LayerConfigJson { */ tagRenderings?: (string - | { builtin: string, override: any } + | { builtin: string | string[], override: Partial } + | { id: string, builtin: string[], override: Partial } | QuestionableTagRenderingConfigJson - | RewritableConfigJson<(string | { builtin: string, override: any } | QuestionableTagRenderingConfigJson)[]> + | (RewritableConfigJson<(string | { builtin: string, override: Partial } | QuestionableTagRenderingConfigJson)[]> & {id: string}) ) [], @@ -348,7 +360,9 @@ export interface LayerConfigJson { allowMove?: boolean | MoveConfigJson /** - * IF set, a 'split this road' button is shown + * If set, a 'split this way' button is shown on objects rendered as LineStrings, e.g. highways. + * + * If the way is part of a relation, MapComplete will attempt to update this relation as well */ allowSplit?: boolean @@ -413,7 +427,7 @@ export interface LayerConfigJson { units?: UnitConfigJson[] /** - * If set, synchronizes wether or not this layer is selected. + * If set, synchronizes whether or not this layer is enabled. * * no: Do not sync at all, always revert to default * local: keep selection on local storage diff --git a/Models/ThemeConfig/Json/LayoutConfigJson.ts b/Models/ThemeConfig/Json/LayoutConfigJson.ts index 2128499dbb..c767029ed6 100644 --- a/Models/ThemeConfig/Json/LayoutConfigJson.ts +++ b/Models/ThemeConfig/Json/LayoutConfigJson.ts @@ -150,7 +150,7 @@ export interface LayoutConfigJson { * * In the above scenario, `sometagrendering` will be added at the beginning of the tagrenderings of every layer */ - overrideAll?: any; + overrideAll?: Partial; /** * The id of the default background. BY default: vanilla OSM @@ -308,6 +308,8 @@ export interface LayoutConfigJson { /** * If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete), * these notes will be shown if a relevant layer is present. + * + * Default is true for official layers and false for unofficial (sideloaded) layers */ enableNoteImports?: true | boolean; diff --git a/Models/ThemeConfig/Json/PointRenderingConfigJson.ts b/Models/ThemeConfig/Json/PointRenderingConfigJson.ts index c9a4abc9d1..9f372b8801 100644 --- a/Models/ThemeConfig/Json/PointRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/PointRenderingConfigJson.ts @@ -1,5 +1,5 @@ import {TagRenderingConfigJson} from "./TagRenderingConfigJson"; -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; /** * The PointRenderingConfig gives all details onto how to render a single point of a feature. @@ -39,7 +39,7 @@ export default interface PointRenderingConfigJson { * Note: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle */ iconBadges?: { - if: string | AndOrTagConfigJson, + if: TagConfigJson, /** * Badge to show * Type: icon @@ -60,7 +60,7 @@ export default interface PointRenderingConfigJson { rotation?: string | TagRenderingConfigJson; /** * A HTML-fragment that is shown below the icon, for example: - *
{name}
+ *
{name}
* * If the icon is undefined, then the label is shown in the center of the feature. * Note that, if the wayhandling hides the icon then no label is shown as well. diff --git a/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts b/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts index 33c8716465..df83ea3f4c 100644 --- a/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts @@ -1,6 +1,136 @@ -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; import {TagRenderingConfigJson} from "./TagRenderingConfigJson"; + +export interface MappingConfigJson { + + /** + * @inheritDoc + */ + if: TagConfigJson, + /** + * Shown if the 'if is fulfilled + * Type: rendered + */ + then: string | any, + /** + * An extra icon supporting the choice + * Type: icon + */ + icon?: string | { + /** + * The path to the icon + * Type: icon + */ + path: string, + /** + * Size of the image + */ + class: "small" | "medium" | "large" | string + } + + /** + * In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation). + * + * In the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user. + * In this case, one of the mappings can be hiden by setting this flag. + * + * To demonstrate an example making a default assumption: + * + * mappings: [ + * { + * if: "access=", -- no access tag present, we assume accessible + * then: "Accessible to the general public", + * hideInAnswer: true + * }, + * { + * if: "access=yes", + * then: "Accessible to the general public", -- the user selected this, we add that to OSM + * }, + * { + * if: "access=no", + * then: "Not accessible to the public" + * } + * ] + * + * + * For example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`. + * Then, we would add two mappings: + * { + * if: "operator=Agentschap Natuur en Bos" -- the non-abbreviated version which should be uploaded + * then: "Maintained by Agentschap Natuur en Bos" + * }, + * { + * if: "operator=ANB", -- we don't want to upload abbreviations + * then: "Maintained by Agentschap Natuur en Bos" + * hideInAnswer: true + * } + * + * Hide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate. + * Keep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch + * + * e.g., for toilets: if "wheelchair=no", we know there is no wheelchair dedicated room. + * For the location of the changing table, the option "in the wheelchair accessible toilet is weird", so we write: + * + * { + * "question": "Where is the changing table located?" + * "mappings": [ + * {"if":"changing_table:location=female","then":"In the female restroom"}, + * {"if":"changing_table:location=male","then":"In the male restroom"}, + * {"if":"changing_table:location=wheelchair","then":"In the wheelchair accessible restroom", "hideInAnswer": "wheelchair=no"}, + * + * ] + * } + * + * Also have a look for the meta-tags + * { + * if: "operator=Agentschap Natuur en Bos", + * then: "Maintained by Agentschap Natuur en Bos", + * hideInAnswer: "_country!=be" + * } + */ + hideInAnswer?: boolean | TagConfigJson, + /** + * Only applicable if 'multiAnswer' is set. + * This is for situations such as: + * `accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected. + * This can be done with `ifnot` + * Note that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`. + * If this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer` + */ + ifnot?: TagConfigJson + + /** + * If chosen as answer, these tags will be applied as well onto the object. + * Not compatible with multiAnswer. + * + * This can be used e.g. to erase other keys which indicate the 'not' value: + *```json + * { + * "if": "crossing:marking=rainbow", + * "then": "This is a rainbow crossing", + * "addExtraTags": "not:crossing:marking=" + * } + * ``` + * + */ + addExtraTags?: string[] + + /** + * If there are many options, the mappings-radiobuttons will be replaced by an element with a searchfunction + * + * Searchterms (per language) allow to easily find an option if there are many options + */ + searchTerms?: Record + + /** + * If the searchable selector is picked, mappings with this item will have priority and show up even if the others are hidden + * Use this sparingly + */ + priorityIf?: TagConfigJson + +} + /** * A QuestionableTagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet. * If the desired tags are missing and a question is defined, a question will be shown instead. @@ -68,109 +198,5 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs /** * Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes */ - mappings?: { - - /** - * @inheritDoc - */ - if: AndOrTagConfigJson | string, - /** - * Shown if the 'if is fulfilled - * Type: rendered - */ - then: string | any, - /** - * An extra icon supporting the choice - * Type: icon - */ - icon?: string | { - /** - * The path to the icon - * Type: icon - */ - path: string, - /** - * Size of the image - */ - class: "small" | "medium" | "large" | string - } - - /** - * In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation). - * - * In the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user. - * In this case, one of the mappings can be hiden by setting this flag. - * - * To demonstrate an example making a default assumption: - * - * mappings: [ - * { - * if: "access=", -- no access tag present, we assume accessible - * then: "Accessible to the general public", - * hideInAnswer: true - * }, - * { - * if: "access=yes", - * then: "Accessible to the general public", -- the user selected this, we add that to OSM - * }, - * { - * if: "access=no", - * then: "Not accessible to the public" - * } - * ] - * - * - * For example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`. - * Then, we would add two mappings: - * { - * if: "operator=Agentschap Natuur en Bos" -- the non-abbreviated version which should be uploaded - * then: "Maintained by Agentschap Natuur en Bos" - * }, - * { - * if: "operator=ANB", -- we don't want to upload abbreviations - * then: "Maintained by Agentschap Natuur en Bos" - * hideInAnswer: true - * } - * - * Hide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate. - * Keep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch - * - * e.g., for toilets: if "wheelchair=no", we know there is no wheelchair dedicated room. - * For the location of the changing table, the option "in the wheelchair accessible toilet is weird", so we write: - * - * { - * "question": "Where is the changing table located?" - * "mappings": [ - * {"if":"changing_table:location=female","then":"In the female restroom"}, - * {"if":"changing_table:location=male","then":"In the male restroom"}, - * {"if":"changing_table:location=wheelchair","then":"In the wheelchair accessible restroom", "hideInAnswer": "wheelchair=no"}, - * - * ] - * } - * - * Also have a look for the meta-tags - * { - * if: "operator=Agentschap Natuur en Bos", - * then: "Maintained by Agentschap Natuur en Bos", - * hideInAnswer: "_country!=be" - * } - */ - hideInAnswer?: boolean | string | AndOrTagConfigJson, - /** - * Only applicable if 'multiAnswer' is set. - * This is for situations such as: - * `accepts:coins=no` where one can select all the possible payment methods. However, we want to make explicit that some options _were not_ selected. - * This can be done with `ifnot` - * Note that we can not explicitly render this negative case to the user, we cannot show `does _not_ accept coins`. - * If this is important to your usecase, consider using multiple radiobutton-fields without `multiAnswer` - */ - ifnot?: AndOrTagConfigJson | string - - /** - * If chosen as answer, these tags will be applied as well onto the object. - * Not compatible with multiAnswer - */ - addExtraTags?: string[] - - }[] + mappings?: MappingConfigJson[] } \ No newline at end of file diff --git a/Models/ThemeConfig/Json/RewritableConfigJson.ts b/Models/ThemeConfig/Json/RewritableConfigJson.ts index eb15c40a7e..9bba9ddff9 100644 --- a/Models/ThemeConfig/Json/RewritableConfigJson.ts +++ b/Models/ThemeConfig/Json/RewritableConfigJson.ts @@ -1,9 +1,14 @@ /** * Rewrites and multiplies the given renderings of type T. * + * This can be used for introducing many similar questions automatically, + * which also makes translations easier. + * + * (Note that the key does _not_ need to be wrapped in {}. + * However, we recommend to use them if the key is used in a translation, as missing keys will be picked up and warned for by the translation scripts) + * * For example: * - * * ``` * { * rewrite: { @@ -13,9 +18,9 @@ * ["Y", 1], * ["Z", 2] * ], - * renderings: { + * renderings: [{ * "key":"a|b|c" - * } + * }] * } * } * ``` @@ -23,7 +28,7 @@ * * [ * { - * // The first pair: key --> X, a|b|c --> 0 + * # The first pair: key --> X, a|b|c --> 0 * "X": 0 * }, * { diff --git a/Models/ThemeConfig/Json/TagConfigJson.ts b/Models/ThemeConfig/Json/TagConfigJson.ts index 90e833178d..265312c452 100644 --- a/Models/ThemeConfig/Json/TagConfigJson.ts +++ b/Models/ThemeConfig/Json/TagConfigJson.ts @@ -1,4 +1,21 @@ -export interface AndOrTagConfigJson { - and?: (string | AndOrTagConfigJson)[] - or?: (string | AndOrTagConfigJson)[] -} \ No newline at end of file +/** + * The main representation of Tags. + * See https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation + */ +export type TagConfigJson = string | AndTagConfigJson | OrTagConfigJson + + +/** + * Chain many tags, to match, all of these should be true + * See https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation + */ +export type OrTagConfigJson = { + or: TagConfigJson[] +} +/** + * Chain many tags, to match, a single of these should be true + * See https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for documentation + */ +export type AndTagConfigJson = { + and: TagConfigJson[] +} diff --git a/Models/ThemeConfig/Json/TagRenderingConfigJson.ts b/Models/ThemeConfig/Json/TagRenderingConfigJson.ts index 1ccf1c2f85..39ff7ea326 100644 --- a/Models/ThemeConfig/Json/TagRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/TagRenderingConfigJson.ts @@ -1,4 +1,4 @@ -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; /** * A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet. @@ -25,6 +25,11 @@ export interface TagRenderingConfigJson { */ labels?: string[] + /** + * A human-readable text explaining what this tagRendering does + */ + description?: string | any + /** * Renders this value. Note that "{key}"-parts are substituted by the corresponding values of the element. * If neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value. @@ -35,11 +40,45 @@ export interface TagRenderingConfigJson { render?: string | any, /** - * Only show this tagrendering (or question) if the object also matches the following tags. + * Only show this tagrendering (or ask the question) if the selected object also matches the tags specified as `condition`. * - * This is useful to ask a follow-up question. E.g. if there is a diaper table, then ask a follow-up question on diaper tables... + * This is useful to ask a follow-up question. + * For example, within toilets, asking _where_ the diaper changing table is is only useful _if_ there is one. + * This can be done by adding `"condition": "changing_table=yes"` + * + * A full example would be: + * ```json + * { + * "question": "Where is the changing table located?", + * "render": "The changing table is located at {changing_table:location}", + * "condition": "changing_table=yes", + * "freeform": { + * "key": "changing_table:location", + * "inline": true + * }, + * "mappings": [ + * { + * "then": "The changing table is in the toilet for women.", + * "if": "changing_table:location=female_toilet" + * }, + * { + * "then": "The changing table is in the toilet for men.", + * "if": "changing_table:location=male_toilet" + * }, + * { + * "if": "changing_table:location=wheelchair_toilet", + * "then": "The changing table is in the toilet for wheelchair users.", + * }, + * { + * "if": "changing_table:location=dedicated_room", + * "then": "The changing table is in a dedicated room. ", + * } + * ], + * "id": "toilet-changing_table:location" + * }, + * ``` * */ - condition?: AndOrTagConfigJson | string; + condition?: TagConfigJson; /** * Allow freeform text input from the user @@ -66,7 +105,7 @@ export interface TagRenderingConfigJson { * * This can be an substituting-tag as well, e.g. {'if': 'addr:street:={_calculated_nearby_streetname}', 'then': '{_calculated_nearby_streetname}'} */ - if: AndOrTagConfigJson | string, + if: TagConfigJson, /** * If the condition `if` is met, the text `then` will be rendered. * If not known yet, the user will be presented with `then` as an option diff --git a/Models/ThemeConfig/Json/UnitConfigJson.ts b/Models/ThemeConfig/Json/UnitConfigJson.ts index bde2683b23..f69212f000 100644 --- a/Models/ThemeConfig/Json/UnitConfigJson.ts +++ b/Models/ThemeConfig/Json/UnitConfigJson.ts @@ -1,7 +1,9 @@ export default interface UnitConfigJson { /** - * Every key from this list will be normalized + * Every key from this list will be normalized. + * + * To render a united value properly, use */ appliesToKey: string[], /** diff --git a/Models/ThemeConfig/LayerConfig.ts b/Models/ThemeConfig/LayerConfig.ts index 24fc810bd7..c7d76d93e6 100644 --- a/Models/ThemeConfig/LayerConfig.ts +++ b/Models/ThemeConfig/LayerConfig.ts @@ -28,9 +28,13 @@ import {And} from "../../Logic/Tags/And"; import {Overpass} from "../../Logic/Osm/Overpass"; import Constants from "../Constants"; import {FixedUiElement} from "../../UI/Base/FixedUiElement"; +import Svg from "../../Svg"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {OsmTags} from "../OsmFeature"; export default class LayerConfig extends WithContextLoader { + public static readonly syncSelectionAllowed = ["no", "local", "theme-only", "global"] as const; public readonly id: string; public readonly name: Translation; public readonly description: Translation; @@ -38,16 +42,14 @@ export default class LayerConfig extends WithContextLoader { public readonly calculatedTags: [string, string, boolean][]; public readonly doNotDownload: boolean; public readonly passAllFeatures: boolean; - public readonly isShown: TagRenderingConfig; + public readonly isShown: TagsFilter; public minzoom: number; public minzoomVisible: number; public readonly maxzoom: number; public readonly title?: TagRenderingConfig; public readonly titleIcons: TagRenderingConfig[]; - public readonly mapRendering: PointRenderingConfig[] public readonly lineRendering: LineRenderingConfig[] - public readonly units: Unit[]; public readonly deletion: DeleteConfig | null; public readonly allowMove: MoveConfig | null @@ -57,15 +59,12 @@ export default class LayerConfig extends WithContextLoader { * In seconds */ public readonly maxAgeOfCache: number - public readonly presets: PresetConfig[]; - public readonly tagRenderings: TagRenderingConfig[]; public readonly filters: FilterConfig[]; public readonly filterIsSameAs: string; public readonly forceLoad: boolean; - - public readonly syncSelection: "no" | "local" | "theme-only" | "global" + public readonly syncSelection: (typeof LayerConfig.syncSelectionAllowed)[number] // this is a trick to conver a constant array of strings into a type union of these values constructor( json: LayerConfigJson, @@ -73,18 +72,24 @@ export default class LayerConfig extends WithContextLoader { official: boolean = true ) { context = context + "." + json.id; - const translationContext = "layers:"+json.id + const translationContext = "layers:" + json.id super(json, context) this.id = json.id; + if (typeof json === "string") { + throw `Not a valid layer: the layerConfig is a string. 'npm run generate:layeroverview' might be needed (at ${context})` + } + + if (json.id === undefined) { - throw "Not a valid layer: id is undefined: " + JSON.stringify(json) + throw `Not a valid layer: id is undefined: ${JSON.stringify(json)} (At ${context})` } if (json.source === undefined) { throw "Layer " + this.id + " does not define a source section (" + context + ")" } + if (json.source.osmTags === undefined) { throw "Layer " + this.id + " does not define a osmTags in the source section - these should always be present, even for geojson layers (" + context + ")" } @@ -97,16 +102,19 @@ export default class LayerConfig extends WithContextLoader { } this.maxAgeOfCache = json.source.maxCacheAge ?? 24 * 60 * 60 * 30 - this.syncSelection = json.syncSelection; + if (json.syncSelection !== undefined && LayerConfig.syncSelectionAllowed.indexOf(json.syncSelection) < 0) { + throw context + " Invalid sync-selection: must be one of " + LayerConfig.syncSelectionAllowed.map(v => `'${v}'`).join(", ") + " but got '" + json.syncSelection + "'" + } + this.syncSelection = json.syncSelection ?? "no"; const osmTags = TagUtils.Tag( json.source.osmTags, context + "source.osmTags" ); - if(Constants.priviliged_layers.indexOf(this.id) < 0 && osmTags.isNegative()){ - throw context + "The source states tags which give a very wide selection: it only uses negative expressions, which will result in too much and unexpected data. Add at least one required tag. The tags are:\n\t"+osmTags.asHumanString(false, false, {}); + if (Constants.priviliged_layers.indexOf(this.id) < 0 && osmTags.isNegative()) { + throw context + "The source states tags which give a very wide selection: it only uses negative expressions, which will result in too much and unexpected data. Add at least one required tag. The tags are:\n\t" + osmTags.asHumanString(false, false, {}); } - + if (json.source["geoJsonSource"] !== undefined) { throw context + "Use 'geoJson' instead of 'geoJsonSource'"; } @@ -114,7 +122,7 @@ export default class LayerConfig extends WithContextLoader { if (json.source["geojson"] !== undefined) { throw context + "Use 'geoJson' instead of 'geojson' (the J is a capital letter)"; } - + this.source = new SourceConfig( { @@ -134,8 +142,8 @@ export default class LayerConfig extends WithContextLoader { this.allowSplit = json.allowSplit ?? false; this.name = Translations.T(json.name, translationContext + ".name"); - if(json.units!==undefined && !Array.isArray(json.units)){ - throw "At "+context+".units: the 'units'-section should be a list; you probably have an object there" + if (json.units !== undefined && !Array.isArray(json.units)) { + throw "At " + context + ".units: the 'units'-section should be a list; you probably have an object there" } this.units = (json.units ?? []).map(((unitJson, i) => Unit.fromJson(unitJson, `${context}.unit[${i}]`))) @@ -163,8 +171,8 @@ export default class LayerConfig extends WithContextLoader { const index = kv.indexOf("="); let key = kv.substring(0, index).trim(); const r = "[a-z_][a-z0-9:]*" - if(key.match(r) === null){ - throw "At "+context+" invalid key for calculated tag: "+key+"; it should match "+r + if (key.match(r) === null) { + throw "At " + context + " invalid key for calculated tag: " + key + "; it should match " + r } const isStrict = key.endsWith(':') if (isStrict) { @@ -186,6 +194,9 @@ export default class LayerConfig extends WithContextLoader { this.doNotDownload = json.doNotDownload ?? false; this.passAllFeatures = json.passAllFeatures ?? false; this.minzoom = json.minzoom ?? 0; + if (json["minZoom"] !== undefined) { + throw "At " + context + ": minzoom is written all lowercase" + } this.minzoomVisible = json.minzoomVisible ?? this.minzoom; this.shownByDefault = json.shownByDefault ?? true; this.forceLoad = json.forceLoad ?? false; @@ -294,7 +305,7 @@ export default class LayerConfig extends WithContextLoader { }); this.title = this.tr("title", undefined); - this.isShown = this.tr("isShown", "yes"); + this.isShown = TagUtils.TagD(json.isShown, context+".isShown") this.deletion = null; if (json.deletion === true) { @@ -339,14 +350,14 @@ export default class LayerConfig extends WithContextLoader { } public GenerateDocumentation(usedInThemes: string[], layerIsNeededBy?: Map, dependencies: { - context?: string; - reason: string; - neededLayer: string; - }[] = [] - , addedByDefault = false, canBeIncluded = true): BaseUIElement { - const extraProps = [] - - extraProps.push("This layer is shown at zoomlevel **"+this.minzoom+"** and higher") + context?: string; + reason: string; + neededLayer: string; + }[] = [] + , addedByDefault = false, canBeIncluded = true): BaseUIElement { + const extraProps : (string | BaseUIElement)[] = [] + + extraProps.push("This layer is shown at zoomlevel **" + this.minzoom + "** and higher") if (canBeIncluded) { if (addedByDefault) { @@ -356,9 +367,9 @@ export default class LayerConfig extends WithContextLoader { extraProps.push('This layer is not visible by default and must be enabled in the filter by the user. ') } if (this.title === undefined) { - extraProps.push("This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.") + extraProps.push("Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable.") } - if (this.title === undefined && this.shownByDefault === false) { + if (this.name === undefined && this.shownByDefault === false) { extraProps.push("This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true") } if (this.name === undefined) { @@ -369,7 +380,11 @@ export default class LayerConfig extends WithContextLoader { } if (this.source.geojsonSource !== undefined) { - extraProps.push(" This layer is loaded from an external source, namely `" + this.source.geojsonSource + "`") + extraProps.push( + new Combine([ + Utils.runningFromConsole ? "" : undefined, + "This layer is loaded from an external source, namely ", + new FixedUiElement( this.source.geojsonSource).SetClass("code")])); } } else { extraProps.push("This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.") @@ -401,16 +416,16 @@ export default class LayerConfig extends WithContextLoader { if (values == undefined) { return undefined } - const embedded: (Link | string)[] = values.values?.map(v => Link.OsmWiki(values.key, v, true)) ?? ["_no preset options defined, or no values in them_"] + const embedded: (Link | string)[] = values.values?.map(v => Link.OsmWiki(values.key, v, true).SetClass("mr-2")) ?? ["_no preset options defined, or no values in them_"] return [ new Combine([ new Link( - "", - "https://taginfo.openstreetmap.org/keys/" + values.key + "#values" + Utils.runningFromConsole ? "" : Svg.statistics_svg().SetClass("w-4 h-4 mr-2"), + "https://taginfo.openstreetmap.org/keys/" + values.key + "#values", true ), Link.OsmWiki(values.key) - ]), + ]).SetClass("flex"), values.type === undefined ? "Multiple choice" : new Link(values.type, "../SpecialInputElements.md#" + values.type), - new Combine(embedded) + new Combine(embedded).SetClass("flex") ]; })) @@ -419,24 +434,33 @@ export default class LayerConfig extends WithContextLoader { quickOverview = new Combine([ new FixedUiElement("Warning: ").SetClass("bold"), "this quick overview is incomplete", - new Table(["attribute", "type", "values which are supported by this layer"], tableRows) + new Table(["attribute", "type", "values which are supported by this layer"], tableRows).SetClass("zebra-table") ]).SetClass("flex-col flex") } - const icon = this.mapRendering - .filter(mr => mr.location.has("point")) - .map(mr => mr.icon?.render?.txt) - .find(i => i !== undefined) - let iconImg = "" - if (icon !== undefined) { - // This is for the documentation, so we have to use raw HTML - iconImg = ` ` + + let iconImg: BaseUIElement = new FixedUiElement("") + + if (Utils.runningFromConsole) { + const icon = this.mapRendering + .filter(mr => mr.location.has("point")) + .map(mr => mr.icon?.render?.txt) + .find(i => i !== undefined) + // This is for the documentation in a markdown-file, so we have to use raw HTML + if (icon !== undefined) { + iconImg = new FixedUiElement(` `) + } + } else { + iconImg = this.mapRendering + .filter(mr => mr.location.has("point")) + .map(mr => mr.GenerateLeafletStyle(new UIEventSource({id:"node/-1"}), false, {includeBadges: false}).html) + .find(i => i !== undefined) } let overpassLink: BaseUIElement = undefined; if (Constants.priviliged_layers.indexOf(this.id) < 0) { try { - overpassLink = new Link("Execute on overpass", Overpass.AsOverpassTurboLink( new And(neededTags).optimize())) + overpassLink = new Link("Execute on overpass", Overpass.AsOverpassTurboLink(new And(neededTags).optimize())) } catch (e) { console.error("Could not generate overpasslink for " + this.id) } @@ -459,7 +483,7 @@ export default class LayerConfig extends WithContextLoader { new Title("Supported attributes", 2), quickOverview, ...this.tagRenderings.map(tr => tr.GenerateDocumentation()) - ]).SetClass("flex-col") + ]).SetClass("flex-col").SetClass("link-underline") } public CustomCodeSnippets(): string[] { @@ -470,7 +494,7 @@ export default class LayerConfig extends WithContextLoader { } AllTagRenderings(): TagRenderingConfig[] { - return Utils.NoNull([...this.tagRenderings, ...this.titleIcons, this.title, this.isShown]) + return Utils.NoNull([...this.tagRenderings, ...this.titleIcons, this.title]) } public isLeftRightSensitive(): boolean { diff --git a/Models/ThemeConfig/LayoutConfig.ts b/Models/ThemeConfig/LayoutConfig.ts index 3cb39d9f7b..e0c917d5aa 100644 --- a/Models/ThemeConfig/LayoutConfig.ts +++ b/Models/ThemeConfig/LayoutConfig.ts @@ -55,11 +55,11 @@ export default class LayoutConfig { public readonly usedImages: string[] public readonly extraLink?: ExtraLinkConfig - - public readonly definedAtUrl? : string; + + public readonly definedAtUrl?: string; public readonly definitionRaw?: string; - - constructor(json: LayoutConfigJson, official = true,options?: { + + constructor(json: LayoutConfigJson, official = true, options?: { definedAtUrl?: string, definitionRaw?: string }) { @@ -75,7 +75,7 @@ export default class LayoutConfig { throw "The id of a theme should match [a-z0-9-_]*: " + json.id } } - const context = this.id + const context = this.id this.maintainer = json.maintainer; this.credits = json.credits; this.version = json.version; @@ -107,10 +107,10 @@ export default class LayoutConfig { throw "Got undefined layers for " + json.id + " at " + context } } - this.title = new Translation(json.title, "themes:"+context + ".title"); - this.description = new Translation(json.description, "themes:"+context + ".description"); - this.shortDescription = json.shortDescription === undefined ? this.description.FirstSentence() : new Translation(json.shortDescription, "themes:"+context + ".shortdescription"); - this.descriptionTail = json.descriptionTail === undefined ? undefined : new Translation(json.descriptionTail, "themes:"+context + ".descriptionTail"); + this.title = new Translation(json.title, "themes:" + context + ".title"); + this.description = new Translation(json.description, "themes:" + context + ".description"); + this.shortDescription = json.shortDescription === undefined ? this.description.FirstSentence() : new Translation(json.shortDescription, "themes:" + context + ".shortdescription"); + this.descriptionTail = json.descriptionTail === undefined ? undefined : new Translation(json.descriptionTail, "themes:" + context + ".descriptionTail"); this.icon = json.icon; this.socialImage = json.socialImage ?? LayoutConfig.defaultSocialImage; if (this.socialImage === "") { @@ -128,13 +128,13 @@ export default class LayoutConfig { // At this point, layers should be expanded and validated either by the generateScript or the LegacyJsonConvert this.layers = json.layers.map(lyrJson => new LayerConfig(lyrJson, json.id + ".layers." + lyrJson["id"], official)); - this.extraLink = new ExtraLinkConfig(json.extraLink ?? { + this.extraLink = new ExtraLinkConfig(json.extraLink ?? { icon: "./assets/svg/pop-out.svg", - href: "https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}&language={language}", + href: "https://{basepath}/{theme}.html?lat={lat}&lon={lon}&z={zoom}&language={language}", newTab: true, - requirements: ["iframe","no-welcome-message"] - }, context+".extraLink") - + requirements: ["iframe", "no-welcome-message"] + }, context + ".extraLink") + this.clustering = { maxZoom: 16, @@ -211,5 +211,5 @@ export default class LayoutConfig { } return undefined } - + } \ No newline at end of file diff --git a/Models/ThemeConfig/LineRenderingConfig.ts b/Models/ThemeConfig/LineRenderingConfig.ts index 6b7f8082b2..fbe1c6756d 100644 --- a/Models/ThemeConfig/LineRenderingConfig.ts +++ b/Models/ThemeConfig/LineRenderingConfig.ts @@ -71,7 +71,6 @@ export default class LineRenderingConfig extends WithContextLoader { } const fillStr = render(this.fill, undefined) - let fill: boolean = undefined; if (fillStr !== undefined && fillStr !== "") { style["fill"] = fillStr === "yes" || fillStr === "true" } diff --git a/Models/ThemeConfig/PointRenderingConfig.ts b/Models/ThemeConfig/PointRenderingConfig.ts index 39dcec1563..c0c3cf962f 100644 --- a/Models/ThemeConfig/PointRenderingConfig.ts +++ b/Models/ThemeConfig/PointRenderingConfig.ts @@ -13,6 +13,7 @@ import Img from "../../UI/Base/Img"; import Combine from "../../UI/Base/Combine"; import {VariableUiElement} from "../../UI/Base/VariableUIElement"; + export default class PointRenderingConfig extends WithContextLoader { private static readonly allowed_location_codes = new Set(["point", "centroid", "start", "end","projected_centerpoint"]) @@ -126,13 +127,20 @@ export default class PointRenderingConfig extends WithContextLoader { public GetBaseIcon(tags?: any): BaseUIElement { tags = tags ?? {id: "node/-1"} - const rotation = Utils.SubstituteKeys(this.rotation?.GetRenderValue(tags)?.txt ?? "0deg", tags) - const htmlDefs = Utils.SubstituteKeys(this.icon?.GetRenderValue(tags)?.txt, tags) let defaultPin: BaseUIElement = undefined if (this.label === undefined) { defaultPin = Svg.teardrop_with_hole_green_svg() } - return PointRenderingConfig.FromHtmlMulti(htmlDefs, rotation, false, defaultPin) + if(this.icon === undefined){ + return defaultPin; + } + const rotation = Utils.SubstituteKeys(this.rotation?.GetRenderValue(tags)?.txt ?? "0deg", tags) + const htmlDefs = Utils.SubstituteKeys(this.icon?.GetRenderValue(tags)?.txt, tags) + if(htmlDefs === undefined){ + // This layer doesn't want to show an icon right now + return undefined + } + return PointRenderingConfig.FromHtmlMulti(htmlDefs, rotation, false, defaultPin) } public GetSimpleIcon(tags: UIEventSource): BaseUIElement { diff --git a/Models/ThemeConfig/SourceConfig.ts b/Models/ThemeConfig/SourceConfig.ts index 5c31bdbcf1..9282844360 100644 --- a/Models/ThemeConfig/SourceConfig.ts +++ b/Models/ThemeConfig/SourceConfig.ts @@ -1,6 +1,5 @@ import {TagsFilter} from "../../Logic/Tags/TagsFilter"; import {RegexTag} from "../../Logic/Tags/RegexTag"; -import {param} from "jquery"; export default class SourceConfig { diff --git a/Models/ThemeConfig/TagRenderingConfig.ts b/Models/ThemeConfig/TagRenderingConfig.ts index 5547e26699..bffe1e7f1f 100644 --- a/Models/ThemeConfig/TagRenderingConfig.ts +++ b/Models/ThemeConfig/TagRenderingConfig.ts @@ -11,9 +11,23 @@ import Combine from "../../UI/Base/Combine"; import Title from "../../UI/Base/Title"; import Link from "../../UI/Base/Link"; import List from "../../UI/Base/List"; -import {QuestionableTagRenderingConfigJson} from "./Json/QuestionableTagRenderingConfigJson"; +import {MappingConfigJson, QuestionableTagRenderingConfigJson} from "./Json/QuestionableTagRenderingConfigJson"; import {FixedUiElement} from "../../UI/Base/FixedUiElement"; import {Paragraph} from "../../UI/Base/Paragraph"; +import spec = Mocha.reporters.spec; +import SpecialVisualizations from "../../UI/SpecialVisualizations"; + +export interface Mapping { + readonly if: TagsFilter, + readonly ifnot?: TagsFilter, + readonly then: TypedTranslation, + readonly icon: string, + readonly iconClass: string | "small" | "medium" | "large" | "small-height" | "medium-height" | "large-height", + readonly hideInAnswer: boolean | TagsFilter + readonly addExtraTags: Tag[], + readonly searchTerms?: Record, + readonly priorityIf?: TagsFilter +} /*** * The parsed version of TagRenderingConfigJSON @@ -26,6 +40,7 @@ export default class TagRenderingConfig { public readonly render?: TypedTranslation; public readonly question?: TypedTranslation; public readonly condition?: TagsFilter; + public readonly description?: Translation; public readonly configuration_warnings: string[] = [] @@ -41,17 +56,10 @@ export default class TagRenderingConfig { public readonly multiAnswer: boolean; - public readonly mappings?: { - readonly if: TagsFilter, - readonly ifnot?: TagsFilter, - readonly then: TypedTranslation, - readonly icon: string, - readonly iconClass: string - readonly hideInAnswer: boolean | TagsFilter - readonly addExtraTags: Tag[] - }[] + public readonly mappings?: Mapping[] public readonly labels: string[] + constructor(json: string | QuestionableTagRenderingConfigJson, context?: string) { if (json === undefined) { throw "Initing a TagRenderingConfig with undefined in " + context; @@ -72,15 +80,15 @@ export default class TagRenderingConfig { } let translationKey = context; - if(json["id"] !== undefined){ + if (json["id"] !== undefined) { const layerId = context.split(".")[0] - if(json["source"]){ - let src = json["source"]+":" - if(json["source"] === "shared-questions"){ + if (json["source"]) { + let src = json["source"] + ":" + if (json["source"] === "shared-questions") { src += "shared_questions." } translationKey = `${src}${json["id"] ?? ""}` - }else{ + } else { translationKey = `layers:${layerId}.tagRenderings.${json["id"] ?? ""}` } } @@ -103,21 +111,27 @@ export default class TagRenderingConfig { this.labels = json.labels ?? [] this.render = Translations.T(json.render, translationKey + ".render"); this.question = Translations.T(json.question, translationKey + ".question"); + this.description = Translations.T(json.description, translationKey + ".description"); this.condition = TagUtils.Tag(json.condition ?? {"and": []}, `${context}.condition`); if (json.freeform) { if (json.freeform.addExtraTags !== undefined && json.freeform.addExtraTags.map === undefined) { throw `Freeform.addExtraTags should be a list of strings - not a single string (at ${context})` } - const type = json.freeform.type ?? "string" + const type = json.freeform.type ?? "string" + + if (ValidatedTextField.AvailableTypes().indexOf(type) < 0) { + throw "At " + context + ".freeform.type is an unknown type: " + type + "; try one of " + ValidatedTextField.AvailableTypes().join(", ") + } let placeholder: Translation = Translations.T(json.freeform.placeholder) if (placeholder === undefined) { - const typeDescription = Translations.t.validation[type]?.description - if(typeDescription !== undefined){ - placeholder = Translations.T(json.freeform.key+" ("+type+")").Subs({[type]: typeDescription}) - }else{ - placeholder = Translations.T(json.freeform.key+" ("+type+")") + const typeDescription = Translations.t.validation[type]?.description + const key = json.freeform.key; + if (typeDescription !== undefined) { + placeholder = typeDescription.OnEveryLanguage(l => key + " (" + l + ")") + } else { + placeholder = Translations.T(key + " (" + type + ")") } } @@ -150,7 +164,7 @@ export default class TagRenderingConfig { } - if (!ValidatedTextField.ForType(this.freeform.key) === undefined) { + if (this.freeform.type !== undefined && ValidatedTextField.AvailableTypes().indexOf(this.freeform.type) < 0) { const knownKeys = ValidatedTextField.AvailableTypes().join(", "); throw `Freeform.key ${this.freeform.key} is an invalid type. Known keys are ${knownKeys}` } @@ -169,64 +183,8 @@ export default class TagRenderingConfig { throw "Tagrendering has a 'mappings'-object, but expected a list (" + context + ")" } - this.mappings = json.mappings.map((mapping, i) => { - - const ctx = `${translationKey}.mappings.${i}` - if (mapping.then === undefined) { - throw `${ctx}: Invalid mapping: if without body` - } - if (mapping.ifnot !== undefined && !this.multiAnswer) { - throw `${ctx}: Invalid mapping: ifnot defined, but the tagrendering is not a multianswer` - } - - if (mapping.if === undefined) { - throw `${ctx}: Invalid mapping: "if" is not defined, but the tagrendering is not a multianswer` - } - if (typeof mapping.if !== "string" && mapping.if["length"] !== undefined) { - throw `${ctx}: Invalid mapping: "if" is defined as an array. Use {"and": } or {"or": } instead` - } - - if (mapping.addExtraTags !== undefined && this.multiAnswer) { - throw `${ctx}: Invalid mapping: got a multi-Answer with addExtraTags; this is not allowed` - } - - let hideInAnswer: boolean | TagsFilter = false; - if (typeof mapping.hideInAnswer === "boolean") { - hideInAnswer = mapping.hideInAnswer; - } else if (mapping.hideInAnswer !== undefined) { - hideInAnswer = TagUtils.Tag(mapping.hideInAnswer, `${context}.mapping[${i}].hideInAnswer`); - } - let icon = undefined; - let iconClass = "small" - if(mapping.icon !== undefined){ - if (typeof mapping.icon === "string" && mapping.icon !== "") { - icon = mapping.icon - }else{ - icon = mapping.icon["path"] - iconClass = mapping.icon["class"] ?? iconClass - } - } - const mp = { - if: TagUtils.Tag(mapping.if, `${ctx}.if`), - ifnot: (mapping.ifnot !== undefined ? TagUtils.Tag(mapping.ifnot, `${ctx}.ifnot`) : undefined), - then: Translations.T(mapping.then, `${ctx}.then`), - hideInAnswer, - icon, - iconClass, - addExtraTags: (mapping.addExtraTags ?? []).map((str, j) => TagUtils.SimpleTag(str, `${ctx}.addExtraTags[${j}]`)) - }; - if (this.question) { - if (hideInAnswer !== true && mp.if !== undefined && !mp.if.isUsableAsAnswer()) { - throw `${context}.mapping[${i}].if: This value cannot be used to answer a question, probably because it contains a regex or an OR. Either change it or set 'hideInAnswer'` - } - - if (hideInAnswer !== true && !(mp.ifnot?.isUsableAsAnswer() ?? true)) { - throw `${context}.mapping[${i}].ifnot: This value cannot be used to answer a question, probably because it contains a regex or an OR. Either change it or set 'hideInAnswer'` - } - } - - return mp; - }); + const commonIconSize = Utils.NoNull(json.mappings.map(m => m.icon !== undefined ? m.icon["class"] : undefined))[0] ?? "small" + this.mappings = json.mappings.map((m, i) => TagRenderingConfig.ExtractMapping(m, i, translationKey, context, this.multiAnswer, this.question !== undefined, commonIconSize)); } if (this.question && this.freeform?.key === undefined && this.mappings === undefined) { @@ -335,11 +293,91 @@ export default class TagRenderingConfig { } } + /** + * const tr = TagRenderingConfig.ExtractMapping({if: "a=b", then: "x", priorityIf: "_country=be"}, 0, "test","test", false,true) + * tr.if // => new Tag("a","b") + * tr.priorityIf // => new Tag("_country","be") + */ + public static ExtractMapping(mapping: MappingConfigJson, i: number, translationKey: string, + context: string, + multiAnswer?: boolean, isQuestionable?: boolean, commonSize: string = "small") { + + const ctx = `${translationKey}.mappings.${i}` + if (mapping.if === undefined) { + throw `${ctx}: Invalid mapping: "if" is not defined in ${JSON.stringify(mapping)}` + } + if (mapping.then === undefined) { + if (mapping["render"] !== undefined) { + throw `${ctx}: Invalid mapping: no 'then'-clause found. You might have typed 'render' instead of 'then', change it in ${JSON.stringify(mapping)}` + } + throw `${ctx}: Invalid mapping: no 'then'-clause found in ${JSON.stringify(mapping)}` + } + if (mapping.ifnot !== undefined && !multiAnswer) { + throw `${ctx}: Invalid mapping: 'ifnot' is defined, but the tagrendering is not a multianswer. Either remove ifnot or set 'multiAnswer:true' to enable checkboxes instead of radiobuttons` + } + + if (mapping["render"] !== undefined) { + throw `${ctx}: Invalid mapping: a 'render'-key is present, this is probably a bug: ${JSON.stringify(mapping)}` + } + if (typeof mapping.if !== "string" && mapping.if["length"] !== undefined) { + throw `${ctx}: Invalid mapping: "if" is defined as an array. Use {"and": } or {"or": } instead` + } + + if (mapping.addExtraTags !== undefined && multiAnswer) { + throw `${ctx}: Invalid mapping: got a multi-Answer with addExtraTags; this is not allowed` + } + + let hideInAnswer: boolean | TagsFilter = false; + if (typeof mapping.hideInAnswer === "boolean") { + hideInAnswer = mapping.hideInAnswer; + } else if (mapping.hideInAnswer !== undefined) { + hideInAnswer = TagUtils.Tag(mapping.hideInAnswer, `${context}.mapping[${i}].hideInAnswer`); + } + const addExtraTags = (mapping.addExtraTags ?? []).map((str, j) => TagUtils.SimpleTag(str, `${ctx}.addExtraTags[${j}]`)); + if (hideInAnswer === true && addExtraTags.length > 0) { + throw `${ctx}: Invalid mapping: 'hideInAnswer' is set to 'true', but 'addExtraTags' is enabled as well. This means that extra tags will be applied if this mapping is chosen as answer, but it cannot be chosen as answer. This either indicates a thought error or obsolete code that must be removed.` + } + + let icon = undefined; + let iconClass = commonSize + if (mapping.icon !== undefined) { + if (typeof mapping.icon === "string" && mapping.icon !== "") { + icon = mapping.icon + } else { + icon = mapping.icon["path"] + iconClass = mapping.icon["class"] ?? iconClass + } + } + const prioritySearch = mapping.priorityIf !== undefined ? TagUtils.Tag(mapping.priorityIf) : undefined; + const mp = { + if: TagUtils.Tag(mapping.if, `${ctx}.if`), + ifnot: (mapping.ifnot !== undefined ? TagUtils.Tag(mapping.ifnot, `${ctx}.ifnot`) : undefined), + then: Translations.T(mapping.then, `${ctx}.then`), + hideInAnswer, + icon, + iconClass, + addExtraTags, + searchTerms: mapping.searchTerms, + priorityIf: prioritySearch + }; + if (isQuestionable) { + if (hideInAnswer !== true && mp.if !== undefined && !mp.if.isUsableAsAnswer()) { + throw `${context}.mapping[${i}].if: This value cannot be used to answer a question, probably because it contains a regex or an OR. Either change it or set 'hideInAnswer'` + } + + if (hideInAnswer !== true && !(mp.ifnot?.isUsableAsAnswer() ?? true)) { + throw `${context}.mapping[${i}].ifnot: This value cannot be used to answer a question, probably because it contains a regex or an OR. If a contributor were to pick this as an option, MapComplete wouldn't be able to determine which tags to add.\n Either change it or set 'hideInAnswer'` + } + } + + return mp; + } + /** * Returns true if it is known or not shown, false if the question should be asked * @constructor */ - public IsKnown(tags: any): boolean { + public IsKnown(tags: Record): boolean { if (this.condition && !this.condition.matchesProperties(tags)) { // Filtered away by the condition, so it is kindof known @@ -375,7 +413,7 @@ export default class TagRenderingConfig { * @param tags * @constructor */ - public GetRenderValues(tags: any): { then: Translation, icon?: string, iconClass?: string }[] { + public GetRenderValues(tags: Record): { then: Translation, icon?: string, iconClass?: string }[] { if (!this.multiAnswer) { return [this.GetRenderValueWithImage(tags)] } @@ -385,7 +423,7 @@ export default class TagRenderingConfig { let freeformKeyDefined = this.freeform?.key !== undefined; let usedFreeformValues = new Set() // We run over all the mappings first, to check if the mapping matches - const applicableMappings: { then: TypedTranslation, img?: string }[] = Utils.NoNull((this.mappings ?? [])?.map(mapping => { + const applicableMappings: { then: TypedTranslation>, img?: string }[] = Utils.NoNull((this.mappings ?? [])?.map(mapping => { if (mapping.if === undefined) { return mapping; } @@ -401,21 +439,22 @@ export default class TagRenderingConfig { return undefined; })) - if(freeformKeyDefined && tags[this.freeform.key] !== undefined){ + if (freeformKeyDefined && tags[this.freeform.key] !== undefined) { const freeformValues = tags[this.freeform.key].split(";") const leftovers = freeformValues.filter(v => !usedFreeformValues.has(v)) for (const leftover of leftovers) { - applicableMappings.push({then: - new TypedTranslation(this.render.replace("{"+this.freeform.key+"}", leftover).translations) + applicableMappings.push({ + then: + new TypedTranslation(this.render.replace("{" + this.freeform.key + "}", leftover).translations) }) } } - + return applicableMappings } - public GetRenderValue(tags: any, defltValue: any = undefined): TypedTranslation { - return this.GetRenderValueWithImage(tags, defltValue).then + public GetRenderValue(tags: any, defltValue: any = undefined): TypedTranslation | undefined { + return this.GetRenderValueWithImage(tags, defltValue)?.then } /** @@ -423,7 +462,13 @@ export default class TagRenderingConfig { * Not compatible with multiAnswer - use GetRenderValueS instead in that case * @constructor */ - public GetRenderValueWithImage(tags: any, defltValue: any = undefined): { then: TypedTranslation, icon?: string } { + public GetRenderValueWithImage(tags: any, defltValue: any = undefined): { then: TypedTranslation, icon?: string } | undefined { + if (this.condition !== undefined) { + if (!this.condition.matchesProperties(tags)) { + return undefined + } + } + if (this.mappings !== undefined && !this.multiAnswer) { for (const mapping of this.mappings) { if (mapping.if === undefined) { @@ -516,7 +561,7 @@ export default class TagRenderingConfig { `This rendering asks information about the property `, Link.OsmWiki(this.freeform.key), new Paragraph(new Combine([ - "This is rendered with", + "This is rendered with ", new FixedUiElement(this.render.txt).SetClass("literalcode bold") ])) @@ -527,12 +572,12 @@ export default class TagRenderingConfig { if (this.mappings !== undefined) { mappings = new List( [].concat(...this.mappings.map(m => { - const msgs: (string| BaseUIElement)[] = [ + const msgs: (string | BaseUIElement)[] = [ new Combine( [ - new FixedUiElement(m.then.txt).SetClass("bold"), - "corresponds with", - m.if.asHumanString(true, false, {}) + new FixedUiElement(m.then.txt).SetClass("bold"), + " corresponds with ", + new FixedUiElement( m.if.asHumanString(true, false, {})).SetClass("code") ] ) ] @@ -540,47 +585,49 @@ export default class TagRenderingConfig { msgs.push(new FixedUiElement("This option cannot be chosen as answer").SetClass("italic")) } if (m.ifnot !== undefined) { - msgs.push( "Unselecting this answer will add " + m.ifnot.asHumanString(true, false, {})) + msgs.push("Unselecting this answer will add " + m.ifnot.asHumanString(true, false, {})) } return msgs; } )) ) } - - let condition : BaseUIElement = undefined - if(this.condition !== undefined && !this.condition?.matchesProperties({})){ - condition = new Combine(["Only visible if", - new FixedUiElement( this.condition.asHumanString(false, false, {}) + + let condition: BaseUIElement = undefined + if (this.condition !== undefined && !this.condition?.matchesProperties({})) { + condition = new Combine(["Only visible if ", + new FixedUiElement(this.condition.asHumanString(false, false, {}) ).SetClass("code") - , "is shown"]) + , " is shown"]) } - - let group : BaseUIElement = undefined - if(this.group !== undefined && this.group !== ""){ + + let group: BaseUIElement = undefined + if (this.group !== undefined && this.group !== "") { group = new Combine([ "This tagrendering is part of group ", new FixedUiElement(this.group).SetClass("code") ]) } - let labels : BaseUIElement = undefined - if(this.labels?.length > 0){ + let labels: BaseUIElement = undefined + if (this.labels?.length > 0) { labels = new Combine([ "This tagrendering has labels ", ...this.labels.map(label => new FixedUiElement(label).SetClass("code")) - ]) + ]).SetClass("flex") } + return new Combine([ new Title(this.id, 3), + this.description, this.question !== undefined ? - new Combine([ "The question is " , new FixedUiElement( this.question.txt).SetClass("bold")]) : + new Combine(["The question is ", new FixedUiElement(this.question.txt).SetClass("font-bold bold")]) : new FixedUiElement( - "This tagrendering has no question and is thus read-only" + "This tagrendering has no question and is thus read-only" ).SetClass("italic"), new Combine(withRender), mappings, condition, group, labels - ]).SetClass("flex-col"); + ]).SetClass("flex flex-col"); } } \ No newline at end of file diff --git a/README.md b/README.md index ae266060b1..beb199a68a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ > Let a thousand flowers bloom +[![](https://img.shields.io/liberapay/patrons/Pietervdvn.svg?logo=liberapay) ![](https://img.shields.io/liberapay/receives/pietervdvn.svg?logo=liberapay) ](https://liberapay.com/pietervdvn/) +[![Matrix](https://img.shields.io/matrix/MapComplete:matrix.org)](https://matrix.to/#/#MapComplete:matrix.org?via=matrix.org) + + **MapComplete is an OpenStreetMap viewer and editor.** It shows map features on a certain topic, and allows to see, edit and add new features to the map. It can be seen as a webversion [crossover of StreetComplete and MapContrib](Docs/MapComplete_vs_other_editors.md). It tries to be just as @@ -80,7 +84,7 @@ A typical user journey would be: * In other words, sending a message to a misbehaving MapComplete user acts as having a **zero-day-block**. This is added deliberately to make sure new users _have_ to read feedback from the community. -4. At 50 changesets, the [personal layout](https://pietervdvn.github.io/MapComplete/personal.html) is advertised. The +4. At 50 changesets, the [personal layout](https://mapcomplete.osm.be/personal.html) is advertised. The personal theme is a theme where contributors can pick layers from all the official themes. Note that the personal theme is always available. @@ -109,6 +113,10 @@ The core strings and builtin themes of MapComplete are translated on [Hosted Weblate](https://hosted.weblate.org/projects/mapcomplete/core/). You can easily make an account and start translating in their web-environment - no installation required. +You can even jump to the right translation string directly from MapComplete: + +![](./Docs/Misc/HowToTranslate.gif) + [![Translation status](https://hosted.weblate.org/widgets/mapcomplete/-/multi-blue.svg)](https://hosted.weblate.org/engage/mapcomplete/) ## Architecture diff --git a/UI/AllThemesGui.ts b/UI/AllThemesGui.ts index cca64fd567..2c2371ec95 100644 --- a/UI/AllThemesGui.ts +++ b/UI/AllThemesGui.ts @@ -5,7 +5,7 @@ import MoreScreen from "./BigComponents/MoreScreen"; import Translations from "./i18n/Translations"; import Constants from "../Models/Constants"; import {Utils} from "../Utils"; -import LanguagePicker from "./LanguagePicker"; +import LanguagePicker1 from "./LanguagePicker"; import IndexText from "./BigComponents/IndexText"; import FeaturedMessage from "./BigComponents/FeaturedMessage"; import Toggle from "./Input/Toggle"; @@ -21,7 +21,7 @@ export default class AllThemesGui { const state = new UserRelatedState(undefined); const intro = new Combine([ - LanguagePicker.CreateLanguagePicker(Translations.t.index.title.SupportedLanguages()) + new LanguagePicker1(Translations.t.index.title.SupportedLanguages(), "") .SetClass("flex absolute top-2 right-3"), new IndexText() diff --git a/UI/AutomatonGui.ts b/UI/AutomatonGui.ts index bc69b44769..41559e8756 100644 --- a/UI/AutomatonGui.ts +++ b/UI/AutomatonGui.ts @@ -65,7 +65,6 @@ class AutomationPanel extends Combine { console.warn("Triggered map on nextTileToHandle", tileIndex) const start = new Date() return AutomationPanel.TileHandler(layoutToUse, tileIndex, layerId, tagRenderingToAutomate.tagRendering, extraCommentText, - openChangeset, (result, logMessage) => { const end = new Date() const timeNeeded = (end.getTime() - start.getTime()) / 1000; @@ -118,7 +117,6 @@ class AutomationPanel extends Combine { } private static TileHandler(layoutToUse: LayoutConfig, tileIndex: number, targetLayer: string, targetAction: TagRenderingConfig, extraCommentText: UIEventSource, - openChangeset: UIEventSource, whenDone: ((result: string, logMessage?: string) => void)): BaseUIElement { const state = new MapState(layoutToUse, {attemptLogin: false}) @@ -176,7 +174,7 @@ class AutomationPanel extends Combine { const feature = ffs.feature const renderingTr = targetAction.GetRenderValue(feature.properties) const rendering = renderingTr.txt - log.push("" + feature.properties.id + ": " + new SubstitutedTranslation(renderingTr, new UIEventSource(feature.properties), undefined).ConstructElement().innerText) + log.push("" + feature.properties.id + ": " + new SubstitutedTranslation(renderingTr, new UIEventSource(feature.properties), undefined).ConstructElement().textContent) const actions = Utils.NoNull(SubstitutedTranslation.ExtractSpecialComponents(rendering) .map(obj => obj.special)) for (const action of actions) { @@ -204,7 +202,7 @@ class AutomationPanel extends Combine { whenDone("no-action", "Inspected " + inspected + " elements: " + log.join("; ")) } else { state.osmConnection.AttemptLogin() - state.changes.flushChanges("handled tile automatically, time to flush!", openChangeset) + state.changes.flushChanges("handled tile automatically, time to flush!") whenDone("fixed", "Updated " + handled + " elements, inspected " + inspected + ": " + log.join("; ")) } return true; diff --git a/UI/Base/AsyncLazy.ts b/UI/Base/AsyncLazy.ts index 5d1eed9a96..04b2e3166d 100644 --- a/UI/Base/AsyncLazy.ts +++ b/UI/Base/AsyncLazy.ts @@ -1,6 +1,6 @@ import BaseUIElement from "../BaseUIElement"; import {VariableUiElement} from "./VariableUIElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Stores, UIEventSource} from "../../Logic/UIEventSource"; import Loading from "./Loading"; export default class AsyncLazy extends BaseUIElement { @@ -15,7 +15,7 @@ export default class AsyncLazy extends BaseUIElement { // The caching of the BaseUIElement will guarantee that _f will only be called once return new VariableUiElement( - UIEventSource.FromPromise(this._f()).map(el => { + Stores.FromPromise(this._f()).map(el => { if (el === undefined) { return new Loading() } diff --git a/UI/Base/ChartJs.ts b/UI/Base/ChartJs.ts new file mode 100644 index 0000000000..a4250f4c43 --- /dev/null +++ b/UI/Base/ChartJs.ts @@ -0,0 +1,24 @@ +import BaseUIElement from "../BaseUIElement"; +import {Chart, ChartConfiguration, ChartType, DefaultDataPoint, registerables} from 'chart.js'; +Chart.register(...registerables); + + +export default class ChartJs< + TType extends ChartType = ChartType, + TData = DefaultDataPoint, + TLabel = unknown + > extends BaseUIElement{ + private readonly _config: ChartConfiguration; + + constructor(config: ChartConfiguration) { + super(); + this._config = config; + } + + protected InnerConstructElement(): HTMLElement { + const canvas = document.createElement("canvas"); + new Chart(canvas, this._config); + return canvas; + } + +} \ No newline at end of file diff --git a/UI/Base/Combine.ts b/UI/Base/Combine.ts index 87eb30f5b4..05ad8de848 100644 --- a/UI/Base/Combine.ts +++ b/UI/Base/Combine.ts @@ -38,6 +38,9 @@ export default class Combine extends BaseUIElement { protected InnerConstructElement(): HTMLElement { const el = document.createElement("span") try { + if(this.uiElements === undefined){ + console.error("PANIC") + } for (const subEl of this.uiElements) { if (subEl === undefined || subEl === null) { continue; diff --git a/UI/Base/Img.ts b/UI/Base/Img.ts index 96d93593e3..ecaf09abd4 100644 --- a/UI/Base/Img.ts +++ b/UI/Base/Img.ts @@ -2,9 +2,10 @@ import {Utils} from "../../Utils"; import BaseUIElement from "../BaseUIElement"; export default class Img extends BaseUIElement { - private _src: string; + + private readonly _src: string; private readonly _rawSvg: boolean; - private _options: { fallbackImage?: string }; + private readonly _options: { readonly fallbackImage?: string }; constructor(src: string, rawSvg = false, options?: { fallbackImage?: string @@ -22,7 +23,13 @@ export default class Img extends BaseUIElement { if (Utils.runningFromConsole) { return source; } - return `data:image/svg+xml;base64,${(btoa(source))}`; + try{ + return `data:image/svg+xml;base64,${(btoa(source))}`; + }catch (e){ + console.error("Cannot create an image for", source.slice(0, 100)) + console.trace("Cannot create an image for the given source string due to ", e) + return "" + } } static AsImageElement(source: string, css_class: string = "", style = ""): string { diff --git a/UI/Base/Link.ts b/UI/Base/Link.ts index d336793126..af2a79b35c 100644 --- a/UI/Base/Link.ts +++ b/UI/Base/Link.ts @@ -1,14 +1,14 @@ import Translations from "../i18n/Translations"; import BaseUIElement from "../BaseUIElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; export default class Link extends BaseUIElement { - private readonly _href: string | UIEventSource; + private readonly _href: string | Store; private readonly _embeddedShow: BaseUIElement; private readonly _newTab: boolean; - constructor(embeddedShow: BaseUIElement | string, href: string | UIEventSource, newTab: boolean = false) { + constructor(embeddedShow: BaseUIElement | string, href: string | Store, newTab: boolean = false) { super(); this._embeddedShow = Translations.W(embeddedShow); this._href = href; @@ -26,9 +26,9 @@ export default class Link extends BaseUIElement { if (!hideKey) { k = key + "=" } - return new Link(k + value, `https://wiki.openstreetmap.org/wiki/Tag:${key}%3D${value}`) + return new Link(k + value, `https://wiki.openstreetmap.org/wiki/Tag:${key}%3D${value}`, true) } - return new Link(key, "https://wiki.openstreetmap.org/wiki/Key:" + key) + return new Link(key, "https://wiki.openstreetmap.org/wiki/Key:" + key, true) } AsMarkdown(): string { diff --git a/UI/Base/LinkToWeblate.ts b/UI/Base/LinkToWeblate.ts index 1239409a29..4b2eb56f5d 100644 --- a/UI/Base/LinkToWeblate.ts +++ b/UI/Base/LinkToWeblate.ts @@ -38,7 +38,7 @@ export default class LinkToWeblate extends VariableUiElement { return baseUrl + category + "/" + language + "/?offset=1&q=context%3A%3D%22" + key + "%22" } - public static hrefToWeblateZen(language: string, category: string, searchKey: string): string{ + public static hrefToWeblateZen(language: string, category: "core" | "themes" | "layers" | "shared-questions" | "glossary" | string, searchKey: string): string{ const baseUrl = "https://hosted.weblate.org/zen/mapcomplete/" // ?offset=1&q=+state%3A%3Ctranslated+context%3Acampersite&sort_by=-priority%2Cposition&checksum= return baseUrl + category + "/" + language + "?offset=1&q=+state%3A%3Ctranslated+context%3A"+encodeURIComponent(searchKey)+"&sort_by=-priority%2Cposition&checksum=" diff --git a/UI/Base/MinimapImplementation.ts b/UI/Base/MinimapImplementation.ts index 9021d17990..3972b4d123 100644 --- a/UI/Base/MinimapImplementation.ts +++ b/UI/Base/MinimapImplementation.ts @@ -33,18 +33,18 @@ export default class MinimapImplementation extends BaseUIElement implements Mini private constructor(options?: MinimapOptions) { super() options = options ?? {} + this._id = "minimap" + MinimapImplementation._nextId; + MinimapImplementation._nextId++ this.leafletMap = options.leafletMap ?? new UIEventSource(undefined) this._background = options?.background ?? new UIEventSource(AvailableBaseLayers.osmCarto) this.location = options?.location ?? new UIEventSource({lat: 0, lon: 0, zoom: 1}) this.bounds = options?.bounds; - this._id = "minimap" + MinimapImplementation._nextId; this._allowMoving = options.allowMoving ?? true; this._leafletoptions = options.leafletOptions ?? {} this._onFullyLoaded = options.onFullyLoaded this._attribution = options.attribution this._addLayerControl = options.addLayerControl ?? false this._options = options - MinimapImplementation._nextId++ this.SetClass("relative") } @@ -57,7 +57,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini public installBounds(factor: number | BBox, showRange?: boolean) { this.leafletMap.addCallbackD(leaflet => { - let bounds : {getEast(), getNorth(), getWest(), getSouth()}; + let bounds: { getEast(), getNorth(), getWest(), getSouth() }; if (typeof factor === "number") { const lbounds = leaflet.getBounds().pad(factor) leaflet.setMaxBounds(lbounds) @@ -150,10 +150,16 @@ export default class MinimapImplementation extends BaseUIElement implements Mini } try { self.InitMap(); - self.leafletMap?.data?.invalidateSize() + } catch (e) { console.warn("Could not construct a minimap:", e) } + + try { + self.leafletMap?.data?.invalidateSize() + } catch (e) { + console.warn("Could not invalidate size of a minimap:", e) + } }); resizeObserver.observe(div); @@ -210,7 +216,15 @@ export default class MinimapImplementation extends BaseUIElement implements Mini maxZoom: 21 } + Utils.Merge(this._leafletoptions, options) + /* + * Somehow, the element gets '_leaflet_id' set on chrome. + * When attempting to init this leaflet map, it'll throw an exception and the map won't show up. + * Simply removing '_leaflet_id' fixes the issue. + * See https://github.com/pietervdvn/MapComplete/issues/726 + * */ + delete document.getElementById(this._id)["_leaflet_id"] const map = L.map(this._id, options); if (self._onFullyLoaded !== undefined) { diff --git a/UI/Base/ScrollableFullScreen.ts b/UI/Base/ScrollableFullScreen.ts index c6dc803a50..2e15e95e28 100644 --- a/UI/Base/ScrollableFullScreen.ts +++ b/UI/Base/ScrollableFullScreen.ts @@ -28,7 +28,10 @@ export default class ScrollableFullScreen extends UIElement { constructor(title: ((options: { mode: string }) => BaseUIElement), content: ((options: { mode: string, resetScrollSignal: UIEventSource }) => BaseUIElement), hashToShow: string, - isShown: UIEventSource = new UIEventSource(false) + isShown: UIEventSource = new UIEventSource(false), + options?: { + setHash?: true | boolean + } ) { super(); this.hashToShow = hashToShow; @@ -53,16 +56,21 @@ export default class ScrollableFullScreen extends UIElement { const self = this; - Hash.hash.addCallback(h => { - if (h === undefined) { - isShown.setData(false) - } - }) + const setHash = options?.setHash ?? true; + if(setHash){ + Hash.hash.addCallback(h => { + if (h === undefined) { + isShown.setData(false) + } + }) + } isShown.addCallback(isShown => { if (isShown) { // We first must set the hash, then activate the panel // If the order is wrong, this will cause the panel to disactivate again - Hash.hash.setData(hashToShow) + if(setHash){ + Hash.hash.setData(hashToShow) + } self.Activate(); } else { // Some cleanup... @@ -110,8 +118,9 @@ export default class ScrollableFullScreen extends UIElement { title = new Title(title, 2) title.SetClass("text-l sm:text-xl md:text-2xl w-full p-0 max-h-20vh overflow-y-auto self-center") + const contentWrapper = new Combine([content]) - .SetClass("block p-2 md:pt-4 w-full h-full overflow-y-auto md:max-h-65vh") + .SetClass("block p-2 md:pt-4 w-full h-full overflow-y-auto desktop:max-h-65vh") this._resetScrollSignal.addCallback(_ => { contentWrapper.ScrollToTop(); @@ -124,7 +133,7 @@ export default class ScrollableFullScreen extends UIElement { contentWrapper , // We add an ornament which takes around 5em. This is in order to make sure the Web UI doesn't hide ]).SetClass("flex flex-col h-full relative bg-white") - ]).SetClass("fixed top-0 left-0 right-0 h-screen w-screen md:max-h-65vh md:w-auto md:relative z-above-controls md:rounded-xl overflow-hidden"); + ]).SetClass("fixed top-0 left-0 right-0 h-screen w-screen desktop:max-h-65vh md:w-auto md:relative z-above-controls md:rounded-xl overflow-hidden"); } diff --git a/UI/Base/SubtleButton.ts b/UI/Base/SubtleButton.ts index 64b18958f8..32931845fa 100644 --- a/UI/Base/SubtleButton.ts +++ b/UI/Base/SubtleButton.ts @@ -3,7 +3,7 @@ import Combine from "./Combine"; import BaseUIElement from "../BaseUIElement"; import Link from "./Link"; import Img from "./Img"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {UIElement} from "../UIElement"; import {VariableUiElement} from "./VariableUIElement"; import Lazy from "./Lazy"; @@ -13,11 +13,11 @@ import Loading from "./Loading"; export class SubtleButton extends UIElement { private readonly imageUrl: string | BaseUIElement; private readonly message: string | BaseUIElement; - private readonly options: { url?: string | UIEventSource; newTab?: boolean ; imgSize?: string}; + private readonly options: { url?: string | Store; newTab?: boolean ; imgSize?: string}; constructor(imageUrl: string | BaseUIElement, message: string | BaseUIElement, options: { - url?: string | UIEventSource, + url?: string | Store, newTab?: boolean, imgSize?: "h-11 w-11" | string } = undefined) { @@ -29,25 +29,22 @@ export class SubtleButton extends UIElement { protected InnerRender(): string | BaseUIElement { const classes = "block flex p-3 my-2 bg-subtle rounded-lg hover:shadow-xl hover:bg-unsubtle transition-colors transition-shadow link-no-underline"; - const message = Translations.W(this.message); + const message = Translations.W(this.message)?.SetClass("block overflow-ellipsis no-images flex-shrink"); let img; + const imgClasses = "block justify-center flex-none mr-4 " + (this.options?.imgSize ?? "h-11 w-11") if ((this.imageUrl ?? "") === "") { img = undefined; } else if (typeof (this.imageUrl) === "string") { - img = new Img(this.imageUrl) + img = new Img(this.imageUrl)?.SetClass(imgClasses) } else { - img = this.imageUrl; + img = this.imageUrl?.SetClass(imgClasses); } - const image = new Combine([img?.SetClass("block flex items-center justify-center "+(this.options?.imgSize ?? "h-11 w-11")+" flex-shrink0 mr-4")]) - .SetClass("flex-shrink-0"); - - message?.SetClass("block overflow-ellipsis no-images") - - const button = new Combine([ - image, + const button = new Combine([ + img, message - ]).SetClass("flex group w-full") + ]).SetClass("flex items-center group w-full") + if (this.options?.url == undefined) { this.SetClass(classes) return button diff --git a/UI/Base/Table.ts b/UI/Base/Table.ts index 9ffa4317ce..3d8cf16b75 100644 --- a/UI/Base/Table.ts +++ b/UI/Base/Table.ts @@ -107,8 +107,8 @@ export default class Table extends BaseUIElement { let rows: HTMLTableRowElement[] = Array.from(table.rows) rows.splice(0,1) // remove header row rows = rows.sort((a, b) => { - const ac = a.cells[col]?.innerText?.toLowerCase() - const bc = b.cells[col]?.innerText?.toLowerCase() + const ac = a.cells[col]?.textContent?.toLowerCase() + const bc = b.cells[col]?.textContent?.toLowerCase() if(ac === bc){ return 0 } diff --git a/UI/Base/TableOfContents.ts b/UI/Base/TableOfContents.ts index b9f284fc81..d0e083f5b3 100644 --- a/UI/Base/TableOfContents.ts +++ b/UI/Base/TableOfContents.ts @@ -33,7 +33,7 @@ export default class TableOfContents extends Combine { } else if (Utils.runningFromConsole) { content = new FixedUiElement(title.AsMarkdown()) } else if (title["title"] !== undefined) { - content = new FixedUiElement(title.title.ConstructElement().innerText) + content = new FixedUiElement(title.title.ConstructElement().textContent) } else { console.log("Not generating a title for ", title) continue diff --git a/UI/Base/Title.ts b/UI/Base/Title.ts index 8c4d3f8f19..669cbd8960 100644 --- a/UI/Base/Title.ts +++ b/UI/Base/Title.ts @@ -20,20 +20,18 @@ export default class Title extends BaseUIElement { } this.level = level; - let innerText: string = undefined; + let text: string = undefined; if (typeof embedded === "string") { - innerText = embedded + text = embedded } else if (embedded instanceof FixedUiElement) { - innerText = embedded.content + text = embedded.content } else { - if (Utils.runningFromConsole) { - console.log("Not constructing an anchor for title with embedded content of " + embedded) - } else { - innerText = embedded.ConstructElement()?.innerText + if (!Utils.runningFromConsole) { + text = embedded.ConstructElement()?.textContent } } - this.id = innerText?.replace(/ /g, '-') + this.id = text?.replace(/ /g, '-') ?.replace(/[?#.;:/]/, "") ?.toLowerCase() ?? "" this.SetClass(Title.defaultClassesPerLevel[level] ?? "") diff --git a/UI/Base/Toggleable.ts b/UI/Base/Toggleable.ts index 848fc80b65..5b884fa6b0 100644 --- a/UI/Base/Toggleable.ts +++ b/UI/Base/Toggleable.ts @@ -26,7 +26,8 @@ export default class Toggleable extends Combine { public readonly isVisible = new UIEventSource(false) constructor(title: Title | Combine | BaseUIElement, content: BaseUIElement, options?: { - closeOnClick: true | boolean + closeOnClick?: true | boolean, + height?: "100vh" | string }) { super([title, content]) content.SetClass("animate-height border-l-4 pl-2 block") @@ -72,7 +73,7 @@ export default class Toggleable extends Combine { this.isVisible.addCallbackAndRun(isVisible => { if (isVisible) { - contentElement.style.maxHeight = "100vh" + contentElement.style.maxHeight = options?.height ?? "100vh" contentElement.style.overflowY = "auto" contentElement.style["-webkit-mask-image"] = "unset" } else { diff --git a/UI/Base/VariableUIElement.ts b/UI/Base/VariableUIElement.ts index 13f147a4cf..3163ac39b5 100644 --- a/UI/Base/VariableUIElement.ts +++ b/UI/Base/VariableUIElement.ts @@ -1,11 +1,11 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import Combine from "./Combine"; export class VariableUiElement extends BaseUIElement { - private readonly _contents: UIEventSource; + private readonly _contents: Store; - constructor(contents: UIEventSource) { + constructor(contents: Store) { super(); this._contents = contents; } @@ -33,6 +33,7 @@ export class VariableUiElement extends BaseUIElement { if (self.isDestroyed) { return true; } + while (el.firstChild) { el.removeChild(el.lastChild); } diff --git a/UI/BaseUIElement.ts b/UI/BaseUIElement.ts index 556ab637f3..4c084d0884 100644 --- a/UI/BaseUIElement.ts +++ b/UI/BaseUIElement.ts @@ -1,4 +1,4 @@ -import {Utils} from "../Utils"; +import { Utils } from "../Utils"; /** * A thin wrapper around a html element, which allows to generate a HTML-element. @@ -9,7 +9,7 @@ export default abstract class BaseUIElement { protected _constructedHtmlElement: HTMLElement; protected isDestroyed = false; - private clss: Set = new Set(); + private readonly clss: Set = new Set(); private style: string; private _onClick: () => void; @@ -39,9 +39,9 @@ export default abstract class BaseUIElement { return this; } - - public ScrollToTop(){ - this._constructedHtmlElement?.scrollTo(0,0) + + public ScrollToTop() { + this._constructedHtmlElement?.scrollTo(0, 0) } /** @@ -70,10 +70,13 @@ export default abstract class BaseUIElement { return this; } - public RemoveClass(clss: string): BaseUIElement { - if (this.clss.has(clss)) { - this.clss.delete(clss); - this._constructedHtmlElement?.classList.remove(clss) + public RemoveClass(classes: string): BaseUIElement { + const all = classes.split(" ").map(clsName => clsName.trim()); + for (let clss of all) { + if (this.clss.has(clss)) { + this.clss.delete(clss); + this._constructedHtmlElement?.classList.remove(clss) + } } return this; } @@ -114,7 +117,7 @@ export default abstract class BaseUIElement { if (style !== undefined && style !== "") { el.style.cssText = style } - if (this.clss.size > 0) { + if (this.clss?.size > 0) { try { el.classList.add(...Array.from(this.clss)) } catch (e) { diff --git a/UI/BigComponents/AddNewMarker.ts b/UI/BigComponents/AddNewMarker.ts index 479098beab..112cd3d9e7 100644 --- a/UI/BigComponents/AddNewMarker.ts +++ b/UI/BigComponents/AddNewMarker.ts @@ -6,6 +6,10 @@ import FilteredLayer from "../../Models/FilteredLayer"; import {TagUtils} from "../../Logic/Tags/TagUtils"; import Svg from "../../Svg"; +/** + * The icon with the 'plus'-sign and the preset icons spinning + * + */ export default class AddNewMarker extends Combine { constructor(filteredLayers: UIEventSource) { diff --git a/UI/BigComponents/BackgroundMapSwitch.ts b/UI/BigComponents/BackgroundMapSwitch.ts index fa601b3d39..b249f5abbc 100644 --- a/UI/BigComponents/BackgroundMapSwitch.ts +++ b/UI/BigComponents/BackgroundMapSwitch.ts @@ -159,15 +159,25 @@ class SingleLayerSelectionButton extends Toggle { export default class BackgroundMapSwitch extends Combine { + /** + * Three buttons to easily switch map layers between OSM, aerial and some map. + * @param state + * @param currentBackground + * @param options + */ constructor( state: { locationControl: UIEventSource, backgroundLayer: UIEventSource }, currentBackground: UIEventSource, - preferredCategory?: string + options?:{ + preferredCategory?: string, + allowedCategories?: ("osmbasedmap" | "photo" | "map")[] + + } ) { - const allowedCategories = ["osmbasedmap", "photo", "map"] + const allowedCategories = options?.allowedCategories ?? ["osmbasedmap", "photo", "map"] const previousLayer = state.backgroundLayer.data const buttons = [] @@ -188,7 +198,7 @@ export default class BackgroundMapSwitch extends Combine { }) // Fall back to the first option: OSM activatePrevious = activatePrevious ?? button.activate - if (category === preferredCategory) { + if (category === options?.preferredCategory) { button.activate() } buttons.push(button) diff --git a/UI/BigComponents/CopyrightPanel.ts b/UI/BigComponents/CopyrightPanel.ts index 1b196f02b5..16e6b1eb76 100644 --- a/UI/BigComponents/CopyrightPanel.ts +++ b/UI/BigComponents/CopyrightPanel.ts @@ -1,6 +1,6 @@ import Combine from "../Base/Combine"; import Translations from "../i18n/Translations"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {FixedUiElement} from "../Base/FixedUiElement"; import * as licenses from "../../assets/generated/license_info.json" import SmallLicense from "../../Models/smallLicense"; @@ -24,6 +24,8 @@ import ContributorCount from "../../Logic/ContributorCount"; import Img from "../Base/Img"; import {TypedTranslation} from "../i18n/Translation"; import TranslatorsPanel from "./TranslatorsPanel"; +import {MapillaryLink} from "./MapillaryLink"; +import FullWelcomePaneWithTabs from "./FullWelcomePaneWithTabs"; export class OpenIdEditor extends VariableUiElement { constructor(state: { locationControl: UIEventSource }, iconStyle?: string, objectId?: string) { @@ -44,22 +46,9 @@ export class OpenIdEditor extends VariableUiElement { } -export class OpenMapillary extends VariableUiElement { - constructor(state: { locationControl: UIEventSource }, iconStyle?: string) { - const t = Translations.t.general.attribution - super(state.locationControl.map(location => { - const mapillaryLink = `https://www.mapillary.com/app/?focus=map&lat=${location?.lat ?? 0}&lng=${location?.lon ?? 0}&z=${Math.max((location?.zoom ?? 2) - 1, 1)}` - return new SubtleButton(Svg.mapillary_black_ui().SetStyle(iconStyle), t.openMapillary, { - url: mapillaryLink, - newTab: true - }) - })) - } -} - export class OpenJosm extends Combine { - constructor(state: { osmConnection: OsmConnection, currentBounds: UIEventSource, }, iconStyle?: string) { + constructor(state: { osmConnection: OsmConnection, currentBounds: Store, }, iconStyle?: string) { const t = Translations.t.general.attribution const josmState = new UIEventSource(undefined) @@ -109,30 +98,46 @@ export default class CopyrightPanel extends Combine { constructor(state: { layoutToUse: LayoutConfig, featurePipeline: FeaturePipeline, - currentBounds: UIEventSource, + currentBounds: Store, locationControl: UIEventSource, osmConnection: OsmConnection, - isTranslator: UIEventSource + isTranslator: Store }) { const t = Translations.t.general.attribution const layoutToUse = state.layoutToUse - const iconStyle = "height: 1.5rem; width: auto" + const imgSize = "h-6 w-6" + const iconStyle = "height: 1.5rem; width: 1.5rem" const actionButtons = [ - new SubtleButton(Svg.liberapay_ui().SetStyle(iconStyle), t.donate, { + new SubtleButton(Svg.liberapay_ui(), t.donate, { url: "https://liberapay.com/pietervdvn/", - newTab: true + newTab: true, + imgSize }), - new SubtleButton(Svg.bug_ui().SetStyle(iconStyle), t.openIssueTracker, { + new SubtleButton(Svg.bug_ui(), t.openIssueTracker, { url: "https://github.com/pietervdvn/MapComplete/issues", - newTab: true + newTab: true, + imgSize }), - new SubtleButton(Svg.statistics_ui().SetStyle(iconStyle), t.openOsmcha.Subs({theme: state.layoutToUse.title}), { + new SubtleButton(Svg.statistics_ui(), t.openOsmcha.Subs({theme: state.layoutToUse.title}), { url: Utils.OsmChaLinkFor(31, state.layoutToUse.id), - newTab: true + newTab: true, + imgSize + }), + new SubtleButton(Svg.mastodon_ui(), + new Combine([t.followOnMastodon.SetClass("font-bold"), t.followBridge]).SetClass("flex flex-col"), + { + url:"https://en.osm.town/web/notifications", + newTab: true, + imgSize + }), + new SubtleButton(Svg.twitter_ui(), t.followOnTwitter, { + url:"https://twitter.com/mapcomplete", + newTab: true, + imgSize }), new OpenIdEditor(state, iconStyle), - new OpenMapillary(state, iconStyle), + new MapillaryLink(state, iconStyle), new OpenJosm(state, iconStyle), new TranslatorsPanel(state, iconStyle) @@ -190,7 +195,7 @@ export default class CopyrightPanel extends Combine { CopyrightPanel.CodeContributors(contributors, t.codeContributionsBy), CopyrightPanel.CodeContributors(translators, t.translatedBy), new FixedUiElement("MapComplete " + Constants.vNumber).SetClass("font-bold"), - new Combine(actionButtons).SetClass("block w-full"), + new Combine(actionButtons).SetClass("block w-full link-no-underline"), new Title(t.iconAttribution.title, 3), ...iconAttributions ].map(e => e?.SetClass("mt-4"))); diff --git a/UI/BigComponents/ExtraLinkButton.ts b/UI/BigComponents/ExtraLinkButton.ts index 4e4dbb0a20..6468874def 100644 --- a/UI/BigComponents/ExtraLinkButton.ts +++ b/UI/BigComponents/ExtraLinkButton.ts @@ -45,10 +45,12 @@ export default class ExtraLinkButton extends UIElement { let link: BaseUIElement const theme = this.state.layoutToUse?.id ?? "" + const basepath = window.location.host const href = this.state.locationControl.map(loc => { const subs = { ...loc, theme: theme, + basepath, language: Locale.language.data } return Utils.SubstituteKeys(c.href, subs) @@ -68,8 +70,7 @@ export default class ExtraLinkButton extends UIElement { } link = new SubtleButton(img, text, { - url: - href, + url: href, newTab: c.newTab }) diff --git a/UI/BigComponents/FilterView.ts b/UI/BigComponents/FilterView.ts index 01f4ff29ff..94e6b7d972 100644 --- a/UI/BigComponents/FilterView.ts +++ b/UI/BigComponents/FilterView.ts @@ -2,12 +2,12 @@ import {Utils} from "../../Utils"; import {FixedInputElement} from "../Input/FixedInputElement"; import {RadioButton} from "../Input/RadioButton"; import {VariableUiElement} from "../Base/VariableUIElement"; -import Toggle from "../Input/Toggle"; +import Toggle, {ClickableToggle} from "../Input/Toggle"; import Combine from "../Base/Combine"; import Translations from "../i18n/Translations"; import {Translation} from "../i18n/Translation"; import Svg from "../../Svg"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {ImmutableStore, Store, UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import State from "../../State"; import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; @@ -20,7 +20,6 @@ import {QueryParameters} from "../../Logic/Web/QueryParameters"; import {TagUtils} from "../../Logic/Tags/TagUtils"; import {InputElement} from "../Input/InputElement"; import {DropDown} from "../Input/DropDown"; -import {UIElement} from "../UIElement"; export default class FilterView extends VariableUiElement { constructor(filteredLayer: UIEventSource, @@ -180,7 +179,8 @@ export default class FilterView extends VariableUiElement { const filter = filterConfig.options[0] const mappings = new Map() - let allValid = new UIEventSource(true) + let allValid: Store = new ImmutableStore(true) + var allFields: InputElement[] = [] const properties = new UIEventSource({}) for (const {name, type} of filter.fields) { const value = QueryParameters.GetQueryParameter("filter-" + filterConfig.id + "-" + name, "", "Value for filter " + filterConfig.id) @@ -193,10 +193,11 @@ export default class FilterView extends VariableUiElement { properties.data[name] = v.toLowerCase(); properties.ping() }) + allFields.push(field) allValid = allValid.map(previous => previous && field.IsValid(stable.data) && stable.data !== "", [stable]) } const tr = new SubstitutedTranslation(filter.question, new UIEventSource({id: filterConfig.id}), State.state, mappings) - const trigger: UIEventSource = allValid.map(isValid => { + const trigger: Store = allValid.map(isValid => { if (!isValid) { return undefined } @@ -221,8 +222,20 @@ export default class FilterView extends VariableUiElement { state: JSON.stringify(props) } }, [properties]) + + const settableFilter = new UIEventSource(undefined) + trigger.addCallbackAndRun(state => settableFilter.setData(state)) + settableFilter.addCallback(state => { + if(state === undefined){ + // still initializing + return + } + if(state.currentFilter === undefined){ + allFields.forEach(f => f.GetValue().setData(undefined)); + } + }) - return [tr, trigger]; + return [tr, settableFilter]; } private static createCheckboxFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { @@ -231,14 +244,14 @@ export default class FilterView extends VariableUiElement { const icon = Svg.checkbox_filled_svg().SetClass("block mr-2 w-6"); const iconUnselected = Svg.checkbox_empty_svg().SetClass("block mr-2 w-6"); - const toggle = new Toggle( + const toggle = new ClickableToggle( new Combine([icon, option.question.Clone().SetClass("block")]).SetClass("flex"), new Combine([iconUnselected, option.question.Clone().SetClass("block")]).SetClass("flex") ) .ToggleOnClick() .SetClass("block m-1") - return [toggle, toggle.isEnabled.map(enabled => enabled ? { + return [toggle, toggle.isEnabled.sync(enabled => enabled ? { currentFilter: option.osmTags, state: "true" } : undefined, [], @@ -272,7 +285,7 @@ export default class FilterView extends VariableUiElement { } return [filterPicker, - filterPicker.GetValue().map( + filterPicker.GetValue().sync( i => values[i], [], selected => { diff --git a/UI/BigComponents/FullWelcomePaneWithTabs.ts b/UI/BigComponents/FullWelcomePaneWithTabs.ts index 7daa95088b..6559d83e63 100644 --- a/UI/BigComponents/FullWelcomePaneWithTabs.ts +++ b/UI/BigComponents/FullWelcomePaneWithTabs.ts @@ -23,7 +23,8 @@ import PrivacyPolicy from "./PrivacyPolicy"; export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { - + public static MoreThemesTabIndex = 1; + constructor(isShown: UIEventSource, currentTab: UIEventSource, state: { @@ -45,19 +46,12 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { ) } - private static ConstructBaseTabs(state: { - layoutToUse: LayoutConfig, - osmConnection: OsmConnection, - featureSwitchShareScreen: UIEventSource, - featureSwitchMoreQuests: UIEventSource, - featurePipeline: FeaturePipeline, - locationControl: UIEventSource, backgroundLayer: UIEventSource, filteredLayers: UIEventSource - } & UserRelatedState, - isShown: UIEventSource): + private static ConstructBaseTabs(state: { layoutToUse: LayoutConfig; osmConnection: OsmConnection; featureSwitchShareScreen: UIEventSource; featureSwitchMoreQuests: UIEventSource; featurePipeline: FeaturePipeline; locationControl: UIEventSource; backgroundLayer: UIEventSource; filteredLayers: UIEventSource } & UserRelatedState, + isShown: UIEventSource, currentTab: UIEventSource): { header: string | BaseUIElement; content: BaseUIElement }[] { const tabs: { header: string | BaseUIElement, content: BaseUIElement }[] = [ - {header: ``, content: new ThemeIntroductionPanel(isShown)}, + {header: ``, content: new ThemeIntroductionPanel(isShown, currentTab, state)}, ] @@ -107,8 +101,8 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { locationControl: UIEventSource, backgroundLayer: UIEventSource, filteredLayers: UIEventSource } & UserRelatedState, currentTab: UIEventSource, isShown: UIEventSource) { - const tabs = FullWelcomePaneWithTabs.ConstructBaseTabs(state, isShown) - const tabsWithAboutMc = [...FullWelcomePaneWithTabs.ConstructBaseTabs(state, isShown)] + const tabs = FullWelcomePaneWithTabs.ConstructBaseTabs(state, isShown, currentTab) + const tabsWithAboutMc = [...FullWelcomePaneWithTabs.ConstructBaseTabs(state, isShown, currentTab)] tabsWithAboutMc.push({ diff --git a/UI/BigComponents/Histogram.ts b/UI/BigComponents/Histogram.ts index ba1387dddf..7b99564963 100644 --- a/UI/BigComponents/Histogram.ts +++ b/UI/BigComponents/Histogram.ts @@ -1,5 +1,5 @@ import {VariableUiElement} from "../Base/VariableUIElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Table from "../Base/Table"; import Combine from "../Base/Combine"; import {FixedUiElement} from "../Base/FixedUiElement"; @@ -19,7 +19,7 @@ export default class Histogram extends VariableUiElement { "#fa61fa" ] - constructor(values: UIEventSource, + constructor(values: Store, title: string | BaseUIElement, countTitle: string | BaseUIElement, options?: { diff --git a/UI/BigComponents/LeftControls.ts b/UI/BigComponents/LeftControls.ts index ea29a3e5a5..30af72531e 100644 --- a/UI/BigComponents/LeftControls.ts +++ b/UI/BigComponents/LeftControls.ts @@ -6,7 +6,7 @@ import MapControlButton from "../MapControlButton"; import Svg from "../../Svg"; import AllDownloads from "./AllDownloads"; import FilterView from "./FilterView"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import BackgroundMapSwitch from "./BackgroundMapSwitch"; import Lazy from "../Base/Lazy"; import {VariableUiElement} from "../Base/VariableUIElement"; @@ -28,7 +28,7 @@ export default class LeftControls extends Combine { const currentViewFL = state.currentView?.layer const currentViewAction = new Toggle( new Lazy(() => { - const feature: UIEventSource = state.currentView.features.map(ffs => ffs[0]?.feature) + const feature: Store = state.currentView.features.map(ffs => ffs[0]?.feature) const icon = new VariableUiElement(feature.map(feature => { const defaultIcon = Svg.checkbox_empty_svg() if (feature === undefined) { @@ -48,7 +48,10 @@ export default class LeftControls extends Combine { } return new Lazy(() => { const tagsSource = state.allElements.getEventSourceById(feature.properties.id) - return new FeatureInfoBox(tagsSource, currentViewFL.layerDef, state, "currentview", guiState.currentViewControlIsOpened) + return new FeatureInfoBox(tagsSource, currentViewFL.layerDef, state, { + hashToShow: "currentview", + isShown: guiState.currentViewControlIsOpened + }) .SetClass("md:floating-element-width") }) })).SetStyle("width: 40rem").SetClass("block") diff --git a/UI/BigComponents/LevelSelector.ts b/UI/BigComponents/LevelSelector.ts new file mode 100644 index 0000000000..fa84fd4b40 --- /dev/null +++ b/UI/BigComponents/LevelSelector.ts @@ -0,0 +1,140 @@ +import FloorLevelInputElement from "../Input/FloorLevelInputElement"; +import MapState, {GlobalFilter} from "../../Logic/State/MapState"; +import {TagsFilter} from "../../Logic/Tags/TagsFilter"; +import {RegexTag} from "../../Logic/Tags/RegexTag"; +import {Or} from "../../Logic/Tags/Or"; +import {Tag} from "../../Logic/Tags/Tag"; +import Translations from "../i18n/Translations"; +import Combine from "../Base/Combine"; +import {OsmFeature} from "../../Models/OsmFeature"; +import {BBox} from "../../Logic/BBox"; +import {TagUtils} from "../../Logic/Tags/TagUtils"; +import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; +import {Store} from "../../Logic/UIEventSource"; + +/*** + * The element responsible for the level input element and picking the right level, showing and hiding at the right time, ... + */ +export default class LevelSelector extends Combine { + + constructor(state: MapState & { featurePipeline: FeaturePipeline }) { + + const levelsInView : Store< Record> = state.currentBounds.map(bbox => { + if (bbox === undefined) { + return {} + } + const allElementsUnfiltered: OsmFeature[] = [].concat(...state.featurePipeline.GetAllFeaturesAndMetaWithin(bbox).map(ff => ff.features)) + const allElements = allElementsUnfiltered.filter(f => BBox.get(f).overlapsWith(bbox)) + const allLevelsRaw: string[] = allElements.map(f => f.properties["level"]) + + const levels : Record = {"0": 0} + for (const levelDescription of allLevelsRaw) { + if(levelDescription === undefined){ + levels["0"] ++ + } + for (const level of TagUtils.LevelsParser(levelDescription)) { + levels[level] = (levels[level] ?? 0) + 1 + } + } + + return levels + }) + + const levelSelect = new FloorLevelInputElement(levelsInView) + + state.globalFilters.data.push({ + filter: { + currentFilter: undefined, + state: undefined, + + }, + id: "level", + onNewPoint: undefined + }) + const isShown = levelsInView.map(levelsInView => { + if (state.locationControl.data.zoom <= 16) { + return false; + } + if (Object.keys(levelsInView).length == 1) { + return false; + } + + return true; + }, + [state.locationControl]) + + function setLevelFilter() { + console.log("Updating levels filter to ", levelSelect.GetValue().data, " is shown:", isShown.data) + const filter: GlobalFilter = state.globalFilters.data.find(gf => gf.id === "level") + if (!isShown.data) { + filter.filter = { + state: "*", + currentFilter: undefined, + } + filter.onNewPoint = undefined + state.globalFilters.ping(); + return + } + + const l = levelSelect.GetValue().data + if(l === undefined){ + return + } + + let neededLevel: TagsFilter = new RegexTag("level", new RegExp("(^|;)" + l + "(;|$)")); + if (l === "0") { + neededLevel = new Or([neededLevel, new Tag("level", "")]) + } + filter.filter = { + state: l, + currentFilter: neededLevel + } + const t = Translations.t.general.levelSelection + filter.onNewPoint = { + confirmAddNew: t.confirmLevel.PartialSubs({level: l}), + safetyCheck: t.addNewOnLevel.Subs({level: l}), + tags: [new Tag("level", l)] + } + state.globalFilters.ping(); + return; + } + + + isShown.addCallbackAndRun(shown => { + console.log("Is level selector shown?", shown) + setLevelFilter() + if (shown) { + levelSelect.RemoveClass("invisible") + } else { + levelSelect.SetClass("invisible") + } + }) + + + levelsInView.addCallbackAndRun(levels => { + if(!isShown.data){ + return + } + const value = levelSelect.GetValue() + if (!(levels[value.data] === undefined || levels[value.data] === 0)) { + return; + } + // Nothing in view. Lets switch to a different level (the level with the most features) + let mostElements = 0 + let mostElementsLevel = undefined + for (const level in levels) { + const count = levels[level] + if(mostElementsLevel === undefined || mostElements < count){ + mostElementsLevel = level + mostElements = count + } + } + console.log("Force switching to a different level:", mostElementsLevel,"as it has",mostElements,"elements on that floor",levels,"(old level: "+value.data+")") + value.setData(mostElementsLevel ) + + }) + levelSelect.GetValue().addCallback(_ => setLevelFilter()) + super([levelSelect]) + } + +} \ No newline at end of file diff --git a/UI/BigComponents/MapillaryLink.ts b/UI/BigComponents/MapillaryLink.ts new file mode 100644 index 0000000000..84ff110281 --- /dev/null +++ b/UI/BigComponents/MapillaryLink.ts @@ -0,0 +1,24 @@ +import {VariableUiElement} from "../Base/VariableUIElement"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Loc from "../../Models/Loc"; +import Translations from "../i18n/Translations"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import Combine from "../Base/Combine"; +import Title from "../Base/Title"; + +export class MapillaryLink extends VariableUiElement { + constructor(state: { locationControl: UIEventSource }, iconStyle?: string) { + const t = Translations.t.general.attribution + super(state.locationControl.map(location => { + const mapillaryLink = `https://www.mapillary.com/app/?focus=map&lat=${location?.lat ?? 0}&lng=${location?.lon ?? 0}&z=${Math.max((location?.zoom ?? 2) - 1, 1)}` + return new SubtleButton(Svg.mapillary_black_ui().SetStyle(iconStyle), + new Combine([ + t.openMapillary.SetClass("font-bold"), + t.mapillaryHelp]), { + url: mapillaryLink, + newTab: true + }).SetClass("flex flex-col link-no-underline") + })) + } +} \ No newline at end of file diff --git a/UI/BigComponents/MoreScreen.ts b/UI/BigComponents/MoreScreen.ts index 6d5592783e..dcb8a45de6 100644 --- a/UI/BigComponents/MoreScreen.ts +++ b/UI/BigComponents/MoreScreen.ts @@ -7,7 +7,7 @@ import * as personal from "../../assets/themes/personal/personal.json" import Constants from "../../Models/Constants"; import BaseUIElement from "../BaseUIElement"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {ImmutableStore, Store, Stores, UIEventSource} from "../../Logic/UIEventSource"; import Loc from "../../Models/Loc"; import {OsmConnection} from "../../Logic/Osm/OsmConnection"; import UserRelatedState from "../../Logic/State/UserRelatedState"; @@ -117,7 +117,7 @@ export default class MoreScreen extends Combine { private static createUrlFor(layout: { id: string, definition?: string }, isCustom: boolean, state?: { locationControl?: UIEventSource<{ lat, lon, zoom }>, layoutToUse?: { id } } - ): UIEventSource { + ): Store { if (layout === undefined) { return undefined; } @@ -163,7 +163,7 @@ export default class MoreScreen extends Combine { .map(part => part[0] + "=" + part[1]) .join("&") return `${linkPrefix}${params}${hash}`; - }) ?? new UIEventSource(`${linkPrefix}`) + }) ?? new ImmutableStore(`${linkPrefix}`) } @@ -188,15 +188,17 @@ export default class MoreScreen extends Combine { BaseUIElement { const url = MoreScreen.createUrlFor(layout, isCustom, state) - return new SubtleButton(layout.icon, - new Combine([ - `
`, - new Translation(layout.title, !isCustom && !layout.mustHaveLanguage ? "themes:" + layout.id + ".title" : undefined), - `
`, - `
`, - new Translation(layout.shortDescription)?.SetClass("subtle") ?? "", - `
`, - ]), {url, newTab: false}); + let content = new Combine([ + new Translation(layout.title, !isCustom && !layout.mustHaveLanguage ? "themes:" + layout.id + ".title" : undefined), + new Translation(layout.shortDescription)?.SetClass("subtle") ?? "", + ]).SetClass("overflow-hidden flex flex-col") + + if(state.layoutToUse === undefined){ + // Currently on the index screen: we style the buttons equally large + content = new Combine([content]).SetClass("flex flex-col justify-center h-24") + } + + return new SubtleButton(layout.icon, content, {url, newTab: false}); } public static CreateProffessionalSerivesButton() { @@ -207,55 +209,19 @@ export default class MoreScreen extends Combine { new SubtleButton(undefined, t.button, {url: "./professional.html"}), ]).SetClass("flex flex-col border border-gray-300 p-2 rounded-lg") } - - private static createUnofficialButtonFor(state: UserRelatedState, id: string): BaseUIElement { - const pref = state.osmConnection.GetLongPreference(id) - const str = pref.data - if (str === undefined || str === "undefined" || str === "") { - pref.setData(null) - return undefined - } - - try { - const value: { - id: string - icon: string, - title: any, - shortDescription: any, - definition?: any, - isOfficial: boolean - } = JSON.parse(str) - value.isOfficial = false - return MoreScreen.createLinkButton(state, value, true) - } catch (e) { - console.warn("Removing theme " + id + " as it could not be parsed from the preferences") - pref.setData(null) - return undefined - } - } - private static createUnofficialThemeList(buttonClass: string, state: UserRelatedState, themeListClasses: string, search: UIEventSource): BaseUIElement { - const prefix = "mapcomplete-unofficial-theme-"; + var currentIds: Store = state.installedUserThemes - var currentIds: UIEventSource = state.osmConnection.preferencesHandler.preferences - .map(allPreferences => { - const ids: string[] = [] - - for (const key in allPreferences) { - if (key.startsWith(prefix) && key.endsWith("-combined-length")) { - const id = key.substring("mapcomplete-".length, key.length - "-combined-length".length) - ids.push(id) - } - } - return ids - }); - - var stableIds = UIEventSource.ListStabilized(currentIds) + var stableIds = Stores.ListStabilized(currentIds) return new VariableUiElement( stableIds.map(ids => { const allThemes: { element: BaseUIElement, predicate?: (s: string) => boolean }[] = [] for (const id of ids) { - const link = this.createUnofficialButtonFor(state, id) + const themeInfo = state.GetUnofficialTheme(id) + if(themeInfo === undefined){ + continue + } + const link = MoreScreen.createLinkButton(state, themeInfo, true) if (link !== undefined) { allThemes.push({ element: link.SetClass(buttonClass), diff --git a/UI/BigComponents/RightControls.ts b/UI/BigComponents/RightControls.ts index 6e3e333fa4..ac95b9a21a 100644 --- a/UI/BigComponents/RightControls.ts +++ b/UI/BigComponents/RightControls.ts @@ -4,10 +4,16 @@ import MapControlButton from "../MapControlButton"; import GeoLocationHandler from "../../Logic/Actors/GeoLocationHandler"; import Svg from "../../Svg"; import MapState from "../../Logic/State/MapState"; +import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; +import {Utils} from "../../Utils"; +import {TagUtils} from "../../Logic/Tags/TagUtils"; +import {BBox} from "../../Logic/BBox"; +import {OsmFeature} from "../../Models/OsmFeature"; +import LevelSelector from "./LevelSelector"; export default class RightControls extends Combine { - constructor(state: MapState) { + constructor(state: MapState & { featurePipeline: FeaturePipeline }) { const geolocatioHandler = new GeoLocationHandler( state @@ -38,7 +44,8 @@ export default class RightControls extends Combine { state.locationControl.ping(); }); - super([plus, min, geolocationButton].map(el => el.SetClass("m-0.5 md:m-1"))) + const levelSelector = new LevelSelector(state); + super([levelSelector, plus, min, geolocationButton].map(el => el.SetClass("m-0.5 md:m-1"))) this.SetClass("flex flex-col items-center") } diff --git a/UI/BigComponents/SearchAndGo.ts b/UI/BigComponents/SearchAndGo.ts index 44efc2d100..8243023600 100644 --- a/UI/BigComponents/SearchAndGo.ts +++ b/UI/BigComponents/SearchAndGo.ts @@ -7,6 +7,7 @@ import {Geocoding} from "../../Logic/Osm/Geocoding"; import Translations from "../i18n/Translations"; import Hash from "../../Logic/Web/Hash"; import Combine from "../Base/Combine"; +import Locale from "../i18n/Locale"; export default class SearchAndGo extends Combine { constructor(state: { @@ -21,7 +22,7 @@ export default class SearchAndGo extends Combine { Translations.t.general.search.search ); const searchField = new TextField({ - placeholder: new VariableUiElement(placeholder), + placeholder: placeholder.map(tr => tr.textFor(Locale.language.data), [Locale.language]), value: new UIEventSource(""), inputStyle: " background: transparent;\n" + diff --git a/UI/BigComponents/ShareScreen.ts b/UI/BigComponents/ShareScreen.ts index de96839bfd..091c7996d8 100644 --- a/UI/BigComponents/ShareScreen.ts +++ b/UI/BigComponents/ShareScreen.ts @@ -2,9 +2,8 @@ import {VariableUiElement} from "../Base/VariableUIElement"; import {Translation} from "../i18n/Translation"; import Svg from "../../Svg"; import Combine from "../Base/Combine"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {Utils} from "../../Utils"; -import Toggle from "../Input/Toggle"; import Translations from "../i18n/Translations"; import BaseUIElement from "../BaseUIElement"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; @@ -13,7 +12,7 @@ import Loc from "../../Models/Loc"; import BaseLayer from "../../Models/BaseLayer"; import FilteredLayer from "../../Models/FilteredLayer"; import {InputElement} from "../Input/InputElement"; -import CheckBoxes, {CheckBox} from "../Input/Checkboxes"; +import {CheckBox} from "../Input/Checkboxes"; import {SubtleButton} from "../Base/SubtleButton"; import LZString from "lz-string"; @@ -24,7 +23,7 @@ export default class ShareScreen extends Combine { const tr = Translations.t.general.sharescreen; const optionCheckboxes: InputElement[] = [] - const optionParts: (UIEventSource)[] = []; + const optionParts: (Store)[] = []; const includeLocation = new CheckBox(tr.fsIncludeCurrentLocation, true) optionCheckboxes.push(includeLocation); @@ -43,7 +42,7 @@ export default class ShareScreen extends Combine { } else { return null; } - + }, [currentLocation])); @@ -95,7 +94,7 @@ export default class ShareScreen extends Combine { for (const swtch of switches) { - const checkbox =new CheckBox(Translations.W(swtch.human), !swtch.reverse) + const checkbox = new CheckBox(Translations.W(swtch.human), !swtch.reverse) optionCheckboxes.push(checkbox); optionParts.push(checkbox.GetValue().map((isEn) => { if (isEn) { @@ -114,8 +113,8 @@ export default class ShareScreen extends Combine { } - if(layout.definitionRaw !== undefined){ - optionParts.push(new UIEventSource("userlayout="+(layout.definedAtUrl ?? layout.id))) + if (layout.definitionRaw !== undefined) { + optionParts.push(new UIEventSource("userlayout=" + (layout.definedAtUrl ?? layout.id))) } const options = new Combine(optionCheckboxes).SetClass("flex flex-col") @@ -125,14 +124,14 @@ export default class ShareScreen extends Combine { let path = window.location.pathname; path = path.substr(0, path.lastIndexOf("/")); let id = layout.id.toLowerCase() - if(layout.definitionRaw !== undefined){ - id="theme.html" + if (layout.definitionRaw !== undefined) { + id = "theme.html" } let literalText = `https://${host}${path}/${id}` let hash = "" - if(layout.definedAtUrl === undefined && layout.definitionRaw !== undefined){ - hash = "#"+ LZString.compressToBase64( Utils.MinifyJSON(layout.definitionRaw)) + if (layout.definedAtUrl === undefined && layout.definitionRaw !== undefined) { + hash = "#" + LZString.compressToBase64(Utils.MinifyJSON(layout.definitionRaw)) } const parts = Utils.NoEmpty(Utils.NoNull(optionParts.map((eventSource) => eventSource.data))); if (parts.length === 0) { @@ -157,8 +156,8 @@ export default class ShareScreen extends Combine { ).onClick(async () => { const shareData = { - title: Translations.W(layout.title)?.ConstructElement().innerText ?? "", - text: Translations.W(layout.description)?.ConstructElement().innerText ?? "", + title: Translations.W(layout.title)?.ConstructElement().textContent ?? "", + text: Translations.W(layout.description)?.ConstructElement().textContent ?? "", url: url.data, } @@ -190,18 +189,30 @@ export default class ShareScreen extends Combine { }); - + let downloadThemeConfig: BaseUIElement = undefined; - if(layout.definitionRaw !== undefined){ - downloadThemeConfig = new SubtleButton(Svg.download_svg(), new Combine([ + if (layout.definitionRaw !== undefined) { + const downloadThemeConfigAsJson = new SubtleButton(Svg.download_svg(), new Combine([ tr.downloadCustomTheme, tr.downloadCustomThemeHelp.SetClass("subtle") ]).onClick(() => { - Utils.offerContentsAsDownloadableFile(layout.definitionRaw, layout.id+".mapcomplete-theme-definition.json", { - mimetype:"application/json" + Utils.offerContentsAsDownloadableFile(layout.definitionRaw, layout.id + ".mapcomplete-theme-definition.json", { + mimetype: "application/json" }) }) .SetClass("flex flex-col")) + let editThemeConfig: BaseUIElement = undefined + if (layout.definedAtUrl === undefined) { + const patchedDefinition = JSON.parse(layout.definitionRaw) + patchedDefinition["language"] = Object.keys(patchedDefinition.title) + editThemeConfig = new SubtleButton(Svg.pencil_svg(), "Edit this theme on the custom theme generator", + { + url: `https://pietervdvn.github.io/mc/legacy/070/customGenerator.html#${btoa(JSON.stringify(patchedDefinition))}` + } + ) + } + downloadThemeConfig = new Combine([downloadThemeConfigAsJson, editThemeConfig]).SetClass("flex flex-col") + } super([ diff --git a/UI/BigComponents/SimpleAddUI.ts b/UI/BigComponents/SimpleAddUI.ts index 9310928638..4b19456a57 100644 --- a/UI/BigComponents/SimpleAddUI.ts +++ b/UI/BigComponents/SimpleAddUI.ts @@ -25,6 +25,7 @@ import ConfirmLocationOfPoint from "../NewPoint/ConfirmLocationOfPoint"; import BaseLayer from "../../Models/BaseLayer"; import Loading from "../Base/Loading"; import Hash from "../../Logic/Web/Hash"; +import {GlobalFilter} from "../../Logic/State/MapState"; /* * The SimpleAddUI is a single panel, which can have multiple states: @@ -43,6 +44,14 @@ export interface PresetInfo extends PresetConfig { export default class SimpleAddUI extends Toggle { + /** + * + * @param isShown + * @param resetScrollSignal + * @param filterViewIsOpened + * @param state + * @param takeLocationFrom: defaults to state.lastClickLocation. Take this location to add the new point around + */ constructor(isShown: UIEventSource, resetScrollSignal: UIEventSource, filterViewIsOpened: UIEventSource, @@ -58,8 +67,11 @@ export default class SimpleAddUI extends Toggle { locationControl: UIEventSource, filteredLayers: UIEventSource, featureSwitchFilter: UIEventSource, - backgroundLayer: UIEventSource - }) { + backgroundLayer: UIEventSource, + globalFilters: UIEventSource + }, + takeLocationFrom?: UIEventSource<{lat: number, lon: number}> + ) { const loginButton = new SubtleButton(Svg.osm_logo_ui(), Translations.t.general.add.pleaseLogin.Clone()) .onClick(() => state.osmConnection.AttemptLogin()); const readYourMessages = new Combine([ @@ -68,7 +80,8 @@ export default class SimpleAddUI extends Toggle { Translations.t.general.goToInbox, {url: "https://www.openstreetmap.org/messages/inbox", newTab: false}) ]); - + + takeLocationFrom = takeLocationFrom ?? state.LastClickLocation const selectedPreset = new UIEventSource(undefined); selectedPreset.addCallback(_ => { resetScrollSignal.ping(); @@ -76,12 +89,12 @@ export default class SimpleAddUI extends Toggle { isShown.addCallback(_ => selectedPreset.setData(undefined)) // Clear preset selection when the UI is closed/opened - state.LastClickLocation.addCallback(_ => selectedPreset.setData(undefined)) + takeLocationFrom.addCallback(_ => selectedPreset.setData(undefined)) const presetsOverview = SimpleAddUI.CreateAllPresetsPanel(selectedPreset, state) - async function createNewPoint(tags: any[], location: { lat: number, lon: number }, snapOntoWay?: OsmWay) { + async function createNewPoint(tags: any[], location: { lat: number, lon: number }, snapOntoWay?: OsmWay) : Promise{ const newElementAction = new CreateNewNodeAction(tags, location.lat, location.lon, { theme: state.layoutToUse?.id ?? "unkown", changeType: "create", @@ -120,7 +133,7 @@ export default class SimpleAddUI extends Toggle { const message = Translations.t.general.add.addNew.Subs({category: preset.name}, preset.name["context"]); return new ConfirmLocationOfPoint(state, filterViewIsOpened, preset, message, - state.LastClickLocation.data, + takeLocationFrom.data, confirm, cancel, () => { diff --git a/UI/BigComponents/StatisticsPanel.ts b/UI/BigComponents/StatisticsPanel.ts new file mode 100644 index 0000000000..f1e6e98b71 --- /dev/null +++ b/UI/BigComponents/StatisticsPanel.ts @@ -0,0 +1,51 @@ +import {VariableUiElement} from "../Base/VariableUIElement"; +import Loading from "../Base/Loading"; +import Title from "../Base/Title"; +import TagRenderingChart from "./TagRenderingChart"; +import Combine from "../Base/Combine"; +import Locale from "../i18n/Locale"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {OsmFeature} from "../../Models/OsmFeature"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; + +export default class StatisticsPanel extends VariableUiElement { + constructor(elementsInview: UIEventSource<{ element: OsmFeature, layer: LayerConfig }[]>, state: { + layoutToUse: LayoutConfig + }) { + super(elementsInview.stabilized(1000).map(features => { + if (features === undefined) { + return new Loading("Loading data") + } + if (features.length === 0) { + return "No elements in view" + } + const els = [] + for (const layer of state.layoutToUse.layers) { + if(layer.name === undefined){ + continue + } + const featuresForLayer = features.filter(f => f.layer === layer).map(f => f.element) + if(featuresForLayer.length === 0){ + continue + } + els.push(new Title(layer.name.Clone(), 1).SetClass("mt-8")) + + const layerStats = [] + for (const tagRendering of (layer?.tagRenderings ?? [])) { + const chart = new TagRenderingChart(featuresForLayer, tagRendering, { + chartclasses: "w-full", + chartstyle: "height: 60rem", + includeTitle: false + }) + const title = new Title(tagRendering.question?.Clone() ?? tagRendering.id, 4).SetClass("mt-8") + if(!chart.HasClass("hidden")){ + layerStats.push(new Combine([title, chart]).SetClass("flex flex-col w-full lg:w-1/3")) + } + } + els.push(new Combine(layerStats).SetClass("flex flex-wrap")) + } + return new Combine(els) + }, [Locale.language])); + } +} \ No newline at end of file diff --git a/UI/BigComponents/TagRenderingChart.ts b/UI/BigComponents/TagRenderingChart.ts new file mode 100644 index 0000000000..f88cce188a --- /dev/null +++ b/UI/BigComponents/TagRenderingChart.ts @@ -0,0 +1,179 @@ +import ChartJs from "../Base/ChartJs"; +import {OsmFeature} from "../../Models/OsmFeature"; +import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; +import {ChartConfiguration} from 'chart.js'; +import Combine from "../Base/Combine"; +import {TagUtils} from "../../Logic/Tags/TagUtils"; + +export default class TagRenderingChart extends Combine { + + private static readonly unkownColor = 'rgba(128, 128, 128, 0.2)' + private static readonly unkownBorderColor = 'rgba(128, 128, 128, 0.2)' + + private static readonly otherColor = 'rgba(128, 128, 128, 0.2)' + private static readonly otherBorderColor = 'rgba(128, 128, 255)' + private static readonly notApplicableColor = 'rgba(128, 128, 128, 0.2)' + private static readonly notApplicableBorderColor = 'rgba(255, 0, 0)' + + + private static readonly backgroundColors = [ + 'rgba(255, 99, 132, 0.2)', + 'rgba(54, 162, 235, 0.2)', + 'rgba(255, 206, 86, 0.2)', + 'rgba(75, 192, 192, 0.2)', + 'rgba(153, 102, 255, 0.2)', + 'rgba(255, 159, 64, 0.2)' + ] + + private static readonly borderColors = [ + 'rgba(255, 99, 132, 1)', + 'rgba(54, 162, 235, 1)', + 'rgba(255, 206, 86, 1)', + 'rgba(75, 192, 192, 1)', + 'rgba(153, 102, 255, 1)', + 'rgba(255, 159, 64, 1)' + ] + + /** + * Creates a chart about this tagRendering for the given data + */ + constructor(features: OsmFeature[], tagRendering: TagRenderingConfig, options?: { + chartclasses?: string, + chartstyle?: string, + includeTitle?: boolean, + groupToOtherCutoff?: 3 | number + }) { + + const mappings = tagRendering.mappings ?? [] + if (mappings.length === 0 && tagRendering.freeform?.key === undefined) { + super([]) + this.SetClass("hidden") + return; + } + let unknownCount = 0; + const categoryCounts = mappings.map(_ => 0) + const otherCounts: Record = {} + let notApplicable = 0; + let barchartMode = tagRendering.multiAnswer; + for (const feature of features) { + const props = feature.properties + if (tagRendering.condition !== undefined && !tagRendering.condition.matchesProperties(props)) { + notApplicable++; + continue; + } + + if (!tagRendering.IsKnown(props)) { + unknownCount++; + continue; + } + let foundMatchingMapping = false; + if (!tagRendering.multiAnswer) { + for (let i = 0; i < mappings.length; i++) { + const mapping = mappings[i]; + if (mapping.if.matchesProperties(props)) { + categoryCounts[i]++ + foundMatchingMapping = true + break; + } + } + } else { + for (let i = 0; i < mappings.length; i++) { + const mapping = mappings[i]; + if (TagUtils.MatchesMultiAnswer( mapping.if, props)) { + categoryCounts[i]++ + foundMatchingMapping = true + } + } + } + if (!foundMatchingMapping) { + if (tagRendering.freeform?.key !== undefined && props[tagRendering.freeform.key] !== undefined) { + const otherValue = props[tagRendering.freeform.key] + otherCounts[otherValue] = (otherCounts[otherValue] ?? 0) + 1 + } else { + unknownCount++ + } + } + } + + if (unknownCount + notApplicable === features.length) { + super([]) + this.SetClass("hidden") + return + } + + let otherGrouped = 0; + const otherLabels: string[] = [] + const otherData : number[] = [] + for (const v in otherCounts) { + const count = otherCounts[v] + if(count >= (options.groupToOtherCutoff ?? 3)){ + otherLabels.push(v) + otherData.push(otherCounts[v]) + }else{ + otherGrouped++; + } + } + + + const labels = ["Unknown", "Other", "Not applicable", ...mappings?.map(m => m.then.txt) ?? [], ...otherLabels] + const data = [unknownCount, otherGrouped, notApplicable, ...categoryCounts, ... otherData] + const borderColor = [TagRenderingChart.unkownBorderColor, TagRenderingChart.otherBorderColor, TagRenderingChart.notApplicableBorderColor] + const backgroundColor = [TagRenderingChart.unkownColor, TagRenderingChart.otherColor, TagRenderingChart.notApplicableColor] + + + + while (borderColor.length < data.length) { + borderColor.push(...TagRenderingChart.borderColors) + backgroundColor.push(...TagRenderingChart.backgroundColors) + } + + for (let i = data.length; i >= 0; i--) { + if (data[i] === 0) { + labels.splice(i, 1) + data.splice(i, 1) + borderColor.splice(i, 1) + backgroundColor.splice(i, 1) + } + } + + if(labels.length > 9){ + barchartMode = true; + } + + const config = { + type: barchartMode ? 'bar' : 'doughnut', + data: { + labels, + datasets: [{ + data, + backgroundColor, + borderColor, + borderWidth: 1, + label: undefined + }] + }, + options: { + plugins: { + legend: { + display: !barchartMode + } + } + } + } + + const chart = new ChartJs(config).SetClass(options?.chartclasses ?? "w-32 h-32"); + + if (options.chartstyle !== undefined) { + chart.SetStyle(options.chartstyle) + } + + + super([ + options?.includeTitle ? (tagRendering.question.Clone() ?? tagRendering.id) : undefined, + chart]) + + this.SetClass("block") + } + + +} \ No newline at end of file diff --git a/UI/BigComponents/ThemeIntroductionPanel.ts b/UI/BigComponents/ThemeIntroductionPanel.ts index def06d7a91..7153692f26 100644 --- a/UI/BigComponents/ThemeIntroductionPanel.ts +++ b/UI/BigComponents/ThemeIntroductionPanel.ts @@ -1,4 +1,3 @@ -import State from "../../State"; import Combine from "../Base/Combine"; import LanguagePicker from "../LanguagePicker"; import Translations from "../i18n/Translations"; @@ -6,14 +5,18 @@ import Toggle from "../Input/Toggle"; import {SubtleButton} from "../Base/SubtleButton"; import {UIEventSource} from "../../Logic/UIEventSource"; import {LoginToggle} from "../Popup/LoginButton"; +import Svg from "../../Svg"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import FullWelcomePaneWithTabs from "./FullWelcomePaneWithTabs"; export default class ThemeIntroductionPanel extends Combine { - constructor(isShown: UIEventSource) { + constructor(isShown: UIEventSource, currentTab: UIEventSource, state: { featureSwitchMoreQuests: UIEventSource; featureSwitchAddNew: UIEventSource; featureSwitchUserbadge: UIEventSource; layoutToUse: LayoutConfig; osmConnection: OsmConnection }) { const t = Translations.t.general - const layout = State.state.layoutToUse + const layout = state.layoutToUse - const languagePicker = LanguagePicker.CreateLanguagePicker(layout.language, t.pickLanguage.Clone()) + const languagePicker = new LanguagePicker(layout.language, t.pickLanguage.Clone()) const toTheMap = new SubtleButton( undefined, @@ -30,18 +33,35 @@ export default class ThemeIntroductionPanel extends Combine { new Combine([Translations.t.general.loginWithOpenStreetMap.SetClass("text-xl font-bold"), Translations.t.general.loginOnlyNeededToEdit.Clone().SetClass("font-bold")] ).SetClass("flex flex-col"), - State.state + state ), undefined, - State.state.featureSwitchUserbadge + state.featureSwitchUserbadge ) + const hasPresets = layout.layers.some(l => l.presets?.length > 0) super([ layout.description.Clone().SetClass("blcok mb-4"), + new Combine([ + t.welcomeExplanation.general, + hasPresets ? Toggle.If( state.featureSwitchAddNew, () => t.welcomeExplanation.addNew) : undefined, + ]).SetClass("flex flex-col mt-2"), + toTheMap, loginStatus.SetClass("block"), layout.descriptionTail?.Clone().SetClass("block mt-4"), + languagePicker?.SetClass("block mt-4"), + + Toggle.If(state.featureSwitchMoreQuests, + () => new Combine([ + t.welcomeExplanation.browseOtherThemesIntro, + new SubtleButton(Svg.add_ui().SetClass("h-6"),t.welcomeExplanation.browseMoreMaps ) + .onClick(() => currentTab.setData(FullWelcomePaneWithTabs.MoreThemesTabIndex)) + .SetClass("h-12") + + ]).SetClass("flex flex-col mt-6")), + ...layout.CustomCodeSnippets() ]) diff --git a/UI/BigComponents/TranslatorsPanel.ts b/UI/BigComponents/TranslatorsPanel.ts index 37e80eadb8..88b1eb1f68 100644 --- a/UI/BigComponents/TranslatorsPanel.ts +++ b/UI/BigComponents/TranslatorsPanel.ts @@ -11,7 +11,7 @@ import Link from "../Base/Link"; import LinkToWeblate from "../Base/LinkToWeblate"; import Toggleable from "../Base/Toggleable"; import Title from "../Base/Title"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {SubtleButton} from "../Base/SubtleButton"; import Svg from "../../Svg"; import * as native_languages from "../../assets/language_native.json" @@ -19,7 +19,7 @@ import * as used_languages from "../../assets/generated/used_languages.json" import BaseUIElement from "../BaseUIElement"; class TranslatorsPanelContent extends Combine { - constructor(layout: LayoutConfig, isTranslator: UIEventSource) { + constructor(layout: LayoutConfig, isTranslator: Store) { const t = Translations.t.translations const {completeness, untranslated, total} = TranslatorsPanel.MissingTranslationsFor(layout) @@ -106,7 +106,7 @@ class TranslatorsPanelContent extends Combine { export default class TranslatorsPanel extends Toggle { - constructor(state: { layoutToUse: LayoutConfig, isTranslator: UIEventSource }, iconStyle?: string) { + constructor(state: { layoutToUse: LayoutConfig, isTranslator: Store }, iconStyle?: string) { const t = Translations.t.translations super( new Lazy(() => new TranslatorsPanelContent(state.layoutToUse, state.isTranslator) @@ -124,7 +124,7 @@ export default class TranslatorsPanel extends Toggle { const completeness = new Map() const untranslated = new Map() - Utils.WalkObject(layout, (o, path) => { + Utils.WalkObject(layout, (o) => { const translation = o; if (translation.translations["*"] !== undefined) { return diff --git a/UI/BigComponents/UserBadge.ts b/UI/BigComponents/UserBadge.ts index 82adbe12ea..39bfe2251f 100644 --- a/UI/BigComponents/UserBadge.ts +++ b/UI/BigComponents/UserBadge.ts @@ -39,7 +39,7 @@ export default class UserBadge extends LoginToggle { }); const linkStyle = "flex items-baseline" - const languagePicker = (LanguagePicker.CreateLanguagePicker(state.layoutToUse.language) ?? new FixedUiElement("")) + const languagePicker = (new LanguagePicker(state.layoutToUse.language, "") ?? new FixedUiElement("")) .SetStyle("width:min-content;"); let messageSpan = diff --git a/UI/DashboardGui.ts b/UI/DashboardGui.ts new file mode 100644 index 0000000000..d657f9667a --- /dev/null +++ b/UI/DashboardGui.ts @@ -0,0 +1,242 @@ +import FeaturePipelineState from "../Logic/State/FeaturePipelineState"; +import {DefaultGuiState} from "./DefaultGuiState"; +import {FixedUiElement} from "./Base/FixedUiElement"; +import {Utils} from "../Utils"; +import Combine from "./Base/Combine"; +import ShowDataLayer from "./ShowDataLayer/ShowDataLayer"; +import LayerConfig from "../Models/ThemeConfig/LayerConfig"; +import * as home_location_json from "../assets/layers/home_location/home_location.json"; +import State from "../State"; +import Title from "./Base/Title"; +import {MinimapObj} from "./Base/Minimap"; +import BaseUIElement from "./BaseUIElement"; +import {VariableUiElement} from "./Base/VariableUIElement"; +import {GeoOperations} from "../Logic/GeoOperations"; +import {OsmFeature} from "../Models/OsmFeature"; +import SearchAndGo from "./BigComponents/SearchAndGo"; +import FeatureInfoBox from "./Popup/FeatureInfoBox"; +import {UIEventSource} from "../Logic/UIEventSource"; +import LanguagePicker from "./LanguagePicker"; +import Lazy from "./Base/Lazy"; +import TagRenderingAnswer from "./Popup/TagRenderingAnswer"; +import Hash from "../Logic/Web/Hash"; +import FilterView from "./BigComponents/FilterView"; +import Translations from "./i18n/Translations"; +import Constants from "../Models/Constants"; +import SimpleAddUI from "./BigComponents/SimpleAddUI"; +import BackToIndex from "./BigComponents/BackToIndex"; +import StatisticsPanel from "./BigComponents/StatisticsPanel"; + + +export default class DashboardGui { + private readonly state: FeaturePipelineState; + private readonly currentView: UIEventSource<{ title: string | BaseUIElement, contents: string | BaseUIElement }> = new UIEventSource(undefined) + + + constructor(state: FeaturePipelineState, guiState: DefaultGuiState) { + this.state = state; + } + + private viewSelector(shown: BaseUIElement, title: string | BaseUIElement, contents: string | BaseUIElement, hash?: string): BaseUIElement { + const currentView = this.currentView + const v = {title, contents} + shown.SetClass("pl-1 pr-1 rounded-md") + shown.onClick(() => { + currentView.setData(v) + }) + Hash.hash.addCallbackAndRunD(h => { + if (h === hash) { + currentView.setData(v) + } + }) + currentView.addCallbackAndRunD(cv => { + if (cv == v) { + shown.SetClass("bg-unsubtle") + Hash.hash.setData(hash) + } else { + shown.RemoveClass("bg-unsubtle") + } + }) + return shown; + } + + private singleElementCache: Record = {} + + private singleElementView(element: OsmFeature, layer: LayerConfig, distance: number): BaseUIElement { + if (this.singleElementCache[element.properties.id] !== undefined) { + return this.singleElementCache[element.properties.id] + } + const tags = this.state.allElements.getEventSourceById(element.properties.id) + const title = new Combine([new Title(new TagRenderingAnswer(tags, layer.title, this.state), 4), + distance < 900 ? Math.floor(distance) + "m away" : + Utils.Round(distance / 1000) + "km away" + ]).SetClass("flex justify-between"); + + return this.singleElementCache[element.properties.id] = this.viewSelector(title, + new Lazy(() => FeatureInfoBox.GenerateTitleBar(tags, layer, this.state)), + new Lazy(() => FeatureInfoBox.GenerateContent(tags, layer, this.state)), + // element.properties.id + ); + } + + private mainElementsView(elements: { element: OsmFeature, layer: LayerConfig, distance: number }[]): BaseUIElement { + const self = this + if (elements === undefined) { + return new FixedUiElement("Initializing") + } + if (elements.length == 0) { + return new FixedUiElement("No elements in view") + } + return new Combine(elements.map(e => self.singleElementView(e.element, e.layer, e.distance))) + } + + private documentationButtonFor(layerConfig: LayerConfig): BaseUIElement { + return this.viewSelector(Translations.W(layerConfig.name?.Clone() ?? layerConfig.id), new Combine(["Documentation about ", layerConfig.name?.Clone() ?? layerConfig.id]), + layerConfig.GenerateDocumentation([]), + "documentation-" + layerConfig.id) + } + + private allDocumentationButtons(): BaseUIElement { + const layers = this.state.layoutToUse.layers.filter(l => Constants.priviliged_layers.indexOf(l.id) < 0) + .filter(l => !l.id.startsWith("note_import_")); + + if (layers.length === 1) { + return this.documentationButtonFor(layers[0]) + } + return this.viewSelector(new FixedUiElement("Documentation"), "Documentation", + new Combine(layers.map(l => this.documentationButtonFor(l).SetClass("flex flex-col")))) + } + + + public setup(): void { + + const state = this.state; + + if (this.state.layoutToUse.customCss !== undefined) { + if (window.location.pathname.indexOf("index") >= 0) { + Utils.LoadCustomCss(this.state.layoutToUse.customCss) + } + } + const map = this.SetupMap(); + + Utils.downloadJson("./service-worker-version").then(data => console.log("Service worker", data)).catch(_ => console.log("Service worker not active")) + + document.getElementById("centermessage").classList.add("hidden") + + const layers: Record = {} + for (const layer of state.layoutToUse.layers) { + layers[layer.id] = layer; + } + + const self = this; + const elementsInview = new UIEventSource<{ distance: number, center: [number, number], element: OsmFeature, layer: LayerConfig }[]>([]); + + function update() { + const mapCenter = <[number,number]> [self.state.locationControl.data.lon, self.state.locationControl.data.lon] + const elements = self.state.featurePipeline.getAllVisibleElementsWithmeta(self.state.currentBounds.data).map(el => { + const distance = GeoOperations.distanceBetween(el.center, mapCenter) + return {...el, distance } + }) + elements.sort((e0, e1) => e0.distance - e1.distance) + elementsInview.setData(elements) + + } + + map.bounds.addCallbackAndRun(update) + state.featurePipeline.newDataLoadedSignal.addCallback(update); + state.filteredLayers.addCallbackAndRun(fls => { + for (const fl of fls) { + fl.isDisplayed.addCallback(update) + fl.appliedFilters.addCallback(update) + } + }) + + const filterView = new Lazy(() => { + return new FilterView(state.filteredLayers, state.overlayToggles) + }); + const welcome = new Combine([state.layoutToUse.description, state.layoutToUse.descriptionTail]) + self.currentView.setData({title: state.layoutToUse.title, contents: welcome}) + const filterViewIsOpened = new UIEventSource(false) + filterViewIsOpened.addCallback(_ => self.currentView.setData({title: "filters", contents: filterView})) + + const newPointIsShown = new UIEventSource(false); + const addNewPoint = new SimpleAddUI( + new UIEventSource(true), + new UIEventSource(undefined), + filterViewIsOpened, + state, + state.locationControl + ); + const addNewPointTitle = "Add a missing point" + this.currentView.addCallbackAndRunD(cv => { + newPointIsShown.setData(cv.contents === addNewPoint) + }) + newPointIsShown.addCallbackAndRun(isShown => { + if (isShown) { + if (self.currentView.data.contents !== addNewPoint) { + self.currentView.setData({title: addNewPointTitle, contents: addNewPoint}) + } + } else { + if (self.currentView.data.contents === addNewPoint) { + self.currentView.setData(undefined) + } + } + }) + + + new Combine([ + new Combine([ + this.viewSelector(new Title(state.layoutToUse.title.Clone(), 2), state.layoutToUse.title.Clone(), welcome, "welcome"), + map.SetClass("w-full h-64 shrink-0 rounded-lg"), + new SearchAndGo(state), + this.viewSelector(new Title( + new VariableUiElement(elementsInview.map(elements => "There are " + elements?.length + " elements in view"))), + "Statistics", + new StatisticsPanel(elementsInview, this.state), "statistics"), + + this.viewSelector(new FixedUiElement("Filter"), + "Filters", filterView, "filters"), + this.viewSelector(new Combine(["Add a missing point"]), addNewPointTitle, + addNewPoint + ), + + new VariableUiElement(elementsInview.map(elements => this.mainElementsView(elements).SetClass("block m-2"))) + .SetClass("block shrink-2 overflow-x-auto h-full border-2 border-subtle rounded-lg"), + this.allDocumentationButtons(), + new LanguagePicker(Object.keys(state.layoutToUse.title.translations)).SetClass("mt-2"), + new BackToIndex() + ]).SetClass("w-1/2 lg:w-1/4 m-4 flex flex-col shrink-0 grow-0"), + new VariableUiElement(this.currentView.map(({title, contents}) => { + return new Combine([ + new Title(Translations.W(title), 2).SetClass("shrink-0 border-b-4 border-subtle"), + Translations.W(contents).SetClass("shrink-2 overflow-y-auto block") + ]).SetClass("flex flex-col h-full") + })).SetClass("w-1/2 lg:w-3/4 m-4 p-2 border-2 border-subtle rounded-xl m-4 ml-0 mr-8 shrink-0 grow-0"), + + ]).SetClass("flex h-full") + .AttachTo("leafletDiv") + + } + + private SetupMap(): MinimapObj & BaseUIElement { + const state = this.state; + + new ShowDataLayer({ + leafletMap: state.leafletMap, + layerToShow: new LayerConfig(home_location_json, "home_location", true), + features: state.homeLocation, + state + }) + + state.leafletMap.addCallbackAndRunD(_ => { + // Lets assume that all showDataLayers are initialized at this point + state.selectedElement.ping() + State.state.locationControl.ping(); + return true; + }) + + return state.mainMapObject + + } + +} \ No newline at end of file diff --git a/UI/DefaultGUI.ts b/UI/DefaultGUI.ts index 095040c634..9252faed34 100644 --- a/UI/DefaultGUI.ts +++ b/UI/DefaultGUI.ts @@ -44,17 +44,14 @@ export default class DefaultGUI { } public setup(){ - if (this.state.layoutToUse.customCss !== undefined) { - Utils.LoadCustomCss(this.state.layoutToUse.customCss); - } - this.SetupUIElements(); this.SetupMap() - if (this.state.layoutToUse.customCss !== undefined && window.location.pathname.indexOf("index") >= 0) { Utils.LoadCustomCss(this.state.layoutToUse.customCss) } + + Utils.downloadJson("./service-worker-version").then(data => console.log("Service worker", data)).catch(e => console.log("Service worker not active")) } public setupClickDialogOnMap(filterViewIsOpened: UIEventSource, state: FeaturePipelineState) { @@ -142,7 +139,7 @@ export default class DefaultGUI { new ShowDataLayer({ leafletMap: state.leafletMap, - layerToShow: new LayerConfig(home_location_json, "all_known_layers", true), + layerToShow: new LayerConfig(home_location_json, "home_location", true), features: state.homeLocation, state }) diff --git a/UI/ExportPDF.ts b/UI/ExportPDF.ts index efe0fffc07..52be72d4d7 100644 --- a/UI/ExportPDF.ts +++ b/UI/ExportPDF.ts @@ -139,7 +139,7 @@ export default class ExportPDF { maxWidth: 125 }) const backgroundLayer: BaseLayer = State.state.backgroundLayer.data - const attribution = new FixedUiElement(backgroundLayer.layer().getAttribution() ?? backgroundLayer.name).ConstructElement().innerText + const attribution = new FixedUiElement(backgroundLayer.layer().getAttribution() ?? backgroundLayer.name).ConstructElement().textContent doc.textWithLink(t.attr.txt, 40, 26.5, { maxWidth: 125, url: "https://www.openstreetmap.org/copyright" diff --git a/UI/Image/AttributedImage.ts b/UI/Image/AttributedImage.ts index 031f81cedb..bb6ab806d8 100644 --- a/UI/Image/AttributedImage.ts +++ b/UI/Image/AttributedImage.ts @@ -1,22 +1,32 @@ import Combine from "../Base/Combine"; import Attribution from "./Attribution"; import Img from "../Base/Img"; -import {ProvidedImage} from "../../Logic/ImageProviders/ImageProvider"; +import ImageProvider from "../../Logic/ImageProviders/ImageProvider"; import BaseUIElement from "../BaseUIElement"; import {Mapillary} from "../../Logic/ImageProviders/Mapillary"; +import {UIEventSource} from "../../Logic/UIEventSource"; export class AttributedImage extends Combine { - constructor(imageInfo: ProvidedImage) { + constructor(imageInfo: { + url: string, + provider?: ImageProvider, + date?: Date + } + ) { let img: BaseUIElement; - let attr: BaseUIElement img = new Img(imageInfo.url, false, { fallbackImage: imageInfo.provider === Mapillary.singleton ? "./assets/svg/blocked.svg" : undefined }); - attr = new Attribution(imageInfo.provider.GetAttributionFor(imageInfo.url), - imageInfo.provider.SourceIcon(), - ) + + let attr: BaseUIElement = undefined + if(imageInfo.provider !== undefined){ + attr = new Attribution(UIEventSource.FromPromise( imageInfo.provider?.DownloadAttribution(imageInfo.url)), + imageInfo.provider?.SourceIcon(), + imageInfo.date + ) + } super([img, attr]); diff --git a/UI/Image/Attribution.ts b/UI/Image/Attribution.ts index 3db016da0d..84d8c2d2ae 100644 --- a/UI/Image/Attribution.ts +++ b/UI/Image/Attribution.ts @@ -2,12 +2,13 @@ import Combine from "../Base/Combine"; import Translations from "../i18n/Translations"; import BaseUIElement from "../BaseUIElement"; import {VariableUiElement} from "../Base/VariableUIElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {LicenseInfo} from "../../Logic/ImageProviders/LicenseInfo"; +import {FixedUiElement} from "../Base/FixedUiElement"; export default class Attribution extends VariableUiElement { - constructor(license: UIEventSource, icon: BaseUIElement) { + constructor(license: Store, icon: BaseUIElement, date?: Date) { if (license === undefined) { throw "No license source given in the attribution element" } @@ -23,7 +24,8 @@ export default class Attribution extends VariableUiElement { new Combine([ Translations.W(license?.title).SetClass("block"), Translations.W(license?.artist ?? "").SetClass("block font-bold"), - Translations.W((license?.license ?? "") === "" ? "CC0" : (license?.license ?? "")) + Translations.W(license?.license ?? license?.licenseShortName), + date === undefined ? undefined : new FixedUiElement(date.toLocaleDateString()) ]).SetClass("flex flex-col") ]).SetClass("flex flex-row bg-black text-white text-sm absolute bottom-0 left-0 p-0.5 pl-5 pr-3 rounded-lg no-images") diff --git a/UI/Image/DeleteImage.ts b/UI/Image/DeleteImage.ts index 3f16902446..183762d20b 100644 --- a/UI/Image/DeleteImage.ts +++ b/UI/Image/DeleteImage.ts @@ -1,6 +1,6 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import Translations from "../i18n/Translations"; -import Toggle from "../Input/Toggle"; +import Toggle, {ClickableToggle} from "../Input/Toggle"; import Combine from "../Base/Combine"; import Svg from "../../Svg"; import {Tag} from "../../Logic/Tags/Tag"; @@ -11,7 +11,7 @@ import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; export default class DeleteImage extends Toggle { - constructor(key: string, tags: UIEventSource, state: { layoutToUse: LayoutConfig, changes?: Changes, osmConnection?: OsmConnection }) { + constructor(key: string, tags: Store, state: { layoutToUse: LayoutConfig, changes?: Changes, osmConnection?: OsmConnection }) { const oldValue = tags.data[key] const isDeletedBadge = Translations.t.image.isDeleted.Clone() .SetClass("rounded-full p-1") @@ -37,7 +37,7 @@ export default class DeleteImage extends Toggle { const cancelButton = Translations.t.general.cancel.Clone().SetClass("bg-white pl-4 pr-4").SetStyle("border-bottom-left-radius:30rem; border-bottom-right-radius: 30rem;"); const openDelete = Svg.delete_icon_svg().SetStyle("width: 2em; height: 2em; display:block;") - const deleteDialog = new Toggle( + const deleteDialog = new ClickableToggle( new Combine([ deleteButton, cancelButton diff --git a/UI/Image/ImageCarousel.ts b/UI/Image/ImageCarousel.ts index 92a7136fb8..5c1d6e8299 100644 --- a/UI/Image/ImageCarousel.ts +++ b/UI/Image/ImageCarousel.ts @@ -1,5 +1,5 @@ import {SlideShow} from "./SlideShow"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; import DeleteImage from "./DeleteImage"; import {AttributedImage} from "./AttributedImage"; @@ -12,8 +12,8 @@ import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; export class ImageCarousel extends Toggle { - constructor(images: UIEventSource<{ key: string, url: string, provider: ImageProvider }[]>, - tags: UIEventSource, + constructor(images: Store<{ key: string, url: string, provider: ImageProvider }[]>, + tags: Store, state: { osmConnection?: OsmConnection, changes?: Changes, layoutToUse: LayoutConfig }) { const uiElements = images.map((imageURLS: { key: string, url: string, provider: ImageProvider }[]) => { const uiElements: BaseUIElement[] = []; diff --git a/UI/Image/ImageUploadFlow.ts b/UI/Image/ImageUploadFlow.ts index 807e5464ce..033aecd03a 100644 --- a/UI/Image/ImageUploadFlow.ts +++ b/UI/Image/ImageUploadFlow.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; import Translations from "../i18n/Translations"; import Svg from "../../Svg"; @@ -22,12 +22,12 @@ export class ImageUploadFlow extends Toggle { private static readonly uploadCountsPerId = new Map>() - constructor(tagsSource: UIEventSource, + constructor(tagsSource: Store, state: { osmConnection: OsmConnection; layoutToUse: LayoutConfig; changes: Changes, - featureSwitchUserbadge: UIEventSource; + featureSwitchUserbadge: Store; }, imagePrefix: string = "image", text: string = undefined) { const perId = ImageUploadFlow.uploadCountsPerId @@ -112,7 +112,7 @@ export class ImageUploadFlow extends Toggle { } - const title = matchingLayer?.title?.GetRenderValue(tags)?.Subs(tags)?.ConstructElement()?.innerText ?? tags.name ?? "https//osm.org/"+tags.id; + const title = matchingLayer?.title?.GetRenderValue(tags)?.Subs(tags)?.ConstructElement()?.textContent ?? tags.name ?? "https//osm.org/"+tags.id; const description = [ "author:" + state.osmConnection.userDetails.data.name, "license:" + license, diff --git a/UI/Image/SlideShow.ts b/UI/Image/SlideShow.ts index 9d37036fe5..aa19056c1a 100644 --- a/UI/Image/SlideShow.ts +++ b/UI/Image/SlideShow.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import {Utils} from "../../Utils"; import Combine from "../Base/Combine"; @@ -6,9 +6,9 @@ import Combine from "../Base/Combine"; export class SlideShow extends BaseUIElement { - private readonly embeddedElements: UIEventSource; + private readonly embeddedElements: Store; - constructor(embeddedElements: UIEventSource) { + constructor(embeddedElements: Store) { super() this.embeddedElements = embeddedElements; this.SetStyle("scroll-snap-type: x mandatory; overflow-x: auto") diff --git a/UI/ImportFlow/AskMetadata.ts b/UI/ImportFlow/AskMetadata.ts index 125b43ed33..6584fc0656 100644 --- a/UI/ImportFlow/AskMetadata.ts +++ b/UI/ImportFlow/AskMetadata.ts @@ -1,12 +1,11 @@ import Combine from "../Base/Combine"; import {FlowStep} from "./FlowStep"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import ValidatedTextField from "../Input/ValidatedTextField"; import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource"; import Title from "../Base/Title"; import {VariableUiElement} from "../Base/VariableUIElement"; import Translations from "../i18n/Translations"; -import {FixedUiElement} from "../Base/FixedUiElement"; import {SubtleButton} from "../Base/SubtleButton"; import Svg from "../../Svg"; import {Utils} from "../../Utils"; @@ -19,14 +18,14 @@ export class AskMetadata extends Combine implements FlowStep<{ theme: string }> { - public readonly Value: UIEventSource<{ + public readonly Value: Store<{ features: any[], wikilink: string, intro: string, source: string, theme: string }>; - public readonly IsValid: UIEventSource; + public readonly IsValid: Store; constructor(params: ({ features: any[], theme: string })) { const t = Translations.t.importHelper.askMetadata diff --git a/UI/ImportFlow/CompareToAlreadyExistingNotes.ts b/UI/ImportFlow/CompareToAlreadyExistingNotes.ts index eb0d40f710..8cf3346600 100644 --- a/UI/ImportFlow/CompareToAlreadyExistingNotes.ts +++ b/UI/ImportFlow/CompareToAlreadyExistingNotes.ts @@ -2,7 +2,7 @@ import Combine from "../Base/Combine"; import {FlowStep} from "./FlowStep"; import {BBox} from "../../Logic/BBox"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import CreateNoteImportLayer from "../../Models/ThemeConfig/Conversion/CreateNoteImportLayer"; import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; import GeoJsonSource from "../../Logic/FeatureSource/Sources/GeoJsonSource"; @@ -17,7 +17,6 @@ import * as import_candidate from "../../assets/layers/import_candidate/import_c import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; import Title from "../Base/Title"; import Loading from "../Base/Loading"; -import {FixedUiElement} from "../Base/FixedUiElement"; import {VariableUiElement} from "../Base/VariableUIElement"; import * as known_layers from "../../assets/generated/known_layers.json" import {LayerConfigJson} from "../../Models/ThemeConfig/Json/LayerConfigJson"; @@ -28,8 +27,8 @@ import Translations from "../i18n/Translations"; */ export class CompareToAlreadyExistingNotes extends Combine implements FlowStep<{ bbox: BBox, layer: LayerConfig, features: any[], theme: string }> { - public IsValid: UIEventSource - public Value: UIEventSource<{ bbox: BBox, layer: LayerConfig, features: any[], theme: string }> + public IsValid: Store + public Value: Store<{ bbox: BBox, layer: LayerConfig, features: any[], theme: string }> constructor(state, params: { bbox: BBox, layer: LayerConfig, features: any[], theme: string }) { @@ -94,7 +93,7 @@ export class CompareToAlreadyExistingNotes extends Combine implements FlowStep<{ state, zoomToFeatures: true, leafletMap: comparisonMap.leafletMap, - features: new StaticFeatureSource(partitionedImportPoints.map(p => p.hasNearby), false), + features: StaticFeatureSource.fromGeojsonStore(partitionedImportPoints.map(p => p.hasNearby)), popup: (tags, layer) => new FeatureInfoBox(tags, layer, state) }) @@ -103,7 +102,8 @@ export class CompareToAlreadyExistingNotes extends Combine implements FlowStep<{ new VariableUiElement( alreadyOpenImportNotes.features.map(notesWithImport => { if (allNotesWithinBbox.state.data !== undefined && allNotesWithinBbox.state.data["error"] !== undefined) { - t.loadingFailed.Subs(allNotesWithinBbox.state.data) + const error = allNotesWithinBbox.state.data["error"] + t.loadingFailed.Subs({error}) } if (allNotesWithinBbox.features.data === undefined || allNotesWithinBbox.features.data.length === 0) { return new Loading(t.loading) diff --git a/UI/ImportFlow/ConfirmProcess.ts b/UI/ImportFlow/ConfirmProcess.ts index c8e3f570e8..580ef7ed05 100644 --- a/UI/ImportFlow/ConfirmProcess.ts +++ b/UI/ImportFlow/ConfirmProcess.ts @@ -1,6 +1,6 @@ import Combine from "../Base/Combine"; import {FlowStep} from "./FlowStep"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Link from "../Base/Link"; import CheckBoxes from "../Input/Checkboxes"; import Title from "../Base/Title"; @@ -8,8 +8,8 @@ import Translations from "../i18n/Translations"; export class ConfirmProcess extends Combine implements FlowStep<{ features: any[], theme: string }> { - public IsValid: UIEventSource - public Value: UIEventSource<{ features: any[], theme: string }> + public IsValid: Store + public Value: Store<{ features: any[], theme: string }> constructor(v: { features: any[], theme: string }) { const t = Translations.t.importHelper.confirmProcess; diff --git a/UI/ImportFlow/ConflationChecker.ts b/UI/ImportFlow/ConflationChecker.ts index 3ae2103f8b..e64a75342e 100644 --- a/UI/ImportFlow/ConflationChecker.ts +++ b/UI/ImportFlow/ConflationChecker.ts @@ -3,7 +3,7 @@ import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import Combine from "../Base/Combine"; import Title from "../Base/Title"; import {Overpass} from "../../Logic/Osm/Overpass"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Constants from "../../Models/Constants"; import RelationsTracker from "../../Logic/Osm/RelationsTracker"; import {VariableUiElement} from "../Base/VariableUIElement"; @@ -22,12 +22,17 @@ import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; import ValidatedTextField from "../Input/ValidatedTextField"; import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource"; -import * as currentview from "../../assets/layers/current_view/current_view.json" import * as import_candidate from "../../assets/layers/import_candidate/import_candidate.json" import {GeoOperations} from "../../Logic/GeoOperations"; import FeatureInfoBox from "../Popup/FeatureInfoBox"; import {ImportUtils} from "./ImportUtils"; import Translations from "../i18n/Translations"; +import ShowDataMultiLayer from "../ShowDataLayer/ShowDataMultiLayer"; +import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; +import {Feature, FeatureCollection} from "@turf/turf"; +import * as currentview from "../../assets/layers/current_view/current_view.json" +import {CheckBox} from "../Input/Checkboxes"; +import BackgroundMapSwitch from "../BigComponents/BackgroundMapSwitch"; /** * Given the data to import, the bbox and the layer, will query overpass for similar items @@ -35,21 +40,22 @@ import Translations from "../i18n/Translations"; export default class ConflationChecker extends Combine implements FlowStep<{ features: any[], theme: string }> { public readonly IsValid - public readonly Value: UIEventSource<{ features: any[], theme: string }> - + public readonly Value: Store<{ features: any[], theme: string }> + constructor( state, params: { bbox: BBox, layer: LayerConfig, theme: string, features: any[] }) { + const t = Translations.t.importHelper.conflationChecker const bbox = params.bbox.padAbsolute(0.0001) const layer = params.layer; - const toImport: {features: any[]} = params; + + const toImport: { features: any[] } = params; let overpassStatus = new UIEventSource<{ error: string } | "running" | "success" | "idle" | "cached">("idle") - const cacheAge = new UIEventSource(undefined); - - - function loadDataFromOverpass(){ + + + function loadDataFromOverpass() { // Load the data! const url = Constants.defaultOverpassUrls[1] const relationTracker = new RelationsTracker() @@ -66,42 +72,51 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea overpassStatus.setData({error}) }) } - - + + const fromLocalStorage = IdbLocalStorage.Get<[any, Date]>("importer-overpass-cache-" + layer.id, { - + whenLoaded: (v) => { if (v !== undefined && v !== null) { console.log("Loaded from local storage:", v) - const [geojson, date] = v; - const timeDiff = (new Date().getTime() - date.getTime()) / 1000; - console.log("Loaded ", geojson.features.length, " features; cache is ", timeDiff, "seconds old") - cacheAge.setData(timeDiff) - if (timeDiff < 24 * 60 * 60) { - // Recently cached! - overpassStatus.setData("cached") - return; - } - cacheAge.setData(-1) + overpassStatus.setData("cached") + }else{ + loadDataFromOverpass() } - loadDataFromOverpass() } }); + const cacheAge = fromLocalStorage.map(d => { + if(d === undefined || d[1] === undefined){ + return undefined + } + const [_, loadedDate] = d + return (new Date().getTime() - loadedDate.getTime()) / 1000; + }) + cacheAge.addCallbackD(timeDiff => { + if (timeDiff < 24 * 60 * 60) { + // Recently cached! + overpassStatus.setData("cached") + return; + } else { + loadDataFromOverpass() + } + }) - const geojson: UIEventSource = fromLocalStorage.map(d => { + const geojson: Store = fromLocalStorage.map(d => { if (d === undefined) { return undefined } return d[0] }) - + const background = new UIEventSource(AvailableBaseLayers.osmCarto) const location = new UIEventSource({lat: 0, lon: 0, zoom: 1}) const currentBounds = new UIEventSource(undefined) - const zoomLevel = ValidatedTextField.ForType("pnat").ConstructInputElement() + const zoomLevel = ValidatedTextField.ForType("pnat").ConstructInputElement({ + value: LocalStorageSource.GetParsed("importer-zoom-level", "0") + }) zoomLevel.SetClass("ml-1 border border-black") - zoomLevel.GetValue().syncWith(LocalStorageSource.Get("importer-zoom-level", "14"), true) const osmLiveData = Minimap.createMiniMap({ allowMoving: true, location, @@ -110,18 +125,24 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea attribution: new Attribution(location, state.osmConnection.userDetails, undefined, currentBounds) }) osmLiveData.SetClass("w-full").SetStyle("height: 500px") - const preview = new StaticFeatureSource(geojson.map(geojson => { + + const geojsonFeatures : Store = geojson.map(geojson => { if (geojson?.features === undefined) { return [] } - const zoomedEnough: boolean = osmLiveData.location.data.zoom >= Number(zoomLevel.GetValue().data) - if (!zoomedEnough) { + const currentZoom = zoomLevel.GetValue().data + const zoomedEnough: boolean = osmLiveData.location.data.zoom >= Number(currentZoom) + if (currentZoom !== undefined && !zoomedEnough) { return [] } const bounds = osmLiveData.bounds.data + if(bounds === undefined){ + return geojson.features; + } return geojson.features.filter(f => BBox.get(f).overlapsWith(bounds)) - }, [osmLiveData.bounds, zoomLevel.GetValue()]), false); - + }, [osmLiveData.bounds, zoomLevel.GetValue()]) + + const preview = StaticFeatureSource.fromGeojsonStore(geojsonFeatures) new ShowDataLayer({ layerToShow: new LayerConfig(currentview), @@ -129,17 +150,21 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea leafletMap: osmLiveData.leafletMap, popup: undefined, zoomToFeatures: true, - features: new StaticFeatureSource([ + features: StaticFeatureSource.fromGeojson([ bbox.asGeoJson({}) - ], false) + ]) }) - - new ShowDataLayer({ - layerToShow: layer, + new ShowDataMultiLayer({ + //layerToShow: layer, + layers: new UIEventSource([{ + layerDef: layer, + isDisplayed: new UIEventSource(true), + appliedFilters: new UIEventSource>(undefined) + }]), state, leafletMap: osmLiveData.leafletMap, - popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state, {setHash: false}), zoomToFeatures: false, features: preview }) @@ -148,9 +173,9 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea layerToShow: new LayerConfig(import_candidate), state, leafletMap: osmLiveData.leafletMap, - popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state, {setHash: false}), zoomToFeatures: false, - features: new StaticFeatureSource(toImport.features, false) + features: StaticFeatureSource.fromGeojson(toImport.features) }) const nearbyCutoff = ValidatedTextField.ForType("pnat").ConstructInputElement() @@ -164,7 +189,7 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea matchedFeaturesMap.SetClass("w-full").SetStyle("height: 500px") // Featuresource showing OSM-features which are nearby a toImport-feature - const nearbyFeatures = new StaticFeatureSource(geojson.map(osmData => { + const geojsonMapped: Store = geojson.map(osmData => { if (osmData?.features === undefined) { return [] } @@ -172,32 +197,37 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea return osmData.features.filter(f => toImport.features.some(imp => maxDist >= GeoOperations.distanceBetween(imp.geometry.coordinates, GeoOperations.centerpointCoordinates(f)))) - }, [nearbyCutoff.GetValue().stabilized(500)]), false); + }, [nearbyCutoff.GetValue().stabilized(500)]) + const nearbyFeatures = StaticFeatureSource.fromGeojsonStore(geojsonMapped); const paritionedImport = ImportUtils.partitionFeaturesIfNearby(toImport, geojson, nearbyCutoff.GetValue().map(Number)); // Featuresource showing OSM-features which are nearby a toImport-feature - const toImportWithNearby = new StaticFeatureSource(paritionedImport.map(els => els?.hasNearby ?? []), false); - - new ShowDataLayer({ - layerToShow: layer, - state, - leafletMap: matchedFeaturesMap.leafletMap, - popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), - zoomToFeatures: true, - features: nearbyFeatures - }) + const toImportWithNearby = StaticFeatureSource.fromGeojsonStore(paritionedImport.map(els => els?.hasNearby ?? [])); + toImportWithNearby.features.addCallback(nearby => console.log("The following features are near an already existing object:", nearby)) new ShowDataLayer({ layerToShow: new LayerConfig(import_candidate), state, leafletMap: matchedFeaturesMap.leafletMap, - popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state, {setHash: false}), zoomToFeatures: false, features: toImportWithNearby }) + const showOsmLayer = new CheckBox(t.showOsmLayerInConflationMap, true) + new ShowDataLayer({ + layerToShow: layer, + state, + leafletMap: matchedFeaturesMap.leafletMap, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state, {setHash: false}), + zoomToFeatures: true, + features: nearbyFeatures, + doShowLayer: showOsmLayer.GetValue() + }) - const t = Translations.t.importHelper.conflationChecker + + + const conflationMaps = new Combine([ new VariableUiElement( geojson.map(geojson => { @@ -218,34 +248,44 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea return t.cacheExpired } return new Combine([t.loadedDataAge.Subs({age: Utils.toHumanTime(age)}), - new SubtleButton(Svg.reload_svg().SetClass("h-8"), t.reloadTheCache) - .onClick(loadDataFromOverpass) - .SetClass("h-12") + new SubtleButton(Svg.reload_svg().SetClass("h-8"), t.reloadTheCache) + .onClick(loadDataFromOverpass) + .SetClass("h-12") ]) })), new Title(t.titleLive), - t.importCandidatesCount.Subs({count:toImport.features.length }), - new VariableUiElement(geojson.map(geojson => { - if(geojson?.features?.length === undefined || geojson?.features?.length === 0){ + t.importCandidatesCount.Subs({count: toImport.features.length}), + new VariableUiElement(geojson.map(geojson => { + if (geojson?.features?.length === undefined || geojson?.features?.length === 0) { return t.nothingLoaded.Subs(layer).SetClass("alert") - } - return new Combine([ + } + return new Combine([ t.osmLoaded.Subs({count: geojson.features.length, name: layer.name}), - - ]) - })), + + ]) + })), osmLiveData, - new VariableUiElement(osmLiveData.location.map(location => { - return t.zoomIn.Subs({needed:zoomLevel, current: location.zoom }) - } )), + new Combine([ + t.zoomLevelSelection, + zoomLevel, + new VariableUiElement(osmLiveData.location.map(location => { + return t.zoomIn.Subs({current: location.zoom}) + })), + ]).SetClass("flex"), new Title(t.titleNearby), new Combine([t.mapShowingNearbyIntro, nearbyCutoff]).SetClass("flex"), - new VariableUiElement(toImportWithNearby.features.map(feats => + new VariableUiElement(toImportWithNearby.features.map(feats => t.nearbyWarn.Subs({count: feats.length}).SetClass("alert"))), t.setRangeToZero, - matchedFeaturesMap]).SetClass("flex flex-col") - + matchedFeaturesMap, + new Combine([ + new BackgroundMapSwitch({backgroundLayer: background, locationControl: matchedFeaturesMap.location}, background), + showOsmLayer, + + ]).SetClass("flex") + + ]).SetClass("flex flex-col") super([ new Title(t.title), new VariableUiElement(overpassStatus.map(d => { @@ -270,7 +310,11 @@ export default class ConflationChecker extends Combine implements FlowStep<{ fea ]) - this.Value = paritionedImport.map(feats => ({theme: params.theme, features: feats?.noNearby, layer: params.layer})) + this.Value = paritionedImport.map(feats => ({ + theme: params.theme, + features: feats?.noNearby, + layer: params.layer + })) this.IsValid = this.Value.map(v => v?.features !== undefined && v.features.length > 0) } diff --git a/UI/ImportFlow/FlowStep.ts b/UI/ImportFlow/FlowStep.ts index 694207bcb6..fc9b4b3987 100644 --- a/UI/ImportFlow/FlowStep.ts +++ b/UI/ImportFlow/FlowStep.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; import BaseUIElement from "../BaseUIElement"; import {SubtleButton} from "../Base/SubtleButton"; @@ -10,8 +10,8 @@ import {UIElement} from "../UIElement"; import {FixedUiElement} from "../Base/FixedUiElement"; export interface FlowStep extends BaseUIElement { - readonly IsValid: UIEventSource - readonly Value: UIEventSource + readonly IsValid: Store + readonly Value: Store } export class FlowPanelFactory { diff --git a/UI/ImportFlow/ImportHelperGui.ts b/UI/ImportFlow/ImportHelperGui.ts index 000cae3528..657b5a755d 100644 --- a/UI/ImportFlow/ImportHelperGui.ts +++ b/UI/ImportFlow/ImportHelperGui.ts @@ -12,7 +12,6 @@ import ConflationChecker from "./ConflationChecker"; import {AskMetadata} from "./AskMetadata"; import {ConfirmProcess} from "./ConfirmProcess"; import {CreateNotes} from "./CreateNotes"; -import {FixedUiElement} from "../Base/FixedUiElement"; import {VariableUiElement} from "../Base/VariableUIElement"; import List from "../Base/List"; import {CompareToAlreadyExistingNotes} from "./CompareToAlreadyExistingNotes"; @@ -63,7 +62,7 @@ export default class ImportHelperGui extends LeftIndex { }), toc, new Toggle(t.testMode.SetClass("block alert"), undefined, state.featureSwitchIsTesting), - LanguagePicker.CreateLanguagePicker(Translations.t.importHelper.title.SupportedLanguages())?.SetClass("mt-4 self-end flex-col"), + new LanguagePicker(Translations.t.importHelper.title.SupportedLanguages(), "")?.SetClass("mt-4 self-end flex-col"), ].map(el => el?.SetClass("pl-4")) super( diff --git a/UI/ImportFlow/ImportUtils.ts b/UI/ImportFlow/ImportUtils.ts index db881a7097..850cbacfce 100644 --- a/UI/ImportFlow/ImportUtils.ts +++ b/UI/ImportFlow/ImportUtils.ts @@ -1,8 +1,13 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import {GeoOperations} from "../../Logic/GeoOperations"; +import {Feature, Geometry} from "@turf/turf"; export class ImportUtils { - public static partitionFeaturesIfNearby(toPartitionFeatureCollection: ({ features: any[] }), compareWith: UIEventSource<{ features: any[] }>, cutoffDistanceInMeters: UIEventSource): UIEventSource<{ hasNearby: any[], noNearby: any[] }> { + public static partitionFeaturesIfNearby( + toPartitionFeatureCollection: ({ features: Feature[] }), + compareWith: Store<{ features: Feature[] }>, + cutoffDistanceInMeters: Store) + : Store<{ hasNearby: Feature[], noNearby: Feature[] }> { return compareWith.map(osmData => { if (osmData?.features === undefined) { return undefined @@ -16,7 +21,7 @@ export class ImportUtils { const noNearby = [] for (const toImportElement of toPartitionFeatureCollection.features) { const hasNearbyFeature = osmData.features.some(f => - maxDist >= GeoOperations.distanceBetween(toImportElement.geometry.coordinates, GeoOperations.centerpointCoordinates(f))) + maxDist >= GeoOperations.distanceBetween( toImportElement.geometry.coordinates, GeoOperations.centerpointCoordinates(f))) if (hasNearbyFeature) { hasNearby.push(toImportElement) } else { diff --git a/UI/ImportFlow/ImportViewerGui.ts b/UI/ImportFlow/ImportViewerGui.ts index 9ac79ebdbf..7dc990c262 100644 --- a/UI/ImportFlow/ImportViewerGui.ts +++ b/UI/ImportFlow/ImportViewerGui.ts @@ -13,13 +13,15 @@ import BaseUIElement from "../BaseUIElement"; import ValidatedTextField from "../Input/ValidatedTextField"; import {SubtleButton} from "../Base/SubtleButton"; import Svg from "../../Svg"; -import Toggle from "../Input/Toggle"; +import Toggle, {ClickableToggle} from "../Input/Toggle"; import Table from "../Base/Table"; import LeftIndex from "../Base/LeftIndex"; import Toggleable, {Accordeon} from "../Base/Toggleable"; import TableOfContents from "../Base/TableOfContents"; import {LoginToggle} from "../Popup/LoginButton"; import {QueryParameters} from "../../Logic/Web/QueryParameters"; +import Lazy from "../Base/Lazy"; +import {Button} from "../Base/Button"; interface NoteProperties { "id": number, @@ -48,9 +50,9 @@ class DownloadStatisticsButton extends SubtleButton { constructor(states: NoteState[][]) { super(Svg.statistics_svg(), "Download statistics"); this.onClick(() => { - + const st: NoteState[] = [].concat(...states) - + const fields = [ "id", "status", @@ -61,19 +63,19 @@ class DownloadStatisticsButton extends SubtleButton { "intro", "...comments" ] - const values : string[][] = st.map(note => { - - - return [note.props.id+"", + const values: string[][] = st.map(note => { + + + return [note.props.id + "", note.status, note.theme, note.props.date_created?.substr(0, note.props.date_created.length - 3), note.props.closed_at?.substr(0, note.props.closed_at.length - 3) ?? "", - JSON.stringify( note.intro), - ...note.props.comments.map(c => JSON.stringify(c.user)+": "+JSON.stringify(c.text)) + JSON.stringify(note.intro), + ...note.props.comments.map(c => JSON.stringify(c.user) + ": " + JSON.stringify(c.text)) ] }) - + Utils.offerContentsAsDownloadableFile( [fields, ...values].map(c => c.join(", ")).join("\n"), "mapcomplete_import_notes_overview.csv", @@ -112,7 +114,7 @@ class MassAction extends Combine { predicate: p => p.status === "open", action: async p => { const txt = textField.GetValue().data - state.osmConnection.addCommentToNode(p.id, txt) + state.osmConnection.addCommentToNote(p.id, txt) } }, shown: "Add comment to every open note" @@ -182,30 +184,18 @@ class MassAction extends Combine { class NoteTable extends Combine { + private static individualActions: [() => BaseUIElement, string][] = [ + [Svg.not_found_svg, "This feature does not exist"], + [Svg.addSmall_svg, "imported"], + [Svg.duplicate_svg, "Already mapped"] + ] + constructor(noteStates: NoteState[], state?: UserRelatedState) { const typicalComment = noteStates[0].props.comments[0].html const table = new Table( - ["id", "status", "last comment", "last modified by"], - noteStates.map(ns => { - const link = new Link( - "" + ns.props.id, - "https://openstreetmap.org/note/" + ns.props.id, true - ) - let last_comment = ""; - const last_comment_props = ns.props.comments[ns.props.comments.length - 1] - const before_last_comment = ns.props.comments[ns.props.comments.length - 2] - if (ns.props.comments.length > 1) { - last_comment = last_comment_props.text - if (last_comment === undefined && before_last_comment?.uid === last_comment_props.uid) { - last_comment = before_last_comment.text - } - } - const statusIcon = BatchView.icons[ns.status]().SetClass("h-4 w-4 shrink-0") - return [link, new Combine([statusIcon, ns.status]).SetClass("flex"), last_comment, - new Link(last_comment_props.user, "https://www.openstreetmap.org/user/" + last_comment_props.user, true) - ] - }), + ["id", "status", "last comment", "last modified by", "actions"], + noteStates.map(ns => NoteTable.noteField(ns, state)), {sortable: true} ).SetClass("zebra-table link-underline"); @@ -221,6 +211,52 @@ class NoteTable extends Combine { this.SetClass("flex flex-col") } + private static noteField(ns: NoteState, state: UserRelatedState) { + const link = new Link( + "" + ns.props.id, + "https://openstreetmap.org/note/" + ns.props.id, true + ) + let last_comment = ""; + const last_comment_props = ns.props.comments[ns.props.comments.length - 1] + const before_last_comment = ns.props.comments[ns.props.comments.length - 2] + if (ns.props.comments.length > 1) { + last_comment = last_comment_props.text + if (last_comment === undefined && before_last_comment?.uid === last_comment_props.uid) { + last_comment = before_last_comment.text + } + } + const statusIcon = BatchView.icons[ns.status]().SetClass("h-4 w-4 shrink-0") + const togglestate = new UIEventSource(false); + const changed = new UIEventSource(undefined); + + const lazyButtons = new Lazy(( ) => new Combine( + this.individualActions.map(([img, text]) => + img().onClick(async () => { + if (ns.props.status === "closed") { + await state.osmConnection.reopenNote(ns.props.id) + } + await state.osmConnection.closeNote(ns.props.id, text) + changed.setData(text) + }).SetClass("h-8 w-8")) + ).SetClass("flex")); + + const appliedButtons = new VariableUiElement(changed.map(currentState => currentState === undefined ? lazyButtons : currentState)); + + const buttons = Toggle.If(state?.osmConnection?.isLoggedIn, + () => new ClickableToggle( + appliedButtons, + new Button("edit...", () => { + console.log("Enabling...") + togglestate.setData(true); + }), + togglestate + )); + return [link, new Combine([statusIcon, ns.status]).SetClass("flex"), last_comment, + new Link(last_comment_props.user, "https://www.openstreetmap.org/user/" + last_comment_props.user, true), + buttons + ] + } + } class BatchView extends Toggleable { @@ -271,7 +307,7 @@ class BatchView extends Toggleable { const selected = new Combine([BatchView.icons[status]().SetClass("h-6 m-1"), count + " " + status]) .SetClass("flex ml-1 mb-1 pl-1 pr-3 items-center rounded-full border-4 border-black animate-pulse") - const toggle = new Toggle(selected, normal, filterOn.map(f => f === status, [], (selected, previous) => { + const toggle = new ClickableToggle(selected, normal, filterOn.sync(f => f === status, [], (selected, previous) => { if (selected) { return status; } @@ -345,7 +381,7 @@ class ImportInspector extends VariableUiElement { const content = new Combine(contents) return new LeftIndex( [new TableOfContents(content, {noTopLevel: true, maxDepth: 1}).SetClass("subtle"), - new DownloadStatisticsButton(perBatch) + new DownloadStatisticsButton(perBatch) ], content ) @@ -382,7 +418,7 @@ class ImportInspector extends VariableUiElement { status = "already_mapped" } else if (lastComment.indexOf("invalid") >= 0 || lastComment.indexOf("incorrecto") >= 0) { status = "invalid" - } else if (["imported","erbij","toegevoegd","added"].some(keyword => lastComment.toLowerCase().indexOf(keyword) >= 0)) { + } else if (["imported", "erbij", "toegevoegd", "added"].some(keyword => lastComment.toLowerCase().indexOf(keyword) >= 0)) { status = "imported" } else { status = "closed" @@ -396,7 +432,7 @@ class ImportInspector extends VariableUiElement { intro: lines[0], theme, dateStr, - status + status, }) } return perBatch; diff --git a/UI/ImportFlow/LoginToImport.ts b/UI/ImportFlow/LoginToImport.ts index 8a73042ceb..08db0e303a 100644 --- a/UI/ImportFlow/LoginToImport.ts +++ b/UI/ImportFlow/LoginToImport.ts @@ -1,7 +1,7 @@ import Combine from "../Base/Combine"; import {FlowStep} from "./FlowStep"; import UserRelatedState from "../../Logic/State/UserRelatedState"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Translations from "../i18n/Translations"; import Title from "../Base/Title"; import {VariableUiElement} from "../Base/VariableUIElement"; @@ -15,8 +15,8 @@ import MoreScreen from "../BigComponents/MoreScreen"; import CheckBoxes from "../Input/Checkboxes"; export default class LoginToImport extends Combine implements FlowStep { - readonly IsValid: UIEventSource; - readonly Value: UIEventSource; + readonly IsValid: Store; + readonly Value: Store; private static readonly whitelist = [15015689]; diff --git a/UI/ImportFlow/MapPreview.ts b/UI/ImportFlow/MapPreview.ts index 64f8cc511d..cb1a1049fb 100644 --- a/UI/ImportFlow/MapPreview.ts +++ b/UI/ImportFlow/MapPreview.ts @@ -1,5 +1,5 @@ import Combine from "../Base/Combine"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {BBox} from "../../Logic/BBox"; import UserRelatedState from "../../Logic/State/UserRelatedState"; import Translations from "../i18n/Translations"; @@ -24,10 +24,11 @@ import ScrollableFullScreen from "../Base/ScrollableFullScreen"; import Title from "../Base/Title"; import CheckBoxes from "../Input/Checkboxes"; import {AllTagsPanel} from "../AllTagsPanel"; +import BackgroundMapSwitch from "../BigComponents/BackgroundMapSwitch"; class PreviewPanel extends ScrollableFullScreen { - constructor(tags: UIEventSource, layer) { + constructor(tags: UIEventSource) { super( _ => new FixedUiElement("Element to import"), _ => new Combine(["The tags are:", @@ -43,8 +44,8 @@ class PreviewPanel extends ScrollableFullScreen { * Shows the data to import on a map, asks for the correct layer to be selected */ export class MapPreview extends Combine implements FlowStep<{ bbox: BBox, layer: LayerConfig, features: any[] }> { - public readonly IsValid: UIEventSource; - public readonly Value: UIEventSource<{ bbox: BBox, layer: LayerConfig, features: any[] }> + public readonly IsValid: Store; + public readonly Value: Store<{ bbox: BBox, layer: LayerConfig, features: any[] }> constructor( state: UserRelatedState, @@ -85,7 +86,7 @@ export class MapPreview extends Combine implements FlowStep<{ bbox: BBox, layer: return copy }) - const matching: UIEventSource<{ properties: any, geometry: { coordinates: [number, number] } }[]> = layerPicker.GetValue().map((layer: LayerConfig) => { + const matching: Store<{ properties: any, geometry: { coordinates: [number, number] } }[]> = layerPicker.GetValue().map((layer: LayerConfig) => { if (layer === undefined) { return []; } @@ -109,6 +110,10 @@ export class MapPreview extends Combine implements FlowStep<{ bbox: BBox, layer: bounds: currentBounds, attribution: new Attribution(location, state.osmConnection.userDetails, undefined, currentBounds) }) + const layerControl = new BackgroundMapSwitch( { + backgroundLayer: background, + locationControl: location + },background) map.SetClass("w-full").SetStyle("height: 500px") new ShowDataMultiLayer({ @@ -120,9 +125,9 @@ export class MapPreview extends Combine implements FlowStep<{ bbox: BBox, layer: appliedFilters: new UIEventSource>(undefined) }))), zoomToFeatures: true, - features: new StaticFeatureSource(matching, false), + features: StaticFeatureSource.fromDateless(matching.map(features => features.map(feature => ({feature})))), leafletMap: map.leafletMap, - popup: (tag, layer) => new PreviewPanel(tag, layer).SetClass("font-lg") + popup: (tag) => new PreviewPanel(tag).SetClass("font-lg") }) var bbox = matching.map(feats => BBox.bboxAroundAll(feats.map(f => new BBox([f.geometry.coordinates])))) @@ -147,6 +152,7 @@ export class MapPreview extends Combine implements FlowStep<{ bbox: BBox, layer: mismatchIndicator, map, + layerControl, confirm ]); diff --git a/UI/ImportFlow/PreviewPanel.ts b/UI/ImportFlow/PreviewPanel.ts index 8d54950049..69e18bd052 100644 --- a/UI/ImportFlow/PreviewPanel.ts +++ b/UI/ImportFlow/PreviewPanel.ts @@ -1,5 +1,5 @@ import Combine from "../Base/Combine"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import UserRelatedState from "../../Logic/State/UserRelatedState"; import Translations from "../i18n/Translations"; import {Utils} from "../../Utils"; @@ -15,8 +15,8 @@ import CheckBoxes from "../Input/Checkboxes"; * Shows the attributes by value, requests to check them of */ export class PreviewAttributesPanel extends Combine implements FlowStep<{ features: { properties: any, geometry: { coordinates: [number, number] } }[] }> { - public readonly IsValid: UIEventSource; - public readonly Value: UIEventSource<{ features: { properties: any, geometry: { coordinates: [number, number] } }[] }> + public readonly IsValid: Store; + public readonly Value: Store<{ features: { properties: any, geometry: { coordinates: [number, number] } }[] }> constructor( state: UserRelatedState, diff --git a/UI/ImportFlow/RequestFile.ts b/UI/ImportFlow/RequestFile.ts index e435758470..ee1ae621b0 100644 --- a/UI/ImportFlow/RequestFile.ts +++ b/UI/ImportFlow/RequestFile.ts @@ -1,5 +1,5 @@ import Combine from "../Base/Combine"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, Stores} from "../../Logic/UIEventSource"; import Translations from "../i18n/Translations"; import {SubtleButton} from "../Base/SubtleButton"; import {VariableUiElement} from "../Base/VariableUIElement"; @@ -10,7 +10,6 @@ import FileSelectorButton from "../Input/FileSelectorButton"; import {FlowStep} from "./FlowStep"; import {parse} from "papaparse"; import {FixedUiElement} from "../Base/FixedUiElement"; -import {del} from "idb-keyval"; import {TagUtils} from "../../Logic/Tags/TagUtils"; class FileSelector extends InputElementMap }> { @@ -38,11 +37,11 @@ class FileSelector extends InputElementMap { - public readonly IsValid: UIEventSource + public readonly IsValid: Store /** * The loaded GeoJSON */ - public readonly Value: UIEventSource<{features: any[]}> + public readonly Value: Store<{features: any[]}> constructor() { const t = Translations.t.importHelper.selectFile; @@ -54,15 +53,15 @@ export class RequestFile extends Combine implements FlowStep<{features: any[]}> return t.loadedFilesAre.Subs({file: file.name}).SetClass("thanks") })) - const text = UIEventSource.flatten( + const text = Stores.flatten( csvSelector.GetValue().map(v => { if (v === undefined) { return undefined } - return UIEventSource.FromPromise(v.contents) + return Stores.FromPromise(v.contents) })) - const asGeoJson: UIEventSource = text.map(src => { + const asGeoJson: Store = text.map((src: string) => { if (src === undefined) { return undefined } diff --git a/UI/ImportFlow/SelectTheme.ts b/UI/ImportFlow/SelectTheme.ts index 99339ab627..b443273d68 100644 --- a/UI/ImportFlow/SelectTheme.ts +++ b/UI/ImportFlow/SelectTheme.ts @@ -1,6 +1,6 @@ import {FlowStep} from "./FlowStep"; import Combine from "../Base/Combine"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import {InputElement} from "../Input/InputElement"; import {AllKnownLayouts} from "../../Customizations/AllKnownLayouts"; @@ -24,13 +24,13 @@ export default class SelectTheme extends Combine implements FlowStep<{ bbox: BBox, }> { - public readonly Value: UIEventSource<{ + public readonly Value: Store<{ features: any[], theme: string, layer: LayerConfig, bbox: BBox, }>; - public readonly IsValid: UIEventSource; + public readonly IsValid: Store; constructor(params: ({ features: any[], layer: LayerConfig, bbox: BBox, })) { const t = Translations.t.importHelper.selectTheme diff --git a/UI/Input/Checkboxes.ts b/UI/Input/Checkboxes.ts index cf849081e7..236e7b831a 100644 --- a/UI/Input/Checkboxes.ts +++ b/UI/Input/Checkboxes.ts @@ -4,13 +4,13 @@ import {Utils} from "../../Utils"; import BaseUIElement from "../BaseUIElement"; import InputElementMap from "./InputElementMap"; -export class CheckBox extends InputElementMap { +export class CheckBox extends InputElementMap { constructor(el: BaseUIElement , defaultValue?: boolean) { super( new CheckBoxes([el]), (x0, x1) => x0 === x1, t => t.length > 0, - x => x ? [0] : [] + x => x ? [0] : [], ); if(defaultValue !== undefined){ this.GetValue().setData(defaultValue) @@ -19,7 +19,8 @@ export class CheckBox extends InputElementMap { } /** - * Supports multi-input + * A list of individual checkboxes + * The value will contain the indexes of the selected checkboxes */ export default class CheckBoxes extends InputElement { private static _nextId = 0; @@ -86,9 +87,7 @@ export default class CheckBoxes extends InputElement { formTag.appendChild(wrapper); value.addCallbackAndRunD((selectedValues) => { - if (selectedValues.indexOf(i) >= 0) { - input.checked = true; - } + input.checked = selectedValues.indexOf(i) >= 0; if (input.checked) { wrapper.classList.remove("border-gray-400"); diff --git a/UI/Input/CombinedInputElement.ts b/UI/Input/CombinedInputElement.ts index 2409898cd4..adb86603ae 100644 --- a/UI/Input/CombinedInputElement.ts +++ b/UI/Input/CombinedInputElement.ts @@ -19,15 +19,15 @@ export default class CombinedInputElement extends InputElement { this._b = b; this._split = split; this._combined = new Combine([this._a, this._b]); - this._value = this._a.GetValue().map( + this._value = this._a.GetValue().sync( t => combine(t, this._b?.GetValue()?.data), [this._b.GetValue()], - ) - .addCallback(x => { + x => { const [t, j] = split(x) - this._a.GetValue()?.setData(t) this._b.GetValue()?.setData(j) - }) + return t + } + ) } GetValue(): UIEventSource { diff --git a/UI/Input/DropDown.ts b/UI/Input/DropDown.ts index b9fb6a3d32..493c9bec70 100644 --- a/UI/Input/DropDown.ts +++ b/UI/Input/DropDown.ts @@ -13,6 +13,11 @@ export class DropDown extends InputElement { private readonly _value: UIEventSource; private readonly _values: { value: T; shown: string | BaseUIElement }[]; + /** + * + * const dropdown = new DropDown("test",[{value: 42, shown: "the answer"}]) + * dropdown.GetValue().data // => 42 + */ constructor(label: string | BaseUIElement, values: { value: T, shown: string | BaseUIElement }[], value: UIEventSource = undefined, @@ -21,7 +26,7 @@ export class DropDown extends InputElement { } ) { super(); - value = value ?? new UIEventSource(undefined) + value = value ?? new UIEventSource(values[0].value) this._value = value this._values = values; if (values.length <= 1) { @@ -63,7 +68,7 @@ export class DropDown extends InputElement { select.onchange = (() => { - var index = select.selectedIndex; + const index = select.selectedIndex; value.setData(values[index].value); }); diff --git a/UI/Input/FloorLevelInputElement.ts b/UI/Input/FloorLevelInputElement.ts new file mode 100644 index 0000000000..844f050814 --- /dev/null +++ b/UI/Input/FloorLevelInputElement.ts @@ -0,0 +1,89 @@ +import {InputElement} from "./InputElement"; +import {Store, Stores, UIEventSource} from "../../Logic/UIEventSource"; +import Combine from "../Base/Combine"; +import Slider from "./Slider"; +import {ClickableToggle} from "./Toggle"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import BaseUIElement from "../BaseUIElement"; + +export default class FloorLevelInputElement extends VariableUiElement implements InputElement { + + private readonly _value: UIEventSource; + + constructor(currentLevels: Store>, options?: { + value?: UIEventSource + }) { + + + const value = options?.value ?? new UIEventSource("0") + super(currentLevels.map(levels => { + const allLevels = Object.keys(levels) + allLevels.sort((a, b) => { + const an = Number(a) + const bn = Number(b) + if (isNaN(an) || isNaN(bn)) { + return a < b ? -1 : 1; + } + return an - bn; + }) + return FloorLevelInputElement.constructPicker(allLevels, value) + } + )) + + + this._value = value + + } + + private static constructPicker(levels: string[], value: UIEventSource): BaseUIElement { + let slider = new Slider(0, levels.length - 1, {vertical: true}); + const toggleClass = "flex border-2 border-blue-500 w-10 h-10 place-content-center items-center border-box" + slider.SetClass("flex elevator w-10").SetStyle(`height: ${2.5 * levels.length}rem; background: #00000000`) + + const values = levels.map((data, i) => new ClickableToggle( + new FixedUiElement(data).SetClass("font-bold active bg-subtle " + toggleClass), + new FixedUiElement(data).SetClass("normal-background " + toggleClass), + slider.GetValue().sync( + (sliderVal) => { + return sliderVal === i + }, + [], + (isSelected) => { + return isSelected ? i : slider.GetValue().data + } + )) + .ToggleOnClick() + .SetClass("flex w-10 h-10")) + + values.reverse(/* This is a new list, no side-effects */) + const combine = new Combine([new Combine(values), slider]) + combine.SetClass("flex flex-row overflow-hidden"); + + + slider.GetValue().addCallbackD(i => { + if (levels === undefined) { + return + } + if(levels[i] == undefined){ + return + } + value.setData(levels[i]); + }) + value.addCallbackAndRunD(level => { + const i = levels.findIndex(l => l === level) + slider.GetValue().setData(i) + }) + return combine + } + + GetValue(): UIEventSource { + return this._value; + } + + IsValid(t: string): boolean { + return false; + } + + +} \ No newline at end of file diff --git a/UI/Input/InputElement.ts b/UI/Input/InputElement.ts index f8a27eddde..46ec456f34 100644 --- a/UI/Input/InputElement.ts +++ b/UI/Input/InputElement.ts @@ -1,11 +1,13 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; -export abstract class InputElement extends BaseUIElement { - - - abstract GetValue(): UIEventSource; - - abstract IsValid(t: T): boolean; - +export interface ReadonlyInputElement extends BaseUIElement{ + GetValue(): Store; + IsValid(t: T): boolean; +} + + +export abstract class InputElement extends BaseUIElement implements ReadonlyInputElement{ + abstract GetValue(): UIEventSource; + abstract IsValid(t: T): boolean; } diff --git a/UI/Input/InputElementMap.ts b/UI/Input/InputElementMap.ts index 16b907f469..0f0d74d0cf 100644 --- a/UI/Input/InputElementMap.ts +++ b/UI/Input/InputElementMap.ts @@ -1,5 +1,5 @@ import {InputElement} from "./InputElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; export default class InputElementMap extends InputElement { @@ -13,7 +13,7 @@ export default class InputElementMap extends InputElement { isSame: (x0: X, x1: X) => boolean, toX: (t: T) => X, fromX: (x: X) => T, - extraSources: UIEventSource[] = [] + extraSources: Store[] = [] ) { super(); this.isSame = isSame; @@ -21,7 +21,7 @@ export default class InputElementMap extends InputElement { this.toX = toX; this._inputElement = inputElement; const self = this; - this._value = inputElement.GetValue().map( + this._value = inputElement.GetValue().sync( (t => { const newX = toX(t); const currentX = self.GetValue()?.data; diff --git a/UI/Input/LengthInput.ts b/UI/Input/LengthInput.ts index 2c041618a7..ad8b071806 100644 --- a/UI/Input/LengthInput.ts +++ b/UI/Input/LengthInput.ts @@ -5,17 +5,19 @@ import Svg from "../../Svg"; import {Utils} from "../../Utils"; import Loc from "../../Models/Loc"; import {GeoOperations} from "../../Logic/GeoOperations"; -import Minimap from "../Base/Minimap"; +import Minimap, {MinimapObj} from "../Base/Minimap"; +import BackgroundMapSwitch from "../BigComponents/BackgroundMapSwitch"; +import BaseUIElement from "../BaseUIElement"; /** * Selects a length after clicking on the minimap, in meters */ export default class LengthInput extends InputElement { - public readonly IsSelected: UIEventSource = new UIEventSource(false); + private readonly _location: UIEventSource; private readonly value: UIEventSource; - private background; + private readonly background: UIEventSource; constructor(mapBackground: UIEventSource, location: UIEventSource, @@ -34,12 +36,12 @@ export default class LengthInput extends InputElement { IsValid(str: string): boolean { const t = Number(str) - return !isNaN(t) && t >= 0 && t <= 360; + return !isNaN(t) && t >= 0; } protected InnerConstructElement(): HTMLElement { - // @ts-ignore - let map = undefined + let map : (BaseUIElement & MinimapObj) = undefined + let layerControl : BaseUIElement = undefined if (!Utils.runningFromConsole) { map = Minimap.createMiniMap({ background: this.background, @@ -50,27 +52,37 @@ export default class LengthInput extends InputElement { tap: true } }) + + layerControl = new BackgroundMapSwitch({ + locationControl: this._location, + backgroundLayer: this.background, + }, this.background,{ + allowedCategories: ["map","photo"] + }) + } + const crosshair = new Combine([Svg.length_crosshair_svg().SetStyle( + `position: absolute;top: 0;left: 0;transform:rotate(${this.value.data ?? 0}deg);`) + ]) .SetClass("block length-crosshair-svg relative pointer-events-none") + .SetStyle("z-index: 1000; visibility: hidden") + const element = new Combine([ - new Combine([Svg.length_crosshair_svg().SetStyle( - `position: absolute;top: 0;left: 0;transform:rotate(${this.value.data ?? 0}deg);`) - ]) - .SetClass("block length-crosshair-svg relative") - .SetStyle("z-index: 1000; visibility: hidden"), + crosshair, + layerControl?.SetStyle("position: absolute; bottom: 0.25rem; left: 0.25rem; z-index: 1000"), map?.SetClass("w-full h-full block absolute top-0 left-O overflow-hidden"), ]) - .SetClass("relative block bg-white border border-black rounded-3xl overflow-hidden") + .SetClass("relative block bg-white border border-black rounded-xl overflow-hidden") .ConstructElement() - this.RegisterTriggers(element, map?.leafletMap) + this.RegisterTriggers(map?.ConstructElement(), map?.leafletMap, crosshair.ConstructElement()) element.style.overflow = "hidden" element.style.display = "block" return element } - private RegisterTriggers(htmlElement: HTMLElement, leafletMap: UIEventSource) { + private RegisterTriggers(htmlElement: HTMLElement, leafletMap: UIEventSource, measurementCrosshair: HTMLElement) { let firstClickXY: [number, number] = undefined let lastClickXY: [number, number] = undefined @@ -100,46 +112,42 @@ export default class LengthInput extends InputElement { lastClickXY = undefined; } } - if (isUp) { - const distance = Math.sqrt((dy - firstClickXY[1]) * (dy - firstClickXY[1]) + (dx - firstClickXY[0]) * (dx - firstClickXY[0])) - if (distance > 15) { - lastClickXY = [dx, dy] - } - - } else if (lastClickXY !== undefined) { + if (firstClickXY === undefined) { + measurementCrosshair.style.visibility = "hidden" return; } - const measurementCrosshair = htmlElement.getElementsByClassName("length-crosshair-svg")[0] as HTMLElement - const measurementCrosshairInner: HTMLElement = measurementCrosshair.firstChild - if (firstClickXY === undefined) { - measurementCrosshair.style.visibility = "hidden" - } else { - measurementCrosshair.style.visibility = "unset" - measurementCrosshair.style.left = firstClickXY[0] + "px"; - measurementCrosshair.style.top = firstClickXY[1] + "px" - - const angle = 180 * Math.atan2(firstClickXY[1] - dy, firstClickXY[0] - dx) / Math.PI; - const angleGeo = (angle + 270) % 360 - measurementCrosshairInner.style.transform = `rotate(${angleGeo}deg)`; - - const distance = Math.sqrt((dy - firstClickXY[1]) * (dy - firstClickXY[1]) + (dx - firstClickXY[0]) * (dx - firstClickXY[0])) - measurementCrosshairInner.style.width = (distance * 2) + "px" - measurementCrosshairInner.style.marginLeft = -distance + "px" - measurementCrosshairInner.style.marginTop = -distance + "px" - - - const leaflet = leafletMap?.data - if (leaflet) { - const first = leaflet.layerPointToLatLng(firstClickXY) - const last = leaflet.layerPointToLatLng([dx, dy]) - const geoDist = Math.floor(GeoOperations.distanceBetween([first.lng, first.lat], [last.lng, last.lat]) * 10) / 10 - self.value.setData("" + geoDist) + const distance = Math.sqrt((dy - firstClickXY[1]) * (dy - firstClickXY[1]) + (dx - firstClickXY[0]) * (dx - firstClickXY[0])) + if (isUp) { + if (distance > 15) { + lastClickXY = [dx, dy] } + } else if (lastClickXY !== undefined) { + return; + } + measurementCrosshair.style.visibility = "unset" + measurementCrosshair.style.left = firstClickXY[0] + "px"; + measurementCrosshair.style.top = firstClickXY[1] + "px" + const angle = 180 * Math.atan2(firstClickXY[1] - dy, firstClickXY[0] - dx) / Math.PI; + const angleGeo = (angle + 270) % 360 + const measurementCrosshairInner: HTMLElement = measurementCrosshair.firstChild + measurementCrosshairInner.style.transform = `rotate(${angleGeo}deg)`; + + measurementCrosshairInner.style.width = (distance * 2) + "px" + measurementCrosshairInner.style.marginLeft = -distance + "px" + measurementCrosshairInner.style.marginTop = -distance + "px" + + + const leaflet = leafletMap?.data + if (leaflet) { + const first = leaflet.layerPointToLatLng(firstClickXY) + const last = leaflet.layerPointToLatLng([dx, dy]) + const geoDist = Math.floor(GeoOperations.distanceBetween([first.lng, first.lat], [last.lng, last.lat]) * 10) / 10 + self.value.setData("" + geoDist) } } diff --git a/UI/Input/LocationInput.ts b/UI/Input/LocationInput.ts index 5743cd8513..60a03e677f 100644 --- a/UI/Input/LocationInput.ts +++ b/UI/Input/LocationInput.ts @@ -1,6 +1,6 @@ -import {InputElement} from "./InputElement"; +import {ReadonlyInputElement} from "./InputElement"; import Loc from "../../Models/Loc"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Minimap, {MinimapObj} from "../Base/Minimap"; import BaseLayer from "../../Models/BaseLayer"; import Combine from "../Base/Combine"; @@ -17,11 +17,10 @@ import BaseUIElement from "../BaseUIElement"; import Toggle from "./Toggle"; import * as matchpoint from "../../assets/layers/matchpoint/matchpoint.json" -export default class LocationInput extends InputElement implements MinimapObj { +export default class LocationInput extends BaseUIElement implements ReadonlyInputElement, MinimapObj { private static readonly matchLayer = new LayerConfig(matchpoint, "LocationInput.matchpoint", true) - IsSelected: UIEventSource = new UIEventSource(false); public readonly snappedOnto: UIEventSource = new UIEventSource(undefined) public readonly _matching_layer: LayerConfig; public readonly leafletMap: UIEventSource @@ -33,9 +32,9 @@ export default class LocationInput extends InputElement implements MinimapO * The features to which the input should be snapped * @private */ - private readonly _snapTo: UIEventSource<{ feature: any }[]> - private readonly _value: UIEventSource - private readonly _snappedPoint: UIEventSource + private readonly _snapTo: Store<{ feature: any }[]> + private readonly _value: Store + private readonly _snappedPoint: Store private readonly _maxSnapDistance: number private readonly _snappedPointTags: any; private readonly _bounds: UIEventSource; @@ -151,7 +150,7 @@ export default class LocationInput extends InputElement implements MinimapO this.location = this.map.location; } - GetValue(): UIEventSource { + GetValue(): Store { return this._value; } @@ -188,7 +187,7 @@ export default class LocationInput extends InputElement implements MinimapO // Show the lines to snap to console.log("Constructing the snap-to layer", this._snapTo) new ShowDataMultiLayer({ - features: new StaticFeatureSource(this._snapTo, true), + features: StaticFeatureSource.fromDateless(this._snapTo), zoomToFeatures: false, leafletMap: this.map.leafletMap, layers: State.state.filteredLayers @@ -201,8 +200,10 @@ export default class LocationInput extends InputElement implements MinimapO } return [{feature: loc}]; }) + console.log("Constructing the match layer", matchPoint) + new ShowDataLayer({ - features: new StaticFeatureSource(matchPoint, true), + features: StaticFeatureSource.fromDateless(matchPoint), zoomToFeatures: false, leafletMap: this.map.leafletMap, layerToShow: this._matching_layer, diff --git a/UI/Input/RadioButton.ts b/UI/Input/RadioButton.ts index 0ee275ffc8..9c21451015 100644 --- a/UI/Input/RadioButton.ts +++ b/UI/Input/RadioButton.ts @@ -4,6 +4,7 @@ import {Utils} from "../../Utils"; export class RadioButton extends InputElement { private static _nextId = 0; + private readonly value: UIEventSource; private _elements: InputElement[]; private _selectFirstAsDefault: boolean; @@ -152,7 +153,7 @@ export class RadioButton extends InputElement { form.appendChild(block); } - value.addCallbackAndRun((selected) => { + value.addCallbackAndRun((selected:T) => { let somethingChecked = false; for (let i = 0; i < inputs.length; i++) { let input = inputs[i]; diff --git a/UI/Input/SearchableMappingsSelector.ts b/UI/Input/SearchableMappingsSelector.ts new file mode 100644 index 0000000000..e1f6392037 --- /dev/null +++ b/UI/Input/SearchableMappingsSelector.ts @@ -0,0 +1,283 @@ +import {UIElement} from "../UIElement"; +import {InputElement} from "./InputElement"; +import BaseUIElement from "../BaseUIElement"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; +import Translations from "../i18n/Translations"; +import Locale from "../i18n/Locale"; +import Combine from "../Base/Combine"; +import {TextField} from "./TextField"; +import Svg from "../../Svg"; +import {VariableUiElement} from "../Base/VariableUIElement"; + + +/** + * A single 'pill' which can hide itself if the search criteria is not met + */ +class SelfHidingToggle extends UIElement implements InputElement { + private readonly _shown: BaseUIElement; + public readonly _selected: UIEventSource + public readonly isShown: Store = new UIEventSource(true); + public readonly forceSelected: UIEventSource + private readonly _squared: boolean; + public constructor( + shown: string | BaseUIElement, + mainTerm: Record, + search: Store, + options?: { + searchTerms?: Record, + selected?: UIEventSource, + forceSelected?: UIEventSource, + squared?: boolean + } + ) { + super(); + this._shown = Translations.W(shown); + this._squared = options?.squared ?? false; + const searchTerms: Record = {}; + for (const lng in options?.searchTerms ?? []) { + if (lng === "_context") { + continue + } + searchTerms[lng] = options?.searchTerms[lng]?.map(SelfHidingToggle.clean) + } + for (const lng in mainTerm) { + if (lng === "_context") { + continue + } + const main = SelfHidingToggle.clean( mainTerm[lng]) + searchTerms[lng] = [main].concat(searchTerms[lng] ?? []) + } + const selected = this._selected = options?.selected ?? new UIEventSource(false); + const forceSelected = this.forceSelected = options?.forceSelected ?? new UIEventSource(false) + this.isShown = search.map(s => { + if (s === undefined || s.length === 0) { + return true; + } + if (selected.data && !forceSelected.data) { + return true + } + s = s?.trim()?.toLowerCase() + if(searchTerms[Locale.language.data]?.some(t => t.indexOf(s) >= 0)){ + return true + } + if(searchTerms["*"]?.some(t => t.indexOf(s) >= 0)){ + return true + } + return false; + }, [selected, Locale.language]) + + const self = this; + this.isShown.addCallbackAndRun(shown => { + if (shown) { + self.RemoveClass("hidden") + } else { + self.SetClass("hidden") + } + }) + } + + private static clean(s: string) : string{ + return s?.trim()?.toLowerCase()?.replace(/[-]/, "") + } + + + GetValue(): UIEventSource { + return this._selected + } + + IsValid(t: boolean): boolean { + return true; + } + + protected InnerRender(): string | BaseUIElement { + let el: BaseUIElement = this._shown; + const selected = this._selected; + + selected.addCallbackAndRun(selected => { + if (selected) { + el.SetClass("border-4") + el.RemoveClass("border") + el.SetStyle("margin: 0") + } else { + el.SetStyle("margin: 3px") + el.SetClass("border") + el.RemoveClass("border-4") + } + }) + + const forcedSelection = this.forceSelected + el.onClick(() => { + if(forcedSelection.data){ + selected.setData(true) + }else{ + selected.setData(!selected.data); + } + }) + + if(!this._squared){ + el.SetClass("rounded-full") + } + return el.SetClass("border border-black p-1 px-4") + } +} + + +/** + * The searchable mappings selector is a selector which shows various pills from which one (or more) options can be chosen. + * A searchfield can be used to filter the values + */ +export class SearchablePillsSelector extends Combine implements InputElement { + private readonly selectedElements: UIEventSource; + + public readonly someMatchFound: Store; + + /** + * + * @param values + * @param options + */ + constructor( + values: { show: BaseUIElement, value: T, mainTerm: Record, searchTerms?: Record }[], + options?: { + mode?: "select-one" | "select-many", + selectedElements?: UIEventSource, + searchValue?: UIEventSource, + onNoMatches?: BaseUIElement, + onNoSearchMade?: BaseUIElement, + /** + * Shows this if there are many (>200) possible mappings + */ + onManyElements?: BaseUIElement, + onManyElementsValue?: UIEventSource, + selectIfSingle?: false | boolean, + searchAreaClass?: string, + hideSearchBar?: false | boolean + }) { + + const search = new TextField({value: options?.searchValue}) + + const searchBar = options?.hideSearchBar ? undefined : new Combine([Svg.search_svg().SetClass("w-8 normal-background"), search.SetClass("w-full")]) + .SetClass("flex items-center border-2 border-black m-2") + + const searchValue = search.GetValue().map(s => s?.trim()?.toLowerCase()) + const selectedElements = options?.selectedElements ?? new UIEventSource([]); + const mode = options?.mode ?? "select-one"; + const onEmpty = options?.onNoMatches ?? Translations.t.general.noMatchingMapping + + const mappedValues: { show: SelfHidingToggle, mainTerm: Record, value: T }[] = values.map(v => { + + const vIsSelected = new UIEventSource(false); + + selectedElements.addCallbackAndRunD(selectedElements => { + vIsSelected.setData(selectedElements.some(t => t === v.value)) + }) + + vIsSelected.addCallback(selected => { + if (selected) { + if (mode === "select-one") { + selectedElements.setData([v.value]) + } else if (!selectedElements.data.some(t => t === v.value)) { + selectedElements.data.push(v.value); + selectedElements.ping() + } + } else { + for (let i = 0; i < selectedElements.data.length; i++) { + const t = selectedElements.data[i] + if (t == v.value) { + selectedElements.data.splice(i, 1) + selectedElements.ping() + break; + } + } + } + }) + + const toggle = new SelfHidingToggle(v.show, v.mainTerm, searchValue, { + searchTerms: v.searchTerms, + selected: vIsSelected, + squared: mode === "select-many" + }) + + + return { + ...v, + show: toggle + }; + }) + + let totalShown: Store + if (options.selectIfSingle) { + let forcedSelection : { value: T, show: SelfHidingToggle } = undefined + totalShown = searchValue.map(_ => { + let totalShown = 0; + let lastShownValue: { value: T, show: SelfHidingToggle } + for (const mv of mappedValues) { + const valueIsShown = mv.show.isShown.data + if (valueIsShown) { + totalShown++; + lastShownValue = mv + } + } + if (totalShown == 1) { + if (selectedElements.data?.indexOf(lastShownValue.value) < 0) { + selectedElements.setData([lastShownValue.value]) + lastShownValue.show.forceSelected.setData(true) + forcedSelection = lastShownValue + } + } else if (forcedSelection != undefined) { + forcedSelection?.show?.forceSelected?.setData(false) + forcedSelection = undefined; + selectedElements.setData([]) + } + + return totalShown + }, mappedValues.map(mv => mv.show.GetValue())) + } else { + totalShown = searchValue.map(_ => mappedValues.filter(mv => mv.show.isShown.data).length, mappedValues.map(mv => mv.show.GetValue())) + + } + const tooMuchElementsCutoff = 200; + options?.onManyElementsValue?.map(value => { + console.log("Installing toMuchElementsValue", value) + if(tooMuchElementsCutoff <= totalShown.data){ + selectedElements.setData(value) + selectedElements.ping() + } + }, [totalShown]) + + super([ + searchBar, + new VariableUiElement(Locale.language.map(lng => { + if(totalShown.data >= 200){ + return options?.onManyElements ?? Translations.t.general.useSearch; + } + if (options?.onNoSearchMade !== undefined && (searchValue.data === undefined || searchValue.data.length === 0)) { + return options?.onNoSearchMade + } + if (totalShown.data == 0) { + return onEmpty + } + + mappedValues.sort((a, b) => a.mainTerm[lng] < b.mainTerm[lng] ? -1 : 1) + return new Combine(mappedValues.map(e => e.show)) + .SetClass("flex flex-wrap w-full content-start") + .SetClass(options?.searchAreaClass ?? "") + }, [totalShown, searchValue])) + + ]) + this.selectedElements = selectedElements; + this.someMatchFound = totalShown.map(t => t > 0); + + } + + public GetValue(): UIEventSource { + return this.selectedElements; + } + + IsValid(t: T[]): boolean { + return true; + } + + +} + diff --git a/UI/Input/Slider.ts b/UI/Input/Slider.ts new file mode 100644 index 0000000000..e6e2f4a55e --- /dev/null +++ b/UI/Input/Slider.ts @@ -0,0 +1,57 @@ +import {InputElement} from "./InputElement"; +import {UIEventSource} from "../../Logic/UIEventSource"; + +export default class Slider extends InputElement { + + private readonly _value: UIEventSource + private readonly min: number; + private readonly max: number; + private readonly step: number; + private readonly vertical: boolean; + + /** + * Constructs a slider input element for natural numbers + * @param min: the minimum value that is allowed, inclusive + * @param max: the max value that is allowed, inclusive + * @param options: value: injectable value; step: the step size of the slider + */ + constructor(min: number, max: number, options?: { + value?: UIEventSource, + step?: 1 | number, + vertical?: false | boolean + }) { + super(); + this.max = max; + this.min = min; + this._value = options?.value ?? new UIEventSource(min) + this.step = options?.step ?? 1; + this.vertical = options?.vertical ?? false; + } + + GetValue(): UIEventSource { + return this._value; + } + + protected InnerConstructElement(): HTMLElement { + const el = document.createElement("input") + el.type = "range" + el.min = "" + this.min + el.max = "" + this.max + el.step = "" + this.step + const valuestore = this._value + el.oninput = () => { + valuestore.setData(Number(el.value)) + } + if(this.vertical){ + el.classList.add("vertical") + el.setAttribute('orient','vertical'); // firefox only workaround... + } + valuestore.addCallbackAndRunD(v => el.value = ""+valuestore.data) + return el; + } + + IsValid(t: number): boolean { + return Math.round(t) == t && t >= this.min && t <= this.max; + } + +} \ No newline at end of file diff --git a/UI/Input/TextField.ts b/UI/Input/TextField.ts index 6ffbc7a5a3..29ee2894cb 100644 --- a/UI/Input/TextField.ts +++ b/UI/Input/TextField.ts @@ -1,35 +1,123 @@ import {InputElement} from "./InputElement"; -import Translations from "../i18n/Translations"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; +import {Translation} from "../i18n/Translation"; +import Locale from "../i18n/Locale"; + + +interface TextFieldOptions { + placeholder?: string | Store | Translation, + value?: UIEventSource, + htmlType?: "area" | "text" | "time" | string, + inputMode?: string, + label?: BaseUIElement, + textAreaRows?: number, + inputStyle?: string, + isValid?: (s: string) => boolean +} export class TextField extends InputElement { public readonly enterPressed = new UIEventSource(undefined); private readonly value: UIEventSource; - private _element: HTMLElement; private _actualField : HTMLElement private readonly _isValid: (s: string) => boolean; - private _rawValue: UIEventSource + private readonly _rawValue: UIEventSource private _isFocused = false; + private readonly _options : TextFieldOptions; - constructor(options?: { - placeholder?: string | BaseUIElement, - value?: UIEventSource, - htmlType?: "area" | "text" | "time" | string, - inputMode?: string, - label?: BaseUIElement, - textAreaRows?: number, - inputStyle?: string, - isValid?: (s: string) => boolean - }) { + constructor(options?: TextFieldOptions) { super(); - const self = this; + this._options = options ?? {} options = options ?? {}; this.value = options?.value ?? new UIEventSource(undefined); this._rawValue = new UIEventSource("") this._isValid = options.isValid ?? (_ => true); + } - const placeholder = Translations.W(options.placeholder ?? "").ConstructElement().innerText.replace("'", "'"); + private static SetCursorPosition(textfield: HTMLElement, i: number) { + if (textfield === undefined || textfield === null) { + return; + } + if (i === -1) { + // @ts-ignore + i = textfield.value.length; + } + textfield.focus(); + // @ts-ignore + textfield.setSelectionRange(i, i); + + } + + GetValue(): UIEventSource { + return this.value; + } + + GetRawValue(): UIEventSource{ + return this._rawValue + } + + IsValid(t: string): boolean { + if (t === undefined || t === null) { + return false + } + return this._isValid(t); + } + + private static test(){ + const placeholder = new UIEventSource("placeholder") + const tf = new TextField({ + placeholder + }) + const html = tf.InnerConstructElement().children[0]; + html.placeholder // => 'placeholder' + placeholder.setData("another piece of text") + html.placeholder// => "another piece of text" + } + + + /** + * + * // should update placeholders dynamically + * const placeholder = new UIEventSource("placeholder") + * const tf = new TextField({ + * placeholder + * }) + * const html = tf.InnerConstructElement().children[0]; + * html.placeholder // => 'placeholder' + * placeholder.setData("another piece of text") + * html.placeholder// => "another piece of text" + * + * // should update translated placeholders dynamically + * const placeholder = new Translation({nl: "Nederlands", en: "English"}) + * Locale.language.setData("nl"); + * const tf = new TextField({ + * placeholder + * }) + * const html = tf.InnerConstructElement().children[0]; + * html.placeholder// => "Nederlands" + * Locale.language.setData("en"); + * html.placeholder // => 'English' + */ + protected InnerConstructElement(): HTMLElement { + const options = this._options; + const self = this; + let placeholderStore: Store + let placeholder : string = ""; + if(options.placeholder){ + if(typeof options.placeholder === "string"){ + placeholder = options.placeholder; + placeholderStore = undefined; + }else { + if ((options.placeholder instanceof Store) && options.placeholder["data"] !== undefined) { + placeholderStore = options.placeholder; + } else if ((options.placeholder instanceof Translation) && options.placeholder["translations"] !== undefined) { + placeholderStore = >Locale.language.map(l => (options.placeholder).textFor(l)) + } + placeholder = placeholderStore?.data ?? placeholder ?? ""; + } + } + + this.SetClass("form-text-field") let inputEl: HTMLElement @@ -41,6 +129,9 @@ export class TextField extends InputElement { el.cols = 50 el.style.width = "100%" inputEl = el; + if(placeholderStore){ + placeholderStore.addCallbackAndRunD(placeholder => el.placeholder = placeholder) + } } else { const el = document.createElement("input") el.type = options.htmlType ?? "text" @@ -48,8 +139,13 @@ export class TextField extends InputElement { el.placeholder = placeholder el.style.cssText = options.inputStyle ?? "width: 100%;" inputEl = el + if(placeholderStore){ + placeholderStore.addCallbackAndRunD(placeholder => el.placeholder = placeholder) + } } + + const form = document.createElement("form") form.appendChild(inputEl) form.onsubmit = () => false; @@ -58,7 +154,6 @@ export class TextField extends InputElement { form.appendChild(options.label.ConstructElement()) } - this._element = form; const field = inputEl; @@ -110,47 +205,13 @@ export class TextField extends InputElement { self.enterPressed.setData(field.value); } }); - + if(this._isFocused){ field.focus() } - + this._actualField = field; - - - } - - private static SetCursorPosition(textfield: HTMLElement, i: number) { - if (textfield === undefined || textfield === null) { - return; - } - if (i === -1) { - // @ts-ignore - i = textfield.value.length; - } - textfield.focus(); - // @ts-ignore - textfield.setSelectionRange(i, i); - - } - - GetValue(): UIEventSource { - return this.value; - } - - GetRawValue(): UIEventSource{ - return this._rawValue - } - - IsValid(t: string): boolean { - if (t === undefined || t === null) { - return false - } - return this._isValid(t); - } - - protected InnerConstructElement(): HTMLElement { - return this._element; + return form; } public focus() { diff --git a/UI/Input/Toggle.ts b/UI/Input/Toggle.ts index f4f78e2423..cfefec3516 100644 --- a/UI/Input/Toggle.ts +++ b/UI/Input/Toggle.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import {VariableUiElement} from "../Base/VariableUIElement"; import Lazy from "../Base/Lazy"; @@ -9,16 +9,16 @@ import Lazy from "../Base/Lazy"; */ export default class Toggle extends VariableUiElement { - public readonly isEnabled: UIEventSource; + public readonly isEnabled: Store; - constructor(showEnabled: string | BaseUIElement, showDisabled: string | BaseUIElement, isEnabled: UIEventSource = new UIEventSource(false)) { + constructor(showEnabled: string | BaseUIElement, showDisabled: string | BaseUIElement, isEnabled: Store) { super( isEnabled?.map(isEnabled => isEnabled ? showEnabled : showDisabled) ); this.isEnabled = isEnabled } - public static If(condition: UIEventSource, constructor: () => BaseUIElement): BaseUIElement { + public static If(condition: Store, constructor: () => BaseUIElement): BaseUIElement { if (constructor === undefined) { return undefined } @@ -29,8 +29,24 @@ export default class Toggle extends VariableUiElement { ) } + +} - public ToggleOnClick(): Toggle { +/** + * Same as `Toggle`, but will swap on click + */ +export class ClickableToggle extends Toggle { + + public readonly isEnabled: UIEventSource; + + constructor(showEnabled: string | BaseUIElement, showDisabled: string | BaseUIElement, isEnabled: UIEventSource = new UIEventSource(false)) { + super( + showEnabled, showDisabled, isEnabled + ); + this.isEnabled = isEnabled + } + + public ToggleOnClick(): ClickableToggle { const self = this; this.onClick(() => { self.isEnabled.setData(!self.isEnabled.data); diff --git a/UI/Input/ValidatedTextField.ts b/UI/Input/ValidatedTextField.ts index 15fe25b7eb..e2d107ff23 100644 --- a/UI/Input/ValidatedTextField.ts +++ b/UI/Input/ValidatedTextField.ts @@ -3,7 +3,7 @@ import * as EmailValidator from "email-validator"; import {parsePhoneNumberFromString} from "libphonenumber-js"; import {InputElement} from "./InputElement"; import {TextField} from "./TextField"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import CombinedInputElement from "./CombinedInputElement"; import SimpleDatePicker from "./SimpleDatePicker"; import OpeningHoursInput from "../OpeningHours/OpeningHoursInput"; @@ -25,6 +25,8 @@ import Title from "../Base/Title"; import InputElementMap from "./InputElementMap"; import Translations from "../i18n/Translations"; import {Translation} from "../i18n/Translation"; +import BaseLayer from "../../Models/BaseLayer"; +import Locale from "../i18n/Locale"; export class TextFieldDef { @@ -68,12 +70,12 @@ export class TextFieldDef { value?: UIEventSource, inputStyle?: string, feedback?: UIEventSource - placeholder?: string | BaseUIElement, + placeholder?: string | Translation | UIEventSource, country?: () => string, location?: [number /*lat*/, number /*lon*/], - mapBackgroundLayer?: UIEventSource, + mapBackgroundLayer?: UIEventSource, unit?: Unit, - args?: (string | number | boolean)[] // Extra arguments for the inputHelper, + args?: (string | number | boolean | any)[] // Extra arguments for the inputHelper, feature?: any, } = {}): InputElement { @@ -248,8 +250,8 @@ class WikidataTextField extends TextFieldDef { ["options", new Combine(["A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`.", new Table( ["subarg", "doc"], - [["removePrefixes", "remove these snippets of text from the start of the passed string to search"], - ["removePostfixes", "remove these snippets of text from the end of the passed string to search"], + [["removePrefixes", "remove these snippets of text from the start of the passed string to search. This is either a list OR a hash of languages to a list"], + ["removePostfixes", "remove these snippets of text from the end of the passed string to search. This is either a list OR a hash of languages to a list"], ["instanceOf","A list of Q-identifier which indicates that the search results _must_ be an entity of this type, e.g. [`Q5`](https://www.wikidata.org/wiki/Q5) for humans"], ["notInstanceof","A list of Q-identifiers which indicates that the search results _must not_ be an entity of this type, e.g. [`Q79007`](https://www.wikidata.org/wiki/Q79007) to filter away all streets from the search results"] ] @@ -265,13 +267,16 @@ class WikidataTextField extends TextFieldDef { "helperArgs": [ "name", { - "removePostfixes": [ + "removePostfixes": {"en": [ "street", "boulevard", "path", "square", "plaza", ], + "nl": ["straat","plein","pad","weg",laan"] + }, + "#": "Remove streets and parks from the search results:" "notInstanceOf": ["Q79007","Q22698"] } @@ -323,38 +328,47 @@ Another example is to search for species and trees: public inputHelper(currentValue, inputHelperOptions) { const args = inputHelperOptions.args ?? [] const searchKey = args[0] ?? "name" + + - let searchFor = (inputHelperOptions.feature?.properties[searchKey]?.toLowerCase() ?? "") + const searchFor = (inputHelperOptions.feature?.properties[searchKey]?.toLowerCase() ?? "") + let searchForValue: UIEventSource = new UIEventSource(searchFor); const options: any = args[1] if (searchFor !== undefined && options !== undefined) { - const prefixes = options["removePrefixes"] - const postfixes = options["removePostfixes"] - for (const postfix of postfixes ?? []) { - if (searchFor.endsWith(postfix)) { - searchFor = searchFor.substring(0, searchFor.length - postfix.length) - break; - } - } + const prefixes = >options["removePrefixes"] ?? [] + const postfixes = >options["removePostfixes"] ?? [] - for (const prefix of prefixes ?? []) { - if (searchFor.startsWith(prefix)) { - searchFor = searchFor.substring(prefix.length) - break; + Locale.language.map(lg => { + const prefixesUnrwapped: string[] = prefixes[lg] ?? prefixes + const postfixesUnwrapped: string[] = postfixes[lg] ?? postfixes + let clipped = searchFor; + console.log("Pref", prefixesUnrwapped," post", postfixesUnwrapped) + for (const postfix of postfixesUnwrapped) { + if (searchFor.endsWith(postfix)) { + clipped = searchFor.substring(0, searchFor.length - postfix.length) + break; + } } - } + + for (const prefix of prefixesUnrwapped) { + if (searchFor.startsWith(prefix)) { + clipped = searchFor.substring(prefix.length) + break; + } + } + return clipped; + }).addCallbackAndRun(clipped => searchForValue.setData(clipped)) + } - + let instanceOf : number[] = Utils.NoNull((options?.instanceOf ?? []).map(i => Wikidata.QIdToNumber(i))) let notInstanceOf : number[] = Utils.NoNull((options?.notInstanceOf ?? []).map(i => Wikidata.QIdToNumber(i))) - console.log("Instance of", instanceOf) - - return new WikidataSearchBox({ value: currentValue, - searchText: new UIEventSource(searchFor), + searchText: searchForValue, instanceOf, notInstanceOf }) @@ -546,7 +560,7 @@ class LengthTextField extends TextFieldDef { constructor() { super( - "decimal", "A geographical length in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `[\"21\", \"map,photo\"]" + "distance", "A geographical distance in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `[\"21\", \"map,photo\"]" ) } @@ -555,7 +569,8 @@ class LengthTextField extends TextFieldDef { return !isNaN(t) } - inputHelper = (value, options) => { + inputHelper = (value: UIEventSource, options: + { location?: [number,number]; args?: string[]; feature?: any; mapBackgroundLayer?: Store; }) => { options = options ?? {} options.location = options.location ?? [0, 0] @@ -589,7 +604,8 @@ class LengthTextField extends TextFieldDef { location, new UIEventSource(args[1].split(",")) ) } - const li = new LengthInput(options?.mapBackgroundLayer, location, value) + const background = options?.mapBackgroundLayer + const li = new LengthInput(new UIEventSource(background.data), location, value) li.SetStyle("height: 20rem;") return li; } @@ -733,6 +749,7 @@ class EmailTextField extends TextFieldDef { if (str === undefined) { return false } + str = str.trim() if (str.startsWith("mailto:")) { str = str.substring("mailto:".length) } @@ -743,6 +760,7 @@ class EmailTextField extends TextFieldDef { if (str === undefined) { return undefined } + str = str.trim() if (str.startsWith("mailto:")) { str = str.substring("mailto:".length) } @@ -861,7 +879,12 @@ export default class ValidatedTextField { ] public static allTypes: Map = ValidatedTextField.allTypesDict(); public static ForType(type: string = "string"): TextFieldDef { - return ValidatedTextField.allTypes.get(type) + const def = ValidatedTextField.allTypes.get(type) + if(def === undefined){ + console.warn("Something tried to load a validated text field named",type, "but this type does not exist") + return this.ForType() + } + return def } public static HelpText(): BaseUIElement { diff --git a/UI/Input/VariableInputElement.ts b/UI/Input/VariableInputElement.ts index e9a6aa3d97..b79baf3174 100644 --- a/UI/Input/VariableInputElement.ts +++ b/UI/Input/VariableInputElement.ts @@ -1,23 +1,22 @@ -import {InputElement} from "./InputElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {ReadonlyInputElement} from "./InputElement"; +import {Store} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import {VariableUiElement} from "../Base/VariableUIElement"; -export default class VariableInputElement extends InputElement { +export default class VariableInputElement extends BaseUIElement implements ReadonlyInputElement { - private readonly value: UIEventSource; + private readonly value: Store; private readonly element: BaseUIElement - private readonly upstream: UIEventSource>; - - constructor(upstream: UIEventSource>) { + private readonly upstream: Store>; + constructor(upstream: Store>) { super() this.upstream = upstream; this.value = upstream.bind(v => v.GetValue()) this.element = new VariableUiElement(upstream) } - GetValue(): UIEventSource { + GetValue(): Store { return this.value; } diff --git a/UI/LanguagePicker.ts b/UI/LanguagePicker.ts index 0d81ffccab..60c8eae585 100644 --- a/UI/LanguagePicker.ts +++ b/UI/LanguagePicker.ts @@ -8,52 +8,53 @@ import * as used_languages from "../assets/generated/used_languages.json" import Lazy from "./Base/Lazy"; import Toggle from "./Input/Toggle"; -export default class LanguagePicker { +export default class LanguagePicker extends Toggle { - public static CreateLanguagePicker( - languages: string[], - label: string | BaseUIElement = "") : BaseUIElement{ + constructor(languages: string[], + label: string | BaseUIElement = "") { + if (languages === undefined || languages.length <= 1) { + super(undefined,undefined,undefined) return undefined; } - - const allLanguages : string[] = used_languages.languages; - + + const allLanguages: string[] = used_languages.languages; + const normalPicker = LanguagePicker.dropdownFor(languages, label); const fullPicker = new Lazy(() => LanguagePicker.dropdownFor(allLanguages, label)) - return new Toggle(fullPicker, normalPicker, Locale.showLinkToWeblate) + super(fullPicker, normalPicker, Locale.showLinkToWeblate); } - + private static dropdownFor(languages: string[], label: string | BaseUIElement): BaseUIElement { - return new DropDown(label, languages - .filter(lang => lang !== "_context") - .map(lang => { - return {value: lang, shown: LanguagePicker.hybrid(lang) } - } - ), Locale.language) + return new DropDown(label, languages + .filter(lang => lang !== "_context") + .map(lang => { + return {value: lang, shown: LanguagePicker.hybrid(lang)} + } + ), Locale.language) } private static hybrid(lang: string): Translation { const nativeText = native[lang] ?? lang - const allTranslations = (language_translations["default"] ?? language_translations) + const allTranslations = (language_translations["default"] ?? language_translations) const translation = {} - const trans = allTranslations[lang] - if(trans === undefined){ + const trans = allTranslations[lang] + if (trans === undefined) { return new Translation({"*": nativeText}) } for (const key in trans) { const translationInKey = allTranslations[lang][key] - if(nativeText.toLowerCase() === translationInKey.toLowerCase()){ + if (nativeText.toLowerCase() === translationInKey.toLowerCase()) { translation[key] = nativeText - }else{ - translation[key] = nativeText + " ("+translationInKey+")" + } else { + translation[key] = nativeText + " (" + translationInKey + ")" } - + } return new Translation(translation) - } + } } \ No newline at end of file diff --git a/UI/NewPoint/ConfirmLocationOfPoint.ts b/UI/NewPoint/ConfirmLocationOfPoint.ts index dea2bbb82d..88671d3109 100644 --- a/UI/NewPoint/ConfirmLocationOfPoint.ts +++ b/UI/NewPoint/ConfirmLocationOfPoint.ts @@ -15,12 +15,16 @@ import SimpleAddUI, {PresetInfo} from "../BigComponents/SimpleAddUI"; import BaseLayer from "../../Models/BaseLayer"; import Img from "../Base/Img"; import Title from "../Base/Title"; +import {GlobalFilter} from "../../Logic/State/MapState"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import {Tag} from "../../Logic/Tags/Tag"; export default class ConfirmLocationOfPoint extends Combine { constructor( state: { + globalFilters: UIEventSource; featureSwitchIsTesting: UIEventSource; osmConnection: OsmConnection, featurePipeline: FeaturePipeline, @@ -38,8 +42,8 @@ export default class ConfirmLocationOfPoint extends Combine { let preciseInput: LocationInput = undefined if (preset.preciseInput !== undefined) { // Create location input - - + + // We uncouple the event source const zloc = {...loc, zoom: 19} const locationSrc = new UIEventSource(zloc); @@ -69,7 +73,7 @@ export default class ConfirmLocationOfPoint extends Combine { bounds: mapBounds }) preciseInput.installBounds(preset.boundsFactor ?? 0.25, true) - preciseInput.SetClass("h-40 rounded-xl overflow-hidden border border-gray").SetStyle("height: 12rem;") + preciseInput.SetClass("rounded-xl overflow-hidden border border-gray").SetStyle("height: 18rem; max-height: 50vh") if (preset.preciseInput.snapToLayers && preset.preciseInput.snapToLayers.length > 0) { @@ -106,7 +110,11 @@ export default class ConfirmLocationOfPoint extends Combine { ).SetClass("font-bold break-words") .onClick(() => { console.log("The confirmLocationPanel - precise input yielded ", preciseInput?.GetValue()?.data) - confirm(preset.tags, preciseInput?.GetValue()?.data ?? loc, preciseInput?.snappedOnto?.data?.properties?.id); + const globalFilterTagsToAdd: Tag[][] = state.globalFilters.data.filter(gf => gf.onNewPoint !== undefined) + .map(gf => gf.onNewPoint.tags) + const globalTags : Tag[] = [].concat(...globalFilterTagsToAdd) + console.log("Global tags to add are: ", globalTags) + confirm([...preset.tags, ...globalTags], preciseInput?.GetValue()?.data ?? loc, preciseInput?.snappedOnto?.data?.properties?.id); }); if (preciseInput !== undefined) { @@ -126,7 +134,7 @@ export default class ConfirmLocationOfPoint extends Combine { .onClick(() => filterViewIsOpened.setData(true)) - const openLayerOrConfirm = new Toggle( + let openLayerOrConfirm = new Toggle( confirmButton, openLayerControl, preset.layerToAddTo.isDisplayed @@ -152,6 +160,29 @@ export default class ConfirmLocationOfPoint extends Combine { closePopup() }) + + // We assume the number of global filters won't change during the run of the program + for (let i = 0; i < state.globalFilters.data.length; i++) { + const hasBeenCheckedOf = new UIEventSource(false); + + const filterConfirmPanel = new VariableUiElement( + state.globalFilters.map(gfs => { + const gf = gfs[i] + const confirm = gf.onNewPoint?.confirmAddNew?.Subs({preset: preset.title}) + return new Combine([ + gf.onNewPoint?.safetyCheck, + new SubtleButton(Svg.confirm_svg(), confirm).onClick(() => hasBeenCheckedOf.setData(true)) + ]) + } + )) + + + openLayerOrConfirm = new Toggle( + openLayerOrConfirm, filterConfirmPanel, + state.globalFilters.map(f => hasBeenCheckedOf.data || f[i]?.onNewPoint === undefined, [hasBeenCheckedOf]) + ) + } + const hasActiveFilter = preset.layerToAddTo.appliedFilters .map(appliedFilters => { const activeFilters = Array.from(appliedFilters.values()).filter(f => f?.currentFilter !== undefined); @@ -171,16 +202,16 @@ export default class ConfirmLocationOfPoint extends Combine { Translations.t.general.cancel ).onClick(cancel) - - let examples : BaseUIElement = undefined; - if(preset.exampleImages !== undefined && preset.exampleImages.length > 0){ + + let examples: BaseUIElement = undefined; + if (preset.exampleImages !== undefined && preset.exampleImages.length > 0) { examples = new Combine([ - new Title( preset.exampleImages.length == 1 ? Translations.t.general.example : Translations.t.general.examples), + new Title(preset.exampleImages.length == 1 ? Translations.t.general.example : Translations.t.general.examples), new Combine(preset.exampleImages.map(img => new Img(img).SetClass("h-64 m-1 w-auto rounded-lg"))).SetClass("flex flex-wrap items-stretch") ]) - + } - + super([ new Toggle( Translations.t.general.testing.SetClass("alert"), diff --git a/UI/OpeningHours/OpeningHours.ts b/UI/OpeningHours/OpeningHours.ts index 272fa3b247..57e4683e66 100644 --- a/UI/OpeningHours/OpeningHours.ts +++ b/UI/OpeningHours/OpeningHours.ts @@ -316,12 +316,21 @@ export class OH { } } + /** + * + * OH.ParsePHRule("PH Off") // => {mode: "off"} + * OH.ParsePHRule("PH OPEN") // => {mode: "open"} + * OH.ParsePHRule("PH 10:00-12:00") // => {mode: " ", start: "10:00", end: "12:00"} + * OH.ParsePHRule(undefined) // => null + * OH.ParsePHRule(null) // => null + * OH.ParsePHRule("some random string") // => null + */ public static ParsePHRule(str: string): { mode: string, start?: string, end?: string } { - if (str === undefined) { + if (str === undefined || str === null) { return null } str = str.trim(); @@ -330,13 +339,13 @@ export class OH { } str = str.trim(); - if (str === "PH off") { + if (str.toLowerCase() === "ph off") { return { mode: "off" } } - if (str === "PH open") { + if (str.toLowerCase() === "ph open") { return { mode: "open" } @@ -367,6 +376,9 @@ export class OH { return OH.ToString(OH.MergeTimes(OH.Parse(str))) } + /** + * Parses a string into Opening Hours + */ public static Parse(rules: string): OpeningHour[] { if (rules === undefined || rules === "") { return [] @@ -465,9 +477,10 @@ export class OH { lat: tags._lat, lon: tags._lon, address: { - country_code: tags._country.toLowerCase() + country_code: tags._country.toLowerCase(), + state: undefined }, - }, {tag_key: "opening_hours"}); + }, {tag_key: "opening_hours"}); } /* diff --git a/UI/OpeningHours/OpeningHoursInput.ts b/UI/OpeningHours/OpeningHoursInput.ts index 50aa52cf47..ab0b0f62e3 100644 --- a/UI/OpeningHours/OpeningHoursInput.ts +++ b/UI/OpeningHours/OpeningHoursInput.ts @@ -4,15 +4,14 @@ * Exports everything conventiently as a string, for direct use */ import OpeningHoursPicker from "./OpeningHoursPicker"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {VariableUiElement} from "../Base/VariableUIElement"; import Combine from "../Base/Combine"; import {FixedUiElement} from "../Base/FixedUiElement"; -import {OH} from "./OpeningHours"; +import {OH, OpeningHour} from "./OpeningHours"; import {InputElement} from "../Input/InputElement"; import PublicHolidayInput from "./PublicHolidayInput"; import Translations from "../i18n/Translations"; -import {Utils} from "../../Utils"; import BaseUIElement from "../BaseUIElement"; @@ -28,8 +27,7 @@ export default class OpeningHoursInput extends InputElement { this._value = value; let valueWithoutPrefix = value if (prefix !== "" && postfix !== "") { - - valueWithoutPrefix = value.map(str => { + valueWithoutPrefix = value.sync(str => { if (str === undefined) { return undefined; } @@ -40,7 +38,8 @@ export default class OpeningHoursInput extends InputElement { return str.substring(prefix.length, str.length - postfix.length) } return str - }, [], noPrefix => { + }, [], + noPrefix => { if (noPrefix === undefined) { return undefined; } @@ -55,7 +54,7 @@ export default class OpeningHoursInput extends InputElement { }) } - const leftoverRules = valueWithoutPrefix.map(str => { + const leftoverRules: Store = valueWithoutPrefix.map(str => { if (str === undefined) { return [] } @@ -72,35 +71,47 @@ export default class OpeningHoursInput extends InputElement { } return leftOvers; }) - // Note: MUST be bound AFTER the leftover rules! - const rulesFromOhPicker = valueWithoutPrefix.map(OH.Parse); - - const ph = valueWithoutPrefix.map(str => { - if (str === undefined) { - return "" + + let ph = ""; + const rules = valueWithoutPrefix.data?.split(";") ?? []; + for (const rule of rules) { + if (OH.ParsePHRule(rule) !== null) { + ph = rule; + break; } - const rules = str.split(";"); - for (const rule of rules) { - if (OH.ParsePHRule(rule) !== null) { - return rule; - } - } - return ""; - }) - const phSelector = new PublicHolidayInput(ph); - - function update() { - const regular = OH.ToString(rulesFromOhPicker.data); - const rules: string[] = [ - regular, - ...leftoverRules.data, - ph.data - ] - valueWithoutPrefix.setData(Utils.NoEmpty(rules).join(";")); } + const phSelector = new PublicHolidayInput(new UIEventSource(ph)); + + + // Note: MUST be bound AFTER the leftover rules! + const rulesFromOhPicker: UIEventSource = valueWithoutPrefix.sync(str => { + return OH.Parse(str); + }, [leftoverRules, phSelector.GetValue()], (rules, oldString) => { + // We always add a ';', to easily add new rules. We remove the ';' again at the end of the function + // Important: spaces are _not_ allowed after a ';' as it'll destabilize the parsing! + let str = OH.ToString(rules) + ";" + const ph = phSelector.GetValue().data; + if(ph){ + str += ph + ";" + } + + str += leftoverRules.data.join(";") + ";" + + str = str.trim() + if(str.endsWith(";")){ + str = str.substring(0, str.length - 1) + } + if(str.startsWith(";")){ + str = str.substring(1) + } + str.trim() + + if(str === oldString){ + return oldString; // We pass a reference to the old string to stabilize the EventSource + } + return str; + }); - rulesFromOhPicker.addCallback(update); - ph.addCallback(update); const leftoverWarning = new VariableUiElement(leftoverRules.map((leftovers: string[]) => { diff --git a/UI/OpeningHours/OpeningHoursPicker.ts b/UI/OpeningHours/OpeningHoursPicker.ts index e0c339f5b1..54f1676af8 100644 --- a/UI/OpeningHours/OpeningHoursPicker.ts +++ b/UI/OpeningHours/OpeningHoursPicker.ts @@ -34,6 +34,14 @@ export default class OpeningHoursPicker extends InputElement { return true; } + /** + * + * const rules = OH.ParseRule("Jul-Aug Sa closed; Mo,Tu,Th,Fr,PH 12:00-22:30, We 17:00-22:30, Sa 14:00-19:00, Su 10:00-21:00; Dec 24,25,31 off; Jan 1 off") + * const v = new UIEventSource(rules) + * const ohpicker = new OpeningHoursPicker(v) + * const html = ohpicker.InnerConstructElement() + * html !== undefined // => true + */ protected InnerConstructElement(): HTMLElement { return this._backgroundTable.ConstructElement(); } diff --git a/UI/OpeningHours/OpeningHoursPickerTable.ts b/UI/OpeningHours/OpeningHoursPickerTable.ts index 90fbd93c73..c2388abcb6 100644 --- a/UI/OpeningHours/OpeningHoursPickerTable.ts +++ b/UI/OpeningHours/OpeningHoursPickerTable.ts @@ -48,6 +48,7 @@ export default class OpeningHoursPickerTable extends InputElement const table = document.createElement("table") table.classList.add("oh-table") + table.classList.add("relative") // Workaround for webkit-based viewers, see #1019 const cellHeightInPx = 14; @@ -68,7 +69,8 @@ export default class OpeningHoursPickerTable extends InputElement const ranges = new VariableUiElement( - this.source.map(ohs => ohs.filter((oh: OpeningHour) => oh.weekday === i)) + this.source.map(ohs => + (ohs ?? []).filter((oh: OpeningHour) => oh.weekday === i)) .map(ohsForToday => { return new Combine(ohsForToday.map(oh => new OpeningHoursRange(oh, () => { this.source.data.splice(this.source.data.indexOf(oh), 1) diff --git a/UI/OpeningHours/PublicHolidayInput.ts b/UI/OpeningHours/PublicHolidayInput.ts index 6e4e621e8f..05274552bf 100644 --- a/UI/OpeningHours/PublicHolidayInput.ts +++ b/UI/OpeningHours/PublicHolidayInput.ts @@ -26,6 +26,20 @@ export default class PublicHolidayInput extends InputElement { return true; } + /** + * + * // should construct an element + * const html = new PublicHolidayInput().InnerConstructElement() + * html !== undefined // => true + * + * // should construct an element despite having an invalid input + * const html = new PublicHolidayInput(new UIEventSource("invalid")).InnerConstructElement() + * html !== undefined // => true + * + * // should construct an element despite having null as input + * const html = new PublicHolidayInput(new UIEventSource(null)).InnerConstructElement() + * html !== undefined // => true + */ protected InnerConstructElement(): HTMLElement { const dropdown = new DropDown( Translations.t.general.opening_hours.open_during_ph.Clone(), @@ -75,6 +89,9 @@ export default class PublicHolidayInput extends InputElement { const value = this._value; value.map(ph => OH.ParsePHRule(ph)) .addCallbackAndRunD(parsed => { + if(parsed === null){ + return + } mode.setData(parsed.mode) startTime.setData(parsed.start) endTime.setData(parsed.end) diff --git a/UI/Popup/AutoApplyButton.ts b/UI/Popup/AutoApplyButton.ts index 0956a56c53..2f824854de 100644 --- a/UI/Popup/AutoApplyButton.ts +++ b/UI/Popup/AutoApplyButton.ts @@ -1,7 +1,7 @@ import {SpecialVisualization} from "../SpecialVisualizations"; import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; import BaseUIElement from "../BaseUIElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Stores, UIEventSource} from "../../Logic/UIEventSource"; import {DefaultGuiState} from "../DefaultGuiState"; import {SubtleButton} from "../Base/SubtleButton"; import Img from "../Base/Img"; @@ -23,6 +23,7 @@ import {UIElement} from "../UIElement"; import FilteredLayer from "../../Models/FilteredLayer"; import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import Lazy from "../Base/Lazy"; +import List from "../Base/List"; export interface AutoAction extends SpecialVisualization { supportsAutoAction: boolean @@ -97,7 +98,7 @@ class ApplyButton extends UIElement { new ShowDataLayer({ leafletMap: previewMap.leafletMap, zoomToFeatures: true, - features: new StaticFeatureSource(features, false), + features: StaticFeatureSource.fromGeojson(features), state: this.state, layerToShow: this.layer.layerDef, }) @@ -154,7 +155,7 @@ class ApplyButton extends UIElement { } export default class AutoApplyButton implements SpecialVisualization { - public readonly docs: string; + public readonly docs: BaseUIElement; public readonly funcName: string = "auto_apply"; public readonly args: { name: string; defaultValue?: string; doc: string, required?: boolean }[] = [ { @@ -189,14 +190,17 @@ export default class AutoApplyButton implements SpecialVisualization { } private static generateDocs(supportedActions: string[]) { - return [ - "A button to run many actions for many features at once.\n", - "To effectively use this button, you'll need some ingredients:\n" + - "- A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: " + supportedActions.join(", "), - "- A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the [current_view](./BuiltinLayers.md#current_view)", - "- Then, use a calculated tag on the host feature to determine the overlapping object ids", - "- At last, add this component" - ].join("\n") + return new Combine([ + "A button to run many actions for many features at once.", + "To effectively use this button, you'll need some ingredients:", + new List([ + "A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: " + supportedActions.join(", "), + "A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the layer ", new Link("current_view","./BuiltinLayers.md#current_view"), + "Then, use a calculated tag on the host feature to determine the overlapping object ids", + "At last, add this component" + ]), + + ]) } constr(state: FeaturePipelineState, tagSource: UIEventSource, argument: string[], guistate: DefaultGuiState): BaseUIElement { @@ -218,7 +222,7 @@ export default class AutoApplyButton implements SpecialVisualization { return new Lazy(() => { const to_parse = new UIEventSource(undefined) // Very ugly hack: read the value every 500ms - UIEventSource.Chronic(500, () => to_parse.data === undefined).addCallback(() => { + Stores.Chronic(500, () => to_parse.data === undefined).addCallback(() => { const applicable = tagSource.data[argument[1]] to_parse.setData(applicable) }) diff --git a/UI/Popup/DeleteWizard.ts b/UI/Popup/DeleteWizard.ts index b0ce39556c..373a22dc19 100644 --- a/UI/Popup/DeleteWizard.ts +++ b/UI/Popup/DeleteWizard.ts @@ -3,7 +3,7 @@ import Toggle from "../Input/Toggle"; import Translations from "../i18n/Translations"; import Svg from "../../Svg"; import DeleteAction from "../../Logic/Osm/Actions/DeleteAction"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {TagsFilter} from "../../Logic/Tags/TagsFilter"; import Combine from "../Base/Combine"; import {SubtleButton} from "../Base/SubtleButton"; @@ -106,7 +106,7 @@ export default class DeleteWizard extends Toggle { } ) - const isShown: UIEventSource = tagsSource.map(tgs => tgs.id.indexOf("-") < 0) + const isShown: Store = tagsSource.map(tgs => tgs.id.indexOf("-") < 0) const deleteOptionPicker = DeleteWizard.constructMultipleChoice(options, tagsSource, state); const deleteDialog = new Combine([ @@ -350,8 +350,10 @@ class DeleteabilityChecker { if (allByMyself.data === null && useTheInternet) { // We kickoff the download here as it hasn't yet been downloaded. Note that this is mapped onto 'all by myself' above - OsmObject.DownloadHistory(id).map(versions => versions.map(version => version.tags["_last_edit:contributor:uid"])).syncWith(previousEditors) + const hist = OsmObject.DownloadHistory(id).map(versions => versions.map(version => version.tags["_last_edit:contributor:uid"])) + hist.addCallbackAndRunD(hist => previousEditors.setData(hist)) } + if (allByMyself.data === true) { // Yay! We can download! return true; diff --git a/UI/Popup/EditableTagRendering.ts b/UI/Popup/EditableTagRendering.ts index 0075d26514..11901dcb50 100644 --- a/UI/Popup/EditableTagRendering.ts +++ b/UI/Popup/EditableTagRendering.ts @@ -9,8 +9,8 @@ import BaseUIElement from "../BaseUIElement"; import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import {Unit} from "../../Models/Unit"; import Lazy from "../Base/Lazy"; -import {OsmConnection} from "../../Logic/Osm/OsmConnection"; import {FixedUiElement} from "../Base/FixedUiElement"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; export default class EditableTagRendering extends Toggle { @@ -49,7 +49,7 @@ export default class EditableTagRendering extends Toggle { ) } - private static CreateRendering(state: { featureSwitchUserbadge?: UIEventSource, osmConnection: OsmConnection }, tags: UIEventSource, configuration: TagRenderingConfig, units: Unit[], editMode: UIEventSource): BaseUIElement { + private static CreateRendering(state: FeaturePipelineState, tags: UIEventSource, configuration: TagRenderingConfig, units: Unit[], editMode: UIEventSource): BaseUIElement { const answer: BaseUIElement = new TagRenderingAnswer(tags, configuration, state) answer.SetClass("w-full") let rendering = answer; diff --git a/UI/Popup/FeatureInfoBox.ts b/UI/Popup/FeatureInfoBox.ts index ff28d1de0d..f3be3a2791 100644 --- a/UI/Popup/FeatureInfoBox.ts +++ b/UI/Popup/FeatureInfoBox.ts @@ -25,16 +25,20 @@ export default class FeatureInfoBox extends ScrollableFullScreen { tags: UIEventSource, layerConfig: LayerConfig, state: FeaturePipelineState, - hashToShow?: string, - isShown?: UIEventSource, + options?: { + hashToShow?: string, + isShown?: UIEventSource, + setHash?: true | boolean + } ) { if (state === undefined) { throw "State is undefined!" } super(() => FeatureInfoBox.GenerateTitleBar(tags, layerConfig, state), () => FeatureInfoBox.GenerateContent(tags, layerConfig, state), - hashToShow ?? tags.data.id ?? "item", - isShown); + options?.hashToShow ?? tags.data.id ?? "item", + options?.isShown, + options); if (layerConfig === undefined) { throw "Undefined layerconfig"; @@ -42,7 +46,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { } - private static GenerateTitleBar(tags: UIEventSource, + public static GenerateTitleBar(tags: UIEventSource, layerConfig: LayerConfig, state: {}): BaseUIElement { const title = new TagRenderingAnswer(tags, layerConfig.title ?? new TagRenderingConfig("POI"), state) @@ -50,7 +54,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { const titleIcons = new Combine( layerConfig.titleIcons.map(icon => { return new TagRenderingAnswer(tags, icon, state, - "block h-8 max-h-8 align-baseline box-content sm:p-0.5").SetClass("flex"); + "block h-8 max-h-8 align-baseline box-content sm:p-0.5 titleicon"); } )) .SetClass("flex flex-row flex-wrap pt-0.5 sm:pt-1 items-center mr-2") @@ -60,7 +64,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { ]) } - private static GenerateContent(tags: UIEventSource, + public static GenerateContent(tags: UIEventSource, layerConfig: LayerConfig, state: FeaturePipelineState): BaseUIElement { let questionBoxes: Map = new Map(); @@ -223,7 +227,9 @@ export default class FeatureInfoBox extends ScrollableFullScreen { return new Combine([new TagRenderingAnswer(tags, config_all_tags, state), new TagRenderingAnswer(tags, config_download, state), - new TagRenderingAnswer(tags, config_id, state)]) + new TagRenderingAnswer(tags, config_id, state), + "This is layer "+layerConfig.id + ]) } }) ) diff --git a/UI/Popup/ImportButton.ts b/UI/Popup/ImportButton.ts index 8db42618de..cdf299e7d5 100644 --- a/UI/Popup/ImportButton.ts +++ b/UI/Popup/ImportButton.ts @@ -54,11 +54,13 @@ abstract class AbstractImportButton implements SpecialVisualizations { public readonly docs: string public readonly args: { name: string, defaultValue?: string, doc: string }[] private readonly showRemovedTags: boolean; + private readonly cannotBeImportedMessage: BaseUIElement | undefined; - constructor(funcName: string, docsIntro: string, extraArgs: { name: string, doc: string, defaultValue?: string, required?: boolean }[], showRemovedTags = true) { + constructor(funcName: string, docsIntro: string, extraArgs: { name: string, doc: string, defaultValue?: string, required?: boolean }[], + options?: {showRemovedTags? : true | boolean, cannotBeImportedMessage?: BaseUIElement}) { this.funcName = funcName - this.showRemovedTags = showRemovedTags; - + this.showRemovedTags = options?.showRemovedTags ?? true; + this.cannotBeImportedMessage = options?.cannotBeImportedMessage this.docs = `${docsIntro} Note that the contributor must zoom to at least zoomlevel 18 to be able to use this functionality. @@ -200,7 +202,7 @@ ${Utils.special_visualizations_importRequirementDocs} pleaseLoginButton, state ), - t.wrongType, + this.cannotBeImportedMessage ?? t.wrongType, new UIEventSource(this.canBeImported(feature))) } @@ -241,7 +243,7 @@ ${Utils.special_visualizations_importRequirementDocs} new ShowDataMultiLayer({ leafletMap: confirmationMap.leafletMap, zoomToFeatures: true, - features: new StaticFeatureSource([feature], false), + features: StaticFeatureSource.fromGeojson([feature]), state: state, layers: state.filteredLayers }) @@ -304,7 +306,10 @@ export class ConflateButton extends AbstractImportButton { [{ name: "way_to_conflate", doc: "The key, of which the corresponding value is the id of the OSM-way that must be conflated; typically a calculatedTag" - }] + }], + { + cannotBeImportedMessage: Translations.t.general.add.import.wrongTypeToConflate + } ); } @@ -393,7 +398,7 @@ export class ImportWayButton extends AbstractImportButton implements AutoAction doc: "Distance to distort the geometry to snap to this layer", defaultValue: "0.1" }], - false + { showRemovedTags: false} ) } @@ -545,15 +550,21 @@ export class ImportPointButton extends AbstractImportButton { name: "note_id", doc: "If given, this key will be read. The corresponding note on OSM will be closed, stating 'imported'" }, - {name:"location_picker", + { + name:"location_picker", defaultValue: "photo", - doc: "Chooses the background for the precise location picker, options are 'map', 'photo' or 'osmbasedmap' or 'none' if the precise input picker should be disabled"}], - false + doc: "Chooses the background for the precise location picker, options are 'map', 'photo' or 'osmbasedmap' or 'none' if the precise input picker should be disabled" + }, + { + name: "maproulette_id", + doc: "If given, the maproulette challenge will be marked as fixed" + }], + { showRemovedTags: false} ) } private static createConfirmPanelForPoint( - args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, newTags: UIEventSource, targetLayer: string, note_id: string }, + args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, newTags: UIEventSource, targetLayer: string, note_id: string, maproulette_id: string }, state: FeaturePipelineState, guiState: DefaultGuiState, originalFeatureTags: UIEventSource, @@ -595,6 +606,19 @@ export class ImportPointButton extends AbstractImportButton { originalFeatureTags.data["closed_at"] = new Date().toISOString() originalFeatureTags.ping() } + + let maproulette_id = originalFeatureTags.data[args.maproulette_id]; + console.log("Checking if we need to mark a maproulette task as fixed (" + maproulette_id + ")") + if (maproulette_id !== undefined) { + if (state.featureSwitchIsTesting.data){ + console.log("Not marking maproulette task " + maproulette_id + " as fixed, because we are in testing mode") + } else { + console.log("Marking maproulette task as fixed") + state.maprouletteConnection.closeTask(Number(maproulette_id)); + originalFeatureTags.data["mr_taskStatus"] = "Fixed"; + originalFeatureTags.ping(); + } + } } let preciseInputOption = args["location_picker"] diff --git a/UI/Popup/MultiApply.ts b/UI/Popup/MultiApply.ts index 0eeff2db70..2b31490278 100644 --- a/UI/Popup/MultiApply.ts +++ b/UI/Popup/MultiApply.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import Combine from "../Base/Combine"; import {SubtleButton} from "../Base/SubtleButton"; @@ -16,12 +16,12 @@ import {OsmConnection} from "../../Logic/Osm/OsmConnection"; export interface MultiApplyParams { - featureIds: UIEventSource, + featureIds: Store, keysToApply: string[], text: string, autoapply: boolean, overwrite: boolean, - tagsSource: UIEventSource, + tagsSource: Store, state: { changes: Changes, allElements: ElementStorage, @@ -145,7 +145,7 @@ export default class MultiApply extends Toggle { } - const isShown: UIEventSource = p.state.osmConnection.isLoggedIn.map(loggedIn => { + const isShown: Store = p.state.osmConnection.isLoggedIn.map(loggedIn => { return loggedIn && p.featureIds.data.length > 0 }, [p.featureIds]) super(new Combine(elems), undefined, isShown); diff --git a/UI/Popup/NearbyImages.ts b/UI/Popup/NearbyImages.ts new file mode 100644 index 0000000000..4436c32f62 --- /dev/null +++ b/UI/Popup/NearbyImages.ts @@ -0,0 +1,288 @@ +import Combine from "../Base/Combine"; +import {Store, Stores, UIEventSource} from "../../Logic/UIEventSource"; +import {SlideShow} from "../Image/SlideShow"; +import {ClickableToggle} from "../Input/Toggle"; +import Loading from "../Base/Loading"; +import {AttributedImage} from "../Image/AttributedImage"; +import AllImageProviders from "../../Logic/ImageProviders/AllImageProviders"; +import Svg from "../../Svg"; +import BaseUIElement from "../BaseUIElement"; +import {InputElement} from "../Input/InputElement"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import Translations from "../i18n/Translations"; +import {Mapillary} from "../../Logic/ImageProviders/Mapillary"; +import {SubtleButton} from "../Base/SubtleButton"; +import {GeoOperations} from "../../Logic/GeoOperations"; +import {ElementStorage} from "../../Logic/ElementStorage"; +import Lazy from "../Base/Lazy"; + +export interface P4CPicture { + pictureUrl: string, + date?: number, + coordinates: { lat: number, lng: number }, + provider: "Mapillary" | string, + author?, + license?, + detailsUrl?: string, + direction?, + osmTags?: object /*To copy straight into OSM!*/ + , + thumbUrl: string, + details: { + isSpherical: boolean, + } +} + + +export interface NearbyImageOptions { + lon: number, + lat: number, + // Radius of the upstream search + searchRadius?: 500 | number, + maxDaysOld?: 1095 | number, + blacklist: Store<{ url: string }[]>, + shownImagesCount?: UIEventSource, + towardscenter?: UIEventSource; + allowSpherical?: UIEventSource + // Radius of what is shown. Useless to select a value > searchRadius; defaults to searchRadius + shownRadius?: UIEventSource +} + +class ImagesInLoadedDataFetcher { + private allElements: ElementStorage; + + constructor(state: { allElements: ElementStorage }) { + this.allElements = state.allElements + } + + public fetchAround(loc: { lon: number, lat: number, searchRadius?: number }): P4CPicture[] { + const foundImages: P4CPicture[] = [] + this.allElements.ContainingFeatures.forEach((feature) => { + const props = feature.properties; + const images = [] + if (props.image) { + images.push(props.image) + } + for (let i = 0; i < 10; i++) { + + if (props["image:" + i]) { + images.push(props["image:" + i]) + } + } + if (images.length == 0) { + return; + } + const centerpoint = GeoOperations.centerpointCoordinates(feature) + const d = GeoOperations.distanceBetween(centerpoint, [loc.lon, loc.lat]) + if (loc.searchRadius !== undefined && d > loc.searchRadius) { + return; + } + for (const image of images) { + foundImages.push({ + pictureUrl: image, + thumbUrl: image, + coordinates: {lng: centerpoint[0], lat: centerpoint[1]}, + provider: "OpenStreetMap", + details: { + isSpherical: false + } + }) + } + + }) + const cleaned: P4CPicture[] = [] + const seen = new Set() + for (const foundImage of foundImages) { + if (seen.has(foundImage.pictureUrl)) { + continue + } + seen.add(foundImage.pictureUrl) + cleaned.push(foundImage) + } + return cleaned + } +} + +export default class NearbyImages extends Lazy { + + constructor(options: NearbyImageOptions, state?: { allElements: ElementStorage }) { + super(() => { + + const t = Translations.t.image.nearbyPictures + const shownImages = options.shownImagesCount ?? new UIEventSource(25); + + const loadedPictures = NearbyImages.buildPictureFetcher(options, state) + + const loadMoreButton = new Combine([new SubtleButton(Svg.add_svg(), t.loadMore).onClick(() => { + shownImages.setData(shownImages.data + 25) + })]).SetClass("flex flex-col justify-center") + + const imageElements = loadedPictures.map(imgs => { + if(imgs === undefined){ + return [] + } + const elements = (imgs.images ?? []).slice(0, shownImages.data).map(i => this.prepareElement(i)); + if (imgs.images !== undefined && elements.length < imgs.images.length) { + // We effectively sliced some items, so we can increase the count + elements.push(loadMoreButton) + } + return elements; + }, [shownImages]); + + return new VariableUiElement(loadedPictures.map(loaded => { + + if (loaded?.images === undefined) { + return NearbyImages.NoImagesView(new Loading(t.loading)).SetClass("animate-pulse") + } + const images = loaded.images + const beforeFilter = loaded?.beforeFilter + if (beforeFilter === 0) { + return NearbyImages.NoImagesView(t.nothingFound.SetClass("alert block")) + }else if(images.length === 0){ + + const removeFiltersButton = new SubtleButton(Svg.filter_disable_svg(), t.removeFilters).onClick(() => { + options.shownRadius.setData(options.searchRadius) + options.allowSpherical.setData(true) + options.towardscenter.setData(false) + }); + + return NearbyImages.NoImagesView( + t.allFiltered.SetClass("font-bold"), + removeFiltersButton + ) + } + + return new SlideShow(imageElements) + },)); + + }) + } + + private static NoImagesView(...elems: BaseUIElement[]){ + return new Combine(elems).SetClass("flex flex-col justify-center items-center bg-gray-200 mb-2 rounded-lg") + .SetStyle("height: calc( var(--image-carousel-height) - 0.5rem ) ; max-height: calc( var(--image-carousel-height) - 0.5rem );") + } + + private static buildPictureFetcher(options: NearbyImageOptions, state?: { allElements: ElementStorage }) { + const P4C = require("../../vendor/P4C.min") + const picManager = new P4C.PicturesManager({}); + const searchRadius = options.searchRadius ?? 500; + + const nearbyImages = state !== undefined ? new ImagesInLoadedDataFetcher(state).fetchAround(options) : [] + + + return Stores.FromPromise( + picManager.startPicsRetrievalAround(new P4C.LatLng(options.lat, options.lon), options.searchRadius ?? 500, { + mindate: new Date().getTime() - (options.maxDaysOld ?? (3 * 365)) * 24 * 60 * 60 * 1000, + towardscenter: false + }) + ).map(images => { + if (images === undefined) { + return undefined + } + images = (images ?? []).concat(nearbyImages) + const blacklisted = options.blacklist?.data + images = images?.filter(i => !blacklisted?.some(notAllowed => Mapillary.sameUrl(i.pictureUrl, notAllowed.url))); + + const beforeFilterCount = images.length + + if (!(options?.allowSpherical?.data)) { + images = images?.filter(i => i.details.isSpherical !== true) + } + + const shownRadius = options?.shownRadius?.data ?? searchRadius; + if (shownRadius !== searchRadius) { + images = images.filter(i => { + const d = GeoOperations.distanceBetween([i.coordinates.lng, i.coordinates.lat], [options.lon, options.lat]) + return d <= shownRadius + }) + } + if (options.towardscenter?.data) { + images = images.filter(i => { + if (i.direction === undefined || isNaN(i.direction)) { + return false + } + const bearing = GeoOperations.bearing([i.coordinates.lng, i.coordinates.lat], [options.lon, options.lat]) + const diff = Math.abs((i.direction - bearing) % 360); + return diff < 40 + }) + } + + images?.sort((a, b) => { + const distanceA = GeoOperations.distanceBetween([a.coordinates.lng, a.coordinates.lat], [options.lon, options.lat]) + const distanceB = GeoOperations.distanceBetween([b.coordinates.lng, b.coordinates.lat], [options.lon, options.lat]) + return distanceA - distanceB + }) + + + return {images, beforeFilter: beforeFilterCount}; + + }, [options.blacklist, options.allowSpherical, options.towardscenter, options.shownRadius]) + + + } + + protected prepareElement(info: P4CPicture): BaseUIElement { + const provider = AllImageProviders.byName(info.provider); + return new AttributedImage({url: info.pictureUrl, provider}) + } + + private static asAttributedImage(info: P4CPicture): AttributedImage { + const provider = AllImageProviders.byName(info.provider); + return new AttributedImage({url: info.thumbUrl, provider, date: new Date(info.date)}) + } + + protected asToggle(info: P4CPicture): ClickableToggle { + const imgNonSelected = NearbyImages.asAttributedImage(info); + const imageSelected = NearbyImages.asAttributedImage(info); + + const nonSelected = new Combine([imgNonSelected]).SetClass("relative block") + const hoveringCheckmark = + new Combine([Svg.confirm_svg().SetClass("block w-24 h-24 -ml-12 -mt-12")]).SetClass("absolute left-1/2 top-1/2 w-0") + const selected = new Combine([ + imageSelected, + hoveringCheckmark, + ]).SetClass("relative block") + + return new ClickableToggle(selected, nonSelected).SetClass("").ToggleOnClick(); + + } + +} + +export class SelectOneNearbyImage extends NearbyImages implements InputElement { + private readonly value: UIEventSource; + + constructor(options: NearbyImageOptions & { value?: UIEventSource }, state?: { allElements: ElementStorage }) { + super(options, state) + this.value = options.value ?? new UIEventSource(undefined); + } + + GetValue(): UIEventSource { + return this.value; + } + + IsValid(t: P4CPicture): boolean { + return false; + } + + protected prepareElement(info: P4CPicture): BaseUIElement { + const toggle = super.asToggle(info) + toggle.isEnabled.addCallback(enabled => { + if (enabled) { + this.value.setData(info) + } else if (this.value.data === info) { + this.value.setData(undefined) + } + }) + + this.value.addCallback(inf => { + if (inf !== info) { + toggle.isEnabled.setData(false) + } + }) + + return toggle + } + +} diff --git a/UI/Popup/NewNoteUi.ts b/UI/Popup/NewNoteUi.ts index 0511002e6e..118f9e1250 100644 --- a/UI/Popup/NewNoteUi.ts +++ b/UI/Popup/NewNoteUi.ts @@ -103,7 +103,10 @@ export default class NewNoteUi extends Toggle { ] ).SetClass("flex flex-col"), newNoteUi, - noteLayer.appliedFilters.map(filters => Array.from(filters.values()).some(v => v !== undefined)) + noteLayer.appliedFilters.map(filters => { + console.log("Applied filters for notes are: ", filters) + return Array.from(filters.values()).some(v => v?.currentFilter !== undefined); + }) ), new Combine([ t.noteLayerNotEnabled.SetClass("alert"), diff --git a/UI/Popup/NoteCommentElement.ts b/UI/Popup/NoteCommentElement.ts index d0ba42d193..f0eb7cb327 100644 --- a/UI/Popup/NoteCommentElement.ts +++ b/UI/Popup/NoteCommentElement.ts @@ -7,9 +7,8 @@ import Translations from "../i18n/Translations"; import {Utils} from "../../Utils"; import Img from "../Base/Img"; import {SlideShow} from "../Image/SlideShow"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Stores, UIEventSource} from "../../Logic/UIEventSource"; import {OsmConnection} from "../../Logic/Osm/OsmConnection"; -import {UIElement} from "../UIElement"; import {VariableUiElement} from "../Base/VariableUIElement"; export default class NoteCommentElement extends Combine { @@ -25,7 +24,7 @@ export default class NoteCommentElement extends Combine { }) { const t = Translations.t.notes; - let actionIcon: BaseUIElement = undefined; + let actionIcon: BaseUIElement; if (comment.action === "opened" || comment.action === "reopened") { actionIcon = Svg.note_svg() } else if (comment.action === "closed") { @@ -41,7 +40,7 @@ export default class NoteCommentElement extends Combine { user = new Link(comment.user, comment.user_url ?? "", true) } - let userinfo = UIEventSource.FromPromise( Utils.downloadJsonCached("https://www.openstreetmap.org/api/0.6/user/"+comment.uid, 24*60*60*1000)) + let userinfo = Stores.FromPromise( Utils.downloadJsonCached("https://www.openstreetmap.org/api/0.6/user/"+comment.uid, 24*60*60*1000)) let userImg = new VariableUiElement( userinfo.map(userinfo => { const href = userinfo?.user?.img?.href; if(href !== undefined){ diff --git a/UI/Popup/QuestionBox.ts b/UI/Popup/QuestionBox.ts index fcc92ead41..2f94d92042 100644 --- a/UI/Popup/QuestionBox.ts +++ b/UI/Popup/QuestionBox.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import TagRenderingQuestion from "./TagRenderingQuestion"; import Translations from "../i18n/Translations"; import Combine from "../Base/Combine"; @@ -14,7 +14,7 @@ import Lazy from "../Base/Lazy"; */ export default class QuestionBox extends VariableUiElement { public readonly skippedQuestions: UIEventSource; - public readonly restingQuestions: UIEventSource; + public readonly restingQuestions: Store; constructor(state, options: { tagsSource: UIEventSource, @@ -81,7 +81,7 @@ export default class QuestionBox extends VariableUiElement { return undefined; // The questions are depleted }, [skippedQuestions]); - const questionsToAsk: UIEventSource = tagsSource.map(tags => { + const questionsToAsk: Store = tagsSource.map(tags => { if (tags === undefined) { return []; } diff --git a/UI/Popup/SaveButton.ts b/UI/Popup/SaveButton.ts index c9b5df65c8..de997dd8d0 100644 --- a/UI/Popup/SaveButton.ts +++ b/UI/Popup/SaveButton.ts @@ -1,11 +1,12 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {ImmutableStore, Store} from "../../Logic/UIEventSource"; import Translations from "../i18n/Translations"; import {OsmConnection} from "../../Logic/Osm/OsmConnection"; import Toggle from "../Input/Toggle"; +import BaseUIElement from "../BaseUIElement"; export class SaveButton extends Toggle { - constructor(value: UIEventSource, osmConnection: OsmConnection) { + constructor(value: Store, osmConnection: OsmConnection, textEnabled ?: BaseUIElement, textDisabled ?: BaseUIElement) { if (value === undefined) { throw "No event source for savebutton, something is wrong" } @@ -17,9 +18,9 @@ export class SaveButton extends Toggle { const isSaveable = value.map(v => v !== false && (v ?? "") !== "") - const text = Translations.t.general.save - const saveEnabled = text.Clone().SetClass(`btn`); - const saveDisabled = text.Clone().SetClass(`btn btn-disabled`); + const saveEnabled = (textEnabled ?? Translations.t.general.save.Clone()).SetClass(`btn`); + const saveDisabled = (textDisabled ?? Translations.t.general.save.Clone()).SetClass(`btn btn-disabled`); + const save = new Toggle( saveEnabled, saveDisabled, @@ -28,7 +29,7 @@ export class SaveButton extends Toggle { super( save, pleaseLogin, - osmConnection?.isLoggedIn ?? new UIEventSource(false) + osmConnection?.isLoggedIn ?? new ImmutableStore(false) ) } diff --git a/UI/Popup/SplitRoadWizard.ts b/UI/Popup/SplitRoadWizard.ts index 51bf4ab6a4..53c7a62551 100644 --- a/UI/Popup/SplitRoadWizard.ts +++ b/UI/Popup/SplitRoadWizard.ts @@ -78,7 +78,7 @@ export default class SplitRoadWizard extends Toggle { // Datalayer displaying the road and the cut points (if any) new ShowDataMultiLayer({ - features: new StaticFeatureSource([roadElement], false), + features: StaticFeatureSource.fromGeojson([roadElement]), layers: state.filteredLayers, leafletMap: miniMap.leafletMap, zoomToFeatures: true, @@ -86,7 +86,7 @@ export default class SplitRoadWizard extends Toggle { }) new ShowDataLayer({ - features: new StaticFeatureSource(splitPoints, true), + features: new StaticFeatureSource(splitPoints), leafletMap: miniMap.leafletMap, zoomToFeatures: false, layerToShow: SplitRoadWizard.splitLayerStyling, diff --git a/UI/Popup/TagApplyButton.ts b/UI/Popup/TagApplyButton.ts index 6bd8e774ba..7ccca7ca01 100644 --- a/UI/Popup/TagApplyButton.ts +++ b/UI/Popup/TagApplyButton.ts @@ -3,7 +3,7 @@ import Translations from "../i18n/Translations"; import {VariableUiElement} from "../Base/VariableUIElement"; import BaseUIElement from "../BaseUIElement"; import {FixedUiElement} from "../Base/FixedUiElement"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {SubtleButton} from "../Base/SubtleButton"; import Combine from "../Base/Combine"; import ChangeTagAction from "../../Logic/Osm/Actions/ChangeTagAction"; @@ -40,7 +40,14 @@ export default class TagApplyButton implements AutoAction { ]; public readonly example = "`{tag_apply(survey_date=$_now:date, Surveyed today!)}`, `{tag_apply(addr:street=$addr:street, Apply the address, apply_icon.svg, _closest_osm_id)"; - public static generateTagsToApply(spec: string, tagSource: UIEventSource): UIEventSource { + public static generateTagsToApply(spec: string, tagSource: Store): Store { + + // Check whether we need to look up a single value + + if (!spec.includes(";") && !spec.includes("=") && spec.includes("$")){ + // We seem to be dealing with a single value, fetch it + spec = tagSource.data[spec.replace("$","")] + } const tgsSpec = spec.split(";").map(spec => { const kv = spec.split("=").map(s => s.trim()); diff --git a/UI/Popup/TagRenderingAnswer.ts b/UI/Popup/TagRenderingAnswer.ts index ffedccefc0..e5d7311470 100644 --- a/UI/Popup/TagRenderingAnswer.ts +++ b/UI/Popup/TagRenderingAnswer.ts @@ -2,7 +2,6 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import {Utils} from "../../Utils"; import BaseUIElement from "../BaseUIElement"; import {VariableUiElement} from "../Base/VariableUIElement"; -import List from "../Base/List"; import {SubstitutedTranslation} from "../SubstitutedTranslation"; import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import Combine from "../Base/Combine"; diff --git a/UI/Popup/TagRenderingQuestion.ts b/UI/Popup/TagRenderingQuestion.ts index ff38b2f439..2f2dd157ac 100644 --- a/UI/Popup/TagRenderingQuestion.ts +++ b/UI/Popup/TagRenderingQuestion.ts @@ -1,6 +1,6 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, Stores, UIEventSource} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; -import {InputElement} from "../Input/InputElement"; +import {InputElement, ReadonlyInputElement} from "../Input/InputElement"; import ValidatedTextField from "../Input/ValidatedTextField"; import {FixedInputElement} from "../Input/FixedInputElement"; import {RadioButton} from "../Input/RadioButton"; @@ -11,7 +11,7 @@ import {SaveButton} from "./SaveButton"; import {VariableUiElement} from "../Base/VariableUIElement"; import Translations from "../i18n/Translations"; import {FixedUiElement} from "../Base/FixedUiElement"; -import {Translation, TypedTranslation} from "../i18n/Translation"; +import {Translation} from "../i18n/Translation"; import Constants from "../../Models/Constants"; import {SubstitutedTranslation} from "../SubstitutedTranslation"; import {TagsFilter} from "../../Logic/Tags/TagsFilter"; @@ -22,7 +22,7 @@ import BaseUIElement from "../BaseUIElement"; import {DropDown} from "../Input/DropDown"; import InputElementWrapper from "../Input/InputElementWrapper"; import ChangeTagAction from "../../Logic/Osm/Actions/ChangeTagAction"; -import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; +import TagRenderingConfig, {Mapping} from "../../Models/ThemeConfig/TagRenderingConfig"; import {Unit} from "../../Models/Unit"; import VariableInputElement from "../Input/VariableInputElement"; import Toggle from "../Input/Toggle"; @@ -30,6 +30,9 @@ import Img from "../Base/Img"; import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; import Title from "../Base/Title"; import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {GeoOperations} from "../../Logic/GeoOperations"; +import {SearchablePillsSelector} from "../Input/SearchableMappingsSelector"; +import {OsmTags} from "../../Models/OsmFeature"; /** * Shows the question element. @@ -37,22 +40,21 @@ import {OsmConnection} from "../../Logic/Osm/OsmConnection"; */ export default class TagRenderingQuestion extends Combine { - constructor(tags: UIEventSource, + constructor(tags: UIEventSource & { id: string }>, configuration: TagRenderingConfig, - state, + state?: FeaturePipelineState, options?: { units?: Unit[], afterSave?: () => void, cancelButton?: BaseUIElement, - saveButtonConstr?: (src: UIEventSource) => BaseUIElement, - bottomText?: (src: UIEventSource) => BaseUIElement + saveButtonConstr?: (src: Store) => BaseUIElement, + bottomText?: (src: Store) => BaseUIElement } ) { - const applicableMappingsSrc = - UIEventSource.ListStabilized(tags.map(tags => { - const applicableMappings: { if: TagsFilter, icon?: string, then: TypedTranslation, ifnot?: TagsFilter, addExtraTags: Tag[] }[] = [] + Stores.ListStabilized(tags.map(tags => { + const applicableMappings: Mapping[] = [] for (const mapping of configuration.mappings ?? []) { if (mapping.hideInAnswer === true) { continue @@ -80,15 +82,14 @@ export default class TagRenderingQuestion extends Combine { const feedback = new UIEventSource(undefined) - const inputElement: InputElement = - new VariableInputElement(applicableMappingsSrc.map(applicableMappings => - TagRenderingQuestion.GenerateInputElement(state, configuration, applicableMappings, applicableUnit, tags, feedback) + const inputElement: ReadonlyInputElement = + new VariableInputElement(applicableMappingsSrc.map(applicableMappings => { + return TagRenderingQuestion.GenerateInputElement(state, configuration, applicableMappings, applicableUnit, tags, feedback) + } )) - - const save = () => { - const selection = inputElement.GetValue().data; + const selection = TagUtils.FlattenMultiAnswer([inputElement.GetValue().data]); if (selection) { (state?.changes) .applyAction(new ChangeTagAction( @@ -131,7 +132,7 @@ export default class TagRenderingQuestion extends Combine { saveButton]).SetClass("flex justify-end flex-wrap-reverse") ]).SetClass("flex mt-2 justify-between"), - new Toggle(Translations.t.general.testing.SetClass("alert"), undefined, state.featureSwitchIsTesting) + new Toggle(Translations.t.general.testing.SetClass("alert"), undefined, state?.featureSwitchIsTesting) ]) @@ -140,23 +141,31 @@ export default class TagRenderingQuestion extends Combine { private static GenerateInputElement( - state, + state: FeaturePipelineState, configuration: TagRenderingConfig, - applicableMappings: { if: TagsFilter, then: TypedTranslation, icon?: string, ifnot?: TagsFilter, addExtraTags: Tag[] }[], + applicableMappings: Mapping[], applicableUnit: Unit, tagsSource: UIEventSource, feedback: UIEventSource - ): InputElement { + ): ReadonlyInputElement { - // FreeForm input will be undefined if not present; will already contain a special input element if applicable - const ff = TagRenderingQuestion.GenerateFreeform(state, configuration, applicableUnit, tagsSource, feedback); - const hasImages = applicableMappings.findIndex(mapping => mapping.icon !== undefined) >= 0 let inputEls: InputElement[]; const ifNotsPresent = applicableMappings.some(mapping => mapping.ifnot !== undefined) + if (applicableMappings.length > 8 && + (configuration.freeform?.type === undefined || configuration.freeform?.type === "string") && + (!configuration.multiAnswer || configuration.freeform === undefined)) { + + return TagRenderingQuestion.GenerateSearchableSelector(state, configuration, applicableMappings, tagsSource) + } + + + // FreeForm input will be undefined if not present; will already contain a special input element if applicable + const ff = TagRenderingQuestion.GenerateFreeform(state, configuration, applicableUnit, tagsSource, feedback); + function allIfNotsExcept(excludeIndex: number): TagsFilter[] { if (configuration.mappings === undefined || configuration.mappings.length === 0) { return undefined @@ -183,7 +192,7 @@ export default class TagRenderingQuestion extends Combine { } - if (applicableMappings.length < 8 || configuration.multiAnswer || hasImages || ifNotsPresent) { + if (applicableMappings.length < 8 || configuration.multiAnswer || (hasImages && applicableMappings.length < 16) || ifNotsPresent) { inputEls = (applicableMappings ?? []).map((mapping, i) => TagRenderingQuestion.GenerateMappingElement(state, tagsSource, mapping, allIfNotsExcept(i))); inputEls = Utils.NoNull(inputEls); } else { @@ -223,6 +232,209 @@ export default class TagRenderingQuestion extends Combine { } + private static MappingToPillValue(applicableMappings: Mapping[], tagsSource: UIEventSource, state: FeaturePipelineState): { show: BaseUIElement, value: number, mainTerm: Record, searchTerms?: Record, original: Mapping }[] { + const values: { show: BaseUIElement, value: number, mainTerm: Record, searchTerms?: Record, original: Mapping }[] = [] + const addIcons = applicableMappings.some(m => m.icon !== undefined) + for (let i = 0; i < applicableMappings.length; i++) { + const mapping = applicableMappings[i]; + const tr = mapping.then.Subs(tagsSource.data) + const patchedMapping = { + ...mapping, + iconClass: `small-height`, + icon: mapping.icon ?? (addIcons ? "./assets/svg/none.svg" : undefined) + } + const fancy = TagRenderingQuestion.GenerateMappingContent(patchedMapping, tagsSource, state).SetClass("normal-background") + values.push({ + show: fancy, + value: i, + mainTerm: tr.translations, + searchTerms: mapping.searchTerms, + original: mapping + }) + } + return values + } + + /** + * + * // Should return the search as freeform value + * const source = new UIEventSource({id: "1234"}) + * const tr = new TagRenderingConfig({ + * id:"test", + * render:"The value is {key}", + * freeform: { + * key:"key" + * }, + * + * mappings: [ + * { + * if:"x=y", + * then:"z", + * searchTerms: { + * "en" : ["z"] + * } + * } + * ] + * }, "test"); + * const selector = TagRenderingQuestion.GenerateSearchableSelector( + * undefined, + * tr, + * tr.mappings, + * source, + * { + * search: new UIEventSource("value") + * } + * ); + * selector.GetValue().data // => new And([new Tag("key","value")]) + * + * // Should return the search as freeform value, even if a previous search matched + * const source = new UIEventSource({id: "1234"}) + * const search = new UIEventSource("") + * const tr = new TagRenderingConfig({ + * id:"test", + * render:"The value is {key}", + * freeform: { + * key:"key" + * }, + * + * mappings: [ + * { + * if:"x=y", + * then:"z", + * searchTerms: { + * "en" : ["z"] + * } + * } + * ] + * }, "test"); + * const selector = TagRenderingQuestion.GenerateSearchableSelector( + * undefined, + * tr, + * tr.mappings, + * source, + * { + * search + * } + * ); + * search.setData("z") + * search.setData("zx") + * selector.GetValue().data // => new And([new Tag("key","zx")]) + */ + private static GenerateSearchableSelector( + state: FeaturePipelineState, + configuration: TagRenderingConfig, + applicableMappings: Mapping[], + tagsSource: UIEventSource, + options?: { + search: UIEventSource + }): InputElement { + + + const values = TagRenderingQuestion.MappingToPillValue(applicableMappings, tagsSource, state) + + const searchValue: UIEventSource = options?.search ?? new UIEventSource(undefined) + const ff = configuration.freeform + let onEmpty: BaseUIElement = undefined + if (ff !== undefined) { + onEmpty = new VariableUiElement(searchValue.map(search => configuration.render.Subs({[ff.key]: search}))) + } + const mode = configuration.multiAnswer ? "select-many" : "select-one"; + + const tooMuchElementsValue = new UIEventSource([]); + + + let priorityPresets: BaseUIElement = undefined; + const classes = "h-64 overflow-scroll" + + if (applicableMappings.some(m => m.priorityIf !== undefined)) { + const priorityValues = tagsSource.map(tags => + TagRenderingQuestion.MappingToPillValue(applicableMappings, tagsSource, state) + .filter(v => v.original.priorityIf?.matchesProperties(tags))) + priorityPresets = new VariableUiElement(priorityValues.map(priority => { + if (priority.length === 0) { + return Translations.t.general.useSearch; + } + return new Combine([ + Translations.t.general.useSearchForMore.Subs({total: applicableMappings.length}), + new SearchablePillsSelector(priority, { + selectedElements: tooMuchElementsValue, + hideSearchBar: true, + mode + })]).SetClass("flex flex-col items-center ").SetClass(classes); + })); + } + const presetSearch = new SearchablePillsSelector(values, { + selectIfSingle: true, + mode, + searchValue, + onNoMatches: onEmpty?.SetClass(classes).SetClass("flex justify-center items-center"), + searchAreaClass: classes, + onManyElementsValue: tooMuchElementsValue, + onManyElements: priorityPresets + }) + const fallbackTag = searchValue.map(s => { + if (s === undefined || ff?.key === undefined) { + return undefined + } + return new Tag(ff.key, s) + }); + return new InputElementMap(presetSearch, + (x0, x1) => { + if (x0 == x1) { + return true; + } + if (x0 === undefined || x1 === undefined) { + return false; + } + if (x0.and.length !== x1.and.length) { + return false; + } + for (let i = 0; i < x0.and.length; i++) { + if (x1.and[i] != x0.and[i]) { + return false + } + } + return true; + }, + (selected) => { + if (ff !== undefined && searchValue.data?.length > 0 && !presetSearch.someMatchFound.data) { + const t = fallbackTag.data; + if (ff.addExtraTags) { + return new And([t, ...ff.addExtraTags]) + } + return new And([t]); + } + + if (selected === undefined || selected.length == 0) { + return undefined; + } + + const tfs = Utils.NoNull(applicableMappings.map((mapping, i) => { + if (selected.indexOf(i) >= 0) { + return mapping.if + } else { + return mapping.ifnot + } + })) + console.log("Got tags", tfs) + return new And(tfs); + }, + (tf) => { + if (tf === undefined) { + return [] + } + const selected: number[] = [] + for (let i = 0; i < applicableMappings.length; i++) { + const mapping = applicableMappings[i] + if (tf.and.some(t => mapping.if == t)) { + selected.push(i) + } + } + return selected; + }, + [searchValue, presetSearch.someMatchFound] + ); + } private static GenerateMultiAnswer( configuration: TagRenderingConfig, @@ -334,13 +546,7 @@ export default class TagRenderingQuestion extends Combine { private static GenerateMappingElement( state, tagsSource: UIEventSource, - mapping: { - if: TagsFilter, - then: Translation, - addExtraTags: Tag[], - icon?: string, - iconClass?: string - }, ifNot?: TagsFilter[]): InputElement { + mapping: Mapping, ifNot?: TagsFilter[]): InputElement { let tagging: TagsFilter = mapping.if; if (ifNot !== undefined) { @@ -357,19 +563,15 @@ export default class TagRenderingQuestion extends Combine { (t0, t1) => t1.shadows(t0)); } - private static GenerateMappingContent(mapping: { - then: Translation, - icon?: string, - iconClass?: string - }, tagsSource: UIEventSource, state: FeaturePipelineState): BaseUIElement { + private static GenerateMappingContent(mapping: Mapping, tagsSource: UIEventSource, state: FeaturePipelineState): BaseUIElement { const text = new SubstitutedTranslation(mapping.then, tagsSource, state) if (mapping.icon === undefined) { return text; } - return new Combine([new Img(mapping.icon).SetClass("mapping-icon-"+(mapping.iconClass ?? "small")), text]).SetClass("flex") + return new Combine([new Img(mapping.icon).SetClass("mr-1 mapping-icon-" + (mapping.iconClass ?? "small")), text]).SetClass("flex items-center") } - private static GenerateFreeform(state, configuration: TagRenderingConfig, applicableUnit: Unit, tags: UIEventSource, feedback: UIEventSource) + private static GenerateFreeform(state: FeaturePipelineState, configuration: TagRenderingConfig, applicableUnit: Unit, tags: UIEventSource, feedback: UIEventSource) : InputElement { const freeform = configuration.freeform; if (freeform === undefined) { @@ -413,22 +615,25 @@ export default class TagRenderingQuestion extends Combine { } const tagsData = tags.data; - const feature = state.allElements.ContainingFeatures.get(tagsData.id) - const input: InputElement = ValidatedTextField.ForType(configuration.freeform.type).ConstructInputElement({ + const feature = state?.allElements?.ContainingFeatures?.get(tagsData.id) + const center = feature != undefined ? GeoOperations.centerpointCoordinates(feature) : [0, 0] + const input: InputElement = ValidatedTextField.ForType(configuration.freeform.type)?.ConstructInputElement({ country: () => tagsData._country, - location: [tagsData._lat, tagsData._lon], - mapBackgroundLayer: state.backgroundLayer, + location: [center[1], center[0]], + mapBackgroundLayer: state?.backgroundLayer, unit: applicableUnit, args: configuration.freeform.helperArgs, feature, placeholder: configuration.freeform.placeholder, feedback }); - - input.GetValue().setData(tagsData[freeform.key] ?? freeform.default); - - input.GetValue().addCallbackD(v => { - if(v.length >= 255){ + + // Init with correct value + input?.GetValue().setData(tagsData[freeform.key] ?? freeform.default); + + // Add a length check + input?.GetValue().addCallbackD((v: string | undefined) => { + if (v?.length >= 255) { feedback.setData(Translations.t.validation.tooLong.Subs({count: v.length})) } }) @@ -439,20 +644,18 @@ export default class TagRenderingQuestion extends Combine { ); if (freeform.inline) { - inputTagsFilter.SetClass("w-48-imp") inputTagsFilter = new InputElementWrapper(inputTagsFilter, configuration.render, freeform.key, tags, state) inputTagsFilter.SetClass("block") - } return inputTagsFilter; } - - public static CreateTagExplanation(selectedValue: UIEventSource, - tags: UIEventSource, - state?: {osmConnection?: OsmConnection}){ + + public static CreateTagExplanation(selectedValue: Store, + tags: Store, + state?: { osmConnection?: OsmConnection }) { return new VariableUiElement( selectedValue.map( (tagsFilter: TagsFilter) => { @@ -468,7 +671,8 @@ export default class TagRenderingQuestion extends Combine { return new FixedUiElement(tagsStr).SetClass("subtle"); } return tagsFilter.asHumanString(true, true, tags.data); - } + }, + [state?.osmConnection?.userDetails] ) ).SetClass("block break-all") } diff --git a/UI/ProfessionalGui.ts b/UI/ProfessionalGui.ts index d4a0196bfe..fe51d06f2a 100644 --- a/UI/ProfessionalGui.ts +++ b/UI/ProfessionalGui.ts @@ -98,7 +98,7 @@ class ProfessionalGui extends LeftIndex { maxDepth: 2 }).SetClass("subtle"), - LanguagePicker.CreateLanguagePicker(Translations.t.professional.title.SupportedLanguages())?.SetClass("mt-4 self-end flex-col"), + new LanguagePicker(Translations.t.professional.title.SupportedLanguages(), "")?.SetClass("mt-4 self-end flex-col"), ].map(el => el?.SetClass("pl-4")) super(leftContents, content) diff --git a/UI/QueryParameterDocumentation.ts b/UI/QueryParameterDocumentation.ts index 017ac5b775..405c20ad48 100644 --- a/UI/QueryParameterDocumentation.ts +++ b/UI/QueryParameterDocumentation.ts @@ -4,6 +4,9 @@ import Title from "./Base/Title"; import List from "./Base/List"; import Translations from "./i18n/Translations"; import {QueryParameters} from "../Logic/Web/QueryParameters"; +import FeatureSwitchState from "../Logic/State/FeatureSwitchState"; +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import {DefaultGuiState} from "./DefaultGuiState"; export default class QueryParameterDocumentation { @@ -24,17 +27,50 @@ export default class QueryParameterDocumentation { "Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case." ]) + public static UrlParamDocs(): Map { + const dummyLayout = new LayoutConfig({ + id: ">theme<", + maintainer: "pietervdvn", + version: "0", + title: {en: ""}, + description: "A theme to generate docs with", + socialImage: "./assets/SocialImage.png", + startLat: 0, + startLon: 0, + startZoom: 0, + icon: undefined, + layers: [ + { + name: "", + id: "<layer>", + source: { + osmTags: "id~*" + }, + mapRendering: null, + } + ] + + }) + new DefaultGuiState(); // Init a featureSwitchState to init all the parameters + new FeatureSwitchState(dummyLayout) + + QueryParameters.GetQueryParameter("layer-<layer-id>", "true", "Wether or not the layer with id is shown") + return QueryParameters.documentation + } + public static GenerateQueryParameterDocs(): BaseUIElement { + + const docs: (string | BaseUIElement)[] = [...QueryParameterDocumentation.QueryParamDocsIntro]; - for (const key in QueryParameters.documentation) { + this.UrlParamDocs().forEach((value, key) => { const c = new Combine([ new Title(key, 2), - QueryParameters.documentation[key], + value, QueryParameters.defaults[key] === undefined ? "No default value set" : `The default value is _${QueryParameters.defaults[key]}_` ]) docs.push(c) - } + }) return new Combine(docs).SetClass("flex flex-col") } } \ No newline at end of file diff --git a/UI/Reviews/ReviewForm.ts b/UI/Reviews/ReviewForm.ts index 7d8d7d46c1..0eff4736af 100644 --- a/UI/Reviews/ReviewForm.ts +++ b/UI/Reviews/ReviewForm.ts @@ -37,7 +37,6 @@ export default class ReviewForm extends InputElement { const comment = new TextField({ placeholder: Translations.t.reviews.write_a_comment.Clone(), htmlType: "area", - value: this._value.map(r => r?.comment), textAreaRows: 5 }) comment.GetValue().addCallback(comment => { @@ -62,10 +61,10 @@ export default class ReviewForm extends InputElement { new SaveButton( this._value.map(r => self.IsValid(r)), osmConnection ).onClick(() => { - reviewIsSaving.setData(true), - onSave(this._value.data, () => { - reviewIsSaved.setData(true) - }); + reviewIsSaving.setData(true); + onSave(this._value.data, () => { + reviewIsSaved.setData(true) + }); }), reviewIsSaving ), diff --git a/UI/ShowDataLayer/ShowDataLayerImplementation.ts b/UI/ShowDataLayer/ShowDataLayerImplementation.ts index 16b4293f89..34e45646ea 100644 --- a/UI/ShowDataLayer/ShowDataLayerImplementation.ts +++ b/UI/ShowDataLayer/ShowDataLayerImplementation.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import {ShowDataLayerOptions} from "./ShowDataLayerOptions"; import {ElementStorage} from "../../Logic/ElementStorage"; @@ -20,7 +20,7 @@ We don't actually import it here. It is imported in the 'MinimapImplementation'- export default class ShowDataLayerImplementation { private static dataLayerIds = 0 - private readonly _leafletMap: UIEventSource; + private readonly _leafletMap: Store; private readonly _enablePopups: boolean; private readonly _features: RenderingMultiPlexerFeatureSource private readonly _layerToShow: LayerConfig; @@ -195,7 +195,7 @@ export default class ShowDataLayerImplementation { const tagsSource = this.allElements?.addOrGetElement(feat) ?? new UIEventSource(feat.properties); let offsettedLine; tagsSource - .map(tags => this._layerToShow.lineRendering[feat.lineRenderingIndex].GenerateLeafletStyle(tags), [], undefined, true) + .map(tags => this._layerToShow.lineRendering[feat.lineRenderingIndex].GenerateLeafletStyle(tags)) .withEqualityStabilized((a, b) => { if (a === b) { return true diff --git a/UI/ShowDataLayer/ShowDataLayerOptions.ts b/UI/ShowDataLayer/ShowDataLayerOptions.ts index a9ace1f8de..036faaf43a 100644 --- a/UI/ShowDataLayer/ShowDataLayerOptions.ts +++ b/UI/ShowDataLayer/ShowDataLayerOptions.ts @@ -1,5 +1,5 @@ import FeatureSource from "../../Logic/FeatureSource/FeatureSource"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import {ElementStorage} from "../../Logic/ElementStorage"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import ScrollableFullScreen from "../Base/ScrollableFullScreen"; @@ -7,9 +7,9 @@ import ScrollableFullScreen from "../Base/ScrollableFullScreen"; export interface ShowDataLayerOptions { features: FeatureSource, selectedElement?: UIEventSource, - leafletMap: UIEventSource, + leafletMap: Store, popup?: undefined | ((tags: UIEventSource, layer: LayerConfig) => ScrollableFullScreen), zoomToFeatures?: false | boolean, - doShowLayer?: UIEventSource, + doShowLayer?: Store, state?: { allElements?: ElementStorage } } \ No newline at end of file diff --git a/UI/ShowDataLayer/ShowDataMultiLayer.ts b/UI/ShowDataLayer/ShowDataMultiLayer.ts index 374539b603..4e20d10209 100644 --- a/UI/ShowDataLayer/ShowDataMultiLayer.ts +++ b/UI/ShowDataLayer/ShowDataMultiLayer.ts @@ -1,14 +1,14 @@ /** * SHows geojson on the given leaflet map, but attempts to figure out the correct layer first */ -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store} from "../../Logic/UIEventSource"; import ShowDataLayer from "./ShowDataLayer"; import PerLayerFeatureSourceSplitter from "../../Logic/FeatureSource/PerLayerFeatureSourceSplitter"; import FilteredLayer from "../../Models/FilteredLayer"; import {ShowDataLayerOptions} from "./ShowDataLayerOptions"; export default class ShowDataMultiLayer { - constructor(options: ShowDataLayerOptions & { layers: UIEventSource }) { + constructor(options: ShowDataLayerOptions & { layers: Store }) { new PerLayerFeatureSourceSplitter(options.layers, (perLayer => { const newOptions = { diff --git a/UI/ShowDataLayer/ShowTileInfo.ts b/UI/ShowDataLayer/ShowTileInfo.ts index 7698de25a9..1a04624bca 100644 --- a/UI/ShowDataLayer/ShowTileInfo.ts +++ b/UI/ShowDataLayer/ShowTileInfo.ts @@ -1,5 +1,5 @@ import FeatureSource, {Tiled} from "../../Logic/FeatureSource/FeatureSource"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import ShowDataLayer from "./ShowDataLayer"; import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; @@ -18,7 +18,7 @@ export default class ShowTileInfo { const source = options.source - const metaFeature: UIEventSource = + const metaFeature: Store<{feature, freshness: Date}[]> = source.features.map(features => { const bbox = source.bbox const [z, x, y] = Tiles.tile_from_index(source.tileIndex) @@ -47,12 +47,12 @@ export default class ShowTileInfo { } } const center = GeoOperations.centerpoint(box) - return [box, center] + return [box, center].map(feature => ({feature, freshness: new Date()})) }) new ShowDataLayer({ layerToShow: ShowTileInfo.styling, - features: new StaticFeatureSource(metaFeature, false), + features: new StaticFeatureSource(metaFeature), leafletMap: options.leafletMap, doShowLayer: options.doShowLayer, state: State.state, diff --git a/UI/ShowDataLayer/TileHierarchyAggregator.ts b/UI/ShowDataLayer/TileHierarchyAggregator.ts index 49007a78ab..a5f1f9d6c6 100644 --- a/UI/ShowDataLayer/TileHierarchyAggregator.ts +++ b/UI/ShowDataLayer/TileHierarchyAggregator.ts @@ -141,7 +141,7 @@ export class TileHierarchyAggregator implements FeatureSource { return empty } - const features = [] + const features: {feature: any, freshness: Date}[] = [] self.visitSubTiles(aggr => { if (aggr.showCount < cutoff) { return false @@ -156,7 +156,7 @@ export class TileHierarchyAggregator implements FeatureSource { return features }, [this.updateSignal.stabilized(500)]) - return new StaticFeatureSource(features, true); + return new StaticFeatureSource(features); } private update() { diff --git a/UI/SpecialVisualizations.ts b/UI/SpecialVisualizations.ts index 23a678bebc..062563118f 100644 --- a/UI/SpecialVisualizations.ts +++ b/UI/SpecialVisualizations.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../Logic/UIEventSource"; +import {Store, Stores, UIEventSource} from "../Logic/UIEventSource"; import {VariableUiElement} from "./Base/VariableUIElement"; import LiveQueryHandler from "../Logic/Web/LiveQueryHandler"; import {ImageCarousel} from "./Image/ImageCarousel"; @@ -35,24 +35,37 @@ import {ConflateButton, ImportPointButton, ImportWayButton} from "./Popup/Import import TagApplyButton from "./Popup/TagApplyButton"; import AutoApplyButton from "./Popup/AutoApplyButton"; import * as left_right_style_json from "../assets/layers/left_right_style/left_right_style.json"; -import {OpenIdEditor} from "./BigComponents/CopyrightPanel"; +import {OpenIdEditor, OpenJosm} from "./BigComponents/CopyrightPanel"; import Toggle from "./Input/Toggle"; import Img from "./Base/Img"; import NoteCommentElement from "./Popup/NoteCommentElement"; import ImgurUploader from "../Logic/ImageProviders/ImgurUploader"; import FileSelectorButton from "./Input/FileSelectorButton"; import {LoginToggle} from "./Popup/LoginButton"; -import {start} from "repl"; import {SubstitutedTranslation} from "./SubstitutedTranslation"; import {TextField} from "./Input/TextField"; import Wikidata, {WikidataResponse} from "../Logic/Web/Wikidata"; import {Translation} from "./i18n/Translation"; import {AllTagsPanel} from "./AllTagsPanel"; +import NearbyImages, {NearbyImageOptions, P4CPicture, SelectOneNearbyImage} from "./Popup/NearbyImages"; +import Lazy from "./Base/Lazy"; +import ChangeTagAction from "../Logic/Osm/Actions/ChangeTagAction"; +import {Tag} from "../Logic/Tags/Tag"; +import {And} from "../Logic/Tags/And"; +import {SaveButton} from "./Popup/SaveButton"; +import {MapillaryLink} from "./BigComponents/MapillaryLink"; +import {CheckBox} from "./Input/Checkboxes"; +import Slider from "./Input/Slider"; +import List from "./Base/List"; +import StatisticsPanel from "./BigComponents/StatisticsPanel"; +import {OsmFeature} from "../Models/OsmFeature"; +import EditableTagRendering from "./Popup/EditableTagRendering"; +import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; export interface SpecialVisualization { funcName: string, constr: ((state: FeaturePipelineState, tagSource: UIEventSource, argument: string[], guistate: DefaultGuiState,) => BaseUIElement), - docs: string, + docs: string | BaseUIElement, example?: string, args: { name: string, defaultValue?: string, doc: string, required?: false | boolean }[], getLayerDependencies?: (argument: string[]) => string[] @@ -141,33 +154,172 @@ class CloseNoteButton implements SpecialVisualization { } +class NearbyImageVis implements SpecialVisualization { + args: { name: string; defaultValue?: string; doc: string; required?: boolean }[] = [ + + { + name: "mode", + defaultValue: "expandable", + doc: "Indicates how this component is initialized. Options are: \n\n- `open`: always show and load the pictures\n- `collapsable`: show the pictures, but a user can collapse them\n- `expandable`: shown by default; but a user can collapse them." + }, + { + name: "mapillary", + defaultValue: "true", + doc: "If 'true', includes a link to mapillary on this location." + } + ] + docs = "A component showing nearby images loaded from various online services such as Mapillary. In edit mode and when used on a feature, the user can select an image to add to the feature"; + funcName = "nearby_images"; + + constr(state: FeaturePipelineState, tagSource: UIEventSource, args: string[], guistate: DefaultGuiState): BaseUIElement { + const t = Translations.t.image.nearbyPictures + const mode: "open" | "expandable" | "collapsable" = args[0] + const feature = state.allElements.ContainingFeatures.get(tagSource.data.id) + const [lon, lat] = GeoOperations.centerpointCoordinates(feature) + const id: string = tagSource.data["id"] + const canBeEdited: boolean = !!(id?.match("(node|way|relation)/-?[0-9]+")) + const selectedImage = new UIEventSource(undefined); + + + let saveButton: BaseUIElement = undefined + if (canBeEdited) { + const confirmText: BaseUIElement = new SubstitutedTranslation(t.confirm, tagSource, state) + + const onSave = async () => { + console.log("Selected a picture...", selectedImage.data) + const osmTags = selectedImage.data.osmTags + const tags: Tag[] = [] + for (const key in osmTags) { + tags.push(new Tag(key, osmTags[key])) + } + await state?.changes?.applyAction( + new ChangeTagAction( + id, + new And(tags), + tagSource, + { + theme: state?.layoutToUse.id, + changeType: "link-image" + } + ) + ) + }; + saveButton = new SaveButton(selectedImage, state.osmConnection, confirmText, t.noImageSelected) + .onClick(onSave).SetClass("flex justify-end") + } + + const nearby = new Lazy(() => { + const towardsCenter = new CheckBox(t.onlyTowards, false) + + const radiusValue = state?.osmConnection?.GetPreference("nearby-images-radius", "300").sync(s => Number(s), [], i => "" + i) ?? new UIEventSource(300); + + const radius = new Slider(25, 500, { + value: + radiusValue, step: 25 + }) + const alreadyInTheImage = AllImageProviders.LoadImagesFor(tagSource) + const options: NearbyImageOptions & { value } = { + lon, lat, + searchRadius: 500, + shownRadius: radius.GetValue(), + value: selectedImage, + blacklist: alreadyInTheImage, + towardscenter: towardsCenter.GetValue(), + maxDaysOld: 365 * 5 + + }; + const slideshow = canBeEdited ? new SelectOneNearbyImage(options, state) : new NearbyImages(options, state); + const controls = new Combine([towardsCenter, + new Combine([ + new VariableUiElement(radius.GetValue().map(radius => t.withinRadius.Subs({radius}))), radius + ]).SetClass("flex justify-between") + ]).SetClass("flex flex-col"); + return new Combine([slideshow, + controls, + saveButton, + new MapillaryLinkVis().constr(state, tagSource, []).SetClass("mt-6")]) + }); + + let withEdit: BaseUIElement = nearby; + if (canBeEdited) { + withEdit = new Combine([ + t.hasMatchingPicture, + nearby + ]).SetClass("flex flex-col") + } + + if (mode === 'open') { + return withEdit + } + const toggleState = new UIEventSource(mode === 'collapsable') + return new Toggle( + new Combine([new Title(t.title), withEdit]), + new Title(t.browseNearby).onClick(() => toggleState.setData(true)), + toggleState + ) + } + +} + +export class MapillaryLinkVis implements SpecialVisualization { + funcName = "mapillary_link" + docs = "Adds a button to open mapillary on the specified location" + args = [{ + name: "zoom", + doc: "The startzoom of mapillary", + defaultValue: "18" + }]; + + public constr(state, tagsSource, args) { + const feat = state.allElements.ContainingFeatures.get(tagsSource.data.id); + const [lon, lat] = GeoOperations.centerpointCoordinates(feat); + let zoom = Number(args[0]) + if (isNaN(zoom)) { + zoom = 18 + } + return new MapillaryLink({ + locationControl: new UIEventSource({ + lat, lon, zoom + }) + }) + } +} + export default class SpecialVisualizations { public static specialVisualizations: SpecialVisualization[] = SpecialVisualizations.init() + public static DocumentationFor(viz: string | SpecialVisualization): BaseUIElement | undefined { + if (typeof viz === "string") { + viz = SpecialVisualizations.specialVisualizations.find(sv => sv.funcName === viz) + } + if (viz === undefined) { + return undefined; + } + return new Combine( + [ + new Title(viz.funcName, 3), + viz.docs, + viz.args.length > 0 ? new Table(["name", "default", "description"], + viz.args.map(arg => { + let defaultArg = arg.defaultValue ?? "_undefined_" + if (defaultArg == "") { + defaultArg = "_empty string_" + } + return [arg.name, defaultArg, arg.doc]; + }) + ) : undefined, + new Title("Example usage of " + viz.funcName, 4), + new FixedUiElement( + viz.example ?? "`{" + viz.funcName + "(" + viz.args.map(arg => arg.defaultValue).join(",") + ")}`" + ).SetClass("literal-code"), + + ]) + } + public static HelpMessage() { - const helpTexts = - SpecialVisualizations.specialVisualizations.map(viz => new Combine( - [ - new Title(viz.funcName, 3), - viz.docs, - viz.args.length > 0 ? new Table(["name", "default", "description"], - viz.args.map(arg => { - let defaultArg = arg.defaultValue ?? "_undefined_" - if (defaultArg == "") { - defaultArg = "_empty string_" - } - return [arg.name, defaultArg, arg.doc]; - }) - ) : undefined, - new Title("Example usage of " + viz.funcName, 4), - new FixedUiElement( - viz.example ?? "`{" + viz.funcName + "(" + viz.args.map(arg => arg.defaultValue).join(",") + ")}`" - ).SetClass("literal-code"), - - ] - )); + const helpTexts = SpecialVisualizations.specialVisualizations.map(viz => SpecialVisualizations.DocumentationFor(viz)); return new Combine([ new Combine([ @@ -177,11 +329,18 @@ export default class SpecialVisualizations { "In a tagrendering, some special values are substituted by an advanced UI-element. This allows advanced features and visualizations to be reused by custom themes or even to query third-party API's.", "General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_name(args):cssStyle}`. Note that you _do not_ need to use quotes around your arguments, the comma is enough to separate them. This also implies you cannot use a comma in your args", new Title("Using expanded syntax", 4), - `Instead of using \`{"render": {"en": "{some_special_visualisation(some_arg, some other really long message, more args)} , "nl": "{some_special_visualisation(some_arg, een boodschap in een andere taal, more args)}}, one can also write`, + `Instead of using \`{"render": {"en": "{some_special_visualisation(some_arg, some other really long message, more args)} , "nl": "{some_special_visualisation(some_arg, een boodschap in een andere taal, more args)}}\`, one can also write`, new FixedUiElement(JSON.stringify({ render: { special: { type: "some_special_visualisation", + before: { + en: "Some text to prefix before the special element (e.g. a title)", + nl: "Een tekst om voor het element te zetten (bv. een titel)" + }, + after: { + en: "Some text to put after the element, e.g. a footer" + }, "argname": "some_arg", "message": { en: "some other really long message", @@ -190,7 +349,7 @@ export default class SpecialVisualizations { "other_arg_name": "more args" } } - })).SetClass("code") + }, null, " ")).SetClass("code") ]).SetClass("flex flex-col"), ...helpTexts ] @@ -244,20 +403,25 @@ export default class SpecialVisualizations { args: [ { name: "keyToShowWikipediaFor", - doc: "Use the wikidata entry from this key to show the wikipedia article for", - defaultValue: "wikidata" + doc: "Use the wikidata entry from this key to show the wikipedia article for. Multiple keys can be given (separated by ';'), in which case the first matching value is used", + defaultValue: "wikidata;wikipedia" } ], example: "`{wikipedia()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the wikipedia page of whom the feature was named after. Also remember that these can be styled, e.g. `{wikipedia():max-height: 10rem}` to limit the height", - constr: (_, tagsSource, args) => - new VariableUiElement( - tagsSource.map(tags => tags[args[0]]) + constr: (_, tagsSource, args) => { + const keys = args[0].split(";").map(k => k.trim()) + return new VariableUiElement( + tagsSource.map(tags => { + const key = keys.find(k => tags[k] !== undefined && tags[k] !== "") + return tags[key]; + }) .map(wikidata => { const wikidatas: string[] = Utils.NoEmpty(wikidata?.split(";")?.map(wd => wd.trim()) ?? []) return new WikipediaBox(wikidatas) }) - ) + ); + } }, { @@ -304,13 +468,13 @@ export default class SpecialVisualizations { example: "`{minimap()}`, `{minimap(17, id, _list_of_embedded_feature_ids_calculated_by_calculated_tag):height:10rem; border: 2px solid black}`", constr: (state, tagSource, args, _) => { - if(state === undefined){ + if (state === undefined) { return undefined } const keys = [...args] keys.splice(0, 1) const featureStore = state.allElements.ContainingFeatures - const featuresToShow: UIEventSource<{ freshness: Date, feature: any }[]> = tagSource.map(properties => { + const featuresToShow: Store<{ freshness: Date, feature: any }[]> = tagSource.map(properties => { const values: string[] = Utils.NoNull(keys.map(key => properties[key])) const features: { freshness: Date, feature: any }[] = [] for (const value of values) { @@ -364,7 +528,7 @@ export default class SpecialVisualizations { leafletMap: minimap["leafletMap"], zoomToFeatures: true, layers: state.filteredLayers, - features: new StaticFeatureSource(featuresToShow, true) + features: new StaticFeatureSource(featuresToShow) } ) @@ -410,7 +574,7 @@ export default class SpecialVisualizations { leafletMap: minimap["leafletMap"], zoomToFeatures: true, layerToShow: new LayerConfig(left_right_style_json, "all_known_layers", true), - features: new StaticFeatureSource([copy], false), + features: StaticFeatureSource.fromGeojson([copy]), state } ) @@ -540,7 +704,7 @@ export default class SpecialVisualizations { } } - const listSource: UIEventSource = tagSource + const listSource: Store = tagSource .map(tags => { try { const value = tags[args[0]] @@ -601,8 +765,8 @@ export default class SpecialVisualizations { }, { funcName: "canonical", - docs: "Converts a short, canonical value into the long, translated text", - example: "{canonical(length)} will give 42 metre (in french)", + docs: "Converts a short, canonical value into the long, translated text including the unit. This only works if a `unit` is defined for the corresponding value. The unit specification will be included in the text. ", + example: "If the object has `length=42`, then `{canonical(length)}` will be shown as **42 meter** (in english), **42 metre** (in french), ...", args: [{ name: "key", doc: "The key of the tag to give the canonical text for", @@ -658,7 +822,7 @@ export default class SpecialVisualizations { const text = args[2] const autoapply = args[3]?.toLowerCase() === "true" const overwrite = args[4]?.toLowerCase() === "true" - const featureIds: UIEventSource = tagsSource.map(tags => { + const featureIds: Store = tagsSource.map(tags => { const ids = tags[featureIdsKey] try { if (ids === undefined) { @@ -743,7 +907,14 @@ export default class SpecialVisualizations { return new OpenIdEditor(state, undefined, feature.data.id) } }, - + { + funcName: "open_in_josm", + docs: "Opens the current view in the JOSM-editor", + args: [], + constr: (state, feature) => { + return new OpenJosm(state) + } + }, { funcName: "clear_location_history", @@ -795,7 +966,7 @@ export default class SpecialVisualizations { await state.osmConnection.reopenNote(id, txt.data) await state.osmConnection.closeNote(id) } else { - await state.osmConnection.addCommentToNode(id, txt.data) + await state.osmConnection.addCommentToNote(id, txt.data) } NoteCommentElement.addCommentTo(txt.data, tags, state) txt.setData("") @@ -891,7 +1062,7 @@ export default class SpecialVisualizations { const uploader = new ImgurUploader(url => { isUploading.setData(false) - state.osmConnection.addCommentToNode(id, url) + state.osmConnection.addCommentToNote(id, url) NoteCommentElement.addCommentTo(url, tags, state) }) @@ -935,6 +1106,199 @@ export default class SpecialVisualizations { } return new SubstitutedTranslation(title, tagsSource, state) })) + }, + new NearbyImageVis(), + new MapillaryLinkVis(), + { + funcName: "maproulette_task", + args: [], + constr(state, tagSource, argument, guistate) { + let parentId = tagSource.data.mr_challengeId; + let challenge = Stores.FromPromise(Utils.downloadJsonCached(`https://maproulette.org/api/v2/challenge/${parentId}`, 24 * 60 * 60 * 1000)); + + let details = new VariableUiElement(challenge.map(challenge => { + let listItems: BaseUIElement[] = []; + let title: BaseUIElement; + + if (challenge?.name) { + title = new Title(challenge.name); + } + + if (challenge?.description) { + listItems.push(new FixedUiElement(challenge.description)); + } + + if (challenge?.instruction) { + listItems.push(new FixedUiElement(challenge.instruction)); + } + + if (listItems.length === 0) { + return undefined; + } else { + return [title, new List(listItems)]; + } + })) + return details; + }, + docs: "Show details of a MapRoulette task" + }, + { + funcName: "statistics", + docs: "Show general statistics about the elements currently in view. Intended to use on the `current_view`-layer", + args: [], + constr: (state, tagsSource, args, guiState) => { + const elementsInview = new UIEventSource<{ distance: number, center: [number, number], element: OsmFeature, layer: LayerConfig }[]>([]); + + function update() { + const mapCenter = <[number, number]>[state.locationControl.data.lon, state.locationControl.data.lon] + const bbox = state.currentBounds.data + const elements = state.featurePipeline.getAllVisibleElementsWithmeta(bbox).map(el => { + const distance = GeoOperations.distanceBetween(el.center, mapCenter) + return {...el, distance} + }) + elements.sort((e0, e1) => e0.distance - e1.distance) + elementsInview.setData(elements) + + } + + state.currentBounds.addCallbackAndRun(update) + state.featurePipeline.newDataLoadedSignal.addCallback(update); + state.filteredLayers.addCallbackAndRun(fls => { + for (const fl of fls) { + fl.isDisplayed.addCallback(update) + fl.appliedFilters.addCallback(update) + } + }) + return new StatisticsPanel(elementsInview, state) + } + }, + { + funcName: "send_email", + docs: "Creates a `mailto`-link where some fields are already set and correctly escaped. The user will be promted to send the email", + args: [ + { + name: "to", + doc: "Who to send the email to?", + required: true + }, + { + name: "subject", + doc: "The subject of the email", + required: true + }, + { + name: "body", + doc: "The text in the email", + required: true + }, + + { + name: "button_text", + doc: "The text shown on the button in the UI", + required: true + } + ], + constr(state, tags, args) { + return new VariableUiElement(tags.map(tags => { + + const [to, subject, body, button_text] = args.map(str => Utils.SubstituteKeys(str, tags)) + const url = "mailto:" + to + "?subject=" + encodeURIComponent(subject) + "&body=" + encodeURIComponent(body) + return new SubtleButton(Svg.envelope_svg(), button_text, { + url + }) + + })) + } + }, + { + funcName: "multi", + docs: "Given an embedded tagRendering (read only) and a key, will read the keyname as a JSON-list. Every element of this list will be considered as tags and rendered with the tagRendering", + example: "```json\n" + JSON.stringify({ + render: { + special: { + type: "multi", + key: "_doors_from_building_properties", + tagRendering: { + render: "The building containing this feature has a door of width {entrance:width}" + } + } + } + }, null, " ") + "```", + args: [ + { + name: "key", + doc: "The property to read and to interpret as a list of properties", + required: true + }, + { + name: "tagrendering", + doc: "An entire tagRenderingConfig", + required: true + } + ] + , + constr(state, featureTags, args) { + const [key, tr] = args + const translation = new Translation({"*": tr}) + return new VariableUiElement(featureTags.map(tags => { + const properties: object[] = JSON.parse(tags[key]) + const elements = [] + for (const property of properties) { + const subsTr = new SubstitutedTranslation(translation, new UIEventSource(property), state) + elements.push(subsTr) + } + return new List(elements) + })) + } + }, + { + funcName: "steal", + docs: "Shows a tagRendering from a different object as if this was the object itself", + args: [{ + name: "featureId", + doc: "The key of the attribute which contains the id of the feature from which to use the tags", + required: true + }, + { + name: "tagRenderingId", + doc: "The layer-id and tagRenderingId to render. Can be multiple value if ';'-separated (in which case every value must also contain the layerId, e.g. `layerId.tagRendering0; layerId.tagRendering1`). Note: this can cause layer injection", + required: true + }], + constr(state, featureTags, args) { + const [featureIdKey, layerAndtagRenderingIds] = args + const tagRenderings: [LayerConfig, TagRenderingConfig][] = [] + for (const layerAndTagRenderingId of layerAndtagRenderingIds.split(";")) { + const [layerId, tagRenderingId] = layerAndTagRenderingId.trim().split(".") + const layer = state.layoutToUse.layers.find(l => l.id === layerId) + const tagRendering = layer.tagRenderings.find(tr => tr.id === tagRenderingId) + tagRenderings.push([layer, tagRendering]) + } + return new VariableUiElement(featureTags.map(tags => { + const featureId = tags[featureIdKey] + if (featureId === undefined) { + return undefined; + } + const otherTags = state.allElements.getEventSourceById(featureId) + const elements: BaseUIElement[] = [] + for (const [layer, tagRendering] of tagRenderings) { + const el = new EditableTagRendering(otherTags, tagRendering, layer.units, state, {}) + elements.push(el) + } + if (elements.length === 1) { + return elements[0] + } + return new Combine(elements).SetClass("flex flex-col"); + })) + }, + + getLayerDependencies(args): string[] { + const [_, tagRenderingId] = args + if (tagRenderingId.indexOf(".") < 0) { + throw "Error: argument 'layerId.tagRenderingId' of special visualisation 'steal' should contain a dot" + } + const [layerId, __] = tagRenderingId.split(".") + return [layerId] + } } ] diff --git a/UI/StatisticsGUI.ts b/UI/StatisticsGUI.ts new file mode 100644 index 0000000000..fa454d50d2 --- /dev/null +++ b/UI/StatisticsGUI.ts @@ -0,0 +1,102 @@ +/** + * The statistics-gui shows statistics from previous MapComplete-edits + */ +import {UIEventSource} from "../Logic/UIEventSource"; +import {VariableUiElement} from "./Base/VariableUIElement"; +import ChartJs from "./Base/ChartJs"; +import Loading from "./Base/Loading"; +import {Utils} from "../Utils"; +import Combine from "./Base/Combine"; + +export default class StatisticsGUI { + + public static setup(): void{ + + + new VariableUiElement(index.map(paths => { + if (paths === undefined) { + return new Loading("Loading overview...") + } + const downloaded = new UIEventSource<{ features: ChangeSetData[] }[]>([]) + + for (const filepath of paths) { + Utils.downloadJson(homeUrl + filepath).then(data => { + downloaded.data.push(data) + downloaded.ping() + }) + } + + return new VariableUiElement(downloaded.map(downloaded => { + const themeBreakdown = new Map() + for (const feats of downloaded) { + console.log("Feats:", feats) + for (const feat of feats.features) { + const key = feat.properties.metadata.theme + const count = themeBreakdown.get(key) ?? 0 + themeBreakdown.set(key, count + 1) + } + } + + const keys = Array.from(themeBreakdown.keys()) + const values = keys.map( k => themeBreakdown.get(k)) + + console.log(keys, values) + return new Combine([ + "Got " + downloaded.length + " files out of " + paths.length, + new ChartJs({ + type: "pie", + data: { + datasets: [{data: values}], + labels: keys + } + }).SetClass("w-1/3 h-full") + ]).SetClass("block w-full h-full") + })).SetClass("block w-full h-full") + })).SetClass("block w-full h-full").AttachTo("maindiv") + + } + +} + +const homeUrl = "https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/Docs/Tools/stats/" +const stats_files = "file-overview.json" +const index = UIEventSource.FromPromise(Utils.downloadJson(homeUrl + stats_files)) + + +interface ChangeSetData { + "id": number, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [number, number][][] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": string, + "uid": string, + "editor": string, + "comment": string, + "comments_count": number, + "source": string, + "imagery_used": string, + "date": string, + "reviewed_features": [], + "create": number, + "modify": number, + "delete": number, + "area": number, + "is_suspect": boolean, + "harmful": any, + "checked": boolean, + "check_date": any, + "metadata": { + "host": string, + "theme": string, + "imagery": string, + "language": string + } + } +} diff --git a/UI/SubstitutedTranslation.ts b/UI/SubstitutedTranslation.ts index 8747a54c7e..8fcac61beb 100644 --- a/UI/SubstitutedTranslation.ts +++ b/UI/SubstitutedTranslation.ts @@ -1,4 +1,4 @@ -import {UIEventSource} from "../Logic/UIEventSource"; +import {Store, UIEventSource} from "../Logic/UIEventSource"; import {Translation} from "./i18n/Translation"; import Locale from "./i18n/Locale"; import {FixedUiElement} from "./Base/FixedUiElement"; @@ -17,7 +17,8 @@ export class SubstitutedTranslation extends VariableUiElement { translation: Translation, tagsSource: UIEventSource, state: FeaturePipelineState, - mapping: Map = undefined) { + mapping: Map, argument: string[], guistate: DefaultGuiState) => BaseUIElement)> = undefined) { const extraMappings: SpecialVisualization[] = []; @@ -25,9 +26,7 @@ export class SubstitutedTranslation extends VariableUiElement { extraMappings.push( { funcName: key, - constr: (() => { - return value - }), + constr: typeof value === "function" ? value : () => value, docs: "Dynamically injected input element", args: [], example: "" @@ -50,9 +49,17 @@ export class SubstitutedTranslation extends VariableUiElement { const allElements = SubstitutedTranslation.ExtractSpecialComponents(txt, extraMappings).map( proto => { if (proto.fixed !== undefined) { + if(tagsSource === undefined){ + return Utils.SubstituteKeys(proto.fixed, undefined) + } return new VariableUiElement(tagsSource.map(tags => Utils.SubstituteKeys(proto.fixed, tags))); } const viz = proto.special; + if(viz === undefined){ + console.error("SPECIALRENDERING UNDEFINED for", tagsSource.data?.id, "THIS IS REALLY WEIRD") + return undefined + + } try { return viz.func.constr(state, tagsSource, proto.special.args, DefaultGuiState.state)?.SetStyle(proto.special.style); } catch (e) { @@ -71,6 +78,17 @@ export class SubstitutedTranslation extends VariableUiElement { this.SetClass("w-full") } + /** + * + * // Return empty list on empty input + * SubstitutedTranslation.ExtractSpecialComponents("") // => [] + * + * // Advanced cases with commas, braces and newlines should be handled without problem + * const templates = SubstitutedTranslation.ExtractSpecialComponents("{send_email(&LBRACEemail&RBRACE,Broken bicycle pump,Hello&COMMA\n\nWith this email&COMMA I'd like to inform you that the bicycle pump located at https://mapcomplete.osm.be/cyclofix?lat=&LBRACE_lat&RBRACE&lon=&LBRACE_lon&RBRACE&z=18#&LBRACEid&RBRACE is broken.\n\n Kind regards,Report this bicycle pump as broken)}") + * const templ = templates[0] + * templ.special.func.funcName // => "send_email" + * templ.special.args[0] = "{email}" + */ public static ExtractSpecialComponents(template: string, extraMappings: SpecialVisualization[] = []): { fixed?: string, special?: { @@ -79,11 +97,15 @@ export class SubstitutedTranslation extends VariableUiElement { style: string } }[] { + + if(template === ""){ + return [] + } for (const knownSpecial of extraMappings.concat(SpecialVisualizations.specialVisualizations)) { - + // Note: the '.*?' in the regex reads as 'any character, but in a non-greedy way' - const matched = template.match(`(.*){${knownSpecial.funcName}\\((.*?)\\)(:.*)?}(.*)`); + const matched = template.match(new RegExp(`(.*){${knownSpecial.funcName}\\((.*?)\\)(:.*)?}(.*)`, "s")); if (matched != null) { // We found a special component that should be brought to live @@ -95,7 +117,10 @@ export class SubstitutedTranslation extends VariableUiElement { if (argument.length > 0) { const realArgs = argument.split(",").map(str => str.trim() .replace(/&LPARENS/g, '(') - .replace(/&RPARENS/g, ')')); + .replace(/&RPARENS/g, ')') + .replace(/&LBRACE/g, '{') + .replace(/&RBRACE/g, '}') + .replace(/&COMMA/g, ',')); for (let i = 0; i < realArgs.length; i++) { if (args.length <= i) { args.push(realArgs[i]); @@ -122,7 +147,7 @@ export class SubstitutedTranslation extends VariableUiElement { // Hmm, we might have found an invalid rendering name console.warn("Found a suspicious special rendering value in: ", template, " did you mean one of: ", SpecialVisualizations.specialVisualizations.map(sp => sp.funcName + "()").join(", ")) } - + // IF we end up here, no changes have to be made - except to remove any resting {} return [{fixed: template}]; } diff --git a/UI/Wikipedia/WikidataPreviewBox.ts b/UI/Wikipedia/WikidataPreviewBox.ts index ca86a70a93..ca997d42d6 100644 --- a/UI/Wikipedia/WikidataPreviewBox.ts +++ b/UI/Wikipedia/WikidataPreviewBox.ts @@ -22,7 +22,8 @@ export default class WikidataPreviewBox extends VariableUiElement { private static extraProperties: { requires?: { p: number, q?: number }[], property: string, - display: TypedTranslation<{value}> | Map BaseUIElement) /*If translation: Subs({value: * }) */> + display: TypedTranslation<{value}> | Map BaseUIElement) /*If translation: Subs({value: * }) */>, + textMode?: Map }[] = [ { requires: WikidataPreviewBox.isHuman, @@ -34,6 +35,14 @@ export default class WikidataPreviewBox extends VariableUiElement { ['Q1052281', () => Svg.gender_trans_svg().SetStyle("width: 1rem; height: auto")/*'transwomen'*/], ['Q2449503', () => Svg.gender_trans_svg().SetStyle("width: 1rem; height: auto")/*'transmen'*/], ['Q48270', () => Svg.gender_queer_svg().SetStyle("width: 1rem; height: auto")] + ]), + textMode: new Map([ + ['Q6581097', "♂️"], + ['Q6581072', "♀️"], + ['Q1097630', "⚥️"], + ['Q1052281', "🏳️‍⚧️"/*'transwomen'*/], + ['Q2449503', "🏳️‍⚧️"/*'transmen'*/], + ['Q48270', "🏳️‍🌈 ⚧"] ]) }, { @@ -48,7 +57,7 @@ export default class WikidataPreviewBox extends VariableUiElement { } ] - constructor(wikidataId: UIEventSource) { + constructor(wikidataId: UIEventSource, options?: {noImages?: boolean}) { let inited = false; const wikidata = wikidataId .stabilized(250) @@ -73,18 +82,16 @@ export default class WikidataPreviewBox extends VariableUiElement { return new FixedUiElement(maybeWikidata["error"]).SetClass("alert") } const wikidata = maybeWikidata["success"] - return WikidataPreviewBox.WikidataResponsePreview(wikidata) + return WikidataPreviewBox.WikidataResponsePreview(wikidata, options) })) } - // @ts-ignore - - public static WikidataResponsePreview(wikidata: WikidataResponse): BaseUIElement { + public static WikidataResponsePreview(wikidata: WikidataResponse, options?: {noImages?: boolean}): BaseUIElement { let link = new Link( new Combine([ wikidata.id, - Svg.wikidata_svg().SetStyle("width: 2.5rem").SetClass("block") + options?.noImages ? wikidata.id : Svg.wikidata_svg().SetStyle("width: 2.5rem").SetClass("block") ]).SetClass("flex"), Wikidata.IdToArticle(wikidata.id), true)?.SetClass("must-link") @@ -93,7 +100,7 @@ export default class WikidataPreviewBox extends VariableUiElement { [Translation.fromMap(wikidata.labels)?.SetClass("font-bold"), link]).SetClass("flex justify-between"), Translation.fromMap(wikidata.descriptions), - WikidataPreviewBox.QuickFacts(wikidata) + WikidataPreviewBox.QuickFacts(wikidata, options) ]).SetClass("flex flex-col link-underline") @@ -103,7 +110,7 @@ export default class WikidataPreviewBox extends VariableUiElement { } - if (imageUrl) { + if (imageUrl && !options?.noImages) { imageUrl = WikimediaImageProvider.singleton.PrepUrl(imageUrl).url info = new Combine([new Img(imageUrl).SetStyle("max-width: 5rem; width: unset; height: 4rem").SetClass("rounded-xl mr-2"), info.SetClass("w-full")]).SetClass("flex") @@ -114,7 +121,7 @@ export default class WikidataPreviewBox extends VariableUiElement { return info } - public static QuickFacts(wikidata: WikidataResponse): BaseUIElement { + public static QuickFacts(wikidata: WikidataResponse, options?: {noImages?: boolean}): BaseUIElement { const els: BaseUIElement[] = [] for (const extraProperty of WikidataPreviewBox.extraProperties) { @@ -134,7 +141,7 @@ export default class WikidataPreviewBox extends VariableUiElement { } const key = extraProperty.property - const display = extraProperty.display + const display = (options?.noImages ? extraProperty.textMode: extraProperty.display) ?? extraProperty.display if (wikidata.claims?.get(key) === undefined) { continue } diff --git a/UI/Wikipedia/WikidataSearchBox.ts b/UI/Wikipedia/WikidataSearchBox.ts index 87afd99054..ccbfcce7b9 100644 --- a/UI/Wikipedia/WikidataSearchBox.ts +++ b/UI/Wikipedia/WikidataSearchBox.ts @@ -2,7 +2,7 @@ import Combine from "../Base/Combine"; import {InputElement} from "../Input/InputElement"; import {TextField} from "../Input/TextField"; import Translations from "../i18n/Translations"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {ImmutableStore, Store, Stores, UIEventSource} from "../../Logic/UIEventSource"; import Wikidata, {WikidataResponse} from "../../Logic/Web/Wikidata"; import Locale from "../i18n/Locale"; import {VariableUiElement} from "../Base/VariableUIElement"; @@ -10,6 +10,7 @@ import WikidataPreviewBox from "./WikidataPreviewBox"; import Title from "../Base/Title"; import WikipediaBox from "./WikipediaBox"; import Svg from "../../Svg"; +import Loading from "../Base/Loading"; export default class WikidataSearchBox extends InputElement { @@ -51,48 +52,55 @@ export default class WikidataSearchBox extends InputElement { }) const selectedWikidataId = this.wikidataId - const lastSearchResults = new UIEventSource([]) - const searchFailMessage = new UIEventSource(undefined) - searchField.GetValue().addCallbackAndRunD(searchText => { - if (searchText.length < 3) { - return; + const tooShort = new ImmutableStore<{success: WikidataResponse[]}>({success: undefined}) + const searchResult: Store<{success?: WikidataResponse[], error?: any}> = searchField.GetValue().bind( + searchText => { + if (searchText.length < 3) { + return tooShort; + } + const lang = Locale.language.data + const key = lang + ":" + searchText + let promise = WikidataSearchBox._searchCache.get(key) + if (promise === undefined) { + promise = Wikidata.searchAndFetch(searchText, { + lang, + maxCount: 5, + notInstanceOf: this.notInstanceOf, + instanceOf: this.instanceOf + } + ) + WikidataSearchBox._searchCache.set(key, promise) + } + return Stores.FromPromiseWithErr(promise) } - searchFailMessage.setData(undefined) + ) + - const lang = Locale.language.data - const key = lang + ":" + searchText - let promise = WikidataSearchBox._searchCache.get(key) - if (promise === undefined) { - promise = Wikidata.searchAndFetch(searchText, { - lang, - maxCount: 5, - notInstanceOf: this.notInstanceOf, - instanceOf: this.instanceOf - } - ) - WikidataSearchBox._searchCache.set(key, promise) - } - - lastSearchResults.WaitForPromise(promise, err => searchFailMessage.setData(err)) - - }) - - - const previews = new VariableUiElement(lastSearchResults.map(searchResults => { - if (searchFailMessage.data !== undefined) { - return new Combine([Translations.t.general.wikipedia.failed.Clone().SetClass("alert"), searchFailMessage.data]) - } + const previews = new VariableUiElement(searchResult.map(searchResultsOrFail => { if (searchField.GetValue().data.length === 0) { return Translations.t.general.wikipedia.doSearch } + if (searchField.GetValue().data.length < 3) { + return Translations.t.general.wikipedia.searchToShort + } + + if( searchResultsOrFail === undefined) { + return new Loading(Translations.t.general.loading) + } + + if (searchResultsOrFail.error !== undefined) { + return new Combine([Translations.t.general.wikipedia.failed.Clone().SetClass("alert"), searchResultsOrFail.error]) + } + + + const searchResults = searchResultsOrFail.success; if (searchResults.length === 0) { return Translations.t.general.wikipedia.noResults.Subs({search: searchField.GetValue().data ?? ""}) } - return new Combine(searchResults.map(wikidataresponse => { const el = WikidataPreviewBox.WikidataResponsePreview(wikidataresponse).SetClass("rounded-xl p-1 sm:p-2 md:p-3 m-px border-2 sm:border-4 transition-colors") el.onClick(() => { @@ -110,7 +118,7 @@ export default class WikidataSearchBox extends InputElement { })).SetClass("flex flex-col") - }, [searchFailMessage])) + }, [searchField.GetValue()])) const full = new Combine([ new Title(Translations.t.general.wikipedia.searchWikidata, 3).SetClass("m-2"), diff --git a/UI/Wikipedia/WikipediaBox.ts b/UI/Wikipedia/WikipediaBox.ts index e096ceee74..a3f3ad66c0 100644 --- a/UI/Wikipedia/WikipediaBox.ts +++ b/UI/Wikipedia/WikipediaBox.ts @@ -8,7 +8,7 @@ import Title from "../Base/Title"; import Wikipedia from "../../Logic/Web/Wikipedia"; import Wikidata, {WikidataResponse} from "../../Logic/Web/Wikidata"; import {TabbedComponent} from "../Base/TabbedComponent"; -import {UIEventSource} from "../../Logic/UIEventSource"; +import {Store, UIEventSource} from "../../Logic/UIEventSource"; import Loading from "../Base/Loading"; import {FixedUiElement} from "../Base/FixedUiElement"; import Translations from "../i18n/Translations"; @@ -16,34 +16,35 @@ import Link from "../Base/Link"; import WikidataPreviewBox from "./WikidataPreviewBox"; import {Paragraph} from "../Base/Paragraph"; +export interface WikipediaBoxOptions { + addHeader: boolean, + firstParagraphOnly: boolean, + noImages: boolean + currentState?: UIEventSource<"loading" | "loaded" | "error"> +} + export default class WikipediaBox extends Combine { - - public static configuration = { - onlyFirstParagaph: false, - addHeader: false - } - - constructor(wikidataIds: string[]) { - + + constructor(wikidataIds: string[], options?: WikipediaBoxOptions) { const mainContents = [] - - const pages = wikidataIds.map(wdId => WikipediaBox.createLinkedContent(wdId.trim())) + options = options??{addHeader: false, firstParagraphOnly: true, noImages: false}; + const pages = wikidataIds.map(entry => WikipediaBox.createLinkedContent(entry.trim(), options)) if (wikidataIds.length == 1) { const page = pages[0] mainContents.push( new Combine([ new Combine([ - Svg.wikipedia_svg().SetStyle("width: 1.5rem").SetClass("inline-block mr-3"), + options.noImages ? undefined : Svg.wikipedia_ui().SetStyle("width: 1.5rem").SetClass("inline-block mr-3"), page.titleElement]).SetClass("flex"), page.linkElement ]).SetClass("flex justify-between align-middle"), ) - mainContents.push(page.contents) + mainContents.push(page.contents.SetClass("overflow-auto normal-background rounded-lg")) } else if (wikidataIds.length > 1) { const tabbed = new TabbedComponent( pages.map(page => { - const contents = page.contents.SetClass("block").SetStyle("max-height: inherit; height: inherit; padding-bottom: 3.3rem") + const contents = page.contents.SetClass("overflow-auto normal-background rounded-lg block").SetStyle("max-height: inherit; height: inherit; padding-bottom: 3.3rem") return { header: page.titleElement.SetClass("pl-2 pr-2"), content: new Combine([ @@ -57,7 +58,7 @@ export default class WikipediaBox extends Combine { }), 0, { - leftOfHeader: Svg.wikipedia_svg().SetStyle("width: 1.5rem; align-self: center;").SetClass("mr-4"), + leftOfHeader: options.noImages ? undefined : Svg.wikipedia_svg().SetStyle("width: 1.5rem; align-self: center;").SetClass("mr-4"), styleHeader: header => header.SetClass("subtle-background").SetStyle("height: 3.3rem") } ) @@ -68,13 +69,58 @@ export default class WikipediaBox extends Combine { super(mainContents) - + this.SetClass("block rounded-xl subtle-background m-1 p-2 flex flex-col") .SetStyle("max-height: inherit") } - private static createLinkedContent(wikidataId: string): { + private static createLinkedContent(entry: string, options: WikipediaBoxOptions): { + titleElement: BaseUIElement, + contents: BaseUIElement, + linkElement: BaseUIElement + } { + if (entry.match("[qQ][0-9]+")) { + return WikipediaBox.createWikidatabox(entry, options) + } else { + return WikipediaBox.createWikipediabox(entry, options) + } + } + + /** + * Given a ':'-string, constructs the wikipedia article + */ + private static createWikipediabox(wikipediaArticle: string, options: WikipediaBoxOptions): { + titleElement: BaseUIElement, + contents: BaseUIElement, + linkElement: BaseUIElement + } { + const wp = Translations.t.general.wikipedia; + + const article = Wikipedia.extractLanguageAndName(wikipediaArticle) + if (article === undefined) { + return { + titleElement: undefined, + contents: wp.noWikipediaPage, + linkElement: undefined + } + } + const wikipedia = new Wikipedia({language: article.language}) + const url = wikipedia.getPageUrl(article.pageName) + const linkElement = new Link(Svg.pop_out_svg().SetStyle("width: 1.2rem").SetClass("block "), url, true) .SetClass("flex items-center enable-links") + + return { + titleElement: new Title(article.pageName, 3), + contents: WikipediaBox.createContents(article.pageName, wikipedia, options), + linkElement + } + } + + /** + * Given a `Q1234`, constructs a wikipedia box (if a wikipedia page is available) or wikidata box as fallback. + * + */ + private static createWikidatabox(wikidataId: string, options: WikipediaBoxOptions): { titleElement: BaseUIElement, contents: BaseUIElement, linkElement: BaseUIElement @@ -82,7 +128,7 @@ export default class WikipediaBox extends Combine { const wp = Translations.t.general.wikipedia; - const wikiLink: UIEventSource<[string, string, WikidataResponse] | "loading" | "failed" | ["no page", WikidataResponse]> = + const wikiLink: Store<[string, string, WikidataResponse] | "loading" | "failed" | ["no page", WikidataResponse]> = Wikidata.LoadWikidataEntry(wikidataId) .map(maybewikidata => { if (maybewikidata === undefined) { @@ -124,17 +170,19 @@ export default class WikipediaBox extends Combine { } if (status[0] == "no page") { const [_, wd] = <[string, WikidataResponse]>status + options.currentState?.setData("loaded") return new Combine([ WikidataPreviewBox.WikidataResponsePreview(wd), wp.noWikipediaPage.Clone().SetClass("subtle")]).SetClass("flex flex-col p-4") } const [pagetitle, language, wd] = <[string, string, WikidataResponse]>status - return WikipediaBox.createContents(pagetitle, language, wd) + const wikipedia = new Wikipedia({language}) + const quickFacts = WikidataPreviewBox.QuickFacts(wd); + return WikipediaBox.createContents(pagetitle, wikipedia, {topBar: quickFacts, ...options}) }) - ).SetClass("overflow-auto normal-background rounded-lg") - + ) const titleElement = new VariableUiElement(wikiLink.map(state => { if (typeof state !== "string") { @@ -145,23 +193,23 @@ export default class WikipediaBox extends Combine { } return new Title(pagetitle, 3) } - //return new Title(Translations.t.general.wikipedia.wikipediaboxTitle.Clone(), 2) - return new Link(new Title(wikidataId, 3), "https://www.wikidata.org/wiki/"+wikidataId, true) + return new Link(new Title(wikidataId, 3), "https://www.wikidata.org/wiki/" + wikidataId, true) })) const linkElement = new VariableUiElement(wikiLink.map(state => { if (typeof state !== "string") { const [pagetitle, language] = state + const popout = options.noImages ? "Source" : Svg.pop_out_svg().SetStyle("width: 1.2rem").SetClass("block") if (pagetitle === "no page") { const wd = state[1] - return new Link(Svg.pop_out_svg().SetStyle("width: 1.2rem").SetClass("block "), + return new Link(popout, "https://www.wikidata.org/wiki/" + wd.id , true) } const url = `https://${language}.wikipedia.org/wiki/${pagetitle}` - return new Link(Svg.pop_out_svg().SetStyle("width: 1.2rem").SetClass("block "), url, true) + return new Link(popout, url, true) } return undefined })) @@ -176,29 +224,25 @@ export default class WikipediaBox extends Combine { /** - * Returns the actual content in a scrollable way + * Returns the actual content in a scrollable way for the given wikipedia page */ - private static createContents(pagename: string, language: string, wikidata: WikidataResponse): BaseUIElement { - const wpOptions = { - pageName: pagename, - language: language, - firstParagraphOnly: WikipediaBox.configuration.onlyFirstParagaph - } - const htmlContent = Wikipedia.GetArticle(wpOptions) + private static createContents(pagename: string, wikipedia: Wikipedia, options:{ + topBar?: BaseUIElement} & WikipediaBoxOptions): BaseUIElement { + const htmlContent = wikipedia.GetArticle(pagename, options) const wp = Translations.t.general.wikipedia - const quickFacts = WikidataPreviewBox.QuickFacts(wikidata); - const contents: UIEventSource = htmlContent.map(htmlContent => { + const contents: VariableUiElement =new VariableUiElement( + htmlContent.map(htmlContent => { if (htmlContent === undefined) { // Still loading return new Loading(wp.loading.Clone()) } if (htmlContent["success"] !== undefined) { let content: BaseUIElement = new FixedUiElement(htmlContent["success"]); - if(WikipediaBox.configuration.addHeader){ + if (options?.addHeader) { content = new Combine( [ new Paragraph( - new Link(wp.fromWikipedia, Wikipedia.getPageUrl(wpOptions), true), + new Link(wp.fromWikipedia, wikipedia.getPageUrl(pagename), true), ), new Paragraph( content @@ -214,12 +258,21 @@ export default class WikipediaBox extends Combine { } return undefined - }) + })) + htmlContent.addCallbackAndRunD(c => { + if(c["success"] !== undefined){ + options.currentState?.setData("loaded") + }else if (c["error"] !== undefined){ + options.currentState?.setData("error") + }else { + options.currentState?.setData("loading") + } + }) + return new Combine([ - quickFacts?.SetClass("border-2 border-grey rounded-lg m-1 mb-0"), - new VariableUiElement(contents) - .SetClass("block pl-6 pt-2")]) + options?.topBar?.SetClass("border-2 border-grey rounded-lg m-1 mb-0"), + contents .SetClass("block pl-6 pt-2")]) } } \ No newline at end of file diff --git a/UI/i18n/Translation.ts b/UI/i18n/Translation.ts index 677878acc3..eef10b59e6 100644 --- a/UI/i18n/Translation.ts +++ b/UI/i18n/Translation.ts @@ -7,10 +7,10 @@ export class Translation extends BaseUIElement { public static forcedLanguage = undefined; - public readonly translations: object + public readonly translations: Record context?: string; - constructor(translations: object, context?: string) { + constructor(translations: Record, context?: string) { super() if (translations === undefined) { console.error("Translation without content at "+context) @@ -49,6 +49,10 @@ export class Translation extends BaseUIElement { return this.textFor(Translation.forcedLanguage ?? Locale.language.data) } + public toString(){ + return this.txt; + } + static ExtractAllTranslationsFrom(object: any, context = ""): { context: string, tr: Translation }[] { const allTranslations: { context: string, tr: Translation }[] = [] for (const key in object) { @@ -108,22 +112,44 @@ export class Translation extends BaseUIElement { return ""; } + /** + * + * // Should actually change the content based on the current language + * const tr = new Translation({"en":"English", nl: "Nederlands"}) + * Locale.language.setData("en") + * const html = tr.InnerConstructElement() + * html.innerHTML // => "English" + * Locale.language.setData("nl") + * html.innerHTML // => "Nederlands" + * + * // Should include a link to weblate if context is set + * const tr = new Translation({"en":"English"}, "core:test.xyz") + * Locale.language.setData("nl") + * Locale.showLinkToWeblate.setData(true) + * const html = tr.InnerConstructElement() + * html.getElementsByTagName("a")[0].href // => "https://hosted.weblate.org/translate/mapcomplete/core/nl/?offset=1&q=context%3A%3D%22test.xyz%22" + */ InnerConstructElement(): HTMLElement { const el = document.createElement("span") const self = this - - - Locale.language.addCallbackAndRun(_ => { - if (self.isDestroyed) { - return true - } - el.innerHTML = this.txt - }) - if (self.translations["*"] !== undefined || self.context === undefined || self.context?.indexOf(":") < 0) { + el.innerHTML = self.txt + if (self.translations["*"] !== undefined) { return el; } + + Locale.language.addCallback(_ => { + if (self.isDestroyed) { + return true + } + el.innerHTML = self.txt + }) + + if(self.context === undefined || self.context?.indexOf(":") < 0){ + return el; + } + const linkToWeblate = new LinkToWeblate(self.context, self.translations) const wrapper = document.createElement("span") @@ -161,7 +187,10 @@ export class Translation extends BaseUIElement { public AllValues(): string[] { return this.SupportedLanguages().map(lng => this.translations[lng]); } - + + /** + * Constructs a new Translation where every contained string has been modified + */ public OnEveryLanguage(f: (s: string, language: string) => string, context?: string): Translation { const newTranslations = {}; for (const lang in this.translations) { @@ -184,6 +213,7 @@ export class Translation extends BaseUIElement { * const r = tr.replace("{key}", "value") * r.textFor("nl") // => "Een voorbeeldtekst met value en {key1}, en nogmaals value" * r.textFor("en") // => "Just a single value" + * */ public replace(a: string, b: string) { return this.OnEveryLanguage(str => str.replace(new RegExp(a, "g"), b)) @@ -260,7 +290,7 @@ export class Translation extends BaseUIElement { } export class TypedTranslation extends Translation { - constructor(translations: object, context?: string) { + constructor(translations: Record, context?: string) { super(translations, context); } @@ -277,8 +307,29 @@ export class TypedTranslation extends Translation { * const subbed = tr.Subs({part: subpart}) * subbed.textFor("en") // => "Full sentence with subpart" * subbed.textFor("nl") // => "Volledige zin met onderdeel" + * */ Subs(text: T, context?: string): Translation { - return this.OnEveryLanguage((template, lang) => Utils.SubstituteKeys(template, text, lang), context) + return this.OnEveryLanguage((template, lang) => { + if(lang === "_context"){ + return template + } + return Utils.SubstituteKeys(template, text, lang); + }, context) + } + + + PartialSubs(text: Partial & Record): TypedTranslation> { + const newTranslations : Record = {} + for (const lang in this.translations) { + const template = this.translations[lang] + if(lang === "_context"){ + newTranslations[lang] = template + continue + } + newTranslations[lang] = Utils.SubstituteKeys(template, text, lang) + } + + return new TypedTranslation>(newTranslations, this.context) } } \ No newline at end of file diff --git a/UI/i18n/Translations.ts b/UI/i18n/Translations.ts index 6a817de9a4..56b48e2f7f 100644 --- a/UI/i18n/Translations.ts +++ b/UI/i18n/Translations.ts @@ -6,13 +6,13 @@ import CompiledTranslations from "../../assets/generated/CompiledTranslations"; export default class Translations { - static t = CompiledTranslations.t; + static readonly t : typeof CompiledTranslations.t & Readonly = CompiledTranslations.t; private static knownLanguages = new Set(known_languages.languages) constructor() { throw "Translations is static. If you want to intitialize a new translation, use the singular form" } - public static W(s: string | BaseUIElement): BaseUIElement { + public static W(s: string | number | BaseUIElement): BaseUIElement { if (typeof (s) === "string") { return new FixedUiElement(s); } diff --git a/Utils.ts b/Utils.ts index 6c3e862a91..370e76f5f9 100644 --- a/Utils.ts +++ b/Utils.ts @@ -9,7 +9,7 @@ export class Utils { */ public static runningFromConsole = typeof window === "undefined"; public static readonly assets_path = "./assets/svg/"; - public static externalDownloadFunction: (url: string, headers?: any) => Promise; + public static externalDownloadFunction: (url: string, headers?: any) => Promise<{ content: string } | { redirect: string }>; public static Special_visualizations_tagsToApplyHelpText = `These can either be a tag to add, such as \`amenity=fast_food\` or can use a substitution, e.g. \`addr:housenumber=$number\`. This new point will then have the tags \`amenity=fast_food\` and \`addr:housenumber\` with the value that was saved in \`number\` in the original feature. @@ -284,7 +284,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be * @param useLang * @constructor */ - public static SubstituteKeys(txt: string | undefined, tags: any, useLang?: string): string | undefined { + public static SubstituteKeys(txt: string | undefined, tags?: any, useLang?: string): string | undefined { if (txt === undefined) { return undefined } @@ -294,7 +294,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be while (match) { const key = match[1] - let v = tags[key] + let v = tags === undefined ? undefined : tags[key] if (v !== undefined) { if (v["toISOString"] != undefined) { @@ -310,7 +310,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be if (v.InnerConstructElement !== undefined) { console.warn("SubstituteKeys received a BaseUIElement to substitute in - this is probably a bug and will be downcast to a string\nThe key is", key, "\nThe value is", v) - v = (v.InnerConstructElement())?.innerText + v = (v.InnerConstructElement())?.textContent } if (typeof v !== "string") { @@ -442,7 +442,11 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be * * The leaf objects are replaced in the object itself by the specified function */ - public static WalkPath(path: string[], object: any, replaceLeaf: ((leaf: any, travelledPath: string[]) => any), travelledPath: string[] = []) { + public static WalkPath(path: string[], object: any, replaceLeaf: ((leaf: any, travelledPath: string[]) => any), travelledPath: string[] = []) : void { + if(object == null){ + return; + } + const head = path[0] if (path.length === 1) { // We have reached the leaf @@ -517,17 +521,17 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be /** * Apply a function on every leaf of the JSON; used to rewrite parts of the JSON. * Returns a modified copy of the original object. - * + * * 'null' and 'undefined' are _always_ considered a leaf, even if 'isLeaf' says it isn't - * + * * Hangs if the object contains a loop - * + * * // should walk a json * const walked = Utils.WalkJson({ * key: "value" * }, (x: string) => x + "!") * walked // => {key: "value!"} - * + * * // should preserve undefined and null: * const walked = Utils.WalkJson({ * u: undefined, @@ -535,7 +539,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be * v: "value" * }, (x) => {if(x !== undefined && x !== null){return x+"!}; return x}) * walked // => {v: "value!", u: undefined, n: null} - * + * * // should preserve undefined and null, also with a negative isLeaf: * const walked = Utils.WalkJson({ * u: undefined, @@ -561,8 +565,8 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return f(json, path) } if (Array.isArray(json)) { - return json.map((sub,i) => { - return Utils.WalkJson(sub, f, isLeaf, [...path,""+i]); + return json.map((sub, i) => { + return Utils.WalkJson(sub, f, isLeaf, [...path, "" + i]); }) } @@ -575,7 +579,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be /** * Walks an object recursively, will execute the 'collect'-callback on every leaf. - * + * * Will hang on objects with loops */ static WalkObject(json: any, collect: (v: number | string | boolean | undefined, path: string[]) => any, isLeaf: (object) => boolean = undefined, path = []): void { @@ -664,7 +668,16 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be Utils.injectedDownloads[url] = data } - public static download(url: string, headers?: any): Promise { + public static async download(url: string, headers?: any): Promise { + return (await Utils.downloadAdvanced(url, headers))["content"] + } + + /** + * Download function which also indicates advanced options, such as redirects + * @param url + * @param headers + */ + public static downloadAdvanced(url: string, headers?: any): Promise<{ content: string } | { redirect: string }> { if (this.externalDownloadFunction !== undefined) { return this.externalDownloadFunction(url, headers) } @@ -673,7 +686,9 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be const xhr = new XMLHttpRequest(); xhr.onload = () => { if (xhr.status == 200) { - resolve(xhr.response) + resolve({content: xhr.response}) + } else if (xhr.status === 302) { + resolve({redirect: xhr.getResponseHeader("location")}) } else if (xhr.status === 509 || xhr.status === 429) { reject("rate limited") } else { @@ -682,7 +697,6 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be }; xhr.open('GET', url); if (headers !== undefined) { - for (const key in headers) { xhr.setRequestHeader(key, headers[key]) } @@ -917,20 +931,38 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return track[str2.length][str1.length]; } - public static MapToObj(d: Map, onValue: ((t: T, key: string) => any) = undefined): object { + public static MapToObj(d: Map, onValue: ((t: V, key: string) => T)): Record { const o = {} const keys = Array.from(d.keys()) keys.sort(); for (const key of keys) { - let value = d.get(key) - if (onValue !== undefined) { - value = onValue(value, key) - } - o[key] = value; + o[key] = onValue(d.get(key), key); } return o } + /** + * Switches keys and values around + * + * Utils.TransposeMap({"a" : ["b", "c"], "x" : ["b", "y"]}) // => {"b" : ["a", "x"], "c" : ["a"], "y" : ["x"]} + */ + public static TransposeMap(d: Record) : Record{ + const newD : Record = {}; + + for (const k in d) { + const vs = d[k] + for (let v of vs) { + const list = newD[v] + if(list === undefined){ + newD[v] = [k] // Left: indexing; right: list with one element + }else{ + list.push(k) + } + } + } + return newD; + } + /** * Utils.colorAsHex({r: 255, g: 128, b: 0}) // => "#ff8000" * Utils.colorAsHex(undefined) // => undefined @@ -999,5 +1031,13 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be private static colorDiff(c0: { r: number, g: number, b: number }, c1: { r: number, g: number, b: number }) { return Math.abs(c0.r - c1.r) + Math.abs(c0.g - c1.g) + Math.abs(c0.b - c1.b); } + + static toIdRecord(ts: T[]): Record { + const result : Record = {} + for (const t of ts) { + result[t.id] = t + } + return result + } } diff --git a/Utils/LanguageUtils.ts b/Utils/LanguageUtils.ts new file mode 100644 index 0000000000..045e5e2dab --- /dev/null +++ b/Utils/LanguageUtils.ts @@ -0,0 +1,10 @@ +import * as used_languages from "../assets/generated/used_languages.json" + +export default class LanguageUtils { + + /** + * All the languages there is currently language support for in MapComplete + */ + public static readonly usedLanguages : Set = new Set(used_languages.languages) +} + diff --git a/Utils/WikidataUtils.ts b/Utils/WikidataUtils.ts new file mode 100644 index 0000000000..8b01460608 --- /dev/null +++ b/Utils/WikidataUtils.ts @@ -0,0 +1,39 @@ + +export default class WikidataUtils { + + /** + * Mapping from wikidata-codes to weblate-codes. The wikidata-code is the key, mapcomplete/weblate is the value + */ + public static readonly languageRemapping = { + "nb":"nb_NO", + "zh-hant":"zh_Hant", + "zh-hans":"zh_Hans", + "pt-br":"pt_BR" + } + + /** + * Extract languages and their language in every language from the data source. + * The returned mapping will be {languageCode --> {languageCode0 --> language as written in languageCode0 } } + * @param data + * @param remapLanguages + */ + public static extractLanguageData(data: {lang: {value:string}, code: {value: string}, label: {value: string}} [], remapLanguages: Record): Map>{ + console.log("Got "+data.length+" entries") + const perId = new Map>(); + for (const element of data) { + let id = element.code.value + id = remapLanguages[id] ?? id + let labelLang = element.label["xml:lang"] + labelLang = remapLanguages[labelLang] ?? labelLang + const value = element.label.value + if(!perId.has(id)){ + perId.set(id, new Map()) + } + perId.get(id).set(labelLang, value) + } + + console.log("Got "+perId.size+" languages") + return perId + } + +} \ No newline at end of file diff --git a/assets/SocialImageBanner.png b/assets/SocialImageBanner.png new file mode 100644 index 0000000000..073f3b6741 Binary files /dev/null and b/assets/SocialImageBanner.png differ diff --git a/assets/SocialImageBanner.svg b/assets/SocialImageBanner.svg new file mode 100644 index 0000000000..be23eec046 --- /dev/null +++ b/assets/SocialImageBanner.svg @@ -0,0 +1,2376 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/contributors.json b/assets/contributors.json index 0d556c9cf8..8d20e368dc 100644 --- a/assets/contributors.json +++ b/assets/contributors.json @@ -1,29 +1,37 @@ { "contributors": [ { - "commits": 3540, + "commits": 4316, "contributor": "Pieter Vander Vennet" }, { - "commits": 86, + "commits": 160, "contributor": "Robin van der Linde" }, { - "commits": 39, + "commits": 43, "contributor": "Tobias" }, + { + "commits": 33, + "contributor": "Win Olario" + }, { "commits": 33, "contributor": "Christian Neumann" }, { - "commits": 32, - "contributor": "Win Olario" + "commits": 31, + "contributor": "Andrews Leruth" }, { "commits": 31, "contributor": "Pieter Fiers" }, + { + "commits": 26, + "contributor": "Joost" + }, { "commits": 26, "contributor": "karelleketers" @@ -33,12 +41,20 @@ "contributor": "Ward" }, { - "commits": 20, - "contributor": "Joost" + "commits": 22, + "contributor": "riQQ" + }, + { + "commits": 21, + "contributor": "AlexanderRebai" }, { "commits": 19, - "contributor": "riQQ" + "contributor": "Niels Elgaard Larsen" + }, + { + "commits": 19, + "contributor": "yopaseopor" }, { "commits": 19, @@ -72,22 +88,22 @@ "commits": 12, "contributor": "Bavo Vanderghote" }, + { + "commits": 11, + "contributor": "dependabot[bot]" + }, { "commits": 10, "contributor": "LiamSimons" }, { - "commits": 8, - "contributor": "dependabot[bot]" + "commits": 9, + "contributor": "RobJN" }, { "commits": 8, "contributor": "Midgard" }, - { - "commits": 7, - "contributor": "RobJN" - }, { "commits": 7, "contributor": "Mateusz Konieczny" @@ -101,8 +117,12 @@ "contributor": "Binnette" }, { - "commits": 7, - "contributor": "yopaseopor" + "commits": 6, + "contributor": "Thibault Molleman" + }, + { + "commits": 6, + "contributor": "danieldegroot2" }, { "commits": 6, @@ -112,10 +132,22 @@ "commits": 5, "contributor": "David Haberthür" }, + { + "commits": 4, + "contributor": "OliNau" + }, + { + "commits": 4, + "contributor": "Codain" + }, { "commits": 4, "contributor": "Ward Beyens" }, + { + "commits": 3, + "contributor": "Thierry1030" + }, { "commits": 3, "contributor": "Weblate (bot)" @@ -126,7 +158,11 @@ }, { "commits": 2, - "contributor": "Codain" + "contributor": "pdassori" + }, + { + "commits": 2, + "contributor": "快乐的老鼠宝宝" }, { "commits": 2, @@ -160,6 +196,26 @@ "commits": 2, "contributor": "Stanislas Gueniffey" }, + { + "commits": 1, + "contributor": "HispanicMojitos" + }, + { + "commits": 1, + "contributor": "kaipankrath" + }, + { + "commits": 1, + "contributor": "bxl-forever" + }, + { + "commits": 1, + "contributor": "loviuz" + }, + { + "commits": 1, + "contributor": "kjonosm" + }, { "commits": 1, "contributor": "Štefan Baebler" @@ -200,10 +256,6 @@ "commits": 1, "contributor": "Allan Nordhøy" }, - { - "commits": 1, - "contributor": "快乐的老鼠宝宝" - }, { "commits": 1, "contributor": "Sebastian" @@ -244,10 +296,6 @@ "commits": 1, "contributor": "Schouppe Joost" }, - { - "commits": 1, - "contributor": "Thibault Molleman" - }, { "commits": 1, "contributor": "Noémie" diff --git a/assets/language_in_country.json b/assets/language_in_country.json new file mode 100644 index 0000000000..847fa4da1f --- /dev/null +++ b/assets/language_in_country.json @@ -0,0 +1,721 @@ +{ + "AD": [ + "ca" + ], + "AE": [ + "ar" + ], + "AF": [ + "uz", + "tk", + "ar", + "ps" + ], + "AG": [ + "en", + "en" + ], + "AL": [ + "sq" + ], + "AM": [ + "hy" + ], + "AO": [ + "pt" + ], + "AR": [ + "es" + ], + "AT": [ + "de" + ], + "AU": [ + "en", + "en" + ], + "AZ": [ + "az" + ], + "BA": [ + "hr", + "sr", + "bs" + ], + "BB": [ + "en" + ], + "BD": [ + "bn" + ], + "BE": [ + "fr", + "de", + "nl" + ], + "BF": [ + "fr" + ], + "BG": [ + "bg" + ], + "BH": [ + "ar" + ], + "BI": [ + "fr", + "en", + "rn" + ], + "BJ": [ + "fr" + ], + "BN": [ + "en", + "ms" + ], + "BO": [ + "es", + "ay", + "qu", + "gn" + ], + "BR": [ + "pt" + ], + "BS": [ + "en", + "en" + ], + "BT": [ + "dz", + "dz" + ], + "BW": [ + "en" + ], + "BY": [ + "ru", + "be" + ], + "BZ": [ + "en" + ], + "CA": [ + "fr", + "en" + ], + "CD": [ + "fr" + ], + "CF": [ + "fr", + "sg" + ], + "CG": [ + "fr" + ], + "CH": [ + "fr", + "de", + "it", + "rm" + ], + "CI": [ + "fr" + ], + "CL": [ + "es" + ], + "CM": [ + "fr", + "en" + ], + "CN": [ + "zh" + ], + "CO": [ + "es" + ], + "CR": [ + "es" + ], + "CU": [ + "es" + ], + "CV": [ + "pt" + ], + "CY": [ + "tr", + "el" + ], + "CZ": [ + "cs" + ], + "DE": [ + "de", + "de" + ], + "DJ": [ + "fr", + "ar" + ], + "DK": [ + "da", + "da" + ], + "DM": [ + "en" + ], + "DO": [ + "es" + ], + "DZ": [ + "ar", + "ar" + ], + "EC": [ + "es" + ], + "EE": [ + "et", + "et" + ], + "EG": [ + "ar", + "ar" + ], + "ER": [ + "en", + "ar", + "ti" + ], + "ES": [ + "es" + ], + "ET": [ + "am" + ], + "FI": [ + "fi", + "sv", + "fi", + "sv" + ], + "FJ": [ + "en", + "fj" + ], + "FM": [ + "en" + ], + "FR": [ + "fr", + "fr" + ], + "GA": [ + "fr" + ], + "GB": [ + "en", + "en", + "en" + ], + "GD": [ + "en", + "en" + ], + "GE": [ + "ab", + "ka" + ], + "GH": [ + "en" + ], + "GI": [ + "en" + ], + "GM": [ + "en" + ], + "GN": [ + "fr" + ], + "GQ": [ + "fr", + "es", + "pt" + ], + "GT": [ + "es" + ], + "GW": [ + "pt" + ], + "GY": [ + "en" + ], + "HN": [ + "es" + ], + "HR": [ + "hr", + "hr" + ], + "HT": [ + "fr", + "ht" + ], + "HU": [ + "hu" + ], + "ID": [ + "id", + "jv" + ], + "IE": [ + "en", + "ga" + ], + "IL": [ + "he", + "he" + ], + "IN": [ + "hi", + "en" + ], + "IQ": [ + "ar", + "ku" + ], + "IR": [ + "fa" + ], + "IS": [ + "is" + ], + "IT": [ + "it" + ], + "JM": [ + "en", + "en" + ], + "JO": [ + "ar" + ], + "JP": [ + "ja" + ], + "KE": [ + "en", + "sw" + ], + "KG": [ + "ru", + "ky" + ], + "KH": [ + "km" + ], + "KI": [ + "en" + ], + "KM": [ + "fr", + "ar" + ], + "KN": [ + "en", + "en" + ], + "KP": [ + "ko", + "ko" + ], + "KR": [ + "ko" + ], + "KW": [ + "ar" + ], + "KZ": [ + "ru", + "kk" + ], + "LA": [ + "lo" + ], + "LB": [ + "ar", + "ar" + ], + "LC": [ + "en", + "en" + ], + "LI": [ + "de" + ], + "LK": [ + "ta", + "si" + ], + "LR": [ + "en" + ], + "LS": [ + "en", + "st" + ], + "LT": [ + "lt", + "lt" + ], + "LU": [ + "fr", + "de", + "lb" + ], + "LV": [ + "lv", + "lv" + ], + "LY": [ + "ar", + "ar" + ], + "MA": [ + "ar", + "ar" + ], + "MC": [ + "fr" + ], + "MD": [ + "ro" + ], + "MG": [ + "fr", + "mg" + ], + "MH": [ + "en", + "mh" + ], + "MK": [ + "sq", + "mk" + ], + "ML": [ + "fr" + ], + "MM": [ + "my" + ], + "MN": [ + "mn" + ], + "MR": [ + "ar" + ], + "MT": [ + "en", + "mt" + ], + "MU": [ + "fr", + "en" + ], + "MV": [ + "dv" + ], + "MW": [ + "en", + "ny" + ], + "MX": [ + "es", + "es" + ], + "MY": [ + "ms" + ], + "MZ": [ + "pt" + ], + "NA": [ + "en" + ], + "NE": [ + "fr" + ], + "NG": [ + "en", + "yo" + ], + "NI": [ + "es" + ], + "NL": [ + "nl", + "nl" + ], + "NO": [ + "no", + "nn", + "nb" + ], + "NP": [ + "ne" + ], + "NR": [ + "en", + "na" + ], + "NZ": [ + "en", + "mi", + "en", + "mi" + ], + "OM": [ + "ar" + ], + "PA": [ + "es" + ], + "PE": [ + "es", + "ay", + "qu" + ], + "PG": [ + "en", + "ho", + "en", + "ho" + ], + "PH": [ + "en" + ], + "PK": [ + "ur", + "en", + "ar" + ], + "PL": [ + "pl", + "pl" + ], + "PS": [ + "ar" + ], + "PT": [ + "pt", + "pt" + ], + "PW": [ + "en", + "ja" + ], + "PY": [ + "es", + "gn" + ], + "QA": [ + "ar" + ], + "RO": [ + "ro" + ], + "RS": [ + "sr" + ], + "RU": [ + "ru" + ], + "RW": [ + "fr", + "en", + "sw", + "rw" + ], + "SA": [ + "ar" + ], + "SB": [ + "en", + "en" + ], + "SC": [ + "fr", + "en" + ], + "SD": [ + "en", + "ar" + ], + "SE": [ + "sv", + "sv" + ], + "SG": [ + "en", + "ta", + "ms" + ], + "SI": [ + "sl", + "sl" + ], + "SK": [ + "sk" + ], + "SL": [ + "en" + ], + "SM": [ + "it" + ], + "SN": [ + "fr", + "wo" + ], + "SO": [ + "so", + "ar" + ], + "SR": [ + "nl" + ], + "SS": [ + "en", + "ar" + ], + "ST": [ + "pt" + ], + "SV": [ + "es" + ], + "SY": [ + "ar", + "ar" + ], + "SZ": [ + "en", + "ss" + ], + "TD": [ + "fr", + "ar" + ], + "TG": [ + "fr" + ], + "TH": [ + "th" + ], + "TJ": [ + "ru", + "tg" + ], + "TL": [ + "pt" + ], + "TM": [ + "tk" + ], + "TN": [ + "ar", + "ar" + ], + "TO": [ + "en", + "to" + ], + "TR": [ + "tr", + "tr" + ], + "TT": [ + "en" + ], + "TV": [ + "en", + "en" + ], + "TZ": [ + "en", + "sw" + ], + "UA": [ + "uk" + ], + "UG": [ + "en", + "sw" + ], + "UY": [ + "es" + ], + "UZ": [ + "uz" + ], + "VA": [ + "fr", + "la", + "it" + ], + "VC": [ + "en", + "en" + ], + "VE": [ + "es" + ], + "VN": [ + "vi" + ], + "VU": [ + "fr", + "en", + "bi" + ], + "WS": [ + "en", + "sm" + ], + "YE": [ + "ar" + ], + "ZA": [ + "af", + "ve", + "ss", + "tn", + "ts", + "st", + "nr", + "en", + "zu", + "xh" + ], + "ZM": [ + "en" + ], + "ZW": [ + "en", + "xh", + "ve", + "ny", + "sn", + "tn", + "ts", + "st", + "nd" + ] +} \ No newline at end of file diff --git a/assets/layers/address/address.json b/assets/layers/address/address.json index d7300f489b..a5631f033c 100644 --- a/assets/layers/address/address.json +++ b/assets/layers/address/address.json @@ -12,7 +12,9 @@ "es": "Direcciones conocidas en OSM", "zh_Hans": "OSM中已知的地址", "nb_NO": "Kjente adresser i OSM", - "da": "Kendte adresser i OSM" + "da": "Kendte adresser i OSM", + "pt": "Endereços conhecidos no OSM", + "eo": "Konataj adresoj en OSM" }, "minzoom": 18, "source": { @@ -59,13 +61,15 @@ "zh_Hans": "地址", "ca": "Adreces", "nb_NO": "Adresser", - "da": "Adresser" + "da": "Adresser", + "pt": "Endereços", + "eo": "Adresoj" }, "tagRenderings": [ { "id": "housenumber", "render": { - "en": "The housenumber is {addr:housenumber}", + "en": "The house number is {addr:housenumber}", "nl": "Het huisnummer is {addr:housenumber}", "de": "Die Hausnummer ist {addr:housenumber}", "hu": "A házszám: {addr:housenumber}", @@ -74,7 +78,7 @@ "ru": "Номер дома {addr:housenumber}", "zh_Hans": "门牌号是{addr:housenumber}", "id": "Nomor rumah ini {addr:housenumber}", - "es": "La numeración de la casa es {addr:housenumber}", + "es": "El número de puerta es {addr:housenumber}", "da": "Husnummeret er {addr:housenumber}" }, "question": { @@ -114,7 +118,8 @@ "id": "Bangunan ini tidak memiliki nomor rumah", "es": "Esta edificación no tiene número", "zh_Hans": "这个建筑物没有门牌号", - "da": "Denne bygning har intet husnummer" + "da": "Denne bygning har intet husnummer", + "zh_Hant": "這棟建築沒有門牌" } } ] @@ -130,7 +135,7 @@ "pl": "Ten adres znajduje się na ulicy {addr:street}", "zh_Hans": "这个地址位于{addr:street}街", "id": "Alamat ini ada di jalan {addr:street}", - "es": "La dirección está en la calle {addr:street}", + "es": "La dirección está en esta calle {addr:street}", "da": "Denne adresse er på gaden {addr:street}" }, "question": { diff --git a/assets/layers/ambulancestation/ambulancestation.json b/assets/layers/ambulancestation/ambulancestation.json index 66cecd98e0..a249629c18 100644 --- a/assets/layers/ambulancestation/ambulancestation.json +++ b/assets/layers/ambulancestation/ambulancestation.json @@ -5,7 +5,7 @@ "ja": "救急ステーションの地図", "ru": "Карта станций скорой помощи", "fr": "Couche des ambulances", - "de": "Rettungswachen anzeigen", + "de": "Rettungswachen", "it": "Carta delle stazioni delle ambulanze", "hu": "Mentőállomás-térkép", "nl": "Kaart van ambulancestations", @@ -59,7 +59,7 @@ "ru": "Как называется эта станция скорой помощи?", "fr": "Quel est le nom de cette station ?", "it": "Qual è il nome di questa stazione delle ambulanze?", - "de": "Wie heißt diese Rettungswache?", + "de": "Wie heißt die Rettungswache?", "hu": "Mi a neve ennek a menőtállomásnak?", "nl": "Hoe heet dit ambulancestation?", "es": "¿Cual es el nombre de esta estación de ambulancias?", @@ -86,15 +86,15 @@ "key": "addr:street" }, "question": { - "en": " What is the street name where the station located?", + "en": "What is the street name where the station located?", "ja": " 救急ステーションの所在地はどこですか?", "ru": " По какому адресу расположена эта станция?", - "fr": " Quel est le nom de la rue où la station se situe ?", + "fr": "Quel est le nom de la rue où la station se situe ?", "it": " Come si chiama la strada in cui si trova questa stazione?", - "de": " Wie lautet der Name der Straße, in der sich die Rettungswache befindet?", - "hu": " Mi a neve annak az utcának, amelyben az állomás található?", - "nl": " In welke straat ligt dit station?", - "es": " ¿Cual es el nombre de la calle en la que se encuentra la estación?", + "de": "In welcher Straße liegt die Rettungswache?", + "hu": "Mi a neve annak az utcának, amelyben az állomás található?", + "nl": "In welke straat ligt dit station?", + "es": "¿Cual es el nombre de la calle en la que se encuentra la estación?", "da": " Hvad er vejnavnet, hvor stationen ligger?" }, "render": { @@ -116,7 +116,7 @@ "en": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", "ja": "このステーションの住所は?(例: 地区、村、または町の名称)", "ru": "Где расположена станция? (напр., название населённого пункта)", - "fr": "Dans quelle localité la station est-elle située ?", + "fr": "Dans quelle localité la station est-elle située (p.ex. nom du quartier, village ou villa) ?", "it": "Dove si trova la stazione? (ad es. quartiere, paese o città)", "de": "Wo befindet sich die Rettungswache? (z. B. Name von Stadtviertel, Dorf oder Stadt)", "hu": "Hol található az állomás? (Pl. a falu, kisváros vagy városrész neve.)", @@ -145,7 +145,7 @@ "ja": "このステーションを運営しているのはどこですか?", "fr": "Quel est l’exploitant de la station ?", "it": "Quale agenzia gestisce questa stazione?", - "de": "Welches Unternehmen betreibt diese Rettungswache?", + "de": "Wer betreibt die Rettungswache?", "hu": "Milyen szervezet működteti ezt az állomást?", "ru": "Какая организация управляет этой станцией?", "nl": "Welke organisatie beheert dit station?", @@ -156,7 +156,7 @@ "ja": "このステーションは{operator}によって運営されています。", "fr": "Cette station est opérée par {operator}.", "it": "Questa stazione è gestita da {operator}.", - "de": "Diese Rettungswache wird betrieben von {operator}.", + "de": "Die Rettungswache wird betrieben von {operator}.", "hu": "Az állomás üzemeltetője: {operator}.", "ru": "Эта станция управляется {operator}.", "nl": "Dit station wordt beheerd door {operator}.", @@ -224,7 +224,7 @@ "ja": "任意団体やコミュニティが運営しているステーションである。", "fr": "La station est opérée par une organisation informelle.", "it": "La stazione è gestita dalla comunità o un’organizzazione non ufficiale.", - "de": "Die Rettungswache wird von einer gemeindenahen oder informellen Organisation betrieben.", + "de": "Die Rettungswache wird von einer gemeinnützigen Organisation betrieben.", "hu": "Mentőállomást egy közösségi vagy nem hivatalos szervezet működteti.", "ru": "Станция управляется волонтёрами или частной организацией.", "nl": "Dit station wordt beheerd door een informele of community organisatie.", @@ -263,7 +263,7 @@ "de": "Die Rettungswache wird von einer privaten Organisation betrieben.", "hu": "Az állomást egy magánkézben lévő szervezet működteti.", "nl": "Dit station wordt beheerd door een privé-organisatie.", - "es": "La estación es de gestión privada." + "es": "La estación se opera privadamente." } } ] @@ -280,7 +280,7 @@ "ru": "Станция скорой помощи", "ja": "救急ステーション(消防署)", "fr": "une station d’ambulances", - "de": "eine rettungswache", + "de": "eine Rettungswache", "it": "una stazione delle ambulanze", "hu": "Mentőállomás", "nl": "een ambulancestation", diff --git a/assets/layers/artwork/artwork.json b/assets/layers/artwork/artwork.json index c78624d26c..b4ae9380b4 100644 --- a/assets/layers/artwork/artwork.json +++ b/assets/layers/artwork/artwork.json @@ -72,19 +72,20 @@ ] }, "description": { - "en": "Diverse pieces of artwork", - "nl": "Verschillende soorten kunstwerken", - "fr": "Diverses œuvres d'art", - "de": "Verschiedene Kunstwerke", + "en": "An open map of statues, busts, graffitis and other artwork all over the world", + "nl": "Een vrije kaart met standbeelden, bustes, graffiti en andere kunstwerken van over de hele wereld", + "fr": "Une carte ouverte de statues, bustes, graffitis et autres œuvres d'art de par le monde", + "de": "Eine freie Karte mit Statuen, Büsten, Graffitis und anderen Kunstwerken auf der ganzen Welt", "it": "Diverse opere d’arte", "ru": "Разнообразные произведения искусства", - "es": "Diversas piezas de obras de arte", + "es": "Un mapa abierto de estatus, bustos, grafitis y otras obras de arte en todo el mundo", "ja": "多様な作品", "zh_Hant": "不同類型的藝術品", "id": "Beragam karya seni", "pt": "Diversas obras de arte", - "hu": "Különféle műalkotások", - "da": "Forskellige kunstværker" + "hu": "Szobrok, mellszobrok, graffitik és egyéb műalkotások nyílt világtérképe", + "da": "Forskellige kunstværker", + "ca": "Un mapa obert d'estàtues, busts, grafitis i altres obres d'art del tot el món" }, "minzoom": 12, "presets": [ @@ -96,7 +97,7 @@ "en": "an artwork", "nl": "een kunstwerk", "fr": "une œuvre d'art", - "de": "eine kunstwerk", + "de": "ein Kunstwerk", "it": "una opera d’arte", "ru": "Художественная работа", "es": "una obra de arte", @@ -138,7 +139,7 @@ "en": "What is the type of this artwork?", "nl": "Wat voor soort kunstwerk is dit?", "fr": "Quel est le type de cette œuvre d'art ?", - "de": "Was ist die Art dieses Kunstwerks?", + "de": "Um welche Art Kunstwerk handelt es sich?", "it": "Che tipo di opera d’arte è questo?", "ru": "К какому типу относится эта работа?", "es": "¿Qué tipo de obra es esta pieza?", @@ -154,7 +155,7 @@ "freeform": { "key": "artwork_type", "addExtraTags": [ - "fixme=Artowrk type was added with the freeform, might need another check" + "fixme=Freeform field used for artwork type - doublecheck the value" ] }, "mappings": [ @@ -382,7 +383,7 @@ "pt": "Azulejo (azulejo decorativo espanhol e português)", "hu": "Azulejo (portugál vagy spanyol dekoratív csempe)", "pl": "Azulejo (hiszpańskie płytka dekoracyjna)", - "es": "Azulejo (azulejos decorativos españoles)" + "es": "Azulejo (Baldosas decorativas Españolas y Portuguesas)" } }, { @@ -412,7 +413,7 @@ "en": "Which artist created this?", "nl": "Welke kunstenaar creëerde dit kunstwerk?", "fr": "Quel artiste a créé cette œuvre ?", - "de": "Welcher Künstler hat das geschaffen?", + "de": "Wer hat das Kunstwerk erschaffen?", "it": "Quale artista ha creato quest’opera?", "ru": "Какой художник создал это?", "ja": "どのアーティストが作ったんですか?", @@ -452,7 +453,7 @@ "en": "Is there a website with more information about this artwork?", "nl": "Is er een website met meer informatie over dit kunstwerk?", "fr": "Existe-t-il un site web où trouver plus d'informations sur cette œuvre d'art ?", - "de": "Gibt es eine Website mit weiteren Informationen über dieses Kunstwerk?", + "de": "Auf welcher Webseite gibt es weitere Informationen zum Kunstwerk?", "it": "Esiste un sito web con maggiori informazioni su quest’opera?", "ru": "Есть ли сайт с более подробной информацией об этой работе?", "ja": "この作品についての詳しい情報はどのウェブサイトにありますか?", @@ -492,7 +493,7 @@ "en": "Which Wikidata-entry corresponds with this artwork?", "nl": "Welk Wikidata-item beschrijft dit kunstwerk?", "fr": "Quelle entrée Wikidata correspond à cette œuvre d'art ?", - "de": "Welcher Wikidata-Eintrag entspricht diesem Kunstwerk?", + "de": "Gibt es ein Wikidata Element für dieses Kunstwerk?", "it": "Quale elemento Wikidata corrisponde a quest’opera d’arte?", "ru": "Какая запись в Wikidata соответсвует этой работе?", "ja": "このアートワークに関するWikidataのエントリーはどれですか?", diff --git a/assets/layers/barrier/barrier.json b/assets/layers/barrier/barrier.json index 5fd1d4f457..2620226c84 100644 --- a/assets/layers/barrier/barrier.json +++ b/assets/layers/barrier/barrier.json @@ -16,7 +16,8 @@ "nl": "Hindernissen tijdens het fietsen, zoals paaltjes en fietshekjes", "de": "Hindernisse beim Fahrradfahren, wie zum Beispiel Poller und Fahrrad Barrieren", "hu": "Kerékpározás közbeni akadályok, például terelőoszlopok és kerékpárakadályok", - "fr": "Obstacles à vélo, tels que des potelets ou des barrières" + "fr": "Obstacles à vélo, tels que des potelets ou des barrières", + "es": "Obstáculos durante el uso de la bicicleta, como bolardos y barreras para bicicletas" }, "source": { "osmTags": { @@ -58,7 +59,8 @@ "nl": "Fietshekjes", "de": "Barriere für Radfahrer", "fr": "Barrière cyclable", - "ca": "Barrera ciclista" + "ca": "Barrera ciclista", + "es": "Barrera Ciclista" } } ] @@ -68,7 +70,7 @@ "title": { "en": "a bollard", "nl": "een paaltje", - "de": "eine poller", + "de": "einen Poller", "ru": "Прикол", "fr": "une bollard", "hu": "Terelőoszlop", @@ -100,10 +102,11 @@ "title": { "en": "a cycle barrier", "nl": "een fietsbarrière", - "de": "eine fahrradhindernis", + "de": "ein Fahrradhindernis", "hu": "Kerékpárakadály", "fr": "une barrière cyclable", - "da": "en stibom" + "da": "en stibom", + "es": "una barrera ciclista" }, "tags": [ "barrier=cycle_barrier" @@ -114,7 +117,8 @@ "de": "Fahrradhindernis, das Radfahrer abbremst", "hu": "A kerékpáros sebességét csökkentő kerékpárakadály", "fr": "Barrières cyclables, ralentissant les cyclistes", - "da": "Stibomme, der fartdæmper cyklister" + "da": "Stibomme, der fartdæmper cyklister", + "es": "Una barrera ciclista, que ralentiza a los ciclistas" }, "preciseInput": { "preferredBackground": [ @@ -132,7 +136,8 @@ "nl": "Kan een fietser langs deze barrière?", "de": "Kann ein Radfahrer das Hindernis passieren?", "hu": "Át lehet-e menni rajta kerékpárral?", - "fr": "Est-ce qu'un vélo peut franchir cette barrière ?" + "fr": "Est-ce qu'un vélo peut franchir cette barrière ?", + "es": "¿Puede pasar una bicicleta esta barrera?" }, "mappings": [ { @@ -143,7 +148,8 @@ "de": "Ein Radfahrer kann hindurchfahren.", "fr": "Un cycliste peut franchir ceci.", "hu": "Kerékpárral át lehet hajtani.", - "da": "En cyklist kan cykle forbi denne." + "da": "En cyklist kan cykle forbi denne.", + "es": "Un ciclista puede pasar esto." } }, { @@ -154,7 +160,8 @@ "de": "Ein Radfahrer kann nicht hindurchfahren.", "fr": "Un cycliste ne peut pas franchir ceci.", "hu": "Kerékpárral nem lehet áthajtani.", - "da": "En cyklist kan ikke cykle forbi denne." + "da": "En cyklist kan ikke cykle forbi denne.", + "es": "Un ciclista no puede pasar esto." } } ], @@ -209,7 +216,8 @@ "fr": "Bollard amovible", "hu": "Eltávolítható terelőoszlop", "ca": "Pilona desmuntable", - "da": "Aftagelig pullert" + "da": "Aftagelig pullert", + "es": "Bolardo extraíble" } }, { @@ -233,7 +241,8 @@ "de": "Umlegbarer Poller", "fr": "Bollard qui peut être couché", "hu": "Lehajtható terelőoszlop", - "da": "Pullert, der kan klappes ned" + "da": "Pullert, der kan klappes ned", + "es": "Bolardo que se puede doblar" } }, { @@ -282,7 +291,8 @@ "nl": "Enkelvoudig, slechts twee hekjes met ruimte ertussen", "de": "Einfach, nur zwei Barrieren mit einem Zwischenraum", "hu": "Egyszeres: csak két korlát, közöttük térköz", - "fr": "Simple, deux barrières côte à côte" + "fr": "Simple, deux barrières côte à côte", + "es": "Simple, simplemente dos barreras con un espacio en el medio" }, "icon": { "path": "./assets/themes/cycle_infra/Cycle_barrier_single.png", @@ -296,7 +306,8 @@ "nl": "Dubbel, twee hekjes achter elkaar", "de": "Doppelt, zwei Barrieren hintereinander", "hu": "Kétszeres: két, egymáshoz képest eltolt korlát egymás után", - "fr": "Double, deux barrières successives" + "fr": "Double, deux barrières successives", + "es": "Doble, dos barreras una detrás de otra" }, "icon": { "path": "./assets/themes/cycle_infra/Cycle_barrier_double.svg", @@ -310,7 +321,8 @@ "nl": "Drievoudig, drie hekjes achter elkaar", "de": "Dreifach, drei Barrieren hintereinander", "hu": "Háromszoros: három, egymáshoz képest eltolt korlát egymás után", - "fr": "Triple, trois barrières successives" + "fr": "Triple, trois barrières successives", + "es": "Triple, tres barreras una detrás de otra" }, "icon": { "path": "./assets/themes/cycle_infra/Cycle_barrier_triple.png", @@ -324,7 +336,8 @@ "nl": "Knijppoort, ruimte is smaller aan de top, dan aan de bodem", "de": "Eine Durchfahrtsbeschränkung, Durchfahrtsbreite ist oben kleiner als unten", "hu": "Szűkítőkapu: a rés felül keskenyebb, mint alul", - "fr": "Poire, l’espace en hauteur est plus faible qu’au sol" + "fr": "Poire, l’espace en hauteur est plus faible qu’au sol", + "es": "Barrera de seguridad, el espacio es menor en la parte superior que en la inferior" }, "icon": { "path": "./assets/themes/cycle_infra/Cycle_barrier_squeeze.png", @@ -339,7 +352,7 @@ "en": "Maximum width: {maxwidth:physical} m", "nl": "Maximumbreedte: {maxwidth:physical} m", "de": "Maximale Durchfahrtsbreite: {maxwidth:physical} m", - "fr": "Largeur maximale: {maxwidth:physical} m", + "fr": "Largeur maximale : {maxwidth:physical} m", "hu": "Legnagyobb szélesség: {maxwidth:physical} m", "es": "Anchura máxima: {maxwidth:physical} m", "da": "Maksimal bredde: {maxwidth:physical} m" @@ -360,7 +373,7 @@ }, "freeform": { "key": "maxwidth:physical", - "type": "length", + "type": "distance", "helperArgs": [ "20", "map" @@ -393,7 +406,7 @@ }, "freeform": { "key": "width:separation", - "type": "length", + "type": "distance", "helperArgs": [ "21", "map" @@ -427,7 +440,7 @@ }, "freeform": { "key": "width:opening", - "type": "length", + "type": "distance", "helperArgs": [ "21", "map" @@ -461,7 +474,7 @@ }, "freeform": { "key": "overlap", - "type": "length", + "type": "distance", "helperArgs": [ "21", "map" diff --git a/assets/layers/bench/bench.json b/assets/layers/bench/bench.json index 96eec60ded..851a43b84b 100644 --- a/assets/layers/bench/bench.json +++ b/assets/layers/bench/bench.json @@ -54,7 +54,7 @@ "if": "backrest=yes", "then": { "en": "Backrest: Yes", - "de": "Rückenlehne: Ja", + "de": "Die Sitzbank hat eine Rückenlehne", "fr": "Dossier : Oui", "nl": "Heeft een rugleuning", "es": "Respaldo: sí", @@ -77,7 +77,7 @@ "if": "backrest=no", "then": { "en": "Backrest: No", - "de": "Rückenlehne: Nein", + "de": "Die Sitzbank hat keine Rückenlehne", "fr": "Dossier : Non", "nl": "Heeft geen rugleuning", "es": "Respaldo: no", @@ -99,7 +99,7 @@ ], "question": { "en": "Does this bench have a backrest?", - "de": "Hat diese Bank eine Rückenlehne?", + "de": "Hat diese Sitzbank eine Rückenlehne?", "fr": "Ce banc dispose-t-il d'un dossier ?", "nl": "Heeft deze zitbank een rugleuning?", "es": "¿Este banco tiene respaldo?", @@ -120,7 +120,7 @@ { "render": { "en": "{seats} seats", - "de": "{seats} Sitzplätze", + "de": "Die Sitzbank hat {seats} Sitzplätze", "fr": "{seats} places", "nl": "{seats} zitplaatsen", "es": "{seats} asientos", @@ -189,7 +189,7 @@ "if": "material=wood", "then": { "en": "Material: wood", - "de": "Material: Holz", + "de": "Die Sitzfläche ist aus Holz", "fr": "Matériau : bois", "nl": "Gemaakt uit hout", "es": "Material: madera", @@ -212,7 +212,7 @@ "if": "material=metal", "then": { "en": "Material: metal", - "de": "Material: Metall", + "de": "Die Sitzfläche ist aus Metall", "fr": "Matériau : métal", "nl": "Gemaakt uit metaal", "es": "Material: metal", @@ -234,7 +234,7 @@ "if": "material=stone", "then": { "en": "Material: stone", - "de": "Material: Stein", + "de": "Die Sitzfläche ist aus Stein", "fr": "Matériau : pierre", "nl": "Gemaakt uit steen", "es": "Material: piedra", @@ -257,7 +257,7 @@ "if": "material=concrete", "then": { "en": "Material: concrete", - "de": "Material: Beton", + "de": "Die Sitzfläche ist aus Beton", "fr": "Matériau : béton", "nl": "Gemaakt uit beton", "es": "Material: concreto", @@ -280,7 +280,7 @@ "if": "material=plastic", "then": { "en": "Material: plastic", - "de": "Material: Kunststoff", + "de": "Die Sitzfläche ist aus Kunststoff", "fr": "Matériau : plastique", "nl": "Gemaakt uit plastiek", "es": "Material: plastico", @@ -303,7 +303,7 @@ "if": "material=steel", "then": { "en": "Material: steel", - "de": "Material: Stahl", + "de": "Die Sitzfläche ist aus Stahl", "fr": "Matériau : acier", "nl": "Gemaakt uit staal", "es": "Material: acero", @@ -325,7 +325,7 @@ ], "question": { "en": "What is the bench (seating) made from?", - "de": "Aus welchem Material besteht die Sitzbank (Sitzfläche)?", + "de": "Aus welchem Material ist die Sitzfläche der Bank?", "fr": "De quel matériau ce banc est-il fait ?", "nl": "Uit welk materiaal is het zitgedeelte van deze zitbank gemaakt?", "hu": "Miből van a pad (ülő része)?", @@ -661,7 +661,7 @@ ], "title": { "en": "a bench", - "de": "eine sitzbank", + "de": "eine Sitzbank", "fr": "une banc", "nl": "een zitbank", "es": "una banco", @@ -711,11 +711,11 @@ } ], "description": { - "nl": "Deze laag toont zitbanken en enkele vragen over deze zitbanken", - "en": "A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them.", - "fr": "Un banc est une surface en bois, métal, pierre... sur laquelle un humain peut s'asseoir. Cette couche permet de les visualiser et pose des questions à leur sujet.", - "de": "Diese Karte stellt Sitzbänke aus Holz, Metall, Stein, ... dar und stellt ein paar Fragen, um weitere Informationen zu ergänzen.", - "es": "Un banco es una superficie de madera, metal, piedra, ... donde un humano se puede sentar. Estas capas los visualizan y preguntan algunas preguntas sobre ellos.", + "nl": "Een zitbank is een houten, metalen, stenen, … oppervlak waar een mens kan zitten. Deze laag toont ze en stelt er enkele vragen over.", + "en": "A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them.", + "fr": "Un banc est une surface en bois, métal, pierre… sur laquelle un humain peut s'asseoir. Cette couche permet de les visualiser et pose des questions à leur sujet.", + "de": "Diese Karte stellt Sitzbänke aus Holz, Metall, Stein, … dar und stellt ein paar Fragen, um weitere Informationen zu ergänzen.", + "es": "Un banco es una superficie de madera, metal, piedra, ... donde un humano se puede sentar. Estas capas los visualizan y hacen algunas preguntas sobre ellos.", "da": "En bænk er en træ-, metal-, sten-, ... overflade, hvor et menneske kan sidde. Dette lag visualiserer dem og stiller et par spørgsmål om dem." } } \ No newline at end of file diff --git a/assets/layers/bench_at_pt/bench_at_pt.json b/assets/layers/bench_at_pt/bench_at_pt.json index 2ee0e4559a..b86acff660 100644 --- a/assets/layers/bench_at_pt/bench_at_pt.json +++ b/assets/layers/bench_at_pt/bench_at_pt.json @@ -90,7 +90,8 @@ "ru": "Скамейка в укрытии", "zh_Hant": "涼亭內的長椅", "pt_BR": "Banco em abrigo", - "pt": "Banco em abrigo" + "pt": "Banco em abrigo", + "es": "Banco en marquesina" } } ] @@ -141,21 +142,23 @@ "fr": "Il y a un banc normal pour s'asseoir ici", "de": "Hier gibt es eine normale Sitzbank", "nl": "Er is hier een normale zitbank", - "da": "Der er en normal siddebænk her" + "da": "Der er en normal siddebænk her", + "es": "Hay un banco normal aquí" } }, { "if": "bench=stand_up_bench", "then": { "en": "Stand up bench", - "de": "Stehbank", + "de": "Hier gibt es eine Stehbank zum Anlehnen", "fr": "Banc assis debout", "nl": "Leunbank", "it": "Panca in piedi", "zh_Hans": "站立长凳", "ru": "Встаньте на скамейке", "zh_Hant": "站立長椅", - "da": "Stå-op bænk" + "da": "Stå-op bænk", + "es": "Banco de pié" } }, { diff --git a/assets/layers/bicycle_library/bicycle_library.json b/assets/layers/bicycle_library/bicycle_library.json index b05bd3da31..db14d455aa 100644 --- a/assets/layers/bicycle_library/bicycle_library.json +++ b/assets/layers/bicycle_library/bicycle_library.json @@ -10,7 +10,8 @@ "pt_BR": "Biblioteca de bicicleta", "de": "Fahrradbibliotheken", "pt": "Biblioteca de bicicleta", - "ca": "Biblioteca per a bicicletes" + "ca": "Biblioteca per a bicicletes", + "es": "Biblioteca de bicicletas" }, "minzoom": 8, "source": { @@ -28,7 +29,8 @@ "de": "Fahrradbibliothek", "pt": "Biblioteca de bicicleta", "ca": "Biblioteca per a bicicletes", - "da": "Cykelbibliotek" + "da": "Cykelbibliotek", + "es": "Biblioteca de bicicletas" }, "mappings": [ { @@ -60,7 +62,8 @@ "zh_Hant": "能夠長期租用單車的設施", "pt_BR": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos", "pl": "Obiekt, w którym rowery można wypożyczyć na dłuższy okres", - "pt": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos" + "pt": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos", + "es": "Una facilidad donde se pueden alquilar bicicletas durante largos periodos de tiempo" }, "tagRenderings": [ "images", @@ -76,7 +79,8 @@ "pt_BR": "Qual o nome desta biblioteca de bicicleta?", "de": "Wie lautet der Name dieser Fahrradbibliothek?", "pt": "Qual o nome desta biblioteca de bicicleta?", - "da": "Hvad hedder dette cykelbibliotek?" + "da": "Hvad hedder dette cykelbibliotek?", + "es": "¿Cuál es el nombre de esta biblioteca de bicicletas?" }, "render": { "en": "This bicycle library is called {name}", @@ -89,7 +93,8 @@ "pt_BR": "Esta biblioteca de bicicleta é chamada de {name}", "de": "Diese Fahrradbibliothek heißt {name}", "pt": "Esta biblioteca de bicicleta é chamada de {name}", - "da": "Dette cykelbibliotek hedder {name}" + "da": "Dette cykelbibliotek hedder {name}", + "es": "Esta biblioteca de bicicletas se llama {name}" }, "freeform": { "key": "name" @@ -113,7 +118,8 @@ "zh_Hant": "租用單車的費用多少?", "pt_BR": "Quanto custa um empréstimo de bicicleta?", "pt": "Quanto custa um empréstimo de bicicleta?", - "da": "Hvor meget koster det at leje en cykel?" + "da": "Hvor meget koster det at leje en cykel?", + "es": "¿Cuánto cuesta alquilar una bicicleta?" }, "render": { "en": "Lending a bicycle costs {charge}", @@ -156,7 +162,8 @@ "zh_Hant": "租借單車免費", "pt_BR": "Emprestar uma bicicleta é grátis", "pt": "Emprestar uma bicicleta é grátis", - "da": "Det er gratis at låne en cykel" + "da": "Det er gratis at låne en cykel", + "es": "Alquilar una bicicleta es gratis" } }, { @@ -175,7 +182,8 @@ "zh_Hant": "租借單車價錢 €20/year 與 €20 保證金", "ru": "Прокат велосипеда стоит €20/год и €20 залог", "pt_BR": "Emprestar uma bicicleta custa €20/ano e €20 de garantia", - "pt": "Emprestar uma bicicleta custa €20/ano e €20 de garantia" + "pt": "Emprestar uma bicicleta custa €20/ano e €20 de garantia", + "es": "Alquilar una bicicleta cuesta 20€/año y 20€ de fianza" } } ], @@ -184,9 +192,9 @@ { "id": "bicycle-library-target-group", "question": { - "en": "Who can lend bicycles here?", + "en": "Who can loan bicycles here?", "nl": "Voor wie worden hier fietsen aangeboden?", - "fr": "Qui peut emprunter des vélos ici ?", + "fr": "Qui peut emprunter des vélos ici ?", "hu": "Ki kölcsönözhet itt kerékpárt?", "it": "Chi può prendere in prestito le biciclette qua?", "zh_Hans": "谁可以从这里借自行车?", @@ -195,7 +203,8 @@ "zh_Hant": "誰可以在這裡租單車?", "pt_BR": "Quem pode emprestar bicicletas aqui?", "pt": "Quem pode emprestar bicicletas aqui?", - "da": "Hvem kan låne cykler her?" + "da": "Hvem kan låne cykler her?", + "es": "¿Quién puede alquilar bicicletas aquí?" }, "multiAnswer": true, "mappings": [ @@ -262,10 +271,11 @@ "it": "una bici in prestito", "fr": "une vélothèque", "pt_BR": "uma biblioteca de bicicletas", - "de": "eine fahrradbibliothek", + "de": "eine Fahrradbibliothek", "pt": "uma biblioteca de bicicletas", "eo": "Fietsbibliotheek", - "da": "et cykelbibliotek" + "da": "et cykelbibliotek", + "es": "una biblioteca de bicicletas" }, "tags": [ "amenity=bicycle_library" @@ -277,7 +287,8 @@ "it": "Una ciclo-teca o «bici in prestito» ha una collezione di bici che possno essere prestate", "ru": "В велосипедной библиотеке есть велосипеды для аренды", "zh_Hant": "單車圖書館有一大批單車供人租借", - "de": "Eine Fahrradbibliothek verfügt über eine Sammlung von Fahrrädern, die ausgeliehen werden können" + "de": "Eine Fahrradbibliothek verfügt über eine Sammlung von Fahrrädern, die ausgeliehen werden können", + "es": "Una biblioteca de bicicletas tiene una colección de bicicletas que se pueden prestar" } } ], @@ -312,5 +323,6 @@ "render": "1" } } - ] + ], + "deletion": true } \ No newline at end of file diff --git a/assets/layers/bicycle_rental/bicycle_rental.json b/assets/layers/bicycle_rental/bicycle_rental.json index c5be01a6f6..9ee81286fb 100644 --- a/assets/layers/bicycle_rental/bicycle_rental.json +++ b/assets/layers/bicycle_rental/bicycle_rental.json @@ -5,7 +5,8 @@ "nl": "Fietsverhuur", "fr": "Location de vélo", "de": "Fahrradverleih", - "da": "Cykeludlejning" + "da": "Cykeludlejning", + "es": "Alquiler de bicicletas" }, "source": { "osmTags": { @@ -28,7 +29,8 @@ "nl": "Fietsverhuur", "es": "Alquiler de bicicletas", "de": "Fahrradverleih", - "da": "Cykeludlejning" + "da": "Cykeludlejning", + "fr": "Location de vélo" }, "mappings": [ { @@ -43,15 +45,16 @@ "ca": "{name}", "de": "{name}", "es": "{name}", - "da": "{name}" + "da": "{name}", + "fr": "{name}" } } ] }, "description": { "en": "Bicycle rental stations", - "nl": "Fietsverhuustations", - "fr": "Station de location de vélo", + "nl": "Fietsverhuurstations", + "fr": "Stations de location de vélo", "de": "Fahrradverleihstationen", "es": "Estaciones de alquiler de bicicletas" }, @@ -64,7 +67,8 @@ "nl": "Wat voor fietsverhuur is dit?", "de": "Was ist das für ein Fahrradverleih?", "es": "¿Qué tipo de alquiler de bicicletas es este?", - "da": "Hvilken slags cykeludlejning er dette?" + "da": "Hvilken slags cykeludlejning er dette?", + "fr": "De quel type de location de vélo s'agit-il ?" }, "mappings": [ { @@ -79,7 +83,8 @@ "nl": "Dit is een zaak die focust op fietsverhuur", "de": "Dies ist ein Geschäft, dessen Schwerpunkt auf dem Fahrradverleih liegt", "es": "Esta es una tienda que se centra en el alquiler de bicicletas", - "da": "Dette er en butik, hvis hovedfokus er cykeludlejning" + "da": "Dette er en butik, hvis hovedfokus er cykeludlejning", + "fr": "C'est un magasin dont l'activité principale est la location de vélo" } }, { @@ -87,9 +92,10 @@ "then": { "en": "This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus", "nl": "Dit is een zaak die verschillende voorwerpen en/of voertuigen verhuurt, waaronder ook fietsen; al zijn fietsen niet de hoofdfocus", - "de": "Dies ist ein Vermietungsunternehmen, das verschiedene Gegenstände und/oder Fahrzeuge vermietet. Es vermietet auch Fahrräder, aber das ist nicht der Hauptschwerpunkt", + "de": "Dies ist ein Geschäft, das verschiedene Gegenstände und/oder Fahrzeuge vermietet. Es vermietet auch Fahrräder, aber das ist nicht der Hauptschwerpunkt", "es": "Este es un negocio de alquileres que alquila varios objetos y/o vehículos. También alquila bicicletas, pero este no es el enfoque principal", - "da": "Dette er en udlejningsvirksomhed, som udlejer forskellige genstande og/eller køretøjer. Den udlejer også cykler, men det er ikke det primære fokus" + "da": "Dette er en udlejningsvirksomhed, som udlejer forskellige genstande og/eller køretøjer. Den udlejer også cykler, men det er ikke det primære fokus", + "fr": "C'est une agence louant diverses choses et/ou voitures. Elle loue également des vélos, mais ce n'est pas sa principale activité" } }, { @@ -104,7 +110,8 @@ "nl": "Dit is een fietsenmaker of fietswinkel die ook fietsen verhuurt", "de": "Dies ist ein Geschäft, das Fahrräder verkauft oder repariert, aber auch Fahrräder vermietet", "es": "Esta es una tienda que vende o alquila bicicletas, pero también las alquila", - "da": "Dette er en butik, der sælger eller reparerer cykler, men som også udlejer cykler" + "da": "Dette er en butik, der sælger eller reparerer cykler, men som også udlejer cykler", + "fr": "C'est un magasin qui vend ou répare des vélos mais peut également en louer" } }, { @@ -112,8 +119,9 @@ "then": { "en": "This is an automated docking station, where a bicycle is mechanically locked into a structure", "nl": "Dit is een docking station waar de fietsen mechanisch in een grotere structuur worden vastgemaakt", - "de": "Dies ist eine automatisierte Dockingstation, bei der ein Fahrrad mechanisch in einer Struktur verriegelt wird", - "es": "Esta es una estación automática, en la que una bici se asegura mecánicamente en una estructura" + "de": "Dies ist eine automatisierte Radstation, bei der Fahrräder mechanisch in einer Struktur verriegelt werden", + "es": "Esta es una estación automática, en la que una bici se asegura mecánicamente a una estructura", + "fr": "Ceci est un point d’attache automatisé où le vélo est attaché mécaniquement à une structure" } }, { @@ -122,14 +130,19 @@ "en": "A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby", "nl": "Hier is een machine die fietssleutels verdeelt en terugneemt, eventueel na aanmelden of betaling. De fietsen staan in de buurt geparkeerd", "hu": "Ez egy leadási pont: ennek a kerékpárkölcsönzőnek a kijelölt kerékpártárolója", - "de": "Es gibt einen Automaten, der Schlüssel ausgibt und annimmt, eventuell nach Authentifizierung und/oder Bezahlung. Die Fahrräder sind in der Nähe geparkt" + "de": "Dies ist ein Automat, der Schlüssel ausgibt und annimmt, eventuell nach Authentifizierung und/oder Bezahlung. Die Fahrräder sind in der Nähe geparkt", + "es": "Una máquina que dispensa y acepta llaves, eventualmente después de la autenticación y/o el pago está presente. Las bicicletas están aparcadas cerca", + "fr": "Il y a un distributeur qui distribue et accepte les clés, éventuellement après identification et/ou payement. Les vélos sont stationnés à proximité" } }, { "if": "bicycle_rental=dropoff_point", "then": { "en": "This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only", - "nl": "Dit is een dropzone, bv. een fietsparkeerplaats die is voorbehouden voor fietsverhuur " + "nl": "Dit is een dropzone, bv. een fietsparkeerplaats die is voorbehouden voor fietsverhuur ", + "de": "Dies ist ein Rückgabepunkt, z. B. ein reservierter Fahrradstellplatz, der deutlich als solcher gekennzeichnet ist", + "es": "Este es un punto de entrega, ej. un aparcamiento reservado para colocar las bicicletas, claramente marcado como solo para el servicio de alquiler", + "fr": "Ceci est un point de dépôt, p.ex. un emplacement de parking réservé aux vélos de location" } } ], @@ -171,14 +184,16 @@ "nl": "Wat voor soort fietsen en fietstoebehoren worden hier verhuurd?", "de": "Welche Art von Fahrrädern und Zubehör wird hier vermietet?", "es": "¿Qué tipo de bicicletas y accesorios se alquilan aquí?", - "da": "Hvilken slags cykler og tilbehør udlejes her?" + "da": "Hvilken slags cykler og tilbehør udlejes her?", + "fr": "Quels types de vélos et d’accessoires peuvent être loués ici ?" }, "render": { "en": "{rental} is rented here", "nl": "{rental} kunnen hier uitgeleend worden", - "de": "{rental} wird hier vermietet", + "de": "{rental} können hier gemietet werden", "es": "{rental} se alquilan aquí", - "da": "{rental} udlejes her" + "da": "{rental} udlejes her", + "fr": "{rental} est louable ici" }, "freeform": { "key": "rental", @@ -193,7 +208,8 @@ "nl": "Gewone stadsfietsen kunnen hier gehuurd worden", "de": "Normale Stadtfahrräder können hier gemietet werden", "es": "Aquí se pueden alquilar bicis normales", - "da": "Her kan man leje almindelige bycykler" + "da": "Her kan man leje almindelige bycykler", + "fr": "Des vélos de ville peuvent être loués ici" } }, { @@ -203,7 +219,8 @@ "nl": "Elektrische fietsen kunnen hier gehuurd worden", "de": "Elektrofahrräder können hier gemietet werden", "es": "Aquí se pueden alquilar bicis eléctricas", - "da": "El-cykler kan lejes her" + "da": "El-cykler kan lejes her", + "fr": "Des vélos électriques peuvent être loués ici" } }, { @@ -213,7 +230,8 @@ "nl": "BMX-fietsen kunnen hier gehuurd worden", "de": "BMX-Räder können hier gemietet werden", "es": "Aquí se pueden alquilar bicis BMX", - "da": "BMX cykler kan lejes her" + "da": "BMX cykler kan lejes her", + "fr": "Des BMX peuvent être loués ici" } }, { @@ -223,17 +241,19 @@ "nl": "Mountainbikes kunnen hier gehuurd worden", "de": "Mountainbikes können hier gemietet werden", "es": "Aquí se pueden alquilar bicis de montaña", - "da": "Mountainbikes kan lejes her" + "da": "Mountainbikes kan lejes her", + "fr": "Des vélos de montagne peuvent être loués ici" } }, { "if": "rental=kid_bike", "then": { - "en": "Bikes for childs can be rented here", + "en": "Bikes for children can be rented here", "nl": "Kinderfietsen kunnen hier gehuurd worden", "de": "Kinderfahrräder können hier gemietet werden", "es": "Aquí se pueden alquilar bicis infantiles", - "da": "Børnecykler kan lejes her" + "da": "Børnecykler kan lejes her", + "fr": "Des vélos d'enfants peuvent être loués ici" } }, { @@ -242,7 +262,9 @@ "en": "Tandem bicycles can be rented here", "nl": "Tandems kunnen hier gehuurd worden", "de": "Tandems können hier gemietet werden", - "da": "Tandemcykler kan lejes her" + "da": "Tandemcykler kan lejes her", + "fr": "Des tandems peuvent être loués ici", + "es": "Aquí se pueden alquilar tándems" } }, { @@ -252,7 +274,8 @@ "nl": "Wielerfietsen (sportfietsen) kunnen hier gehuurd worden", "de": "Rennräder können hier gemietet werden", "es": "Aquí se pueden alquilar bicicletas de carreras", - "da": "Racercykler kan lejes her" + "da": "Racercykler kan lejes her", + "fr": "Des vélos de course peuvent être loués ici" } }, { @@ -260,12 +283,15 @@ "then": { "en": "Bike helmets can be rented here", "nl": "Fietshelmpen kunnen hier gehuurd worden", - "es": "Aquí se pueden alquilar cascos" + "es": "Aquí se pueden alquilar cascos", + "de": "Fahrradhelme können hier gemietet werden", + "fr": "Des casques de vélos peuvent être loués ici" } } ] }, { + "id": "rental_types", "rewrite": { "sourceString": [ "bicycle_type", @@ -279,7 +305,9 @@ "nl": "stadsfietsen", "de": "Stadträder", "es": "bicis de ciudad", - "da": "bycykler" + "da": "bycykler", + "eo": "urbaj bicikloj", + "fr": "vélos de ville" } ], [ @@ -289,7 +317,9 @@ "nl": "elektrische fietsen", "de": "Elektrofahrräder", "es": "bicis eléctricas", - "da": "elektriske cykler" + "da": "elektriske cykler", + "eo": "elektraj bicikloj", + "fr": "vélos électriques" } ], [ @@ -299,7 +329,9 @@ "nl": "kinderfietsen", "de": "Kinderfahrräder", "es": "bicis infantiles", - "da": "børnecykler" + "da": "børnecykler", + "eo": "bicikloj por infanoj", + "fr": "vélos d'enfants" } ], [ @@ -309,7 +341,9 @@ "nl": "BMX-fietsen", "de": "BMX-Räder", "es": "bicis BMX", - "da": "BMX-cykler" + "da": "BMX-cykler", + "eo": "BMX-bicikloj", + "fr": "BMX" } ], [ @@ -320,7 +354,9 @@ "ca": "bicicleta de muntanya", "de": "Mountainbikes", "es": "bicis de montaña", - "da": "mountainbike" + "da": "mountainbike", + "eo": "montobicikloj", + "fr": "vélos de montagne" } ], [ @@ -329,7 +365,9 @@ "en": "bicycle panniers", "nl": "fietstassen", "de": "Fahrradtaschen", - "da": "cykeltasker" + "da": "cykeltasker", + "es": "alforjas de bicicleta", + "fr": "sacoches pour vélo" } ], [ @@ -339,7 +377,9 @@ "nl": "tandem", "ca": "tàndem", "de": "Tandems", - "da": "tandem" + "da": "tandem", + "es": "tándem", + "fr": "tandem" } ] ] @@ -351,14 +391,16 @@ "bicycle_rental" ], "question": { - "en": "How much type_plural can be rented here? ", + "en": "How much type_plural can be rented here?", "nl": "Hoeveel type_plural kunnen hier uitgeleend worden?", - "de": "Wie viele type_plural können hier gemietet werden? " + "de": "Wie viele type_plural können hier gemietet werden?", + "fr": "Combien de type_plural peuvent être loués ici ?" }, "render": { "en": "{capacity:bicycle_type} type_plural can be rented here", "nl": "{capacity:bicycle_type} type_plural kunnen hier uitgeleend worden", - "de": "{capacity:bicycle_type} type_plural können hier gemietet werden" + "de": "{capacity:bicycle_type} type_plural können hier gemietet werden", + "fr": "{capacity:bicycle_type} type_plural peuvent être loués ici" }, "freeform": { "key": "capacity:bicycle_type", @@ -374,8 +416,8 @@ "title": { "en": "a bicycle rental shop", "nl": "een fietsverhuurzaak", - "fr": "une magasin de location de vélos", - "de": "Ein Fahrradverleih", + "fr": "un magasin de location de vélos", + "de": "ein Geschäft mit Fahrradverleih", "es": "una tienda de alquiler de bicicletas", "da": "en cykeludlejningsforretning" }, @@ -388,15 +430,18 @@ "nl": "Een bemande winkel die focust op fietsverhuur", "fr": "Un magasin qui priorise la location de vélos", "de": "Ein Geschäft, das sich auf den Fahrradverleih konzentriert", - "da": "En bemandet butik, der fokuserer på cykeludlejning" + "da": "En bemandet butik, der fokuserer på cykeludlejning", + "es": "Una tienda atendida que se centra en el alquiler de bicicletas" } }, { "title": { "en": "a bicycle rental", "nl": "een fietsverhuur", - "de": "Ein Fahrradverleih", - "da": "cykeludlejning" + "de": "eine Fahrradleihstation", + "da": "cykeludlejning", + "es": "un alquiler de bicicletas", + "fr": "une location de vélos" }, "tags": [ "amenity=bicycle_rental" diff --git a/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json b/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json index 379e3a9181..a8127be68e 100644 --- a/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json +++ b/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json @@ -55,7 +55,7 @@ "nl": "een fietsbanden-verkoopsautomaat", "fr": "une distributeur automatique de chambre à air de vélo", "it": "una distributore automatico di camere d’aria per bici", - "de": "eine fahrradschlauch-automat", + "de": "einen Fahrradschlauch-Automaten", "ru": "Торговый автомат для велосипедистов", "zh_Hant": "自行車內胎自動售貨機", "pt_BR": "uma máquina de venda automática de tubos de bicicleta", @@ -78,7 +78,7 @@ "fr": "Cette machine est-elle encore opérationelle ?", "it": "Questo distributore automatico funziona ancora?", "ru": "Этот торговый автомат все еще работает?", - "de": "Ist dieser Automat noch in Betrieb?", + "de": "Ist dieser Automat in Betrieb?", "zh_Hant": "這個自動販賣機仍有運作嗎?", "pt_BR": "Esta máquina de venda automática ainda está operacional?", "pt": "Esta máquina de venda automática ainda está operacional?", @@ -111,11 +111,12 @@ "it": "Il distributore automatico funziona", "ru": "Этот торговый автомат работает", "zh_Hans": "这个借还机正常工作", - "de": "Dieser Automat funktioniert", + "de": "Dieser Automat ist in Betrieb", "zh_Hant": "這個自動販賣機仍運作", "pt_BR": "Esta máquina de venda automática funciona", "pt": "Esta máquina de venda automática funciona", - "da": "Denne salgsautomat virker" + "da": "Denne salgsautomat virker", + "es": "Esta máquina expendedora funciona" } }, { @@ -297,9 +298,10 @@ } ], "description": { - "en": "A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...)", + "en": "A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, …)", "nl": "Een laag met verkoopsautomaten met binnenbanden voor fietsen (dit kan een automaat zijn met énkel fietsbanden, of een gewone automaat met fietsbanden en andere fietsaccessoires zoals lichten, handschoenen, sloten,...)", - "de": "Eine Ebene mit Automaten für Fahrradschläuche (entweder spezielle Fahrradschlauch-Automaten oder klassische Automaten mit Fahrradschläuchen und optional zusätzlichen fahrradbezogenen Gegenständen wie Lampen, Handschuhe, Schlösser, ...)", - "da": "Et lag med automater til cykelslanger (enten specialbyggede cykelslangeautomater eller klassiske automater med cykelslanger og eventuelt andre cykelrelaterede genstande som f.eks. lys, handsker, låse, ...)" + "de": "Eine Ebene mit Automaten für Fahrradschläuche (entweder spezielle Fahrradschlauch-Automaten oder klassische Automaten mit Fahrradschläuchen und optional zusätzlichen fahrradbezogenen Gegenständen wie Lampen, Handschuhe, Schlösser, …)", + "da": "Et lag med automater til cykelslanger (enten specialbyggede cykelslangeautomater eller klassiske automater med cykelslanger og eventuelt andre cykelrelaterede genstande som f.eks. lys, handsker, låse, ...)", + "fr": "Une couche affichant des distributeurs automatiques de chambre à air (que ce soit des distributeurs conçus spécifiquement pour les chambres à air ou des distributeurs classiques incluant des chambres à air ainsi des objets apparentés tels que de l'éclairage pour vélo, des gants, des cadenas, ...)" } } \ No newline at end of file diff --git a/assets/layers/bike_cafe/bike_cafe.json b/assets/layers/bike_cafe/bike_cafe.json index e430ad655c..10b1871e5f 100644 --- a/assets/layers/bike_cafe/bike_cafe.json +++ b/assets/layers/bike_cafe/bike_cafe.json @@ -84,7 +84,7 @@ "nl": "Wat is de naam van dit fietscafé?", "fr": "Quel est le nom de ce Café vélo ?", "gl": "Cal é o nome deste café de ciclistas?", - "de": "Wie heißt dieses Fahrrad-Café?", + "de": "Wie heißt das Fahrrad-Café?", "it": "Qual è il nome di questo caffè in bici?", "zh_Hans": "这个自行车咖啡的名字是什么?", "ru": "Как называется это байк-кафе?", @@ -98,7 +98,7 @@ "nl": "Dit fietscafé heet {name}", "fr": "Ce Café vélo s'appelle {name}", "gl": "Este café de ciclistas chámase {name}", - "de": "Dieses Fahrrad-Café heißt {name}", + "de": "Das Fahrrad-Café heißt {name}", "it": "Questo caffè in bici è chiamato {name}", "zh_Hans": "这家自行车咖啡叫做 {name}", "ru": "Это велосипедное кафе называется {name}", @@ -119,7 +119,7 @@ "nl": "Biedt dit fietscafé een fietspomp aan voor iedereen?", "fr": "Est-ce que ce Café vélo propose une pompe en libre accès ?", "gl": "Este café de ciclistas ofrece unha bomba de ar para que calquera persoa poida usala?", - "de": "Bietet dieses Fahrrad-Café eine Fahrradpumpe an, die von jedem benutzt werden kann?", + "de": "Hat das Fahrrad-Café eine Fahrradpumpe, die von jedem benutzt werden kann?", "it": "Questo caffè in bici offre una pompa per bici che chiunque può utilizzare?", "zh_Hans": "这家自行车咖啡为每个使用者提供打气筒吗?", "ru": "Есть ли в этом велосипедном кафе велосипедный насос для всеобщего использования?", @@ -133,7 +133,7 @@ "nl": "Dit fietscafé biedt een fietspomp aan voor eender wie", "fr": "Ce Café vélo offre une pompe en libre accès", "gl": "Este café de ciclistas ofrece unha bomba de ar", - "de": "Dieses Fahrrad-Café bietet eine Fahrradpumpe an, die von jedem benutzt werden kann", + "de": "Das Fahrrad-Café hat eine Fahrradpumpe, die von jedem benutzt werden kann", "it": "Questo caffè in bici offre una pompa per bici liberamente utilizzabile", "zh_Hans": "这家自行车咖啡为每个人提供打气筒", "zh_Hant": "這個單車咖啡廳有提供給任何人都能使用的單車打氣甬", @@ -147,7 +147,7 @@ "nl": "Dit fietscafé biedt geen fietspomp aan voor iedereen", "fr": "Ce Café vélo n'offre pas de pompe en libre accès", "gl": "Este café de ciclistas non ofrece unha bomba de ar", - "de": "Dieses Fahrrad-Café bietet keine Fahrradpumpe an, die von jedem benutzt werden kann", + "de": "Das Fahrrad-Café hat keine Fahrradpumpe, die von jedem benutzt werden kann", "it": "Questo caffè in bici non offre una pompa per bici liberamente utilizzabile", "zh_Hans": "这家自行车咖啡不为每个人提供打气筒", "zh_Hant": "這個單車咖啡廳並沒有為所有人提供單車打氣甬", @@ -163,7 +163,7 @@ "nl": "Biedt dit fietscafé gereedschap aan om je fiets zelf te herstellen?", "fr": "Est-ce qu'il y a des outils pour réparer soi-même son vélo ?", "gl": "Hai ferramentas aquí para arranxar a túa propia bicicleta?", - "de": "Gibt es hier Werkzeuge, um das eigene Fahrrad zu reparieren?", + "de": "Gibt es hier Werkzeug, um das eigene Fahrrad zu reparieren?", "it": "Ci sono degli strumenti per riparare la propria bicicletta?", "zh_Hans": "这里有供你修车用的工具吗?", "zh_Hant": "這裡是否有工具修理你的單車嗎?", @@ -181,7 +181,7 @@ "nl": "Dit fietscafé biedt gereedschap aan om je fiets zelf te herstellen", "fr": "Ce Café vélo propose des outils pour réparer son vélo soi-même", "gl": "Hai ferramentas aquí para arranxar a túa propia bicicleta", - "de": "Dieses Fahrrad-Café bietet Werkzeuge für die selbständige Reparatur an", + "de": "Das Fahrrad-Café bietet Werkzeug für die selbständige Reparatur an", "it": "Questo caffè in bici fornisce degli attrezzi per la riparazione fai-da-te", "zh_Hans": "这家自行车咖啡为DIY修理者提供工具", "zh_Hant": "這個單車咖啡廳提供工具讓你修理", @@ -198,7 +198,7 @@ "nl": "Dit fietscafé biedt geen gereedschap aan om je fiets zelf te herstellen", "fr": "Ce Café vélo ne propose pas d'outils pour réparer son vélo soi-même", "gl": "Non hai ferramentas aquí para arranxar a túa propia bicicleta", - "de": "Dieses Fahrrad-Café bietet keine Werkzeuge für die selbständige Reparatur an", + "de": "Das Fahrrad-Café bietet kein Werkzeug für die selbständige Reparatur an", "it": "Questo caffè in bici non fornisce degli attrezzi per la riparazione fai-da-te", "zh_Hans": "这家自行车咖啡不为DIY修理者提供工具", "zh_Hant": "這個單車咖啡廳並沒有提供工具讓你修理", @@ -217,7 +217,7 @@ "nl": "Herstelt dit fietscafé fietsen?", "fr": "Est-ce que ce Café vélo répare les vélos ?", "gl": "Este café de ciclistas arranxa bicicletas?", - "de": "Repariert dieses Fahrrad-Café Fahrräder?", + "de": "Repariert das Fahrrad-Café Fahrräder?", "it": "Questo caffè in bici ripara le bici?", "zh_Hans": "这家自行车咖啡t提供修车服务吗?", "zh_Hant": "這個單車咖啡廳是否能修理單車?", @@ -234,7 +234,7 @@ "nl": "Dit fietscafé herstelt fietsen", "fr": "Ce Café vélo répare les vélos", "gl": "Este café de ciclistas arranxa bicicletas", - "de": "Dieses Fahrrad-Café repariert Fahrräder", + "de": "Das Fahrrad-Café repariert Fahrräder", "it": "Questo caffè in bici ripara le bici", "zh_Hans": "这家自行车咖啡可以修车", "zh_Hant": "這個單車咖啡廳修理單車", @@ -251,7 +251,7 @@ "nl": "Dit fietscafé herstelt geen fietsen", "fr": "Ce Café vélo ne répare pas les vélos", "gl": "Este café de ciclistas non arranxa bicicletas", - "de": "Dieses Fahrrad-Café repariert keine Fahrräder", + "de": "Das Fahrrad-Café repariert keine Fahrräder", "it": "Questo caffè in bici non ripara le bici", "zh_Hans": "这家自行车咖啡不能修车", "zh_Hant": "這個單車咖啡廳並不修理單車", @@ -269,14 +269,15 @@ "nl": "Wat is de website van {name}?", "fr": "Quel est le site web de {name} ?", "gl": "Cal é a páxina web de {name}?", - "de": "Was ist die Webseite von {name}?", + "de": "Wie lautet die Webseite von {name}?", "it": "Qual è il sito web di {name}?", "ru": "Какой сайт у {name}?", "zh_Hans": "{name}的网站是什么?", "zh_Hant": "{name} 的網站是?", "pt_BR": "Qual o website de {name}?", "pt": "Qual o website de {name}?", - "da": "Hvad er webstedet for {name}?" + "da": "Hvad er webstedet for {name}?", + "es": "¿Cual es el sitio web de {name}?" }, "render": "{website}", "freeform": { @@ -358,7 +359,7 @@ "nl": "een fietscafé", "fr": "une café vélo", "gl": "Café de ciclistas", - "de": "eine fahrrad-café", + "de": "ein Fahrrad-Café", "it": "una caffè in bici", "zh_Hans": "自行车咖啡", "zh_Hant": "單車咖啡廳", @@ -396,9 +397,10 @@ } ], "description": { - "en": "A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ...", + "en": "A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, …", "nl": "Een fietscafé is een café dat gericht is op fietsers, bijvoorbeeld omdat het een fietspomp heeft, fietsgerelateerde decoratie heeft enzovoorts.", - "de": "Ein Fahrradcafé ist ein Café, das auf Radfahrer ausgerichtet ist, zum Beispiel mit Dienstleistungen wie einer Pumpe, mit viel fahrradbezogener Dekoration, ...", - "da": "En cykelcafé er en café rettet mod cyklister, for eksempel med tjenester som en pumpe, med masser af cykelrelateret dekoration, ..." + "de": "Ein Fahrradcafé ist ein Café, das auf Radfahrer ausgerichtet ist, zum Beispiel mit Dienstleistungen wie einer Pumpe, mit viel fahrradbezogener Dekoration, …", + "da": "En cykelcafé er en café rettet mod cyklister, for eksempel med tjenester som en pumpe, med masser af cykelrelateret dekoration, ...", + "fr": "Un vélo café est un café à destination des cyclistes avec, par exemple, des services tels qu’une pompe, et de nombreuses décorations liées aux vélos, etc." } } \ No newline at end of file diff --git a/assets/layers/bike_cleaning/bike_cleaning.json b/assets/layers/bike_cleaning/bike_cleaning.json index 318d922e38..97335e75d6 100644 --- a/assets/layers/bike_cleaning/bike_cleaning.json +++ b/assets/layers/bike_cleaning/bike_cleaning.json @@ -61,7 +61,7 @@ "nl": "een fietsschoonmaakpunt", "fr": "une service de nettoyage de vélo", "it": "una servizio lavaggio bici", - "de": "eine fahrrad-reinigungsdienst", + "de": "eine Fahrrad-Reinigung", "zh_Hant": "單車清理服務", "pt_BR": "uma serviço de limpeza de bicicletas", "pt": "uma serviço de limpeza de bicicletas", @@ -80,13 +80,15 @@ "en": "How much does it cost to use the cleaning service?", "de": "Wie viel kostet die Nutzung des Reinigungsdienstes?", "nl": "Hoeveel kost het gebruik van het fietsschoonmaakpunt?", - "es": "¿Cuánto cuesta utilizar el servicio de limpieza?" + "es": "¿Cuánto cuesta utilizar el servicio de limpieza?", + "fr": "Combien coûte le service de nettoyage ?" }, "render": { "en": "Using the cleaning service costs {service:bicycle:cleaning:charge}", "de": "Nutzung des Reinigungsservice kostet {service:bicycle:cleaning:charge}", "nl": "Het gebruik van het fietsschoonmaakpunt kost {service:bicycle:cleaning:charge}", - "es": "Utilizar el servicio de limpieza cuesta {service:bicycle:cleaning:charge}" + "es": "Utilizar el servicio de limpieza cuesta {service:bicycle:cleaning:charge}", + "fr": "Le service de nettoyage coûte {service:bicycle:cleaning:charge}" }, "condition": { "and": [ @@ -108,7 +110,8 @@ "en": "The cleaning service is free to use", "de": "Der Reinigungsservice ist kostenlos", "nl": "Het fietsschoonmaakpunt is gratis", - "es": "El servicio de limpieza es gratis" + "es": "El servicio de limpieza es gratis", + "fr": "Le service de nettoyage est gratuit" } }, { @@ -118,7 +121,8 @@ "de": "Kostenlose Nutzung", "nl": "Gratis te gebruiken", "es": "Gratis", - "da": "Gratis at bruge" + "da": "Gratis at bruge", + "fr": "Utilisation gratuite" }, "hideInAnswer": true }, @@ -128,7 +132,8 @@ "en": "The cleaning service has a fee, but the amount is not known", "de": "Der Reinigungsdienst ist kostenpflichtig, aber der Betrag ist nicht bekannt", "nl": "Het fietsschoonmaakpunt is betalend, maar de prijs is onbekend", - "es": "El servicio de limpieza tiene una tasa, pero la cantidad se desconoce" + "es": "El servicio de limpieza tiene una tasa, pero la cantidad se desconoce", + "fr": "Le coût du service de nettoyage n’est pas connu" }, "hideInAnswer": true } @@ -140,13 +145,15 @@ "en": "How much does it cost to use the cleaning service?", "de": "Wie viel kostet die Nutzung des Reinigungsdienstes?", "nl": "Hoeveel kost het gebruik van het fietsschoonmaakpunt?", - "es": "¿Cuánto cuesta utilizar el servicio de limpieza?" + "es": "¿Cuánto cuesta utilizar el servicio de limpieza?", + "fr": "Combien cela coûte-t-il d'utiliser le service de nettoyage ?" }, "render": { "en": "Using the cleaning service costs {charge}", "de": "Die Nutzung des Reinigungsdienstes kostet {charge}", "nl": "Het gebruik van het fietsschoonmaakpunt kost {charge}", - "es": "Utilizar el servicio de limpieza cuesta {charge}" + "es": "Utilizar el servicio de limpieza cuesta {charge}", + "fr": "L’utilisation du service de nettoyage coûte {charge}" }, "condition": { "or": [ @@ -167,7 +174,8 @@ "en": "Free to use cleaning service", "de": "Kostenloser Reinigungsservice", "nl": "Gratis fietsschoonmaakpunt", - "es": "Un servicio de limpieza gratis" + "es": "Un servicio de limpieza gratis", + "fr": "Service de nettoyage gratuit" } }, { @@ -177,7 +185,8 @@ "de": "Kostenlose Nutzung", "nl": "Gratis te gebruiken", "es": "Gratis", - "da": "Gratis at bruge" + "da": "Gratis at bruge", + "fr": "Libre d'utilisation" }, "hideInAnswer": true }, @@ -187,7 +196,8 @@ "en": "The cleaning service has a fee", "de": "Der Reinigungsservice ist kostenpflichtig", "nl": "Je moet betalen voor het fietsschoonmaakpunt", - "es": "El servicio de limpieza tiene una tarifa" + "es": "El servicio de limpieza tiene una tarifa", + "fr": "Le service de nettoyage est payant" } } ], @@ -239,6 +249,7 @@ "nl": "Een laag die plaatsen toont waar je je fiets kunt wassen", "de": "Eine Ebene mit Einrichtungen, in denen man sein Fahrrad reinigen kann", "es": "Una capa que muestra facilidades en las que uno puede limpiar su bici", - "da": "Et lag med faciliteter, hvor man kan rengøre sin cykel" + "da": "Et lag med faciliteter, hvor man kan rengøre sin cykel", + "fr": "Une couche affichant les lieux où l'on peut nettoyer son vélo" } } \ No newline at end of file diff --git a/assets/layers/bike_parking/bike_parking.json b/assets/layers/bike_parking/bike_parking.json index 3da52eca53..7e7a451076 100644 --- a/assets/layers/bike_parking/bike_parking.json +++ b/assets/layers/bike_parking/bike_parking.json @@ -32,7 +32,7 @@ "nl": "een fietsparking", "fr": "une parking à vélo", "gl": "Aparcadoiro de bicicletas", - "de": "eine fahrrad-parkplätze", + "de": "einen Fahrrad-Parkplatz", "hu": "Kerékpártároló", "it": "una parcheggio bici", "zh_Hant": "單車停車場", @@ -277,7 +277,7 @@ "fr": "Parking souterrain", "it": "Parcheggio sotterraneo", "ru": "Подземная парковка", - "de": "Tiefgarage", + "de": "In einer Tiefgarage", "zh_Hant": "地下停車場", "pt_BR": "Estacionamento subterrâneo", "pt": "Estacionamento subterrâneo", @@ -294,7 +294,7 @@ "fr": "Parking en surface", "it": "Parcheggio in superficie", "ru": "Подземная парковка", - "de": "Ebenerdiges Parken", + "de": "Auf einem ebenerdigen Parkplatz", "zh_Hant": "地面停車場", "pt_BR": "Estacionamento de superfície", "pt": "Estacionamento de superfície", @@ -310,7 +310,7 @@ "fr": "Parking sur un toit", "hu": "Tetőparkoló", "it": "Parcheggio sul tetto", - "de": "Parkplatz auf dem Dach", + "de": "Auf einem Parkplatz auf dem Dach", "zh_Hant": "屋頂停車場", "pt_BR": "Estacionamento no telhado", "pt": "Estacionamento no telhado", @@ -344,7 +344,7 @@ "en": "Is this parking covered? Also select \"covered\" for indoor parkings.", "nl": "Is deze parking overdekt? Selecteer ook \"overdekt\" voor fietsparkings binnen een gebouw.", "gl": "Este aparcadoiro está cuberto? Tamén escolle \"cuberto\" para aparcadoiros interiores.", - "de": "Ist dieser Parkplatz überdacht? Wählen Sie auch \"überdacht\" für Innenparkplätze.", + "de": "Ist der Parkplatz überdacht? Wählen Sie auch \"überdacht\" für Parkplätze in Innenräumen.", "fr": "Ce parking est-il couvert ? Sélectionnez aussi \"couvert\" pour les parkings en intérieur.", "hu": "Fedett-e ez a parkoló? Beltéri parkolónál is válaszd a „fedett” opciót.", "it": "È un parcheggio coperto? Indicare “coperto” per parcheggi all’interno.", @@ -366,7 +366,7 @@ "en": "This parking is covered (it has a roof)", "nl": "Deze parking is overdekt (er is een afdak)", "gl": "Este aparcadoiro está cuberto (ten un teito)", - "de": "Dieser Parkplatz ist überdacht (er hat ein Dach)", + "de": "Der Parkplatz ist überdacht", "fr": "Ce parking est couvert (il a un toit)", "hu": "Ez a parkoló fedett", "it": "È un parcheggio coperto (ha un tetto)", @@ -384,7 +384,7 @@ "en": "This parking is not covered", "nl": "Deze parking is niet overdekt", "gl": "Este aparcadoiro non está cuberto", - "de": "Dieser Parkplatz ist nicht überdacht", + "de": "Der Parkplatz ist nicht überdacht", "fr": "Ce parking n'est pas couvert", "hu": "Ez a parkoló nem fedett", "it": "Non è un parcheggio coperto", @@ -416,7 +416,7 @@ "fr": "Place pour {capacity} vélos", "nl": "Plaats voor {capacity} fietsen", "gl": "Lugar para {capacity} bicicletas", - "de": "Platz für {capacity} Fahrräder", + "de": "Der Parkplatz bietet Platz für {capacity} Fahrräder", "it": "Posti per {capacity} bici", "zh_Hant": "{capacity} 單車的地方", "ru": "Место для {capacity} велосипеда(ов)", @@ -437,7 +437,7 @@ "nl": "Wie mag er deze fietsenstalling gebruiken?", "fr": "Qui peut utiliser ce parking à vélo ?", "it": "Chi può usare questo parcheggio bici?", - "de": "Wer kann diesen Fahrradparplatz nutzen?", + "de": "Wer darf den Parkplatz nutzen?", "zh_Hant": "誰可以使用這個單車停車場?", "ru": "Кто может пользоваться этой велопарковкой?", "pt_BR": "Quem pode usar este estacionamento de bicicletas?", @@ -476,7 +476,7 @@ "nl": "Publiek toegankelijke fietsenstalling", "fr": "Accessible publiquement", "it": "Accessibile pubblicamente", - "de": "Öffentlich zugänglich", + "de": "Der Parkplatz darf öffentlich genutzt werden", "zh_Hant": "公開可用", "pt_BR": "Acessível ao público", "pt": "Acessível ao público", @@ -494,7 +494,7 @@ "it": "Accesso destinato principalmente ai visitatori di un’attività", "zh_Hant": "通行性主要是為了企業的顧客", "pt_BR": "Acesso é principalmente para visitantes de uma empresa", - "de": "Der Zugang ist in erster Linie für Besucher eines Unternehmens bestimmt", + "de": "Der Parkplatz darf von Kunden des Unternehmens genutzt werden", "pt": "Acesso é principalmente para visitantes de uma empresa", "es": "El acceso es primariamente para visitantes a un negocio", "da": "Adgang hovedsageligt for besøgende til en virksomhed" @@ -509,7 +509,7 @@ "it": "Accesso limitato ai membri di una scuola, una compagnia o un’organizzazione", "zh_Hant": "通行性僅限學校、公司或組織的成員", "pt_BR": "Acesso é limitado aos membros de uma escola, companhia ou organização", - "de": "Der Zugang ist beschränkt auf Mitglieder einer Schule, eines Unternehmens oder einer Organisation", + "de": "Der Parkplatz darf nur von Mitgliedern einer Schule, Firma oder Organisation genutzt werden", "pt": "Acesso é limitado aos membros de uma escola, companhia ou organização", "es": "El acceso se limita a miembros de una escuela, compañía u organización", "da": "Adgangen er begrænset til medlemmer af en skole, virksomhed eller organisation" @@ -523,7 +523,7 @@ "en": "Does this bicycle parking have spots for cargo bikes?", "nl": "Heeft deze fietsparking plaats voor bakfietsen?", "gl": "Este aparcadoiro de bicicletas ten espazo para bicicletas de carga?", - "de": "Gibt es auf diesem Fahrrad-Parkplatz Plätze für Lastenfahrräder?", + "de": "Hat der Parkplatz Stellflächen für Lastenfahrräder?", "fr": "Est-ce que ce parking à vélo a des emplacements pour des vélos cargo ?", "it": "Questo parcheggio dispone di posti specifici per le bici da trasporto?", "zh_Hant": "這個單車停車場有地方放裝箱的單車嗎?", @@ -539,7 +539,7 @@ "en": "This parking has room for cargo bikes", "nl": "Deze parking heeft plaats voor bakfietsen", "gl": "Este aparcadoiro ten espazo para bicicletas de carga", - "de": "Dieser Parkplatz bietet Platz für Lastenfahrräder", + "de": "Der Parkplatz hat Stellflächen für Lastenfahrräder", "fr": "Ce parking a de la place pour les vélos cargo", "it": "Questo parcheggio ha posto per bici da trasporto", "zh_Hant": "這個停車場有地方可以放裝箱單車", @@ -555,13 +555,13 @@ "en": "This parking has designated (official) spots for cargo bikes.", "nl": "Er zijn speciale plaatsen voorzien voor bakfietsen.", "gl": "Este aparcadoiro ten espazos designados (oficiais) para bicicletas de carga.", - "de": "Dieser Parkplatz verfügt über ausgewiesene (offizielle) Plätze für Lastenfahrräder.", + "de": "Der Parkplatz hat ausgewiesene (offizielle) Stellflächen für Lastenfahrräder.", "fr": "Ce parking a des emplacements (officiellement) destinés aux vélos cargo.", "it": "Questo parcheggio ha posti destinati (ufficialmente) alle bici da trasporto.", "zh_Hant": "這停車場有設計 (官方) 空間給裝箱的單車。", "pt_BR": "Este estacionamento tem vagas (oficiais) projetadas para bicicletas de carga.", "pt": "Este estacionamento tem vagas (oficiais) projetadas para bicicletas de carga.", - "es": "Este aparcamiento tiene huecos (oficialmente) designados para bicicletas de carga.", + "es": "Este aparcamiento tiene huecos designados (oficialmente) para bicicletas de carga.", "da": "Denne parkeringsplads har udpegede (officielle) pladser til ladcykler." } }, @@ -571,12 +571,12 @@ "en": "You're not allowed to park cargo bikes", "nl": "Je mag hier geen bakfietsen parkeren", "gl": "Non está permitido aparcar bicicletas de carga", - "de": "Es ist nicht erlaubt, Lastenfahrräder zu parken", + "de": "Der Parkplatz bietet keine Stellflächen für Lastenfahrräder", "fr": "Il est interdit de garer des vélos cargo", "it": "Il parcheggio delle bici da trasporto è proibito", "pt_BR": "Você não tem permissão para estacionar bicicletas de carga", "pt": "Não tem permissão para estacionar bicicletas de carga", - "es": "No se permite aparcar bicicletas de carga", + "es": "No está permitido aparcar bicicletas de carga", "da": "Det er ikke tilladt at parkere ladcykler" } } @@ -605,7 +605,7 @@ "it": "Questo parcheggio può contenere {capacity:cargo_bike} bici da trasporto", "pt_BR": "Neste estacionamento cabem {capacity:cargo_bike} bicicletas de carga", "pt": "Neste estacionamento cabem {capacity:cargo_bike} bicicletas de carga", - "es": "En este aparcamiento caben {capacity:cargo_bike} bicis de carga", + "es": "En este aparcamiento caben {capacity:cargo_bike} bicicletas de carga", "da": "Der er plads til {capacity:cargo_bike} på denne cykelparkering" }, "condition": "cargo_bike~designated|yes", @@ -650,6 +650,7 @@ "nl": "Een laag die toont waar je je fiets kunt parkeren", "de": "Eine Ebene, die anzeigt, wo Sie Ihr Fahrrad abstellen können", "es": "Una capa que muestra donde puedes aparcar tu bici", - "da": "Et lag, der viser, hvor man kan parkere sin cykel" + "da": "Et lag, der viser, hvor man kan parkere sin cykel", + "fr": "Une couche montrant où stationner son vélo" } } \ No newline at end of file diff --git a/assets/layers/bike_repair_station/bike_repair_station.json b/assets/layers/bike_repair_station/bike_repair_station.json index eb9bd8b7a7..a7589975d4 100644 --- a/assets/layers/bike_repair_station/bike_repair_station.json +++ b/assets/layers/bike_repair_station/bike_repair_station.json @@ -162,7 +162,7 @@ "nl": "Welke functies biedt locatie?", "fr": "Quels services sont valables à cette station vélo ?", "gl": "Que servizos están dispoñíbeis nesta estación de bicicletas?", - "de": "Welche Einrichtungen stehen an dieser Fahrradstation zur Verfügung?", + "de": "Welche Geräte sind hier vorhanden?", "it": "Quali servizi sono disponibili in questa stazione per bici?", "pt_BR": "Quais serviços estão disponíveis nesta estação de bicicletas?", "pt": "Quais serviços estão disponíveis nesta estação de bicicletas?", @@ -198,11 +198,11 @@ ] }, "then": { - "en": "There are only tools (screwdrivers, pliers...) present", + "en": "There are only tools (screwdrivers, pliers, …) present", "nl": "Er is enkel gereedschap aanwezig (schroevendraaier, tang...)", - "fr": "Il y a seulement des outils (tournevis, pinces...)", + "fr": "Il y a seulement des outils (tournevis, pinces…)", "gl": "Só hai ferramentas (desaparafusadores, alicates...) presentes", - "de": "Es sind nur Werkzeuge (Schraubenzieher, Zangen...) vorhanden", + "de": "Es ist nur Werkzeug (Schraubenzieher, Zangen, …) vorhanden", "it": "Ci sono solo degli attrezzi (cacciaviti, pinze…) presenti", "pt_BR": "Há somente ferramentas (chaves de fenda, alicates...) presentes", "pt": "Há somente ferramentas (chaves de fenda, alicates...) presentes", @@ -286,7 +286,7 @@ "en": "When is this bicycle repair point open?", "fr": "Quand ce point de réparation de vélo est-il ouvert ?", "it": "Quando è aperto questo punto riparazione bici?", - "de": "Wann ist diese Fahrradreparaturstelle geöffnet?", + "de": "Wann ist die Fahrradreparaturstation geöffnet?", "ru": "Когда работает эта точка обслуживания велосипедов?", "es": "¿Cuándo está abierto este punto de reparación de bicicletas?", "da": "Hvornår er dette cykelreparationssted åbent?" @@ -304,7 +304,7 @@ "en": "Always open", "fr": "Ouvert en permanence", "it": "Sempre aperto", - "de": "Immer geöffnet", + "de": "Die Station ist durchgehend geöffnet", "ru": "Всегда открыто", "pt_BR": "Sempre aberto", "pt": "Sempre aberto", @@ -321,9 +321,10 @@ "question": { "en": "Who is allowed to use this repair station?", "nl": "Wie kan dit herstelpunt gebruiken?", - "de": "Wer darf diese Reparaturstation benutzen?", + "de": "Wer darf die Reparaturstation nutzen?", "es": "¿A quién se le permite utilizar esta estación de reparación?", - "da": "Hvem må bruge denne reparationsstation?" + "da": "Hvem må bruge denne reparationsstation?", + "fr": "Qui est autorisé à utiliser ce centre de réparation ?" }, "mappings": [ { @@ -331,9 +332,10 @@ "then": { "en": "Publicly accessible", "nl": "Publiek toegankelijk", - "de": "Öffentlich zugänglich", + "de": "Die Reparaturstation darf öffentlich genutzt werden", "es": "Accesible públicamente", - "da": "Offentligt tilgængelig" + "da": "Offentligt tilgængelig", + "fr": "Accessible au public" } }, { @@ -343,7 +345,8 @@ "nl": "Publiek toegankelijk", "de": "Öffentlich zugänglich", "es": "Accesible públicamente", - "da": "Offentligt tilgængelig" + "da": "Offentligt tilgængelig", + "fr": "Accessible au public" }, "hideInAnswer": true }, @@ -352,9 +355,10 @@ "then": { "en": "Only for customers", "nl": "Enkel voor klanten van de bijhorende zaak", - "de": "Nur für Kunden", + "de": "Die Reparaturstation darf nur von Kunden genutzt werden", "es": "Solo para clientes", - "da": "Kun for kunder" + "da": "Kun for kunder", + "fr": "Réservé aux clients" } }, { @@ -362,9 +366,10 @@ "then": { "en": "Not accessible to the general public", "nl": "Niet publiek toegankelijk", - "de": "Nicht für die Allgemeinheit zugänglich", + "de": "Die Reparaturstation darf nicht öffentlich genutzt werden", "es": "No accesible para el público general", - "da": "Ikke tilgængelig for offentligheden" + "da": "Ikke tilgængelig for offentligheden", + "fr": "Pas accessible au public" }, "icon": "./assets/svg/invalid.svg" }, @@ -375,7 +380,8 @@ "nl": "Niet publiek toegankelijk", "de": "Nicht für die Allgemeinheit zugänglich", "es": "No accesible para el público general", - "da": "Ikke tilgængelig for offentligheden" + "da": "Ikke tilgængelig for offentligheden", + "fr": "Pas accessible au public" }, "icon": "./assets/svg/invalid.svg", "hideInAnswer": true @@ -391,7 +397,7 @@ "nl": "Wie beheert deze fietspomp?", "fr": "Qui maintient cette pompe à vélo ?", "it": "Chi gestisce questa pompa per bici?", - "de": "Wer wartet diese Fahrradpumpe?", + "de": "Wer betreibt die Reparaturstation?", "pt_BR": "Quem faz a manutenção desta bomba de ciclo?", "pt": "Quem faz a manutenção desta bomba de ciclo?", "es": "¿Quién mantiene esta bomba para bicicletas?", @@ -420,7 +426,7 @@ "question": { "en": "What is the email address of the maintainer?", "nl": "Wat is het email-adres van de beheerder?", - "de": "Wie lautet die E-Mail-Adresse des Betreuers?", + "de": "Wie lautet die E-Mail-Adresse des Betreibers?", "fr": "Quelle est l'adresse email du service de maintenance ?", "es": "¿Es esta la dirección de correo electrónico del mantenedor?", "da": "Hvad er e-mailadressen på vedligeholderen?" @@ -551,12 +557,36 @@ ] }, "render": { - "en": "Report this bicycle pump as broken", - "nl": "Rapporteer deze fietspomp als kapot", - "de": "Melde diese Fahrradpumpe als kaputt", - "da": "Anmeld denne cykelpumpe som værende i stykker" + "special": { + "type": "send_email", + "to": "{email}", + "subject": { + "en": "Broken bicycle pump", + "nl": "Kapotte fietspomp", + "de": "Fahrradpumpe kaputt", + "es": "Bomba para bicicletas rota", + "fr": "Pompe à vélo cassée", + "da": "Cykelpumpe i stykker" + }, + "body": { + "en": "Hello,\n\nWith this email, I'd like to inform you that the bicycle pump located at https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} is broken.\n\n Kind regards", + "nl": "Geachte\n\nGraag had ik u gemeld dat een fietspomp defect is. De fietspomp bevindt zich hier: https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id}.\n\nMet vriendelijke groeten.", + "de": "Hallo,\n\nMit dieser E-Mail möchte ich Ihnen mitteilen, dass die Fahrradpumpe, die sich unter https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} befindet, kaputt ist.", + "da": "Hej,\n\nMed denne e-mail vil jeg gerne oplyse, at cykelpumpen, der befinder sig på https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} er i stykker.\n\n Med venlig hilse", + "es": "Hola,\n\nCon este correo, me gustaría informar de que esta bomba para bicicletas situada en https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} está rota.\n\nUn saludo", + "fr": "Bonjour,\n\nCe mail pour vous informer que la pompe à vélo située à https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} est cassée.\n\nBien à vous." + }, + "button_text": { + "en": "Report this bicycle pump as broken", + "nl": "Rapporteer deze fietspomp als kapot", + "fr": "Signaler cette pompe à vélo cassée", + "de": "Melde diese Fahrradpumpe als kaputt", + "da": "Anmeld denne cykelpumpe som værende i stykker", + "es": "Reportar esta bomba para bicicletas como rota" + } + } }, - "id": "Email maintainer" + "id": "send_email_about_broken_pump" }, { "question": { @@ -593,14 +623,15 @@ { "if": "valves=sclaverand", "then": { - "en": "Sclaverand (also known as Presta)", - "nl": "Sclaverand (ook gekend als Presta)", - "fr": "Sclaverand (aussi appelé Presta)", + "en": "Sclaverand/Presta (narrow-width bike tires)", + "nl": "Sclaverand/Presta (dunne fietsbanden)", + "fr": "Sclaverand/Presta (pneus de vélos à faible largeur)", "gl": "Sclaverand (tamén coñecido como Presta)", - "de": "Sklaverand (auch bekannt als Presta)", + "de": "Sklaverand-/Presta-Ventile (für Rennräder)", "it": "Sclaverand (detta anche Presta)", "ru": "Клапан Presta (также известный как французский клапан)", - "da": "Sclaverand (også kendt som Presta og racerventil)" + "da": "Sclaverand (også kendt som Presta og racerventil)", + "es": "Sclaverand/Presata (ruedas de bicicleta estrechas)" } }, { @@ -610,22 +641,24 @@ "nl": "Dunlop", "fr": "Dunlop", "gl": "Dunlop", - "de": "Dunlop", + "de": "Dunlopventile", "it": "Dunlop", "ru": "Клапан Dunlop", - "da": "Dunlop" + "da": "Dunlop", + "es": "Dunlop" } }, { "if": "valves=schrader", "then": { - "en": "Schrader (cars)", - "nl": "Schrader (auto's)", - "fr": "Schrader (les valves de voitures)", + "en": "Schrader (cars and mountainbikes)", + "nl": "Schrader (auto's en mountainbikes)", + "fr": "Schrader (voitures et vélos de montagne)", "gl": "Schrader (para automóbiles)", - "de": "Schrader (Autos)", + "de": "Schrader-Ventile (für Autos und Mountainbikes)", "it": "Schrader (valvola delle auto)", - "da": "Schrader (biler)" + "da": "Schrader (biler)", + "es": "Schrader (coches y bicicletas de montaña)" } } ], @@ -758,7 +791,7 @@ "nl": "een fietspomp", "fr": "une pompe à vélo", "gl": "bomba de ar", - "de": "eine fahrradpumpe", + "de": "eine Fahrradpumpe", "it": "una pompa per bici", "ru": "bелосипедный насос", "fi": "pyöräpumppu", @@ -795,7 +828,7 @@ "nl": "een herstelpunt en pomp", "fr": "une point de réparation vélo avec pompe", "gl": "estación de arranxo de bicicletas con bomba de ar", - "de": "eine fahrrad-reparaturstation und pumpe", + "de": "eine Fahrrad-Reparaturstation mit Pumpe", "it": "una stazione di riparazione bici e pompa", "pl": "stacja naprawy rowerów i pompka", "es": "En estación de reparación de bicicletas y bomba" @@ -825,7 +858,7 @@ "nl": "een herstelpunt zonder pomp", "fr": "une point de réparation vélo sans pompe", "gl": "estación de arranxo de bicicletas sin bomba de ar", - "de": "eine fahrrad-reparaturstation ohne pumpe", + "de": "eine Fahrrad-Reparaturstation ohne Pumpe", "it": "una stazione di riparazione bici senza pompa", "ru": "Станция обслуживания велосипедов без накачки (насоса)", "es": "una estación de reparación de bicicletas sin bomba", @@ -841,7 +874,8 @@ "nl": "Gereedschap om je fiets te herstellen in de publieke ruimte (zonder pomp). Deze zijn op een vastgemaakt, bijvoorbeeld aan een paal.", "de": "Werkzeug, um Ihr Fahrrad im öffentlichen Raum zu reparieren (ohne Pumpe). Die Werkzeuge sind gegen Diebstahl gesichert.", "es": "Herramientas para reparar tu bici en el espacio público (sin bomba).Las herramientas están aseguradas contra el robo.", - "da": "Værktøj til at reparere din cykel i det offentlige rum (uden pumpe). Værktøjet er sikret mod tyveri." + "da": "Værktøj til at reparere din cykel i det offentlige rum (uden pumpe). Værktøjet er sikret mod tyveri.", + "fr": "Des outils pour réparer les vélos dans l’espace public (sans pompe). Les outils sont sécurisés contre le vol." } } ], @@ -936,6 +970,7 @@ "nl": "Deze laag toont fietspompen en herstelpunten voor fietsen", "de": "Eine Ebene mit Fahrradpumpen und Werkzeugständern für die Fahrradreparatur", "es": "Una capa que muestra bombas de bicicletas y puestos de herramientas de reparación de bicicletas", - "da": "Et lag med cykelpumper og cykelreværktøjsstativer" + "da": "Et lag med cykelpumper og cykelreværktøjsstativer", + "fr": "Une couche montrant les pompes à vélo et les centres de réparation" } } \ No newline at end of file diff --git a/assets/layers/bike_shop/bike_shop.json b/assets/layers/bike_shop/bike_shop.json index 6933348c76..f8bc13c75d 100644 --- a/assets/layers/bike_shop/bike_shop.json +++ b/assets/layers/bike_shop/bike_shop.json @@ -10,7 +10,8 @@ "ru": "Обслуживание велосипедов/магазин", "pt_BR": "Reparo/loja de bicicletas", "pt": "Reparo/loja de bicicletas", - "ca": "Botiga/reparació de bicicletes" + "ca": "Botiga/reparació de bicicletes", + "es": "Taller/tienda de bicis" }, "minzoom": 13, "allowMove": true, @@ -57,7 +58,8 @@ "pt_BR": "Reparo/loja de bicicletas", "pt": "Reparo/loja de bicicletas", "ca": "Botiga/reparació de bicicletes", - "da": "Cykelværksted/butik" + "da": "Cykelværksted/butik", + "es": "Taller/tienda de bicis" }, "mappings": [ { @@ -74,7 +76,8 @@ "ru": "Магазин спортивного инвентаря {name}", "de": "Sportartikelgeschäft {name}", "pt_BR": "Loja de equipamentos esportivos {name}", - "pt": "Loja de equipamentos desportivos {name}" + "pt": "Loja de equipamentos desportivos {name}", + "es": "Tienda de artículos deportivos {name}" } }, { @@ -84,7 +87,13 @@ "shop~*" ] }, - "then": "Other shop" + "then": { + "en": "Winkel", + "de": "Geschäfte", + "nl": "Shop", + "es": "Winkel", + "fr": "Magasin" + } }, { "if": { @@ -92,7 +101,9 @@ { "or": [ "service:bicycle:rental=yes", - "amenity=bicycle_rental" + "amenity=bicycle_rental", + "shop=rental", + "shop=bicycle_rental" ] } ] @@ -162,7 +173,8 @@ "it": "Venditore/riparatore bici {name}", "pt_BR": "Loja/reparo de bicicletas {name}", "pt": "Loja/reparo de bicicletas {name}", - "da": "Cykelværksted{name}" + "da": "Cykelværksted{name}", + "es": "Taller/tienda de bicis {name}" } } ] @@ -229,9 +241,11 @@ "if": "shop=rental", "then": { "nl": "Deze zaak focust op verhuur", - "en": "Deze business focuses on rental", + "en": "This business focuses on rental", "de": "Dieses Geschäft konzentriert sich auf die Vermietung", - "da": "Denne virksomhed fokuserer på udlejning" + "da": "Denne virksomhed fokuserer på udlejning", + "es": "Este negocio se centra en el alquiler", + "fr": "Ce commerce est spécialisé dans la location" } } ] @@ -242,7 +256,7 @@ "nl": "Wat is de naam van deze fietszaak?", "fr": "Quel est le nom du magasin de vélos ?", "gl": "Cal é o nome desta tenda de bicicletas?", - "de": "Wie heißt dieser Fahrradladen?", + "de": "Wie heißt das Geschäft?", "it": "Qual è il nome di questo negozio di biciclette?", "ru": "Как называется магазин велосипедов?", "pt_BR": "Qual o nome desta loja de bicicletas?", @@ -255,7 +269,7 @@ "nl": "Deze fietszaak heet {name}", "fr": "Ce magasin s'appelle {name}", "gl": "Esta tenda de bicicletas chámase {name}", - "de": "Dieses Fahrradgeschäft heißt {name}", + "de": "Das Geschäft heißt {name}", "it": "Questo negozio di biciclette è chiamato {name}", "ru": "Этот магазин велосипедов называется {name}", "pt_BR": "Esta loja de bicicletas se chama {name}", @@ -268,77 +282,17 @@ }, "id": "bike_shop-name" }, - { - "question": { - "en": "What is the website of {name}?", - "nl": "Wat is de website van {name}?", - "fr": "Quel est le site web de {name} ?", - "gl": "Cal é a páxina web de {name}?", - "it": "Qual è il sito web di {name}?", - "ru": "Какой сайт у {name}?", - "id": "URL {name} apa?", - "de": "Was ist die Webseite von {name}?", - "pt_BR": "Qual o website de {name}?", - "pt": "Qual o website de {name}?", - "es": "¿Cual es el sitio web de {name}?", - "da": "Hvad er webstedet for {name}?" - }, - "render": "{website}", - "freeform": { - "key": "website", - "type": "url" - }, - "id": "bike_shop-website" - }, - { - "question": { - "en": "What is the phone number of {name}?", - "nl": "Wat is het telefoonnummer van {name}?", - "fr": "Quel est le numéro de téléphone de {name} ?", - "gl": "Cal é o número de teléfono de {name}?", - "it": "Qual è il numero di telefono di {name}?", - "ru": "Какой номер телефона у {name}?", - "de": "Wie lautet die Telefonnummer von {name}?", - "pt_BR": "Qual o número de telefone de {name}?", - "pt": "Qual é o número de telefone de {name}?", - "es": "¿Cual es el número de teléfono de {name}?", - "da": "Hvad er telefonnummeret på {name}?" - }, - "render": "{phone}", - "freeform": { - "key": "phone", - "type": "phone" - }, - "id": "bike_shop-phone" - }, - { - "question": { - "en": "What is the email address of {name}?", - "nl": "Wat is het email-adres van {name}?", - "fr": "Quelle est l'adresse électronique de {name} ?", - "gl": "Cal é o enderezo de correo electrónico de {name}?", - "it": "Qual è l’indirizzo email di {name}?", - "ru": "Какой адрес электронной почты у {name}?", - "de": "Wie lautet die E-Mail-Adresse von {name}?", - "pt_BR": "Qual o endereço de email de {name}?", - "pt": "Qual o endereço de email de {name}?", - "es": "¿Cual es la dirección de correo electrónico de {name}?", - "da": "Hvad er e-mailadressen på {name}?" - }, - "render": "{email}", - "freeform": { - "key": "email", - "type": "email" - }, - "id": "bike_shop-email" - }, + "website", + "phone", + "email", "opening_hours", { "render": { "en": "Only accessible to {access}", "nl": "Enkel voor {access}", "de": "Nur zugänglich für {access}", - "es": "Solo accesible a {access}" + "es": "Solo accesible a {access}", + "fr": "Seulement accessible à {access}" }, "freeform": { "key": "access" @@ -352,7 +306,7 @@ "nl": "Verkoopt deze fietszaak fietsen?", "fr": "Est-ce que ce magasin vend des vélos ?", "gl": "Esta tenda vende bicicletas?", - "de": "Verkauft dieser Laden Fahrräder?", + "de": "Verkauft das Geschäft Fahrräder?", "it": "Questo negozio vende bici?", "ru": "Продаются ли велосипеды в этом магазине?", "pt_BR": "Esta loja vende bicicletas?", @@ -368,7 +322,7 @@ "nl": "Deze winkel verkoopt fietsen", "fr": "Ce magasin vend des vélos", "gl": "Esta tenda vende bicicletas", - "de": "Dieses Geschäft verkauft Fahrräder", + "de": "Das Geschäft verkauft Fahrräder", "it": "Questo negozio vende bici", "ru": "В этом магазине продаются велосипеды", "pt_BR": "Esta loja vende bicicletas", @@ -384,7 +338,7 @@ "nl": "Deze winkel verkoopt geen fietsen", "fr": "Ce magasin ne vend pas de vélo", "gl": "Esta tenda non vende bicicletas", - "de": "Dieses Geschäft verkauft keine Fahrräder", + "de": "Das Geschäft verkauft keine Fahrräder", "it": "Questo negozio non vende bici", "ru": "В этом магазине не продают велосипеды", "pt_BR": "Esta loja não vende bicicletas", @@ -402,7 +356,7 @@ "nl": "Herstelt deze winkel fietsen?", "fr": "Est-ce que ce magasin répare des vélos ?", "gl": "Esta tenda arranxa bicicletas?", - "de": "Repariert dieses Geschäft Fahrräder?", + "de": "Repariert das Geschäft Fahrräder?", "it": "Questo negozio ripara bici?", "ru": "В этом магазине ремонтируют велосипеды?", "pt_BR": "Esta loja conserta bicicletas?", @@ -418,7 +372,7 @@ "nl": "Deze winkel herstelt fietsen", "fr": "Ce magasin répare des vélos", "gl": "Esta tenda arranxa bicicletas", - "de": "Dieses Geschäft repariert Fahrräder", + "de": "Das Geschäft repariert Fahrräder", "it": "Questo negozio ripara bici", "ru": "Этот магазин ремонтирует велосипеды", "pt_BR": "Esta loja conserta bicicletas", @@ -434,7 +388,7 @@ "nl": "Deze winkel herstelt geen fietsen", "fr": "Ce magasin ne répare pas les vélos", "gl": "Esta tenda non arranxa bicicletas", - "de": "Dieses Geschäft repariert keine Fahrräder", + "de": "Das Geschäft repariert keine Fahrräder", "it": "Questo negozio non ripara bici", "ru": "Этот магазин не ремонтирует велосипеды", "pt_BR": "Esta loja não conserta bicicletas", @@ -450,7 +404,7 @@ "nl": "Deze winkel herstelt enkel fietsen die hier werden gekocht", "fr": "Ce magasin ne répare seulement les vélos achetés là-bas", "gl": "Esta tenda só arranxa bicicletas mercadas aquí", - "de": "Dieses Geschäft repariert nur hier gekaufte Fahrräder", + "de": "Das Geschäft repariert nur hier gekaufte Fahrräder", "it": "Questo negozio ripara solo le bici che sono state acquistate qua", "ru": "Этот магазин ремонтирует только велосипеды, купленные здесь", "pt_BR": "Esta loja conserta bicicletas compradas aqui", @@ -466,7 +420,7 @@ "nl": "Deze winkel herstelt enkel fietsen van een bepaald merk", "fr": "Ce magasin ne répare seulement des marques spécifiques", "gl": "Esta tenda só arranxa bicicletas dunha certa marca", - "de": "Dieses Geschäft repariert nur Fahrräder einer bestimmten Marke", + "de": "Das Geschäft repariert nur Fahrräder einer bestimmten Marke", "it": "Questo negozio ripara solo le biciclette di una certa marca", "ru": "В этом магазине обслуживают велосипеды определённого бренда", "pt_BR": "Esta loja conserta bicicletas de uma certa marca", @@ -485,7 +439,7 @@ "nl": "Verhuurt deze winkel fietsen?", "fr": "Est-ce ce magasin loue des vélos ?", "gl": "Esta tenda aluga bicicletas?", - "de": "Vermietet dieser Laden Fahrräder?", + "de": "Vermietet das Geschäft Fahrräder?", "it": "Questo negozio noleggia le bici?", "ru": "Этот магазин сдает велосипеды в аренду?", "pt_BR": "Esta loja aluga bicicletas?", @@ -501,7 +455,7 @@ "nl": "Deze winkel verhuurt fietsen", "fr": "Ce magasin loue des vélos", "gl": "Esta tenda aluga bicicletas", - "de": "Dieses Geschäft vermietet Fahrräder", + "de": "Das Geschäft vermietet Fahrräder", "it": "Questo negozio noleggia le bici", "ru": "Этот магазин сдает велосипеды в аренду", "pt_BR": "Esta loja aluga bicicletas", @@ -517,7 +471,7 @@ "nl": "Deze winkel verhuurt geen fietsen", "fr": "Ce magasin ne loue pas de vélos", "gl": "Esta tenda non aluga bicicletas", - "de": "Dieses Geschäft vermietet keine Fahrräder", + "de": "Das Geschäft vermietet keine Fahrräder", "it": "Questo negozio non noleggia le bici", "ru": "Этот магазин не сдает велосипеды напрокат", "pt_BR": "Esta loja não aluga bicicletas", @@ -536,7 +490,7 @@ "nl": "Verkoopt deze winkel tweedehands fietsen?", "fr": "Est-ce ce magasin vend des vélos d'occasion ?", "gl": "Esta tenda vende bicicletas de segunda man?", - "de": "Verkauft dieses Geschäft gebrauchte Fahrräder?", + "de": "Verkauft das Geschäft gebrauchte Fahrräder?", "it": "Questo negozio vende bici usate?", "ru": "В этом магазине продаются подержанные велосипеды?", "es": "¿Vende bicis de segunda mano esta tienda?", @@ -550,7 +504,7 @@ "nl": "Deze winkel verkoopt tweedehands fietsen", "fr": "Ce magasin vend des vélos d'occasion", "gl": "Esta tenda vende bicicletas de segunda man", - "de": "Dieses Geschäft verkauft gebrauchte Fahrräder", + "de": "Das Geschäft verkauft auch gebrauchte Fahrräder", "it": "Questo negozio vende bici usate", "ru": "В этом магазине продаются подержанные велосипеды", "es": "Esta tienda vende bicis de segunda mano", @@ -564,7 +518,7 @@ "nl": "Deze winkel verkoopt geen tweedehands fietsen", "fr": "Ce magasin ne vend pas de vélos d'occasion", "gl": "Esta tenda non vende bicicletas de segunda man", - "de": "Dieses Geschäft verkauft keine gebrauchten Fahrräder", + "de": "Das Geschäft verkauft keine gebrauchten Fahrräder", "it": "Questo negozio non vende bici usate", "ru": "В этом магазине не продаются подержанные велосипеды", "es": "Esta tienda no vende bicis de segunda mano", @@ -578,7 +532,7 @@ "nl": "Deze winkel verkoopt enkel tweedehands fietsen", "fr": "Ce magasin vend seulement des vélos d'occasion", "gl": "Esta tenda só vende bicicletas de segunda man", - "de": "Dieses Geschäft verkauft nur gebrauchte Fahrräder", + "de": "Das Geschäft verkauft ausschließlich gebrauchte Fahrräder", "it": "Questo negozio vende solamente bici usate", "ru": "В этом магазине продаются только подержанные велосипеды", "es": "Esta tienda solo vende bicis de segunda mano", @@ -594,7 +548,7 @@ "nl": "Biedt deze winkel een fietspomp aan voor iedereen?", "fr": "Est-ce que ce magasin offre une pompe en accès libre ?", "gl": "Esta tenda ofrece unha bomba de ar para uso de calquera persoa?", - "de": "Bietet dieses Geschäft eine Fahrradpumpe zur Benutzung für alle an?", + "de": "Gibt es im Geschäft eine öffentlich nutzbare Luftpumpe?", "it": "Questo negozio offre l’uso a chiunque di una pompa per bici?", "ru": "Предлагается ли в этом магазине велосипедный насос для всеобщего пользования?", "es": "¿Esta tienda ofrece una bomba para que la utilice cualquiera?" @@ -607,7 +561,7 @@ "nl": "Deze winkel biedt een fietspomp aan voor iedereen", "fr": "Ce magasin offre une pompe en acces libre", "gl": "Esta tenda ofrece unha bomba de ar para uso de calquera persoa", - "de": "Dieses Geschäft bietet eine Fahrradpumpe für alle an", + "de": "Im Geschäft gibt es eine öffentlich nutzbare Luftpumpe", "it": "Questo negozio offre l’uso pubblico di una pompa per bici", "ru": "В этом магазине есть велосипедный насос для всеобщего пользования", "es": "Esta tienda ofrece una bomba para cualquiera" @@ -620,7 +574,7 @@ "nl": "Deze winkel biedt geen fietspomp aan voor eender wie", "fr": "Ce magasin n'offre pas de pompe en libre accès", "gl": "Esta tenda non ofrece unha bomba de ar para uso de calquera persoa", - "de": "Dieses Geschäft bietet für niemanden eine Fahrradpumpe an", + "de": "Im Geschäft gibt es keine öffentlich nutzbare Luftpumpe", "it": "Questo negozio non offre l’uso pubblico di una pompa per bici", "ru": "В этом магазине нет велосипедного насоса для всеобщего пользования", "es": "Esta tienda no ofrece una bomba para cualquiera" @@ -633,7 +587,7 @@ "nl": "Er is een fietspomp, deze is apart aangeduid", "fr": "Il y a une pompe à vélo, c'est indiqué comme un point séparé ", "it": "C’è una pompa per bici, è mostrata come punto separato ", - "de": "Es gibt eine Fahrradpumpe, sie wird als separater Punkt angezeigt ", + "de": "Es gibt eine Luftpumpe, sie ist als separater Punkt eingetragen ", "es": "Hay una bomba para bicicletas, se muestra como un punto separado ", "da": "Der er cykelpumpe, den er vist som et separat punkt " } @@ -647,7 +601,7 @@ "nl": "Biedt deze winkel gereedschap aan om je fiets zelf te herstellen?", "fr": "Est-ce qu'il y a des outils pour réparer son vélo dans ce magasin ?", "gl": "Hai ferramentas aquí para arranxar a túa propia bicicleta?", - "de": "Gibt es hier Werkzeuge, um das eigene Fahrrad zu reparieren?", + "de": "Gibt es hier Werkzeug, um das eigene Fahrrad zu reparieren?", "it": "Sono presenti degli attrezzi per riparare la propria bici?", "ru": "Есть ли здесь инструменты для починки собственного велосипеда?", "es": "¿Hay herramientas para reparar tu propia bici?", @@ -661,9 +615,10 @@ "nl": "Deze winkel biedt gereedschap aan om je fiets zelf te herstellen", "fr": "Ce magasin offre des outils pour réparer son vélo soi-même", "gl": "Hai ferramentas aquí para arranxar a túa propia bicicleta", - "de": "Dieses Geschäft bietet Werkzeuge für die Heimwerkerreparatur an", + "de": "Das Geschäft bietet Werkzeug an, um das eigene Fahrrad zu reparieren", "it": "Questo negozio offre degli attrezzi per la riparazione fai-da-te", - "da": "Denne butik tilbyder værktøj til gør-det-selv-reparation" + "da": "Denne butik tilbyder værktøj til gør-det-selv-reparation", + "es": "Esta tienda ofrece herramientas para la reparación DIY" } }, { @@ -673,9 +628,10 @@ "nl": "Deze winkel biedt geen gereedschap aan om je fiets zelf te herstellen", "fr": "Ce magasin n'offre pas des outils pour réparer son vélo soi-même", "gl": "Non hai ferramentas aquí para arranxar a túa propia bicicleta", - "de": "Dieses Geschäft bietet keine Werkzeuge für Heimwerkerreparaturen an", + "de": "Das Geschäft bietet kein Werkzeug an, um das eigene Fahrrad zu reparieren", "it": "Questo negozio non offre degli attrezzi per la riparazione fai-da-te", - "da": "Denne butik tilbyder ikke værktøj til gør-det-selv reparation" + "da": "Denne butik tilbyder ikke værktøj til gør-det-selv reparation", + "es": "Esta tienda no ofrece herramientas para la reparación DIY" } }, { @@ -685,8 +641,9 @@ "nl": "Het gereedschap aan om je fiets zelf te herstellen is enkel voor als je de fiets er kocht of huurt", "fr": "Des outils d'auto-réparation sont disponibles uniquement si vous avez acheté ou loué le vélo dans ce magasin", "it": "Gli attrezzi per la riparazione fai-da-te sono disponibili solamente se hai acquistato/noleggiato la bici nel negozio", - "de": "Werkzeuge für die Selbstreparatur sind nur verfügbar, wenn Sie das Fahrrad im Laden gekauft/gemietet haben", - "ru": "Инструменты для починки доступны только при покупке/аренде велосипеда в магазине" + "de": "Das Geschäft bietet nur Werkzeug an, um das eigene Fahrrad zu reparieren, wenn es dort gekauft/gemietet wurde", + "ru": "Инструменты для починки доступны только при покупке/аренде велосипеда в магазине", + "es": "Las herramientas para reparaciones DIT solo están disponibles si compraste/alquilaste la bicicleta en la tienda" } } ] @@ -699,7 +656,7 @@ "fr": "Lave-t-on les vélos ici ?", "it": "Vengono lavate le bici qua?", "ru": "Здесь моют велосипеды?", - "de": "Werden hier Fahrräder gewaschen?", + "de": "Bietet das Geschäft Fahrradreinigungen an?", "es": "¿Aquí se lavan bicicletas?", "da": "Vaskes cykler her?" }, @@ -711,7 +668,7 @@ "nl": "Deze winkel biedt fietsschoonmaak aan", "fr": "Ce magasin lave les vélos", "it": "Questo negozio lava le biciclette", - "de": "Dieses Geschäft reinigt Fahrräder", + "de": "Das Geschäft bietet Fahrradreinigungen an", "ru": "В этом магазине оказываются услуги мойки/чистки велосипедов", "es": "Esta tienda limpia bicicletas", "da": "Denne butik rengør cykler" @@ -724,7 +681,7 @@ "nl": "Deze winkel biedt een installatie aan om zelf je fiets schoon te maken", "fr": "Ce magasin a une installation pour laver soi même des vélos", "it": "Questo negozio ha una struttura dove è possibile pulire la propria bici", - "de": "Dieser Laden hat eine Anlage, in der man Fahrräder selbst reinigen kann", + "de": "Im Geschäft können Fahrräder selbst gereinigt werden", "es": "Esta tienda tiene una instalación donde uno puede limpiar bicicletas por si mismo" } }, @@ -735,7 +692,7 @@ "nl": "Deze winkel biedt geen fietsschoonmaak aan", "fr": "Ce magasin ne fait pas le nettoyage de vélo", "it": "Questo negozio non offre la pulizia della bicicletta", - "de": "Dieser Laden bietet keine Fahrradreinigung an", + "de": "Das Geschäft bietet keine Fahrradreinigungen an", "ru": "В этом магазине нет услуг мойки/чистки велосипедов", "es": "Esta tienda no ofrece limpieza de bicicletas" } @@ -752,9 +709,10 @@ "nl": "een fietszaak", "fr": "une magasin et réparateur de vélo", "gl": "Tenda/arranxo de bicicletas", - "de": "eine fahrradwerkstatt/geschäft", + "de": "eine Fahrradwerkstatt bzw. ein Fahrradgeschäft", "it": "una negozio/riparatore di bici", - "ru": "Обслуживание велосипедов/магазин" + "ru": "Обслуживание велосипедов/магазин", + "es": "un taller/tienda de bicis" }, "tags": [ "shop=bicycle" diff --git a/assets/layers/bike_themed_object/bike_themed_object.json b/assets/layers/bike_themed_object/bike_themed_object.json index 760fad8e1b..ca4c705a10 100644 --- a/assets/layers/bike_themed_object/bike_themed_object.json +++ b/assets/layers/bike_themed_object/bike_themed_object.json @@ -1,12 +1,12 @@ { "id": "bike_themed_object", "name": { - "en": "Bike related object", + "en": "Bike-related object", "nl": "Fietsgerelateerd object", "fr": "Objet cycliste", "de": "Weitere fahrradbezogene Objekte", "it": "Oggetto relativo alle bici", - "es": "Objeto relacionada con bicis" + "es": "Objeto relacionado con bicis" }, "minzoom": 13, "source": { @@ -90,6 +90,7 @@ "en": "A layer with bike-themed objects but who don't match any other layer", "nl": "Een laag met fietsgerelateerde diensten, die in geen enkele andere laag konden ondergebracht worden", "de": "Eine Ebene mit Objekten zum Thema Fahrrad, die zu keiner anderen Ebene passen", - "es": "Una capa con los objetos relacionados con bicis pero que no coinciden con ninguna otra capa" + "es": "Una capa con los objetos relacionados con bicis pero que no coinciden con ninguna otra capa", + "fr": "Une couche sur le thème des vélos mais qui ne correspondent à aucune autre couche" } } \ No newline at end of file diff --git a/assets/layers/binocular/binocular.json b/assets/layers/binocular/binocular.json index fd55ea728f..99e609825a 100644 --- a/assets/layers/binocular/binocular.json +++ b/assets/layers/binocular/binocular.json @@ -6,7 +6,9 @@ "de": "Ferngläser", "ru": "Бинокль", "ca": "Prismàtics", - "da": "Kikkert" + "da": "Kikkert", + "es": "Prismáticos", + "fr": "Jumelles" }, "minzoom": 0, "title": { @@ -16,17 +18,20 @@ "de": "Ferngläser", "ru": "Бинокль", "ca": "Prismàtics", - "es": "Binoculares", - "da": "Kikkert" + "es": "Prismáticos", + "da": "Kikkert", + "fr": "Jumelles" } }, "description": { - "en": "Binoculas", + "en": "Binoculars", "nl": "Verrekijkers", - "de": "Fernglas", + "de": "Ferngläser", "ru": "Бинокли", "ca": "Prismàtics", - "da": "Kikkerter" + "da": "Kikkerter", + "es": "Prismáticos", + "fr": "Jumelles" }, "tagRenderings": [ "images", @@ -43,7 +48,9 @@ "en": "Free to use", "nl": "Gratis te gebruiken", "de": "Kostenlose Nutzung", - "da": "Gratis at bruge" + "da": "Gratis at bruge", + "es": "De uso gratuito", + "fr": "En libre service" } } ], @@ -57,15 +64,17 @@ "en": "Using these binoculars costs {charge}", "nl": "Deze verrekijker gebruiken kost {charge}", "de": "Die Benutzung dieses Fernglases kostet {charge}", - "es": "Utilizar estos binoculares cuesta {charge}", - "da": "Brug af denne kikkert koster {charge}" + "es": "Utilizar estos prismáticos cuesta {charge}", + "da": "Brug af denne kikkert koster {charge}", + "fr": "L’utilisation des ces jumelles coûte {charge}" }, "question": { "en": "How much does one have to pay to use these binoculars?", "nl": "Hoeveel moet men betalen om deze verrekijker te gebruiken?", "de": "Wie viel muss man für die Nutzung dieser Ferngläser bezahlen?", - "es": "¿Cuánto hay que pagar para utilizar estos binoculares?", - "da": "Hvor meget koster det at bruge denne kikkert?" + "es": "¿Cuánto hay que pagar para utilizar estos prismáticos?", + "da": "Hvor meget koster det at bruge denne kikkert?", + "fr": "Combien l’utilisation des ces jumelles coûte-t-elle ?" }, "id": "binocular-charge" }, @@ -74,15 +83,17 @@ "en": "When looking through this binocular, in what direction does one look?", "nl": "Welke richting kijkt men uit als men door deze verrekijker kijkt?", "de": "In welche Richtung blickt man, wenn man durch dieses Fernglas schaut?", - "es": "¿Cuándo uno mira a través de este binocular, en qué dirección lo hace?", - "da": "I hvilken retning kigger man, når man ser gennem denne kikkert?" + "es": "¿Cuándo uno mira a través de estos prismáticos, en qué dirección lo hace?", + "da": "I hvilken retning kigger man, når man ser gennem denne kikkert?", + "fr": "Dans quelle direction regarde-t-on en utilisant ces jumelles ?" }, "render": { "en": "Looks towards {direction}°", "nl": "Kijkt richting {direction}°", "de": "Blick in Richtung {direction}°", "es": "Mira hacia {direction}º", - "da": "Kigger mod {direction}°" + "da": "Kigger mod {direction}°", + "fr": "Orienté à {direction}°" }, "freeform": { "key": "direction", @@ -97,19 +108,22 @@ "amenity=binoculars" ], "title": { - "en": "a binoculars", + "en": "a binocular", "nl": "een verrekijker", - "de": "eine ferngläser", + "de": "ein Fernglas", "ru": "бинокль", "ca": "uns prismàtics", - "da": "en kikkert" + "da": "en kikkert", + "es": "unos prismáticos", + "fr": "des jumelles" }, "description": { "en": "A telescope or pair of binoculars mounted on a pole, available to the public to look around. ", "nl": "Een telescoop of verrekijker die op een vaste plaats gemonteerd staat waar iedereen door mag kijken. ", "de": "Ein fest installiertes Teleskop oder Fernglas, für die öffentliche Nutzung. ", - "fr": "Une longue-vue ou une paire de jumelles montée sur un poteau, disponible au public pour scruter les environs.\n", - "da": "Et teleskop eller en kikkert monteret på en stang, som offentligheden kan se sig omkring med. " + "fr": "Une longue-vue ou une paire de jumelles montée sur un poteau, disponible au public pour scruter les environs. ", + "da": "Et teleskop eller en kikkert monteret på en stang, som offentligheden kan se sig omkring med. ", + "es": "Un telescopio o unos prismáticos montados en un poste, disponible para que el público mire alrededor. " }, "preciseInput": { "preferredBackground": "photo" diff --git a/assets/layers/binocular/telescope.svg b/assets/layers/binocular/telescope.svg index 1bbf1b5456..fdbd28d919 100644 --- a/assets/layers/binocular/telescope.svg +++ b/assets/layers/binocular/telescope.svg @@ -1,12 +1,12 @@ + inkscape:cy="272.04444" + inkscape:current-layer="svg9" + width="500px" /> + transform="matrix(1.3399859,0,0,1.3399859,-0.73371278,26.823214)"> een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk", "de": "Eine Kneipe, in der vor allem Bier in ruhiger, entspannter Atmosphäre getrunken wird", "es": "Un bar, principalmente para beber cervezas en un interior templado y relajado", - "da": "En pub, mest et sted at drikke øl i et varme, afslappede omgivelser" + "da": "En pub, mest et sted at drikke øl i et varme, afslappede omgivelser", + "fr": "Un pub, principalement pour boire un verre dans une atmosphère chaleureuse et décontractée" }, "preciseInput": { "preferredBackground": "map" @@ -52,18 +56,21 @@ "title": { "en": "a bar", "nl": "een bar", - "de": "eine bar", + "de": "eine Bar", "ru": "бар", "hu": "bár", "ca": "un pub", "da": "en bar", - "es": "un bar" + "es": "un bar", + "fr": "un bar" }, "description": { "en": "A more modern and commercial bar, possibly with a music and light installation", "nl": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek", "de": "Eine modernere und kommerzielle Bar, möglicherweise mit einer Musik- und Lichtinstallation", - "da": "En mere moderne og kommerciel bar, eventuelt med en musik- og lysinstallation" + "da": "En mere moderne og kommerciel bar, eventuelt med en musik- og lysinstallation", + "es": "Un bar más moderno y comercial, posiblemente con una instalación de música y luz", + "fr": "Un bar plus moderne et commercial, avec éventuellement musique et jeux de lumière" }, "preciseInput": { "preferredBackground": "map" @@ -76,17 +83,43 @@ "title": { "en": "a cafe", "nl": "een café", - "de": "eine café", + "de": "ein Café", "ru": "кафе", "hu": "kávézó", "ca": "un cafè", - "da": "en cafe" + "da": "en cafe", + "es": "una cafetería", + "fr": "un café" }, "description": { "en": "A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment", "nl": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.", "de": "Ein Café, um in ruhiger Umgebung Tee, Kaffee oder ein alkoholisches Getränk zu trinken", - "da": "En café til at drikke te, kaffe eller en alkoholisk drik i rolige omgivelser" + "da": "En café til at drikke te, kaffe eller en alkoholisk drik i rolige omgivelser", + "es": "Una cafetería para beber té, café o una bebida alcohólica en un ambiente tranquilo", + "fr": "Un café pour prendre un thé, un café ou une boisson alcoolisée dans un environnement calme" + }, + "preciseInput": { + "preferredBackground": "map" + } + }, + { + "tags": [ + "amenity=nightclub" + ], + "title": { + "en": "a nightclub or disco", + "nl": "een nachtclub of disco", + "de": "einen Club oder eine Diskothek", + "es": "un club nocturno o una discoteca", + "fr": "une boîte de nuit ou discothèque" + }, + "description": { + "en": "A nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks", + "nl": "Een nachtclub met dansvloer, DJ met bijhorende lichteffecten en bar waar men (alcoholische) dranken kan nuttigen", + "de": "Ein Club oder eine Diskothek mit Fokus auf Tanzen, Musik von einem DJ mit begleitender Lichtshow und einer Bar, an der man (alkoholische) Getränke bekommt", + "es": "Un club nocturno o discoteca centrada en bailar, la música de un DJ acompañado por un espectáculo de luces y un bar donde conseguir bebidas (alcohólicas)", + "fr": "Une boîte de nuit ou discothèque pour danser sur de la musique de DJ accompagnée de jeux de lumière et un bar pour prendre une une boisson (alcoolisée)" }, "preciseInput": { "preferredBackground": "map" @@ -99,7 +132,9 @@ "nl": "Café", "ca": "Bar", "de": "Kneipe", - "da": "Pub" + "da": "Pub", + "es": "Pub", + "fr": "Bar" }, "mappings": [ { @@ -114,13 +149,16 @@ "de": "{name}", "ru": "{name}", "ca": "{name}", - "da": "{name}" + "da": "{name}", + "es": "{name}", + "fr": "{name}" } } ] }, "tagRenderings": [ "images", + "level", { "question": { "nl": "Wat is de naam van dit café?", @@ -128,7 +166,8 @@ "de": "Wie heißt diese Kneipe?", "fr": "Quel est le nom de ce pub ?", "hu": "Mi a neve ennek a kocsmának?", - "da": "Hvad hedder denne pub?" + "da": "Hvad hedder denne pub?", + "es": "¿Cual es el nombre de este pub?" }, "render": { "nl": "De naam van dit café is {name}", @@ -136,7 +175,8 @@ "de": "Diese Kneipe heißt {name}", "fr": "Ce pub se nomme {name}", "hu": "A kocsma neve: {name}", - "da": "Denne pub hedder {name}" + "da": "Denne pub hedder {name}", + "es": "Este pub se llama {name}" }, "freeform": { "key": "name" @@ -145,11 +185,13 @@ }, { "question": { - "en": "What kind of cafe is this", + "en": "What kind of cafe is this?", "nl": "Welk soort café is dit?", - "de": "Was ist das für ein Café", + "de": "Was ist das für ein Café?", "hu": "Milyen fajta kávézó ez?", - "da": "Hvilken slags cafe er dette" + "da": "Hvilken slags cafe er dette", + "es": "Qué tipo de cafetería es esta", + "fr": "Quel genre de café est-ce ?" }, "mappings": [ { @@ -157,7 +199,9 @@ "then": { "en": "A pub, mostly for drinking beers in a warm, relaxed interior", "nl": "Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk", - "de": "Eine Kneipe, in der vor allem Bier in ruhiger, entspannter Atmosphäre getrunken wird" + "de": "Eine Kneipe, in der vor allem Bier in ruhiger, entspannter Atmosphäre getrunken wird", + "es": "Un bar, principalmente para beber cervezas en un interior cálido y relajado", + "fr": "Un pub, principalement pour boire un verre dans une atmosphère chaleureuse et décontractée" } }, { @@ -166,7 +210,9 @@ "en": "A more modern and commercial bar, possibly with a music and light installation", "nl": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek", "de": "Eine modernere und kommerzielle Bar, möglicherweise mit einer Musik- und Lichtinstallation", - "da": "En mere moderne og kommerciel bar, eventuelt med en musik- og lysinstallation" + "da": "En mere moderne og kommerciel bar, eventuelt med en musik- og lysinstallation", + "es": "Un bar más moderno y comercial, posiblemente con una instalación de música y luz", + "fr": "Un bar plus moderne et commercial, avec éventuellement musique et jeux de lumière" } }, { @@ -175,7 +221,9 @@ "en": "A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment", "nl": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.", "de": "Ein Café, um in ruhiger Umgebung Tee, Kaffee oder ein alkoholisches Getränk zu trinken", - "da": "En café til at drikke te, kaffe eller en alkoholisk drik i rolige omgivelser" + "da": "En café til at drikke te, kaffe eller en alkoholisk drik i rolige omgivelser", + "es": "Una cafetería para beber té, café o una bebida alcohólica en un ambiente tranquilo", + "fr": "Un café pour boire du thé, du café ou une boisson alcoolisée au calme" } }, { @@ -184,7 +232,9 @@ "en": "A restuarant where one can get a proper meal", "nl": "Dit is een restaurant waar men een maaltijd geserveerd krijgt", "de": "Ein Restaurant, in dem man ordentlich essen kann", - "da": "En restaurant, hvor man kan få et ordentligt måltid" + "da": "En restaurant, hvor man kan få et ordentligt måltid", + "es": "Un restaurante donde puedes comer una comida de verdad", + "fr": "Un restaurant où l'on peut prendre un bon repas" } }, { @@ -193,9 +243,21 @@ "en": "An open space where beer is served, typically seen in Germany", "nl": "Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland", "de": "Ein Außenbereich mit Bierausschank, typischerweise in Deutschland", - "da": "Et åbent rum, hvor der serveres øl, typisk set i Tyskland" + "da": "Et åbent rum, hvor der serveres øl, typisk set i Tyskland", + "es": "Un espacio abierto donde se sirve cerveza, típico de Alemania", + "fr": "Un espace ouvert où la bière est servie, typiquement vu en Allemagne" }, "hideInAnswer": "_country!=de" + }, + { + "if": "amenity=nightclub", + "then": { + "en": "This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks", + "nl": "Dit is een nachtclub met dansvloer, DJ met bijhorende lichteffecten en bar waar men (alcoholische) dranken kan nuttigen", + "de": "Dies ist ein Club oder eine Disco mit Fokus auf Tanzen, Musik von einem DJ mit begleitender Lichtshow und einer Bar, an der man (alkoholische) Getränke bekommt", + "es": "Este es un club nocturno o discoteca centrado en bailar, música de un DJ con un espectáculo de luces que la acompaña y un bar donde conseguir bebidas (alcohólicas)", + "fr": "Il s'agit d'une boîte de nuit ou discothèque avec un accent sur la danse, la musique d'un DJ avec un spectacle de lumière et un bar pour prendre des boissons (alcoolisées)" + } } ], "id": "Classification" @@ -206,8 +268,10 @@ "phone", "payment-options", "wheelchair-access", + "smoking", "service:electricity", - "dog-access" + "dog-access", + "reviews" ], "filter": [ { @@ -216,7 +280,7 @@ { "question": { "en": "Opened now", - "nl": "Nu geopened", + "nl": "Nu geopend", "de": "Derzeit geöffnet", "fr": "Ouvert maintenant", "hu": "Most nyitva van", @@ -243,7 +307,8 @@ "en": "{title()} has closed down permanently", "de": "{title()} wurde dauerhaft geschlossen", "es": "{title()} ha cerrado permanentemente", - "da": "{title()} er lukket permanent" + "da": "{title()} er lukket permanent", + "fr": "{title()} est définitivement fermé" }, "changesetMessage": "shop_closed" } @@ -258,6 +323,10 @@ { "if": "amenity=cafe", "then": "circle:white;./assets/layers/cafe_pub/cafe.svg" + }, + { + "if": "amenity=nightclub", + "then": "circle:white;./assets/layers/cafe_pub/nightclub.svg" } ] }, @@ -286,7 +355,8 @@ "hu": "Egy olyan réteg, amely kávézókat és kocsmákat jelenít meg, ahol össze lehet gyűlni egy ital köré. A réteg néhány lényeges kérdést tesz fel", "nl": "Een laag die kroegen en koffiehuizen toont waar je iets kunt drinken. De laag zal je enkele vragen stellen", "de": "Eine Ebene mit Cafés und Kneipen, in denen man sich auf ein Getränk treffen kann. Die Ebene fragt nach einigen relevanten Eigenschaften", - "es": "Una capa que muestra cafeterías y bares donde uno se puede reunir con una bebida. La capa pregunta algunas preguntas relevantes", - "da": "Et lag med caféer og pubber, hvor man kan samles omkring en drink. Laget stiller nogle relevante spørgsmål" + "es": "Una capa que muestra cafeterías y bares donde uno se puede reunir con una bebida. La capa hace algunas preguntas relevantes", + "da": "Et lag med caféer og pubber, hvor man kan samles omkring en drink. Laget stiller nogle relevante spørgsmål", + "fr": "Une couche montrants les cafés et pubs où l’on peut prendre un verre. Cette couche pose des questions y afférentes." } } \ No newline at end of file diff --git a/assets/layers/cafe_pub/license_info.json b/assets/layers/cafe_pub/license_info.json index dd4798197e..9ba0c84577 100644 --- a/assets/layers/cafe_pub/license_info.json +++ b/assets/layers/cafe_pub/license_info.json @@ -9,6 +9,16 @@ "https://wiki.openstreetmap.org/wiki/File:Cafe-16.svg" ] }, + { + "path": "nightclub.svg", + "license": "CC0", + "authors": [ + "Osm Carto" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Nightclub-16.svg" + ] + }, { "path": "pub.svg", "license": "CC0", diff --git a/assets/layers/cafe_pub/nightclub.svg b/assets/layers/cafe_pub/nightclub.svg new file mode 100644 index 0000000000..5e34e56312 --- /dev/null +++ b/assets/layers/cafe_pub/nightclub.svg @@ -0,0 +1,27 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/assets/layers/charging_station/charging_station.json b/assets/layers/charging_station/charging_station.json index 665dc666c8..b47d96fb9e 100644 --- a/assets/layers/charging_station/charging_station.json +++ b/assets/layers/charging_station/charging_station.json @@ -3,8 +3,9 @@ "name": { "en": "Charging stations", "nl": "Oplaadpunten", + "ca": "Estacions de càrrega", "de": "Ladestationen", - "ca": "Estacions de càrrega" + "es": "Estaciones de carga" }, "minzoom": 10, "source": { @@ -25,7 +26,9 @@ "render": { "en": "Charging station", "nl": "Oplaadpunt", - "ca": "Estació de càrrega" + "ca": "Estació de càrrega", + "de": "Ladestation", + "es": "Estación de carga" }, "mappings": [ { @@ -42,7 +45,9 @@ }, "then": { "en": "Charging station for electrical bicycles", - "nl": "Oplaadpunt voor elektrische fietsen" + "nl": "Oplaadpunt voor elektrische fietsen", + "de": "Ladestation für Elektrofahrräder", + "es": "Estación de carga para bicicletas eléctricas" } }, { @@ -59,7 +64,9 @@ }, "then": { "en": "Charging station for cars", - "nl": "Oplaadpunt voor elektrische auto's" + "nl": "Oplaadpunt voor elektrische auto's", + "de": "Ladestation für Autos", + "es": "Estación de carga para coches" } } ] @@ -67,8 +74,10 @@ "description": { "en": "A charging station", "nl": "Oplaadpunten", + "da": "En ladestation", "de": "Eine Ladestation", - "da": "En ladestation" + "es": "Una estación de carga", + "fr": "Une station de recharge" }, "tagRenderings": [ "images", @@ -78,7 +87,7 @@ "question": { "en": "Which vehicles are allowed to charge here?", "nl": "Welke voertuigen kunnen hier opgeladen worden?", - "de": "Welche Fahrzeuge dürfen hier laden?", + "de": "Welche Fahrzeuge können hier laden?", "es": "¿A qué vehículos se permite la carga aquí?" }, "multiAnswer": true, @@ -89,7 +98,8 @@ "then": { "en": "Bicycles can be charged here", "nl": "Elektrische fietsen kunnen hier opgeladen worden", - "de": "Fahrräder können hier geladen werden" + "de": "Hier können Fahrräder laden", + "es": "Aquí se pueden cargar bicicletas" } }, { @@ -98,7 +108,8 @@ "then": { "en": "Cars can be charged here", "nl": "Elektrische auto's kunnen hier opgeladen worden", - "de": "Autos können hier geladen werden" + "de": "Hier können Autos laden", + "es": "Aquí se pueden cargar coches" } }, { @@ -107,7 +118,8 @@ "then": { "en": "Scooters can be charged here", "nl": "Elektrische scooters (snorfiets of bromfiets) kunnen hier opgeladen worden", - "de": "Roller können hier geladen werden" + "de": "Hier können Roller laden", + "es": "Aquí se pueden cargar scooters" } }, { @@ -116,7 +128,7 @@ "then": { "en": "Heavy good vehicles (such as trucks) can be charged here", "nl": "Vrachtwagens kunnen hier opgeladen worden", - "de": "LKW können hier geladen werden" + "de": "Hier können LKW laden" } }, { @@ -125,7 +137,8 @@ "then": { "en": "Buses can be charged here", "nl": "Bussen kunnen hier opgeladen worden", - "de": "Busse können hier geladen werden" + "de": "Hier können Busse laden", + "es": "Aquí se pueden cargar buses" } } ] @@ -135,12 +148,14 @@ "question": { "en": "Who is allowed to use this charging station?", "nl": "Wie mag er dit oplaadpunt gebruiken?", - "de": "Wer darf diese Ladestation benutzen?" + "de": "Wer darf diese Ladestation benutzen?", + "es": "¿A quién se le permite utilizar esta estación de carga?" }, "render": { "en": "Access is {access}", "nl": "Toegang voor {access}", - "de": "Zugang ist {access}" + "de": "Zugang ist {access}", + "es": "El acceso está {access}" }, "freeform": { "key": "access", @@ -154,7 +169,8 @@ "then": { "en": "Anyone can use this charging station (payment might be needed)", "nl": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)", - "de": "Jeder kann diese Ladestation nutzen (eventuell gegen Bezahlung)" + "de": "Jeder kann die Station nutzen (eventuell gegen Bezahlung)", + "es": "Cualquiera puede utilizar esta estación de carga (puede requerirse un pago)" } }, { @@ -167,7 +183,8 @@ "then": { "en": "Anyone can use this charging station (payment might be needed)", "nl": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)", - "de": "Jeder kann diese Ladestation nutzen (eventuell gegen Bezahlung)" + "de": "Jeder kann diese Ladestation nutzen (eventuell gegen Bezahlung)", + "es": "Cualquiera puede utilizar esta estación de carga (puede requerirse un pago)" }, "hideInAnswer": true }, @@ -176,7 +193,8 @@ "then": { "en": "Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests", "nl": "Enkel klanten van de bijhorende plaats mogen dit oplaadpunt gebruiken
Bv. op de parking van een hotel en enkel toegankelijk voor klanten van dit hotel", - "de": "Nur Kunden des Ortes, zu dem diese Station gehört, können diese Ladestation nutzen
Z.B. eine von einem Hotel betriebene Ladestation, die nur von dessen Gästen genutzt werden kann" + "de": "Nur Kunden des Ortes, zu dem diese Station gehört, können diese Ladestation nutzen
Z.B. eine von einem Hotel betriebene Ladestation, die nur von dessen Gästen genutzt werden kann", + "es": "Solo clientes del lugar al que pertenece esta estación la pueden utilizar
Ej. una estación de carga operada por un hotel que solo es utilizable por sus huéspedes" } }, { @@ -184,15 +202,17 @@ "then": { "en": "A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station", "nl": "Een sleutel is nodig om dit oplaadpunt te gebruiken
Bv. voor klanten van een hotel of een bar, die de sleutel aan de receptie kunnen krijgen", - "de": "Für den Zugang zu dieser Ladestation muss ein Schlüssel angefordert werden
Z.B. eine von einem Hotel betriebene Ladestation, die nur von dessen Gästen genutzt werden kann, die an der Rezeption einen Schlüssel erhalten, um die Ladestation aufzuschließen" + "de": "Für den Zugang zur Station muss ein Schlüssel angefordert werden
z.B. eine von einem Hotel betriebene Ladestation, die nur von dessen Gästen genutzt werden kann, die an der Rezeption einen Schlüssel erhalten, um die Ladestation aufzuschließen", + "es": "Se debe de solicitar una llave para utilizar esta estación de carga
Ej. una estación de carga operada por un hotel que solo es utilizable por sus huéspedes, que reciben una llave de la recepción para desbloquear la estación de carga" } }, { "if": "access=private", "then": { - "en": "Not accessible to the general public (e.g. only accessible to the owners, employees, ...)", - "nl": "Niet toegankelijk voor het publiek
Bv. enkel toegankelijk voor de eigenaar, medewerkers ,...", - "de": "Nicht für die Allgemeinheit zugänglich (z. B. nur für die Eigentümer, Mitarbeiter, ...)" + "en": "Not accessible to the general public (e.g. only accessible to the owners, employees, …)", + "nl": "Niet toegankelijk voor het publiek
Bv. enkel toegankelijk voor de eigenaar, medewerkers, ...", + "de": "Die Station ist nicht für die Allgemeinheit zugänglich (z. B. nur für die Eigentümer, Mitarbeiter, …)", + "es": "No accesible al público general (ej. solo accesible a los propietarios, empleados, ...)" } } ] @@ -202,12 +222,14 @@ "render": { "en": "{capacity} vehicles can be charged here at the same time", "nl": "{capacity} voertuigen kunnen hier op hetzelfde moment opgeladen worden", - "de": "{capacity} Fahrzeuge können hier gleichzeitig laden" + "de": "Hier können {capacity} Fahrzeuge gleichzeitig laden", + "es": "Aquí se pueden cargar {capacity} vehículos al mismo tiempo" }, "question": { "en": "How much vehicles can be charged here at the same time?", "nl": "Hoeveel voertuigen kunnen hier opgeladen worden?", - "de": "Wie viele Fahrzeuge können hier gleichzeitig geladen werden?" + "de": "Wie viele Fahrzeuge können hier gleichzeitig laden?", + "es": "¿Cuántos vehículos se pueden cargar a la vez aquí?" }, "freeform": { "key": "capacity", @@ -219,7 +241,8 @@ "question": { "en": "Which charging connections are available here?", "nl": "Welke laadaansluitingen zijn hier beschikbaar?", - "de": "Welche Ladeanschlüsse gibt es hier?" + "de": "Welche Ladeanschlüsse gibt es hier?", + "es": "¿Qué tipo de conexiones de carga están disponibles aquí?" }, "multiAnswer": true, "mappings": [ @@ -229,7 +252,8 @@ "then": { "en": "Schuko wall plug without ground pin (CEE7/4 type F)", "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F)", - "de": "Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)" + "de": "Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)", + "es": "Enchufe de pared Schuko sin pin de tierra (CEE7/4 tipo F)" }, "icon": { "path": "./assets/layers/charging_station/CEE7_4F.svg", @@ -258,7 +282,8 @@ "then": { "en": "Schuko wall plug without ground pin (CEE7/4 type F)", "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F)", - "de": "Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)" + "de": "Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)", + "es": "Enchufe de pared Schuko sin pin de tierra (CEE7/4 tipo F)" }, "hideInAnswer": true, "icon": { @@ -272,7 +297,8 @@ "then": { "en": "European wall plug with ground pin (CEE7/4 type E)", "nl": "Europese stekker met aardingspin (CEE7/4 type E)", - "de": "Europäischer Netzstecker mit Erdungsstift (CEE7/4 Typ E)" + "de": "Europäischer Netzstecker mit Erdungsstift (CEE7/4 Typ E)", + "es": "Enchufe de pared Europeo con pin de tierra (CEE7/4 tipo E)" }, "icon": { "path": "./assets/layers/charging_station/TypeE.svg", @@ -289,7 +315,8 @@ "then": { "en": "European wall plug with ground pin (CEE7/4 type E)", "nl": "Europese stekker met aardingspin (CEE7/4 type E)", - "de": "Europäischer Netzstecker mit Erdungsstift (CEE7/4 Typ E)" + "de": "Europäischer Netzstecker mit Erdungsstift (CEE7/4 Typ E)", + "es": "Enchufe de pared Europeo con pin de tierra (CEE7/4 tipo E)" }, "hideInAnswer": true, "icon": { @@ -304,7 +331,8 @@ "en": "Chademo", "nl": "Chademo", "ca": "Chademo", - "de": "Chademo" + "de": "Chademo-Anschluss", + "es": "Chademo" }, "icon": { "path": "./assets/layers/charging_station/Chademo_type4.svg", @@ -348,7 +376,8 @@ "en": "Chademo", "nl": "Chademo", "ca": "Chademo", - "de": "Chademo" + "de": "Chademo-Anschluss", + "es": "Chademo" }, "hideInAnswer": true, "icon": { @@ -362,7 +391,8 @@ "then": { "en": "Type 1 with cable (J1772)", "nl": "Type 1 met kabel (J1772)", - "de": "Typ 1 mit Kabel (J1772)" + "de": "Typ 1 mit Kabel (J1772)", + "es": "Tipo 1 con cable (J1772)" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -405,7 +435,8 @@ "then": { "en": "Type 1 with cable (J1772)", "nl": "Type 1 met kabel (J1772)", - "de": "Typ 1 mit Kabel (J1772)" + "de": "Typ 1 mit Kabel (J1772)", + "es": "Tipo 1 con cable (J1772)" }, "hideInAnswer": true, "icon": { @@ -419,7 +450,8 @@ "then": { "en": "Type 1 without cable (J1772)", "nl": "Type 1 zonder kabel (J1772)", - "de": "Typ 1 ohne Kabel (J1772)" + "de": "Typ 1 ohne Kabel (J1772)", + "es": "Tipo 1 sin cable (J1772)" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -462,7 +494,8 @@ "then": { "en": "Type 1 without cable (J1772)", "nl": "Type 1 zonder kabel (J1772)", - "de": " Typ 1 ohne Kabel (J1772)" + "de": " Typ 1 ohne Kabel (J1772)", + "es": "Tipo 1sin cable (J1772)" }, "hideInAnswer": true, "icon": { @@ -476,7 +509,8 @@ "then": { "en": "Type 1 CCS (aka Type 1 Combo)", "nl": "Type 1 CCS (ook gekend als Type 1 Combo)", - "de": "Typ 1 CCS (auch bekannt als Typ 1 Combo)" + "de": "Typ 1 CCS (Typ 1 Combo)", + "es": "CSS Tipo 1 (también conocido como Tipo 1 Combo)" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -519,7 +553,8 @@ "then": { "en": "Type 1 CCS (aka Type 1 Combo)", "nl": "Type 1 CCS (ook gekend als Type 1 Combo)", - "de": " Typ 1 CCS (auch bekannt als Typ 1 Combo)" + "de": " Typ 1 CCS (auch bekannt als Typ 1 Combo)", + "es": "CSS Tipo 1 (también conocido como Tipo 1 Combo)" }, "hideInAnswer": true, "icon": { @@ -533,7 +568,8 @@ "then": { "en": "Tesla Supercharger", "nl": "Tesla Supercharger", - "de": "Tesla Supercharger" + "de": "Tesla Supercharger", + "es": "Supercargador de Tesla" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -576,7 +612,8 @@ "then": { "en": "Tesla Supercharger", "nl": "Tesla Supercharger", - "de": "Tesla Supercharger" + "de": "Tesla Supercharger", + "es": "Supercargador de Tesla" }, "hideInAnswer": true, "icon": { @@ -590,7 +627,8 @@ "then": { "en": "Type 2 (mennekes)", "nl": "Type 2 (mennekes)", - "de": "Typ 2 (mennekes)" + "de": "Typ 2 (Mennekes)", + "es": "Tipo 2 (mennekes)" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -633,7 +671,8 @@ "then": { "en": "Type 2 (mennekes)", "nl": "Type 2 (mennekes)", - "de": "Typ 2 (mennekes)" + "de": "Typ 2 (Mennekes)", + "es": "Tipo 2 (mennekes)" }, "hideInAnswer": true, "icon": { @@ -647,7 +686,8 @@ "then": { "en": "Type 2 CCS (mennekes)", "nl": "Type 2 CCS (mennekes)", - "de": "Typ 2 CCS (mennekes)" + "de": "Typ 2 CCS (Mennekes)", + "es": "CSS Tipo 2 (mennekes)" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -690,7 +730,8 @@ "then": { "en": "Type 2 CCS (mennekes)", "nl": "Type 2 CCS (mennekes)", - "de": "Typ 2 CCS (mennekes)" + "de": "Typ 2 CCS (mennekes)", + "es": "CSS Tipo 2 (mennekes)" }, "hideInAnswer": true, "icon": { @@ -704,7 +745,8 @@ "then": { "en": "Type 2 with cable (mennekes)", "nl": "Type 2 met kabel (J1772)", - "de": "Typ 2 mit Kabel (mennekes)" + "de": "Typ 2 mit Kabel (Mennekes)", + "es": "Tipo 2 con cable (mennekes)" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -747,7 +789,8 @@ "then": { "en": "Type 2 with cable (mennekes)", "nl": "Type 2 met kabel (J1772)", - "de": "Typ 2 mit Kabel (mennekes)" + "de": "Typ 2 mit Kabel (mennekes)", + "es": "Tipo 2 con cable (mennekes)" }, "hideInAnswer": true, "icon": { @@ -761,7 +804,8 @@ "then": { "en": "Tesla Supercharger CCS (a branded type2_css)", "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo)", - "de": "Tesla Supercharger CCS (ein Markenzeichen von type2_css)" + "de": "Tesla Supercharger CCS (Typ 2 CSS von Tesla)", + "es": "CCS Supercargador Tesla (un tipo2_css con marca)" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -804,7 +848,8 @@ "then": { "en": "Tesla Supercharger CCS (a branded type2_css)", "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo)", - "de": "Tesla Supercharger CCS (ein Markenzeichen von type2_css)" + "de": "Tesla Supercharger CCS (ein Markenzeichen von type2_css)", + "es": "CCS Supercargador Tesla (un tipo2_css con marca)" }, "hideInAnswer": true, "icon": { @@ -818,7 +863,8 @@ "then": { "en": "Tesla Supercharger (destination)", "nl": "Tesla Supercharger (destination)", - "de": "Tesla Supercharger (Destination)" + "de": "Tesla Supercharger (Destination)", + "es": "Supercargador Tesla (destino" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -867,7 +913,8 @@ "then": { "en": "Tesla Supercharger (destination)", "nl": "Tesla Supercharger (destination)", - "de": "Tesla Supercharger (Destination)" + "de": "Tesla Supercharger (Destination)", + "es": "Supercargador Tesla (destino)" }, "hideInAnswer": true, "icon": { @@ -881,7 +928,8 @@ "then": { "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla)", "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)", - "de": "Tesla supercharger (Destination) (Typ 2 mit Kabel von Tesla)" + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla)", + "es": "Supercargador Tesla (destino) (Un Tipo 2 con un cable de marca tesla)" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -930,7 +978,8 @@ "then": { "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla)", "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)", - "de": "Tesla supercharger (Destination) (Typ 2 mit Kabel von Tesla)" + "de": "Tesla supercharger (Destination) (Typ 2 mit Kabel von Tesla)", + "es": "Supercargador Tesla (destino) (Un Tipo 2 con un cable de marca tesla)" }, "hideInAnswer": true, "icon": { @@ -944,7 +993,8 @@ "then": { "en": "USB to charge phones and small electronics", "nl": "USB om GSMs en kleine electronica op te laden", - "de": "USB zum Aufladen von Handys und kleinen Elektrogeräten" + "de": "USB zum Aufladen von Handys und kleinen Elektrogeräten", + "es": "USB para cargar teléfonos y dispositivos pequeños" }, "icon": { "path": "./assets/layers/charging_station/usb_port.svg", @@ -961,7 +1011,8 @@ "then": { "en": "USB to charge phones and small electronics", "nl": "USB om GSMs en kleine electronica op te laden", - "de": "USB zum Aufladen von Handys und kleinen Elektrogeräten" + "de": "USB zum Aufladen von Handys und kleinen Elektrogeräten", + "es": "USB para cargar teléfonos y dispositivos pequeños" }, "hideInAnswer": true, "icon": { @@ -975,7 +1026,8 @@ "then": { "en": "Bosch Active Connect with 3 pins and cable", "nl": "Bosch Active Connect met 3 pinnen aan een kabel", - "de": "Bosch Active Connect mit 3 Pins und Kabel" + "de": "Bosch Active Connect mit 3 Pins und Kabel", + "es": "Bosch Active Connect con 3 pines y cable" }, "icon": { "path": "./assets/layers/charging_station/bosch-3pin.svg", @@ -1014,7 +1066,8 @@ "then": { "en": "Bosch Active Connect with 3 pins and cable", "nl": "Bosch Active Connect met 3 pinnen aan een kabel", - "de": " Bosch Active Connect mit 3 Pins und Kabel" + "de": " Bosch Active Connect mit 3 Pins und Kabel", + "es": "Bosch Active Connect con 3 pines y cable" }, "hideInAnswer": true, "icon": { @@ -1028,7 +1081,8 @@ "then": { "en": "Bosch Active Connect with 5 pins and cable", "nl": "Bosch Active Connect met 5 pinnen aan een kabel", - "de": "Bosch Active Connect mit 5 Pins und Kabel" + "de": "Bosch Active Connect mit 5 Pins und Kabel", + "es": "Bosch Active Connect con 5 pines y cable" }, "icon": { "path": "./assets/layers/charging_station/bosch-5pin.svg", @@ -1067,7 +1121,8 @@ "then": { "en": "Bosch Active Connect with 5 pins and cable", "nl": "Bosch Active Connect met 5 pinnen aan een kabel", - "de": " Bosch Active Connect mit 5 Pins und Kabel" + "de": " Bosch Active Connect mit 5 Pins und Kabel", + "es": "Bosch Active Connect con 5 pines y cable" }, "hideInAnswer": true, "icon": { @@ -1127,11 +1182,13 @@ "id": "plugs-2", "question": { "en": "How much plugs of type
Chademo
are available here?", - "nl": "Hoeveel stekkers van type
Chademo
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Chademo
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Chademo
sind hier vorhanden?" }, "render": { "en": "There are {socket:chademo} plugs of type
Chademo
available here", - "nl": "Hier zijn {socket:chademo} stekkers van het type
Chademo
" + "nl": "Hier zijn {socket:chademo} stekkers van het type
Chademo
", + "de": "Hier sind {socket:chademo} Stecker des Typs
Chademo
vorhanden" }, "freeform": { "key": "socket:chademo", @@ -1148,11 +1205,13 @@ "id": "plugs-3", "question": { "en": "How much plugs of type
Type 1 with cable (J1772)
are available here?", - "nl": "Hoeveel stekkers van type
Type 1 met kabel (J1772)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Type 1 met kabel (J1772)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker vom Typ
Typ 1 mit Kabel (J1772)
sind hier vorhanden?" }, "render": { "en": "There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here", - "nl": "Hier zijn {socket:type1_cable} stekkers van het type
Type 1 met kabel (J1772)
" + "nl": "Hier zijn {socket:type1_cable} stekkers van het type
Type 1 met kabel (J1772)
", + "de": "Hier sind {socket:type1_cable} Stecker vom Typ
Typ 1 mit Kabel (J1772)
vorhanden" }, "freeform": { "key": "socket:type1_cable", @@ -1169,11 +1228,13 @@ "id": "plugs-4", "question": { "en": "How much plugs of type
Type 1 without cable (J1772)
are available here?", - "nl": "Hoeveel stekkers van type
Type 1 zonder kabel (J1772)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Type 1 zonder kabel (J1772)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Typ 1 ohne Kabel (J1772)
sind hier vorhanden?" }, "render": { "en": "There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here", - "nl": "Hier zijn {socket:type1} stekkers van het type
Type 1 zonder kabel (J1772)
" + "nl": "Hier zijn {socket:type1} stekkers van het type
Type 1 zonder kabel (J1772)
", + "de": "Hier sind {socket:type1} Stecker des Typs
Typ 1 ohne Kabel (J1772)
vorhanden" }, "freeform": { "key": "socket:type1", @@ -1190,11 +1251,13 @@ "id": "plugs-5", "question": { "en": "How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here?", - "nl": "Hoeveel stekkers van type
Type 1 CCS (ook gekend als Type 1 Combo)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Type 1 CCS (ook gekend als Type 1 Combo)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Typ 1 CCS (Typ 1 Combo)
sind hier vorhanden?" }, "render": { "en": "There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here", - "nl": "Hier zijn {socket:type1_combo} stekkers van het type
Type 1 CCS (ook gekend als Type 1 Combo)
" + "nl": "Hier zijn {socket:type1_combo} stekkers van het type
Type 1 CCS (ook gekend als Type 1 Combo)
", + "de": "Hier sind {socket:type1_combo} Stecker des Typs
Typ 1 CCS (Typ 1 Combo)
vorhanden" }, "freeform": { "key": "socket:type1_combo", @@ -1211,11 +1274,13 @@ "id": "plugs-6", "question": { "en": "How much plugs of type
Tesla Supercharger
are available here?", - "nl": "Hoeveel stekkers van type
Tesla Supercharger
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Tesla Supercharger
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Tesla Supercharger
sind hier vorhanden?" }, "render": { "en": "There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here", - "nl": "Hier zijn {socket:tesla_supercharger} stekkers van het type
Tesla Supercharger
" + "nl": "Hier zijn {socket:tesla_supercharger} stekkers van het type
Tesla Supercharger
", + "de": "Hier sind {socket:tesla_supercharger} Stecker des Typs
Tesla Supercharger
vorhanden" }, "freeform": { "key": "socket:tesla_supercharger", @@ -1232,11 +1297,13 @@ "id": "plugs-7", "question": { "en": "How much plugs of type
Type 2 (mennekes)
are available here?", - "nl": "Hoeveel stekkers van type
Type 2 (mennekes)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Type 2 (mennekes)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Typ 2 (Mennekes)
sind hier vorhanden?" }, "render": { "en": "There are {socket:type2} plugs of type
Type 2 (mennekes)
available here", - "nl": "Hier zijn {socket:type2} stekkers van het type
Type 2 (mennekes)
" + "nl": "Hier zijn {socket:type2} stekkers van het type
Type 2 (mennekes)
", + "de": "Hier sind {socket:type2} Stecker des Typs
Typ 2 (Mennekes)
vorhanden" }, "freeform": { "key": "socket:type2", @@ -1253,11 +1320,13 @@ "id": "plugs-8", "question": { "en": "How much plugs of type
Type 2 CCS (mennekes)
are available here?", - "nl": "Hoeveel stekkers van type
Type 2 CCS (mennekes)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Type 2 CCS (mennekes)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Typ 2 CCS (Mennekes)
sind hier vorhanden?" }, "render": { "en": "There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here", - "nl": "Hier zijn {socket:type2_combo} stekkers van het type
Type 2 CCS (mennekes)
" + "nl": "Hier zijn {socket:type2_combo} stekkers van het type
Type 2 CCS (mennekes)
", + "de": "Hier sind {socket:type2_combo} Stecker des Typs
Typ 2 CCS (Mennekes)
vorhanden" }, "freeform": { "key": "socket:type2_combo", @@ -1274,11 +1343,13 @@ "id": "plugs-9", "question": { "en": "How much plugs of type
Type 2 with cable (mennekes)
are available here?", - "nl": "Hoeveel stekkers van type
Type 2 met kabel (J1772)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Type 2 met kabel (J1772)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Typ 2 mit Kabel (Mennekes)
sind hier vorhanden?" }, "render": { "en": "There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here", - "nl": "Hier zijn {socket:type2_cable} stekkers van het type
Type 2 met kabel (J1772)
" + "nl": "Hier zijn {socket:type2_cable} stekkers van het type
Type 2 met kabel (J1772)
", + "de": "Hier sind {socket:type2_cable} Stecker vom Typ
Typ 2 mit Kabel (Mennekes)
vorhanden" }, "freeform": { "key": "socket:type2_cable", @@ -1295,11 +1366,13 @@ "id": "plugs-10", "question": { "en": "How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here?", - "nl": "Hoeveel stekkers van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Tesla Supercharger CCS (Typ 2 CSS von Tesla)
sind hier vorhanden?" }, "render": { "en": "There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here", - "nl": "Hier zijn {socket:tesla_supercharger_ccs} stekkers van het type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" + "nl": "Hier zijn {socket:tesla_supercharger_ccs} stekkers van het type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
", + "de": "Hier sind {socket:tesla_supercharger_ccs} Stecker des Typs
Tesla Supercharger CCS (Typ2 CSS von Tesla)
vorhanden" }, "freeform": { "key": "socket:tesla_supercharger_ccs", @@ -1316,11 +1389,13 @@ "id": "plugs-11", "question": { "en": "How much plugs of type
Tesla Supercharger (destination)
are available here?", - "nl": "Hoeveel stekkers van type
Tesla Supercharger (destination)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Tesla Supercharger (destination)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Tesla Supercharger (Destination)
sind hier vorhanden?" }, "render": { "en": "There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here", - "nl": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla Supercharger (destination)
" + "nl": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla Supercharger (destination)
", + "de": "Hier sind {socket:tesla_destination} Stecker des Typs
Tesla Supercharger (Destination)
vorhanden" }, "freeform": { "key": "socket:tesla_destination", @@ -1337,11 +1412,13 @@ "id": "plugs-12", "question": { "en": "How much plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
are available here?", - "nl": "Hoeveel stekkers van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Tesla Supercharger (Destination) (Typ 2 Stecker mit Kabel von Tesla)
sind hier vorhanden?" }, "render": { "en": "There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
available here", - "nl": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
" + "nl": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
", + "de": "Hier sind {socket:tesla_destination} Stecker des Typs
Tesla Supercharger (Destination) (Typ 2 Stecker mit Kabel von Tesla)
vorhanden" }, "freeform": { "key": "socket:tesla_destination", @@ -1358,11 +1435,13 @@ "id": "plugs-13", "question": { "en": "How much plugs of type
USB to charge phones and small electronics
are available here?", - "nl": "Hoeveel stekkers van type
USB om GSMs en kleine electronica op te laden
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
USB om GSMs en kleine electronica op te laden
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
USB zum Aufladen von Telefonen und kleinen elektronischen Geräten
sind hier vorhanden?" }, "render": { "en": "There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here", - "nl": "Hier zijn {socket:USB-A} stekkers van het type
USB om GSMs en kleine electronica op te laden
" + "nl": "Hier zijn {socket:USB-A} stekkers van het type
USB om GSMs en kleine electronica op te laden
", + "de": "Hier sind {socket:USB-A}-Stecker des Typs
USB zum Aufladen von Telefonen und kleinen elektronischen Geräten
vorhanden" }, "freeform": { "key": "socket:USB-A", @@ -1379,11 +1458,13 @@ "id": "plugs-14", "question": { "en": "How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here?", - "nl": "Hoeveel stekkers van type
Bosch Active Connect met 3 pinnen aan een kabel
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Bosch Active Connect met 3 pinnen aan een kabel
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Bosch Active Connect mit 3 Stiften und Kabel
sind hier vorhanden?" }, "render": { "en": "There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here", - "nl": "Hier zijn {socket:bosch_3pin} stekkers van het type
Bosch Active Connect met 3 pinnen aan een kabel
" + "nl": "Hier zijn {socket:bosch_3pin} stekkers van het type
Bosch Active Connect met 3 pinnen aan een kabel
", + "de": "Hier sind {socket:bosch_3pin}-Stecker des Typs
Bosch Active Connect mit 3 Stiften und Kabel
vorhanden" }, "freeform": { "key": "socket:bosch_3pin", @@ -1400,11 +1481,13 @@ "id": "plugs-15", "question": { "en": "How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here?", - "nl": "Hoeveel stekkers van type
Bosch Active Connect met 5 pinnen aan een kabel
heeft dit oplaadpunt?" + "nl": "Hoeveel stekkers van type
Bosch Active Connect met 5 pinnen aan een kabel
heeft dit oplaadpunt?", + "de": "Wie viele Stecker des Typs
Bosch Active Connect mit 5 Stiften und Kabel
sind hier vorhanden?" }, "render": { "en": "There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here", - "nl": "Hier zijn {socket:bosch_5pin} stekkers van het type
Bosch Active Connect met 5 pinnen aan een kabel
" + "nl": "Hier zijn {socket:bosch_5pin} stekkers van het type
Bosch Active Connect met 5 pinnen aan een kabel
", + "de": "Hier sind {socket:bosch_5pin}-Stecker des Typs
Bosch Active Connect mit 5 Stiften und Kabel
vorhanden" }, "freeform": { "key": "socket:bosch_5pin", @@ -1422,11 +1505,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", - "nl": "Welke spanning levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
" + "nl": "Welke spanning levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
", + "de": "Welche Spannung liefern die
Schuko-Wandstecker ohne Erdungsstift (CEE7/4 Typ F)
?" }, "render": { "en": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt", - "nl": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft een spanning van {socket:schuko:voltage} volt" + "nl": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft een spanning van {socket:schuko:voltage} volt", + "de": "
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
liefert {socket:schuko:voltage} Volt" }, "freeform": { "key": "socket:schuko:voltage", @@ -1437,7 +1522,8 @@ "if": "socket:schuko:voltage=230 V", "then": { "en": "Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt", - "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F) heeft een spanning van 230 volt" + "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F) heeft een spanning van 230 volt", + "de": "Schuko-Stecker ohne Schutzkontakt (CEE7/4 Typ F) liefert 230 Volt" }, "icon": { "path": "./assets/layers/charging_station/CEE7_4F.svg", @@ -1457,11 +1543,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", - "nl": "Welke stroom levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?" + "nl": "Welke stroom levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?", + "de": "Welche Stromstärke liefern die Anschlüsse mit
Schuko-Stecker ohne Schutzkontakt (CEE7/4 Typ F)
?" }, "render": { "en": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A", - "nl": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een stroom van maximaal {socket:schuko:current}A" + "nl": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een stroom van maximaal {socket:schuko:current}A", + "de": "
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
liefert maximal {socket:schuko:current} A" }, "freeform": { "key": "socket:schuko:current", @@ -1472,7 +1560,8 @@ "if": "socket:schuko:current=16 A", "then": { "en": "Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A", - "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F) levert een stroom van maximaal 16 A" + "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F) levert een stroom van maximaal 16 A", + "de": "Schuko-Steckdose ohne Erdungsstift (CEE7/4 Typ F) liefert 16 A" }, "icon": { "path": "./assets/layers/charging_station/CEE7_4F.svg", @@ -1492,11 +1581,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?", + "de": "Welche Leistung liefert ein einzelner
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
?" }, "render": { "en": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output}", - "nl": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een vermogen van maximaal {socket:schuko:output}" + "nl": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een vermogen van maximaal {socket:schuko:output}", + "de": "
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
liefert maximal {socket:schuko:output}" }, "freeform": { "key": "socket:schuko:output", @@ -1504,10 +1595,11 @@ }, "mappings": [ { - "if": "socket:schuko:output=3.6 kw", + "if": "socket:schuko:output=3.6 kW", "then": { "en": "Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A", - "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F) levert een vermogen van maximaal 3.6 kw A" + "nl": "Schuko stekker zonder aardingspin (CEE7/4 type F) levert een vermogen van maximaal 3.6 kw A", + "de": "Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F) liefert maximal 3,6 kw A" }, "icon": { "path": "./assets/layers/charging_station/CEE7_4F.svg", @@ -1527,11 +1619,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?", - "nl": "Welke spanning levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
" + "nl": "Welke spanning levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
", + "de": "Welche Spannung liefern die
Europäischen Wandstecker mit Erdungsstift (CEE7/4 Typ E)
?" }, "render": { "en": "
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt", - "nl": "
Europese stekker met aardingspin (CEE7/4 type E)
heeft een spanning van {socket:typee:voltage} volt" + "nl": "
Europese stekker met aardingspin (CEE7/4 type E)
heeft een spanning van {socket:typee:voltage} volt", + "de": "
Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E)
liefert {socket:typee:voltage} volt" }, "freeform": { "key": "socket:typee:voltage", @@ -1542,7 +1636,8 @@ "if": "socket:typee:voltage=230 V", "then": { "en": "European wall plug with ground pin (CEE7/4 type E) outputs 230 volt", - "nl": "Europese stekker met aardingspin (CEE7/4 type E) heeft een spanning van 230 volt" + "nl": "Europese stekker met aardingspin (CEE7/4 type E) heeft een spanning van 230 volt", + "de": "Europäischer Netzstecker mit Schutzkontakt (CEE7/4 Typ E) liefert 230 Volt" }, "icon": { "path": "./assets/layers/charging_station/TypeE.svg", @@ -1562,11 +1657,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?", - "nl": "Welke stroom levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?" + "nl": "Welke stroom levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?", + "de": "Welche Stromstärke bieten die Anschlüsse mit
europäischem Stecker mit Schutzkontakt (CEE7/4 Typ E)
?" }, "render": { "en": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A", - "nl": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een stroom van maximaal {socket:typee:current}A" + "nl": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een stroom van maximaal {socket:typee:current}A", + "de": "
Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E)
liefert maximal {socket:typee:current} A" }, "freeform": { "key": "socket:typee:current", @@ -1577,7 +1674,8 @@ "if": "socket:typee:current=16 A", "then": { "en": "European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A", - "nl": "Europese stekker met aardingspin (CEE7/4 type E) levert een stroom van maximaal 16 A" + "nl": "Europese stekker met aardingspin (CEE7/4 type E) levert een stroom van maximaal 16 A", + "de": "Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E) liefert maximal 16 A" }, "icon": { "path": "./assets/layers/charging_station/TypeE.svg", @@ -1597,11 +1695,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?", + "de": "Welche Leistung liefert ein einzelner
Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E)
?" }, "render": { "en": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output}", - "nl": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een vermogen van maximaal {socket:typee:output}" + "nl": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een vermogen van maximaal {socket:typee:output}", + "de": "
Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E)
liefert maximal {socket:typee:output}" }, "freeform": { "key": "socket:typee:output", @@ -1609,10 +1709,11 @@ }, "mappings": [ { - "if": "socket:typee:output=3 kw", + "if": "socket:typee:output=3 kW", "then": { "en": "European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A", - "nl": "Europese stekker met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 3 kw A" + "nl": "Europese stekker met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 3 kw A", + "de": "Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E) liefert maximal 3 kw A" }, "icon": { "path": "./assets/layers/charging_station/TypeE.svg", @@ -1620,10 +1721,11 @@ } }, { - "if": "socket:typee:output=22 kw", + "if": "socket:typee:output=22 kW", "then": { "en": "European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A", - "nl": "Europese stekker met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 22 kw A" + "nl": "Europese stekker met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 22 kw A", + "de": "Europäischer Wandstecker mit Erdungsstift (CEE7/4 Typ E) liefert maximal 22 kw A" }, "icon": { "path": "./assets/layers/charging_station/TypeE.svg", @@ -1643,11 +1745,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Chademo
offer?", - "nl": "Welke spanning levert de stekker van type
Chademo
" + "nl": "Welke spanning levert de stekker van type
Chademo
", + "de": "Welche Spannung bieten die Stecker mit
Chademo
?" }, "render": { "en": "
Chademo
outputs {socket:chademo:voltage} volt", - "nl": "
Chademo
heeft een spanning van {socket:chademo:voltage} volt" + "nl": "
Chademo
heeft een spanning van {socket:chademo:voltage} volt", + "de": "
Chademo
liefert {socket:chademo:voltage} Volt" }, "freeform": { "key": "socket:chademo:voltage", @@ -1658,7 +1762,8 @@ "if": "socket:chademo:voltage=500 V", "then": { "en": "Chademo outputs 500 volt", - "nl": "Chademo heeft een spanning van 500 volt" + "nl": "Chademo heeft een spanning van 500 volt", + "de": "Chademo liefert 500 Volt" }, "icon": { "path": "./assets/layers/charging_station/Chademo_type4.svg", @@ -1678,11 +1783,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Chademo
offer?", - "nl": "Welke stroom levert de stekker van type
Chademo
?" + "nl": "Welke stroom levert de stekker van type
Chademo
?", + "de": "Welche Stromstärke liefern die Stecker mit
Chademo
?" }, "render": { "en": "
Chademo
outputs at most {socket:chademo:current}A", - "nl": "
Chademo
levert een stroom van maximaal {socket:chademo:current}A" + "nl": "
Chademo
levert een stroom van maximaal {socket:chademo:current}A", + "de": "
Chademo
liefert maximal {socket:chademo:current} A" }, "freeform": { "key": "socket:chademo:current", @@ -1693,7 +1800,8 @@ "if": "socket:chademo:current=120 A", "then": { "en": "Chademo outputs at most 120 A", - "nl": "Chademo levert een stroom van maximaal 120 A" + "nl": "Chademo levert een stroom van maximaal 120 A", + "de": "Chademo liefert maximal 120 A" }, "icon": { "path": "./assets/layers/charging_station/Chademo_type4.svg", @@ -1713,11 +1821,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Chademo
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Chademo
?" + "nl": "Welk vermogen levert een enkele stekker van type
Chademo
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Chademo
?" }, "render": { "en": "
Chademo
outputs at most {socket:chademo:output}", - "nl": "
Chademo
levert een vermogen van maximaal {socket:chademo:output}" + "nl": "
Chademo
levert een vermogen van maximaal {socket:chademo:output}", + "de": "
Chademo
liefert maximal {socket:chademo:output}" }, "freeform": { "key": "socket:chademo:output", @@ -1725,10 +1835,11 @@ }, "mappings": [ { - "if": "socket:chademo:output=50 kw", + "if": "socket:chademo:output=50 kW", "then": { "en": "Chademo outputs at most 50 kw A", - "nl": "Chademo levert een vermogen van maximaal 50 kw A" + "nl": "Chademo levert een vermogen van maximaal 50 kw A", + "de": "Chademo liefert maximal 50 kw A" }, "icon": { "path": "./assets/layers/charging_station/Chademo_type4.svg", @@ -1748,11 +1859,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Type 1 with cable (J1772)
offer?", - "nl": "Welke spanning levert de stekker van type
Type 1 met kabel (J1772)
" + "nl": "Welke spanning levert de stekker van type
Type 1 met kabel (J1772)
", + "de": "Welche Spannung liefern die Stecker mit
Typ 1 mit Kabel (J1772)
?" }, "render": { "en": "
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt", - "nl": "
Type 1 met kabel (J1772)
heeft een spanning van {socket:type1_cable:voltage} volt" + "nl": "
Type 1 met kabel (J1772)
heeft een spanning van {socket:type1_cable:voltage} volt", + "de": "
Typ 1 mit Kabel (J1772)
liefern {socket:type1_cable:voltage} Volt" }, "freeform": { "key": "socket:type1_cable:voltage", @@ -1763,7 +1876,8 @@ "if": "socket:type1_cable:voltage=200 V", "then": { "en": "Type 1 with cable (J1772) outputs 200 volt", - "nl": "Type 1 met kabel (J1772) heeft een spanning van 200 volt" + "nl": "Type 1 met kabel (J1772) heeft een spanning van 200 volt", + "de": "Typ 1 mit Kabel (J1772) liefert 200 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1774,7 +1888,8 @@ "if": "socket:type1_cable:voltage=240 V", "then": { "en": "Type 1 with cable (J1772) outputs 240 volt", - "nl": "Type 1 met kabel (J1772) heeft een spanning van 240 volt" + "nl": "Type 1 met kabel (J1772) heeft een spanning van 240 volt", + "de": "Typ 1 mit Kabel (J1772) liefert 240 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1794,11 +1909,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Type 1 with cable (J1772)
offer?", - "nl": "Welke stroom levert de stekker van type
Type 1 met kabel (J1772)
?" + "nl": "Welke stroom levert de stekker van type
Type 1 met kabel (J1772)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Typ 1 mit Kabel (J1772)
?" }, "render": { "en": "
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A", - "nl": "
Type 1 met kabel (J1772)
levert een stroom van maximaal {socket:type1_cable:current}A" + "nl": "
Type 1 met kabel (J1772)
levert een stroom van maximaal {socket:type1_cable:current}A", + "de": "
Typ 1 mit Kabel (J1772)
liefert maximal {socket:type1_cable:current} A" }, "freeform": { "key": "socket:type1_cable:current", @@ -1809,7 +1926,8 @@ "if": "socket:type1_cable:current=32 A", "then": { "en": "Type 1 with cable (J1772) outputs at most 32 A", - "nl": "Type 1 met kabel (J1772) levert een stroom van maximaal 32 A" + "nl": "Type 1 met kabel (J1772) levert een stroom van maximaal 32 A", + "de": "Typ 1 mit Kabel (J1772) liefert maximal 32 A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1829,11 +1947,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Type 1 with cable (J1772)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Type 1 met kabel (J1772)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Type 1 met kabel (J1772)
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Typ 1 mit Kabel (J1772)
?" }, "render": { "en": "
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output}", - "nl": "
Type 1 met kabel (J1772)
levert een vermogen van maximaal {socket:type1_cable:output}" + "nl": "
Type 1 met kabel (J1772)
levert een vermogen van maximaal {socket:type1_cable:output}", + "de": "
Typ 1 mit Kabel (J1772)
liefert maximal {socket:type1_cable:output}" }, "freeform": { "key": "socket:type1_cable:output", @@ -1841,10 +1961,11 @@ }, "mappings": [ { - "if": "socket:type1_cable:output=3.7 kw", + "if": "socket:type1_cable:output=3.7 kW", "then": { "en": "Type 1 with cable (J1772) outputs at most 3.7 kw A", - "nl": "Type 1 met kabel (J1772) levert een vermogen van maximaal 3.7 kw A" + "nl": "Type 1 met kabel (J1772) levert een vermogen van maximaal 3.7 kw A", + "de": "Typ 1 mit Kabel (J1772) liefert maximal 3,7 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1852,10 +1973,11 @@ } }, { - "if": "socket:type1_cable:output=7 kw", + "if": "socket:type1_cable:output=7 kW", "then": { "en": "Type 1 with cable (J1772) outputs at most 7 kw A", - "nl": "Type 1 met kabel (J1772) levert een vermogen van maximaal 7 kw A" + "nl": "Type 1 met kabel (J1772) levert een vermogen van maximaal 7 kw A", + "de": "Typ 1 mit Kabel (J1772) liefert maximal 7 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1875,11 +1997,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Type 1 without cable (J1772)
offer?", - "nl": "Welke spanning levert de stekker van type
Type 1 zonder kabel (J1772)
" + "nl": "Welke spanning levert de stekker van type
Type 1 zonder kabel (J1772)
", + "de": "Welche Spannung bieten die Stecker mit
Typ 1 ohne Kabel (J1772)
?" }, "render": { "en": "
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt", - "nl": "
Type 1 zonder kabel (J1772)
heeft een spanning van {socket:type1:voltage} volt" + "nl": "
Type 1 zonder kabel (J1772)
heeft een spanning van {socket:type1:voltage} volt", + "de": "
Typ 1 ohne Kabel (J1772)
liefert {socket:type1:voltage} Volt" }, "freeform": { "key": "socket:type1:voltage", @@ -1890,7 +2014,8 @@ "if": "socket:type1:voltage=200 V", "then": { "en": "Type 1 without cable (J1772) outputs 200 volt", - "nl": "Type 1 zonder kabel (J1772) heeft een spanning van 200 volt" + "nl": "Type 1 zonder kabel (J1772) heeft een spanning van 200 volt", + "de": "Typ 1 ohne Kabel (J1772) liefert 200 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1901,7 +2026,8 @@ "if": "socket:type1:voltage=240 V", "then": { "en": "Type 1 without cable (J1772) outputs 240 volt", - "nl": "Type 1 zonder kabel (J1772) heeft een spanning van 240 volt" + "nl": "Type 1 zonder kabel (J1772) heeft een spanning van 240 volt", + "de": "Typ 1 ohne Kabel (J1772) liefert 240 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1921,11 +2047,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Type 1 without cable (J1772)
offer?", - "nl": "Welke stroom levert de stekker van type
Type 1 zonder kabel (J1772)
?" + "nl": "Welke stroom levert de stekker van type
Type 1 zonder kabel (J1772)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Typ 1 ohne Kabel (J1772)
?" }, "render": { "en": "
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A", - "nl": "
Type 1 zonder kabel (J1772)
levert een stroom van maximaal {socket:type1:current}A" + "nl": "
Type 1 zonder kabel (J1772)
levert een stroom van maximaal {socket:type1:current}A", + "de": "
Typ 1 ohne Kabel (J1772)
liefert maximal {socket:type1:current} A" }, "freeform": { "key": "socket:type1:current", @@ -1936,7 +2064,8 @@ "if": "socket:type1:current=32 A", "then": { "en": "Type 1 without cable (J1772) outputs at most 32 A", - "nl": "Type 1 zonder kabel (J1772) levert een stroom van maximaal 32 A" + "nl": "Type 1 zonder kabel (J1772) levert een stroom van maximaal 32 A", + "de": "Typ 1 ohne Kabel (J1772) liefert maximal 32 A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1956,11 +2085,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Type 1 without cable (J1772)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Type 1 zonder kabel (J1772)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Type 1 zonder kabel (J1772)
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Typ 1 ohne Kabel (J1772)
?" }, "render": { "en": "
Type 1 without cable (J1772)
outputs at most {socket:type1:output}", - "nl": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal {socket:type1:output}" + "nl": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal {socket:type1:output}", + "de": "
Typ 1 ohne Kabel (J1772)
liefert maximal {socket:type1:output}" }, "freeform": { "key": "socket:type1:output", @@ -1968,10 +2099,11 @@ }, "mappings": [ { - "if": "socket:type1:output=3.7 kw", + "if": "socket:type1:output=3.7 kW", "then": { "en": "Type 1 without cable (J1772) outputs at most 3.7 kw A", - "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 3.7 kw A" + "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 3.7 kw A", + "de": "Typ 1 ohne Kabel (J1772) liefert maximal 3,7 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1979,10 +2111,11 @@ } }, { - "if": "socket:type1:output=6.6 kw", + "if": "socket:type1:output=6.6 kW", "then": { "en": "Type 1 without cable (J1772) outputs at most 6.6 kw A", - "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 6.6 kw A" + "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 6.6 kw A", + "de": "Typ 1 ohne Kabel (J1772) liefert maximal 6,6 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -1990,10 +2123,11 @@ } }, { - "if": "socket:type1:output=7 kw", + "if": "socket:type1:output=7 kW", "then": { "en": "Type 1 without cable (J1772) outputs at most 7 kw A", - "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 7 kw A" + "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 7 kw A", + "de": "Typ 1 ohne Kabel (J1772) liefert maximal 7 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -2001,10 +2135,11 @@ } }, { - "if": "socket:type1:output=7.2 kw", + "if": "socket:type1:output=7.2 kW", "then": { "en": "Type 1 without cable (J1772) outputs at most 7.2 kw A", - "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 7.2 kw A" + "nl": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 7.2 kw A", + "de": "Typ 1 ohne Kabel (J1772) liefert maximal 7,2 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1_J1772.svg", @@ -2024,11 +2159,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?", - "nl": "Welke spanning levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
" + "nl": "Welke spanning levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
", + "de": "Welche Spannung bieten die Stecker mit
Typ 1 CCS (Typ 1 Combo)
?" }, "render": { "en": "
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt", - "nl": "
Type 1 CCS (ook gekend als Type 1 Combo)
heeft een spanning van {socket:type1_combo:voltage} volt" + "nl": "
Type 1 CCS (ook gekend als Type 1 Combo)
heeft een spanning van {socket:type1_combo:voltage} volt", + "de": "
Typ 1 CCS (Typ 1 Combo)
liefert {socket:type1_combo:voltage} Volt" }, "freeform": { "key": "socket:type1_combo:voltage", @@ -2039,7 +2176,8 @@ "if": "socket:type1_combo:voltage=400 V", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs 400 volt", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) heeft een spanning van 400 volt" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) heeft een spanning van 400 volt", + "de": "Typ 1 CCS (Typ 1 Combo) liefert 400 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2050,7 +2188,8 @@ "if": "socket:type1_combo:voltage=1000 V", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs 1000 volt", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) heeft een spanning van 1000 volt" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) heeft een spanning van 1000 volt", + "de": "Typ 1 CCS (Typ 1 Combo) liefert 1000 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2070,11 +2209,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?", - "nl": "Welke stroom levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?" + "nl": "Welke stroom levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Typ 1 CCS (Typ 1 Combo)
?" }, "render": { "en": "
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A", - "nl": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een stroom van maximaal {socket:type1_combo:current}A" + "nl": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een stroom van maximaal {socket:type1_combo:current}A", + "de": "
Typ 1 CCS (Typ 1 Combo)
liefert maximal {socket:type1_combo:current} A" }, "freeform": { "key": "socket:type1_combo:current", @@ -2085,7 +2226,8 @@ "if": "socket:type1_combo:current=50 A", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs at most 50 A", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een stroom van maximaal 50 A" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een stroom van maximaal 50 A", + "de": "Typ 1 CCS (Typ 1 Combo) liefert maximal 50 A" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2096,7 +2238,8 @@ "if": "socket:type1_combo:current=125 A", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs at most 125 A", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een stroom van maximaal 125 A" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een stroom van maximaal 125 A", + "de": "Typ 1 CCS (Typ 1 Combo) liefert maximal 125 A" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2116,11 +2259,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Typ 1 CCS (Typ 1 Combo)
?" }, "render": { "en": "
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output}", - "nl": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal {socket:type1_combo:output}" + "nl": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal {socket:type1_combo:output}", + "de": "
Typ 1 CCS (Typ 1 Combo)
liefert maximal {socket:type1_combo:output}" }, "freeform": { "key": "socket:type1_combo:output", @@ -2128,10 +2273,11 @@ }, "mappings": [ { - "if": "socket:type1_combo:output=50 kw", + "if": "socket:type1_combo:output=50 kW", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 50 kw A" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 50 kw A", + "de": "Typ 1 CCS (Typ 1 Combo) liefert maximal 50 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2139,10 +2285,11 @@ } }, { - "if": "socket:type1_combo:output=62.5 kw", + "if": "socket:type1_combo:output=62.5 kW", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 62.5 kw A" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 62.5 kw A", + "de": "Typ 1 CCS (Typ 1 Combo) liefert maximal 62,5 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2150,10 +2297,11 @@ } }, { - "if": "socket:type1_combo:output=150 kw", + "if": "socket:type1_combo:output=150 kW", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 150 kw A" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 150 kw A", + "de": "Typ 1 CCS (Typ 1 Combo) liefert maximal 150 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2161,10 +2309,11 @@ } }, { - "if": "socket:type1_combo:output=350 kw", + "if": "socket:type1_combo:output=350 kW", "then": { "en": "Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A", - "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 350 kw A" + "nl": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 350 kw A", + "de": "Typ 1 CCS (Typ 1 Combo) liefert maximal 350 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type1-ccs.svg", @@ -2184,11 +2333,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Tesla Supercharger
offer?", - "nl": "Welke spanning levert de stekker van type
Tesla Supercharger
" + "nl": "Welke spanning levert de stekker van type
Tesla Supercharger
", + "de": "Welche Spannung bieten die Stecker mit
Tesla Supercharger
?" }, "render": { "en": "
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt", - "nl": "
Tesla Supercharger
heeft een spanning van {socket:tesla_supercharger:voltage} volt" + "nl": "
Tesla Supercharger
heeft een spanning van {socket:tesla_supercharger:voltage} volt", + "de": "
Tesla Supercharger
liefert {socket:tesla_supercharger:voltage} Volt" }, "freeform": { "key": "socket:tesla_supercharger:voltage", @@ -2199,7 +2350,8 @@ "if": "socket:tesla_supercharger:voltage=480 V", "then": { "en": "Tesla Supercharger outputs 480 volt", - "nl": "Tesla Supercharger heeft een spanning van 480 volt" + "nl": "Tesla Supercharger heeft een spanning van 480 volt", + "de": "Tesla Supercharger liefert 480 Volt" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2219,11 +2371,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Tesla Supercharger
offer?", - "nl": "Welke stroom levert de stekker van type
Tesla Supercharger
?" + "nl": "Welke stroom levert de stekker van type
Tesla Supercharger
?", + "de": "Welche Stromstärke liefern die Stecker mit
Tesla Supercharger
?" }, "render": { "en": "
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A", - "nl": "
Tesla Supercharger
levert een stroom van maximaal {socket:tesla_supercharger:current}A" + "nl": "
Tesla Supercharger
levert een stroom van maximaal {socket:tesla_supercharger:current}A", + "de": "
Tesla Supercharger
liefert maximal {socket:tesla_supercharger:current} A" }, "freeform": { "key": "socket:tesla_supercharger:current", @@ -2234,7 +2388,8 @@ "if": "socket:tesla_supercharger:current=125 A", "then": { "en": "Tesla Supercharger outputs at most 125 A", - "nl": "Tesla Supercharger levert een stroom van maximaal 125 A" + "nl": "Tesla Supercharger levert een stroom van maximaal 125 A", + "de": "Tesla Supercharger liefert maximal 125 A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2245,7 +2400,8 @@ "if": "socket:tesla_supercharger:current=350 A", "then": { "en": "Tesla Supercharger outputs at most 350 A", - "nl": "Tesla Supercharger levert een stroom van maximaal 350 A" + "nl": "Tesla Supercharger levert een stroom van maximaal 350 A", + "de": "Tesla Supercharger liefert maximal 350 A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2265,11 +2421,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Tesla Supercharger
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger
?" + "nl": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Tesla Supercharger
?" }, "render": { "en": "
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output}", - "nl": "
Tesla Supercharger
levert een vermogen van maximaal {socket:tesla_supercharger:output}" + "nl": "
Tesla Supercharger
levert een vermogen van maximaal {socket:tesla_supercharger:output}", + "de": "
Tesla Supercharger
liefert maximal {socket:tesla_supercharger:output}" }, "freeform": { "key": "socket:tesla_supercharger:output", @@ -2277,10 +2435,11 @@ }, "mappings": [ { - "if": "socket:tesla_supercharger:output=120 kw", + "if": "socket:tesla_supercharger:output=120 kW", "then": { "en": "Tesla Supercharger outputs at most 120 kw A", - "nl": "Tesla Supercharger levert een vermogen van maximaal 120 kw A" + "nl": "Tesla Supercharger levert een vermogen van maximaal 120 kw A", + "de": "Tesla Supercharger liefert maximal 120 kw A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2288,10 +2447,11 @@ } }, { - "if": "socket:tesla_supercharger:output=150 kw", + "if": "socket:tesla_supercharger:output=150 kW", "then": { "en": "Tesla Supercharger outputs at most 150 kw A", - "nl": "Tesla Supercharger levert een vermogen van maximaal 150 kw A" + "nl": "Tesla Supercharger levert een vermogen van maximaal 150 kw A", + "de": "Tesla Supercharger liefert maximal 150 kw A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2299,10 +2459,11 @@ } }, { - "if": "socket:tesla_supercharger:output=250 kw", + "if": "socket:tesla_supercharger:output=250 kW", "then": { "en": "Tesla Supercharger outputs at most 250 kw A", - "nl": "Tesla Supercharger levert een vermogen van maximaal 250 kw A" + "nl": "Tesla Supercharger levert een vermogen van maximaal 250 kw A", + "de": "Tesla Supercharger liefert maximal 250 kW A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2322,11 +2483,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Type 2 (mennekes)
offer?", - "nl": "Welke spanning levert de stekker van type
Type 2 (mennekes)
" + "nl": "Welke spanning levert de stekker van type
Type 2 (mennekes)
", + "de": "Welche Spannung liefern die Stecker mit
Typ 2 (Mennekes)
?" }, "render": { "en": "
Type 2 (mennekes)
outputs {socket:type2:voltage} volt", - "nl": "
Type 2 (mennekes)
heeft een spanning van {socket:type2:voltage} volt" + "nl": "
Type 2 (mennekes)
heeft een spanning van {socket:type2:voltage} volt", + "de": "
Typ 2 (Mennekes)
liefert {socket:type2:voltage} Volt" }, "freeform": { "key": "socket:type2:voltage", @@ -2337,7 +2500,8 @@ "if": "socket:type2:voltage=230 V", "then": { "en": "Type 2 (mennekes) outputs 230 volt", - "nl": "Type 2 (mennekes) heeft een spanning van 230 volt" + "nl": "Type 2 (mennekes) heeft een spanning van 230 volt", + "de": "Typ 2 (Mennekes) liefert 230 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -2348,7 +2512,8 @@ "if": "socket:type2:voltage=400 V", "then": { "en": "Type 2 (mennekes) outputs 400 volt", - "nl": "Type 2 (mennekes) heeft een spanning van 400 volt" + "nl": "Type 2 (mennekes) heeft een spanning van 400 volt", + "de": "Typ 2 (Mennekes) liefert 400 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -2368,11 +2533,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Type 2 (mennekes)
offer?", - "nl": "Welke stroom levert de stekker van type
Type 2 (mennekes)
?" + "nl": "Welke stroom levert de stekker van type
Type 2 (mennekes)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Typ 2 (Mennekes)
?" }, "render": { "en": "
Type 2 (mennekes)
outputs at most {socket:type2:current}A", - "nl": "
Type 2 (mennekes)
levert een stroom van maximaal {socket:type2:current}A" + "nl": "
Type 2 (mennekes)
levert een stroom van maximaal {socket:type2:current}A", + "de": "
Typ 2 (Mennekes)
liefert maximal {socket:type2:current} A" }, "freeform": { "key": "socket:type2:current", @@ -2383,7 +2550,8 @@ "if": "socket:type2:current=16 A", "then": { "en": "Type 2 (mennekes) outputs at most 16 A", - "nl": "Type 2 (mennekes) levert een stroom van maximaal 16 A" + "nl": "Type 2 (mennekes) levert een stroom van maximaal 16 A", + "de": "Typ 2 (Mennekes) liefert maximal 16 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -2394,7 +2562,8 @@ "if": "socket:type2:current=32 A", "then": { "en": "Type 2 (mennekes) outputs at most 32 A", - "nl": "Type 2 (mennekes) levert een stroom van maximaal 32 A" + "nl": "Type 2 (mennekes) levert een stroom van maximaal 32 A", + "de": "Typ 2 (Mennekes) liefert maximal 32 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -2414,11 +2583,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Type 2 (mennekes)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Type 2 (mennekes)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Type 2 (mennekes)
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Typ 2 (Mennekes)
?" }, "render": { "en": "
Type 2 (mennekes)
outputs at most {socket:type2:output}", - "nl": "
Type 2 (mennekes)
levert een vermogen van maximaal {socket:type2:output}" + "nl": "
Type 2 (mennekes)
levert een vermogen van maximaal {socket:type2:output}", + "de": "
Typ 2 (Mennekes)
liefert maximal {socket:type2:output}" }, "freeform": { "key": "socket:type2:output", @@ -2426,10 +2597,11 @@ }, "mappings": [ { - "if": "socket:type2:output=11 kw", + "if": "socket:type2:output=11 kW", "then": { "en": "Type 2 (mennekes) outputs at most 11 kw A", - "nl": "Type 2 (mennekes) levert een vermogen van maximaal 11 kw A" + "nl": "Type 2 (mennekes) levert een vermogen van maximaal 11 kw A", + "de": "Typ 2 (Mennekes) liefert maximal 11 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -2437,10 +2609,11 @@ } }, { - "if": "socket:type2:output=22 kw", + "if": "socket:type2:output=22 kW", "then": { "en": "Type 2 (mennekes) outputs at most 22 kw A", - "nl": "Type 2 (mennekes) levert een vermogen van maximaal 22 kw A" + "nl": "Type 2 (mennekes) levert een vermogen van maximaal 22 kw A", + "de": "Typ 2 (Mennekes) liefert maximal 22 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_socket.svg", @@ -2460,11 +2633,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Type 2 CCS (mennekes)
offer?", - "nl": "Welke spanning levert de stekker van type
Type 2 CCS (mennekes)
" + "nl": "Welke spanning levert de stekker van type
Type 2 CCS (mennekes)
", + "de": "Welche Spannung liefern die Stecker mit
Typ 2 CCS (Mennekes)
?" }, "render": { "en": "
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt", - "nl": "
Type 2 CCS (mennekes)
heeft een spanning van {socket:type2_combo:voltage} volt" + "nl": "
Type 2 CCS (mennekes)
heeft een spanning van {socket:type2_combo:voltage} volt", + "de": "
Typ 2 CCS (Mennekes)
liefert {socket:type2_combo:voltage} Volt" }, "freeform": { "key": "socket:type2_combo:voltage", @@ -2475,7 +2650,8 @@ "if": "socket:type2_combo:voltage=500 V", "then": { "en": "Type 2 CCS (mennekes) outputs 500 volt", - "nl": "Type 2 CCS (mennekes) heeft een spanning van 500 volt" + "nl": "Type 2 CCS (mennekes) heeft een spanning van 500 volt", + "de": "Typ 2 CCS (Mennekes) liefert 500 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2486,7 +2662,8 @@ "if": "socket:type2_combo:voltage=920 V", "then": { "en": "Type 2 CCS (mennekes) outputs 920 volt", - "nl": "Type 2 CCS (mennekes) heeft een spanning van 920 volt" + "nl": "Type 2 CCS (mennekes) heeft een spanning van 920 volt", + "de": "Typ 2 CCS (Mennekes) liefert 920 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2506,11 +2683,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Type 2 CCS (mennekes)
offer?", - "nl": "Welke stroom levert de stekker van type
Type 2 CCS (mennekes)
?" + "nl": "Welke stroom levert de stekker van type
Type 2 CCS (mennekes)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Typ 2 CCS (Mennekes)
?" }, "render": { "en": "
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A", - "nl": "
Type 2 CCS (mennekes)
levert een stroom van maximaal {socket:type2_combo:current}A" + "nl": "
Type 2 CCS (mennekes)
levert een stroom van maximaal {socket:type2_combo:current}A", + "de": "
Typ 2 CCS (Mennekes)
liefern maximal {socket:type2_combo:current} A" }, "freeform": { "key": "socket:type2_combo:current", @@ -2521,7 +2700,8 @@ "if": "socket:type2_combo:current=125 A", "then": { "en": "Type 2 CCS (mennekes) outputs at most 125 A", - "nl": "Type 2 CCS (mennekes) levert een stroom van maximaal 125 A" + "nl": "Type 2 CCS (mennekes) levert een stroom van maximaal 125 A", + "de": "Typ 2 CCS (Mennekes) liefert maximal 125 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2532,7 +2712,8 @@ "if": "socket:type2_combo:current=350 A", "then": { "en": "Type 2 CCS (mennekes) outputs at most 350 A", - "nl": "Type 2 CCS (mennekes) levert een stroom van maximaal 350 A" + "nl": "Type 2 CCS (mennekes) levert een stroom van maximaal 350 A", + "de": "Typ 2 CCS (Mennekes) liefert maximal 350 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2552,11 +2733,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Type 2 CCS (mennekes)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Type 2 CCS (mennekes)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Type 2 CCS (mennekes)
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Typ 2 CCS (Mennekes)
?" }, "render": { "en": "
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output}", - "nl": "
Type 2 CCS (mennekes)
levert een vermogen van maximaal {socket:type2_combo:output}" + "nl": "
Type 2 CCS (mennekes)
levert een vermogen van maximaal {socket:type2_combo:output}", + "de": "
Typ 2 CCS (Mennekes)
liefert maximal {socket:type2_combo:output}" }, "freeform": { "key": "socket:type2_combo:output", @@ -2564,10 +2747,11 @@ }, "mappings": [ { - "if": "socket:type2_combo:output=50 kw", + "if": "socket:type2_combo:output=50 kW", "then": { "en": "Type 2 CCS (mennekes) outputs at most 50 kw A", - "nl": "Type 2 CCS (mennekes) levert een vermogen van maximaal 50 kw A" + "nl": "Type 2 CCS (mennekes) levert een vermogen van maximaal 50 kw A", + "de": "Typ 2 CCS (Mennekes) liefert maximal 50 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2587,11 +2771,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Type 2 with cable (mennekes)
offer?", - "nl": "Welke spanning levert de stekker van type
Type 2 met kabel (J1772)
" + "nl": "Welke spanning levert de stekker van type
Type 2 met kabel (J1772)
", + "de": "Welche Spannung liefern die Stecker mit
Typ 2 mit Kabel (Mennekes)
?" }, "render": { "en": "
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt", - "nl": "
Type 2 met kabel (J1772)
heeft een spanning van {socket:type2_cable:voltage} volt" + "nl": "
Type 2 met kabel (J1772)
heeft een spanning van {socket:type2_cable:voltage} volt", + "de": "
Typ 2 mit Kabel (Mennekes)
liefert {socket:type2_cable:voltage} Volt" }, "freeform": { "key": "socket:type2_cable:voltage", @@ -2602,7 +2788,8 @@ "if": "socket:type2_cable:voltage=230 V", "then": { "en": "Type 2 with cable (mennekes) outputs 230 volt", - "nl": "Type 2 met kabel (J1772) heeft een spanning van 230 volt" + "nl": "Type 2 met kabel (J1772) heeft een spanning van 230 volt", + "de": "Typ 2 mit Kabel (Mennekes) liefert 230 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -2613,7 +2800,8 @@ "if": "socket:type2_cable:voltage=400 V", "then": { "en": "Type 2 with cable (mennekes) outputs 400 volt", - "nl": "Type 2 met kabel (J1772) heeft een spanning van 400 volt" + "nl": "Type 2 met kabel (J1772) heeft een spanning van 400 volt", + "de": "Typ 2 mit Kabel (Mennekes) liefert 400 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -2633,11 +2821,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Type 2 with cable (mennekes)
offer?", - "nl": "Welke stroom levert de stekker van type
Type 2 met kabel (J1772)
?" + "nl": "Welke stroom levert de stekker van type
Type 2 met kabel (J1772)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Typ 2 mit Kabel (Mennekes)
?" }, "render": { "en": "
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A", - "nl": "
Type 2 met kabel (J1772)
levert een stroom van maximaal {socket:type2_cable:current}A" + "nl": "
Type 2 met kabel (J1772)
levert een stroom van maximaal {socket:type2_cable:current}A", + "de": "
Typ 2 mit Kabel (Mennekes)
liefert maximal {socket:type2_cable:current} A" }, "freeform": { "key": "socket:type2_cable:current", @@ -2648,7 +2838,8 @@ "if": "socket:type2_cable:current=16 A", "then": { "en": "Type 2 with cable (mennekes) outputs at most 16 A", - "nl": "Type 2 met kabel (J1772) levert een stroom van maximaal 16 A" + "nl": "Type 2 met kabel (J1772) levert een stroom van maximaal 16 A", + "de": "Typ 2 mit Kabel (Mennekes) liefert maximal 16 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -2659,7 +2850,8 @@ "if": "socket:type2_cable:current=32 A", "then": { "en": "Type 2 with cable (mennekes) outputs at most 32 A", - "nl": "Type 2 met kabel (J1772) levert een stroom van maximaal 32 A" + "nl": "Type 2 met kabel (J1772) levert een stroom van maximaal 32 A", + "de": "Typ 2 mit Kabel (Mennekes) liefert maximal 32 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -2679,11 +2871,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Type 2 with cable (mennekes)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Type 2 met kabel (J1772)
?" + "nl": "Welk vermogen levert een enkele stekker van type
Type 2 met kabel (J1772)
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Typ 2 mit Kabel (Mennekes)
?" }, "render": { "en": "
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output}", - "nl": "
Type 2 met kabel (J1772)
levert een vermogen van maximaal {socket:type2_cable:output}" + "nl": "
Type 2 met kabel (J1772)
levert een vermogen van maximaal {socket:type2_cable:output}", + "de": "
Typ 2 mit Kabel (Mennekes)
liefert maximal {socket:type2_cable:output}" }, "freeform": { "key": "socket:type2_cable:output", @@ -2691,10 +2885,11 @@ }, "mappings": [ { - "if": "socket:type2_cable:output=11 kw", + "if": "socket:type2_cable:output=11 kW", "then": { "en": "Type 2 with cable (mennekes) outputs at most 11 kw A", - "nl": "Type 2 met kabel (J1772) levert een vermogen van maximaal 11 kw A" + "nl": "Type 2 met kabel (J1772) levert een vermogen van maximaal 11 kw A", + "de": "Typ 2 mit Kabel (Mennekes) liefert maximal 11 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -2702,10 +2897,11 @@ } }, { - "if": "socket:type2_cable:output=22 kw", + "if": "socket:type2_cable:output=22 kW", "then": { "en": "Type 2 with cable (mennekes) outputs at most 22 kw A", - "nl": "Type 2 met kabel (J1772) levert een vermogen van maximaal 22 kw A" + "nl": "Type 2 met kabel (J1772) levert een vermogen van maximaal 22 kw A", + "de": "Typ 2 mit Kabel (Mennekes) liefert maximal 22 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -2724,12 +2920,14 @@ "id": "voltage-10", "group": "technical", "question": { - "en": "What voltage do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?", - "nl": "Welke spanning levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" + "en": "What voltage do the plugs with
Tesla Supercharger CCS (a branded Type 2 CSS)
offer?", + "nl": "Welke spanning levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
", + "de": "Welche Spannung bieten die
Tesla Supercharger CCS (Typ 2 CSS von Tesla)
?" }, "render": { - "en": "
Tesla Supercharger CCS (a branded type2_css)
outputs {socket:tesla_supercharger_ccs:voltage} volt", - "nl": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft een spanning van {socket:tesla_supercharger_ccs:voltage} volt" + "en": "
Tesla Supercharger CCS (a branded Type 2 CSS)
outputs {socket:tesla_supercharger_ccs:voltage} volt", + "nl": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft een spanning van {socket:tesla_supercharger_ccs:voltage} volt", + "de": "
Tesla Supercharger CCS (Typ 2 CSS von Tesla)
liefert {socket:tesla_supercharger_ccs:voltage} Volt" }, "freeform": { "key": "socket:tesla_supercharger_ccs:voltage", @@ -2739,8 +2937,9 @@ { "if": "socket:tesla_supercharger_ccs:voltage=500 V", "then": { - "en": "Tesla Supercharger CCS (a branded type2_css) outputs 500 volt", - "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) heeft een spanning van 500 volt" + "en": "Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt", + "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) heeft een spanning van 500 volt", + "de": "Tesla Supercharger CCS (Typ 2 CSS von Tesla) liefert 500 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2750,8 +2949,9 @@ { "if": "socket:tesla_supercharger_ccs:voltage=920 V", "then": { - "en": "Tesla Supercharger CCS (a branded type2_css) outputs 920 volt", - "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) heeft een spanning van 920 volt" + "en": "Tesla Supercharger CCS (a branded Type 2 CSS) outputs 920 volt", + "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) heeft een spanning van 920 volt", + "de": "Tesla Supercharger CCS (Typ 2 CSS von Tesla) liefert 920 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2771,11 +2971,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?", - "nl": "Welke stroom levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?" + "nl": "Welke stroom levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?", + "de": "Welche Stromstärke bieten die Anschlüsse mit
Tesla Supercharger CCS (Typ2 CSS von Tesla)
?" }, "render": { "en": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A", - "nl": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een stroom van maximaal {socket:tesla_supercharger_ccs:current}A" + "nl": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een stroom van maximaal {socket:tesla_supercharger_ccs:current}A", + "de": "
Tesla Supercharger CCS (Typ 2 CSS)
liefert maximal {socket:tesla_supercharger_ccs:current} A" }, "freeform": { "key": "socket:tesla_supercharger_ccs:current", @@ -2786,7 +2988,8 @@ "if": "socket:tesla_supercharger_ccs:current=125 A", "then": { "en": "Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A", - "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een stroom van maximaal 125 A" + "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een stroom van maximaal 125 A", + "de": "Tesla Supercharger CCS (Typ 2 CSS) liefert maximal 125 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2797,7 +3000,8 @@ "if": "socket:tesla_supercharger_ccs:current=350 A", "then": { "en": "Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A", - "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een stroom van maximaal 350 A" + "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een stroom van maximaal 350 A", + "de": "Tesla Supercharger CCS (Typ 2 CSS) liefert maximal 350 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2816,12 +3020,14 @@ "id": "power-output-10", "group": "technical", "question": { - "en": "What power output does a single plug of type
Tesla Supercharger CCS (a branded type2_css)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?" + "en": "What power output does a single plug of type
Tesla Supercharger CCS (a branded Type 2 CSS)
offer?", + "nl": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?", + "de": "Welche Leistung bietet ein einzelner Stecker des Typs
Tesla Supercharger CCS (Typ 2 CSS von Tesla)
?" }, "render": { - "en": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:output}", - "nl": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een vermogen van maximaal {socket:tesla_supercharger_ccs:output}" + "en": "
Tesla Supercharger CCS (a branded Type 2 CSS)
outputs at most {socket:tesla_supercharger_ccs:output}", + "nl": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een vermogen van maximaal {socket:tesla_supercharger_ccs:output}", + "de": "
Tesla Supercharger CCS (Typ 2 CSS von Tesla)
liefert maximal {socket:tesla_supercharger_ccs:output}" }, "freeform": { "key": "socket:tesla_supercharger_ccs:output", @@ -2829,10 +3035,11 @@ }, "mappings": [ { - "if": "socket:tesla_supercharger_ccs:output=50 kw", + "if": "socket:tesla_supercharger_ccs:output=50 kW", "then": { - "en": "Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kw A", - "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een vermogen van maximaal 50 kw A" + "en": "Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A", + "nl": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een vermogen van maximaal 50 kw A", + "de": "Tesla Supercharger CCS (Typ 2 CSS von Tesla) liefert maximal 50 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_CCS.svg", @@ -2851,12 +3058,14 @@ "id": "voltage-11", "group": "technical", "question": { - "en": "What voltage do the plugs with
Tesla Supercharger (destination)
offer?", - "nl": "Welke spanning levert de stekker van type
Tesla Supercharger (destination)
" + "en": "What voltage do the plugs with
Tesla Supercharger (Destination)
offer?", + "nl": "Welke spanning levert de stekker van type
Tesla Supercharger (destination)
", + "de": "Welche Spannung bieten die
Tesla Supercharger (Destination)
?" }, "render": { - "en": "
Tesla Supercharger (destination)
outputs {socket:tesla_destination:voltage} volt", - "nl": "
Tesla Supercharger (destination)
heeft een spanning van {socket:tesla_destination:voltage} volt" + "en": "
Tesla Supercharger (Destination)
outputs {socket:tesla_destination:voltage} volt", + "nl": "
Tesla Supercharger (destination)
heeft een spanning van {socket:tesla_destination:voltage} volt", + "de": "
Tesla Supercharger (Destination)
liefert {socket:tesla_destination:voltage} Volt" }, "freeform": { "key": "socket:tesla_destination:voltage", @@ -2866,8 +3075,9 @@ { "if": "socket:tesla_destination:voltage=480 V", "then": { - "en": "Tesla Supercharger (destination) outputs 480 volt", - "nl": "Tesla Supercharger (destination) heeft een spanning van 480 volt" + "en": "Tesla Supercharger (Destination) outputs 480 volt", + "nl": "Tesla Supercharger (destination) heeft een spanning van 480 volt", + "de": "Tesla Supercharger (Destination) liefert 480 Volt" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2886,12 +3096,14 @@ "id": "current-11", "group": "technical", "question": { - "en": "What current do the plugs with
Tesla Supercharger (destination)
offer?", - "nl": "Welke stroom levert de stekker van type
Tesla Supercharger (destination)
?" + "en": "What current do the plugs with
Tesla Supercharger (Destination)
offer?", + "nl": "Welke stroom levert de stekker van type
Tesla Supercharger (destination)
?", + "de": "Welche Stromstärke liefern die Anschlüsse mit
Tesla Supercharger (Destination)
?" }, "render": { - "en": "
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:current}A", - "nl": "
Tesla Supercharger (destination)
levert een stroom van maximaal {socket:tesla_destination:current}A" + "en": "
Tesla Supercharger (Destination)
outputs at most {socket:tesla_destination:current}A", + "nl": "
Tesla Supercharger (destination)
levert een stroom van maximaal {socket:tesla_destination:current}A", + "de": "
Tesla Supercharger (Destination)
liefert maximal {socket:tesla_destination:current} A" }, "freeform": { "key": "socket:tesla_destination:current", @@ -2901,8 +3113,9 @@ { "if": "socket:tesla_destination:current=125 A", "then": { - "en": "Tesla Supercharger (destination) outputs at most 125 A", - "nl": "Tesla Supercharger (destination) levert een stroom van maximaal 125 A" + "en": "Tesla Supercharger (Destination) outputs at most 125 A", + "nl": "Tesla Supercharger (destination) levert een stroom van maximaal 125 A", + "de": "Tesla Supercharger (Destination) liefert maximal 125 A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2912,8 +3125,9 @@ { "if": "socket:tesla_destination:current=350 A", "then": { - "en": "Tesla Supercharger (destination) outputs at most 350 A", - "nl": "Tesla Supercharger (destination) levert een stroom van maximaal 350 A" + "en": "Tesla Supercharger (Destination) outputs at most 350 A", + "nl": "Tesla Supercharger (destination) levert een stroom van maximaal 350 A", + "de": "Tesla Supercharger (Destination) liefert maximal 350 A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2932,12 +3146,14 @@ "id": "power-output-11", "group": "technical", "question": { - "en": "What power output does a single plug of type
Tesla Supercharger (destination)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger (destination)
?" + "en": "What power output does a single plug of type
Tesla Supercharger (Destination)
offer?", + "nl": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger (destination)
?", + "de": "Welche Leistung bietet ein einzelner Stecker des Typs
Tesla Supercharger (Destination)
?" }, "render": { - "en": "
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:output}", - "nl": "
Tesla Supercharger (destination)
levert een vermogen van maximaal {socket:tesla_destination:output}" + "en": "
Tesla Supercharger (Destination)
outputs at most {socket:tesla_destination:output}", + "nl": "
Tesla Supercharger (destination)
levert een vermogen van maximaal {socket:tesla_destination:output}", + "de": "
Tesla Supercharger (Destination)
liefert maximal {socket:tesla_destination:output}" }, "freeform": { "key": "socket:tesla_destination:output", @@ -2945,10 +3161,11 @@ }, "mappings": [ { - "if": "socket:tesla_destination:output=120 kw", + "if": "socket:tesla_destination:output=120 kW", "then": { - "en": "Tesla Supercharger (destination) outputs at most 120 kw A", - "nl": "Tesla Supercharger (destination) levert een vermogen van maximaal 120 kw A" + "en": "Tesla Supercharger (Destination) outputs at most 120 kw A", + "nl": "Tesla Supercharger (destination) levert een vermogen van maximaal 120 kw A", + "de": "Tesla Supercharger (Destination) liefert maximal 120 kw A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2956,10 +3173,11 @@ } }, { - "if": "socket:tesla_destination:output=150 kw", + "if": "socket:tesla_destination:output=150 kW", "then": { - "en": "Tesla Supercharger (destination) outputs at most 150 kw A", - "nl": "Tesla Supercharger (destination) levert een vermogen van maximaal 150 kw A" + "en": "Tesla Supercharger (Destination) outputs at most 150 kw A", + "nl": "Tesla Supercharger (destination) levert een vermogen van maximaal 150 kw A", + "de": "Tesla Supercharger (Destination) liefert maximal 150 kw A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2967,10 +3185,11 @@ } }, { - "if": "socket:tesla_destination:output=250 kw", + "if": "socket:tesla_destination:output=250 kW", "then": { - "en": "Tesla Supercharger (destination) outputs at most 250 kw A", - "nl": "Tesla Supercharger (destination) levert een vermogen van maximaal 250 kw A" + "en": "Tesla Supercharger (Destination) outputs at most 250 kw A", + "nl": "Tesla Supercharger (destination) levert een vermogen van maximaal 250 kw A", + "de": "Tesla Supercharger (Destination) liefert maximal 250 kw A" }, "icon": { "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", @@ -2989,8 +3208,9 @@ "id": "voltage-12", "group": "technical", "question": { - "en": "What voltage do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?", - "nl": "Welke spanning levert de stekker van type
Tesla supercharger (destination). (Een Type 2 met kabel en Tesla-logo)
?" + "en": "What voltage do the plugs with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer?", + "nl": "Welke spanning levert de stekker van type
Tesla supercharger (destination). (Een Type 2 met kabel en Tesla-logo)
?", + "de": "Welche Spannung bieten die
Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla)
?" }, "render": { "en": "
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt", @@ -3005,8 +3225,9 @@ { "if": "socket:tesla_destination:voltage=230 V", "then": { - "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt", - "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 230 volt" + "en": "Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 230 volt", + "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 230 volt", + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla) liefert 230 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -3016,8 +3237,9 @@ { "if": "socket:tesla_destination:voltage=400 V", "then": { - "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt", - "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 400 volt" + "en": "Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs 400 volt", + "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 400 volt", + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla) liefert 400 Volt" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -3036,12 +3258,14 @@ "id": "current-12", "group": "technical", "question": { - "en": "What current do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?", - "nl": "Welke stroom levert de stekker van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
?" + "en": "What current do the plugs with
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer?", + "nl": "Welke stroom levert de stekker van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
?", + "de": "Welche Stromstärke liefern die Stecker mit
Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla)
?" }, "render": { - "en": "
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:current}A", - "nl": "
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
levert een stroom van maximaal {socket:tesla_destination:current}A" + "en": "
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
outputs at most {socket:tesla_destination:current}A", + "nl": "
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
levert een stroom van maximaal {socket:tesla_destination:current}A", + "de": "
Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla)
liefert maximal {socket:tesla_destination:current} A" }, "freeform": { "key": "socket:tesla_destination:current", @@ -3051,8 +3275,9 @@ { "if": "socket:tesla_destination:current=16 A", "then": { - "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A", - "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 16 A" + "en": "Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla) outputs at most 16 A", + "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 16 A", + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel) liefert maximal 16 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -3062,8 +3287,9 @@ { "if": "socket:tesla_destination:current=32 A", "then": { - "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A", - "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 32 A" + "en": "Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 32 A", + "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 32 A", + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla) liefert maximal 32 A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -3082,12 +3308,14 @@ "id": "power-output-12", "group": "technical", "question": { - "en": "What power output does a single plug of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
?" + "en": "What power output does a single plug of type
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
offer?", + "nl": "Welk vermogen levert een enkele stekker van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
?", + "de": "Welche Leistung bietet ein einzelner Stecker des Typs
Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla)
?" }, "render": { - "en": "
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:output}", - "nl": "
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
levert een vermogen van maximaal {socket:tesla_destination:output}" + "en": "
Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla)
outputs at most {socket:tesla_destination:output}", + "nl": "
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
levert een vermogen van maximaal {socket:tesla_destination:output}", + "de": "
Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla)
liefert maximal {socket:tesla_destination:output}" }, "freeform": { "key": "socket:tesla_destination:output", @@ -3095,10 +3323,11 @@ }, "mappings": [ { - "if": "socket:tesla_destination:output=11 kw", + "if": "socket:tesla_destination:output=11 kW", "then": { - "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kw A", - "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 11 kw A" + "en": "Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 11 kw A", + "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 11 kw A", + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla) liefert maximal 11 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -3106,10 +3335,11 @@ } }, { - "if": "socket:tesla_destination:output=22 kw", + "if": "socket:tesla_destination:output=22 kW", "then": { - "en": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kw A", - "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 22 kw A" + "en": "Tesla Supercharger (Destination) (A Type 2 with cable branded as Tesla) outputs at most 22 kw A", + "nl": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 22 kw A", + "de": "Tesla Supercharger (Destination) (Typ 2 mit Kabel von Tesla) liefert maximal 22 kw A" }, "icon": { "path": "./assets/layers/charging_station/Type2_tethered.svg", @@ -3167,11 +3397,15 @@ "group": "technical", "question": { "en": "What current do the plugs with
USB to charge phones and small electronics
offer?", - "nl": "Welke stroom levert de stekker van type
USB om GSMs en kleine electronica op te laden
?" + "nl": "Welke stroom levert de stekker van type
USB om GSMs en kleine electronica op te laden
?", + "de": "Welche Stromstärke liefern die Stecker mit
USB zum Laden von Handys und kleinen Elektrogeräten
?", + "es": "¿Qué corriente ofrecen los conectores con
USB para cargar teléfonos y dispositivos electrónicos pequeños
?" }, "render": { "en": "
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A", - "nl": "
USB om GSMs en kleine electronica op te laden
levert een stroom van maximaal {socket:USB-A:current}A" + "nl": "
USB om GSMs en kleine electronica op te laden
levert een stroom van maximaal {socket:USB-A:current}A", + "de": "
USB zum Aufladen von Telefonen und kleinen Elektrogeräten
liefert maximal {socket:USB-A:current} A", + "es": "
USB para carga teléfonos y dispositivos electrónicos pequeños
salida de hasta {socket:USB-A:current}A" }, "freeform": { "key": "socket:USB-A:current", @@ -3182,7 +3416,9 @@ "if": "socket:USB-A:current=1 A", "then": { "en": "USB to charge phones and small electronics outputs at most 1 A", - "nl": "USB om GSMs en kleine electronica op te laden levert een stroom van maximaal 1 A" + "nl": "USB om GSMs en kleine electronica op te laden levert een stroom van maximaal 1 A", + "de": "USB zum Laden von Handys und kleinen Elektrogeräten liefert maximal 1 A", + "es": "USB para cargar teléfonos y dispositivos electrónicos pequeños hasta 1 A" }, "icon": { "path": "./assets/layers/charging_station/usb_port.svg", @@ -3193,7 +3429,9 @@ "if": "socket:USB-A:current=2 A", "then": { "en": "USB to charge phones and small electronics outputs at most 2 A", - "nl": "USB om GSMs en kleine electronica op te laden levert een stroom van maximaal 2 A" + "nl": "USB om GSMs en kleine electronica op te laden levert een stroom van maximaal 2 A", + "de": "USB zum Laden von Handys und kleinen Elektrogeräten liefert maximal 2 A", + "es": "USB para cargar teléfonos y dispositivos electrónicos pequeños hasta 1 A" }, "icon": { "path": "./assets/layers/charging_station/usb_port.svg", @@ -3213,11 +3451,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
USB to charge phones and small electronics
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
USB om GSMs en kleine electronica op te laden
?" + "nl": "Welk vermogen levert een enkele stekker van type
USB om GSMs en kleine electronica op te laden
?", + "de": "Welche Leistung bietet ein einzelner Stecker des Typs
USB zum Aufladen von Handys und kleinen Elektrogeräten
?" }, "render": { "en": "
USB to charge phones and small electronics
outputs at most {socket:USB-A:output}", - "nl": "
USB om GSMs en kleine electronica op te laden
levert een vermogen van maximaal {socket:USB-A:output}" + "nl": "
USB om GSMs en kleine electronica op te laden
levert een vermogen van maximaal {socket:USB-A:output}", + "de": "
USB zum Aufladen von Telefonen und kleiner Elektrogeräte
liefert maximal {socket:USB-A:output}" }, "freeform": { "key": "socket:USB-A:output", @@ -3225,10 +3465,11 @@ }, "mappings": [ { - "if": "socket:USB-A:output=5w", + "if": "socket:USB-A:output=5W", "then": { "en": "USB to charge phones and small electronics outputs at most 5w A", - "nl": "USB om GSMs en kleine electronica op te laden levert een vermogen van maximaal 5w A" + "nl": "USB om GSMs en kleine electronica op te laden levert een vermogen van maximaal 5w A", + "de": "USB zum Laden von Handys und kleinen Elektrogeräten liefert maximal 5w A" }, "icon": { "path": "./assets/layers/charging_station/usb_port.svg", @@ -3236,10 +3477,11 @@ } }, { - "if": "socket:USB-A:output=10w", + "if": "socket:USB-A:output=10W", "then": { "en": "USB to charge phones and small electronics outputs at most 10w A", - "nl": "USB om GSMs en kleine electronica op te laden levert een vermogen van maximaal 10w A" + "nl": "USB om GSMs en kleine electronica op te laden levert een vermogen van maximaal 10w A", + "de": "USB zum Laden von Handys und kleinen Elektrogeräten liefert maximal 10w A" }, "icon": { "path": "./assets/layers/charging_station/usb_port.svg", @@ -3264,7 +3506,8 @@ }, "render": { "en": "
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt", - "nl": "
Bosch Active Connect met 3 pinnen aan een kabel
heeft een spanning van {socket:bosch_3pin:voltage} volt" + "nl": "
Bosch Active Connect met 3 pinnen aan een kabel
heeft een spanning van {socket:bosch_3pin:voltage} volt", + "de": "
Bosch Active Connect mit 3 Pins und Kabel
liefert {socket:bosch_3pin:voltage} Volt" }, "freeform": { "key": "socket:bosch_3pin:voltage", @@ -3283,11 +3526,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer?", - "nl": "Welke stroom levert de stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?" + "nl": "Welke stroom levert de stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?", + "de": "Welche Stromstärke liefern die Stecker mit
Bosch Active Connect mit 3 Pins und Kabel
?" }, "render": { "en": "
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A", - "nl": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_3pin:current}A" + "nl": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_3pin:current}A", + "de": "
Bosch Active Connect mit 3 Pins und Kabel
liefern maximal {socket:bosch_3pin:current} A" }, "freeform": { "key": "socket:bosch_3pin:current", @@ -3306,11 +3551,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?" + "nl": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Bosch Active Connect mit 3 Pins und Kabel
?" }, "render": { "en": "
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output}", - "nl": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_3pin:output}" + "nl": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_3pin:output}", + "de": "
Bosch Active Connect mit 3 Pins und Kabel
liefert maximal {socket:bosch_3pin:output}" }, "freeform": { "key": "socket:bosch_3pin:output", @@ -3329,11 +3576,13 @@ "group": "technical", "question": { "en": "What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer?", - "nl": "Welke spanning levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
" + "nl": "Welke spanning levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
", + "de": "Welche Spannung liefern die
Bosch Active Connect mit 5 Pins und Kabel
?" }, "render": { "en": "
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt", - "nl": "
Bosch Active Connect met 5 pinnen aan een kabel
heeft een spanning van {socket:bosch_5pin:voltage} volt" + "nl": "
Bosch Active Connect met 5 pinnen aan een kabel
heeft een spanning van {socket:bosch_5pin:voltage} volt", + "de": "
Bosch Active Connect mit 5 Pins und Kabel
liefert {socket:bosch_5pin:voltage} Volt" }, "freeform": { "key": "socket:bosch_5pin:voltage", @@ -3352,11 +3601,13 @@ "group": "technical", "question": { "en": "What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer?", - "nl": "Welke stroom levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?" + "nl": "Welke stroom levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?", + "de": "Welche Stromstärke liefern die Stecker mit
Bosch Active Connect mit 5 Pins und Kabel
?" }, "render": { "en": "
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A", - "nl": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_5pin:current}A" + "nl": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_5pin:current}A", + "de": "
Bosch Active Connect mit 5 Pins und Kabel
liefern maximal {socket:bosch_5pin:current} A" }, "freeform": { "key": "socket:bosch_5pin:current", @@ -3375,11 +3626,13 @@ "group": "technical", "question": { "en": "What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer?", - "nl": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?" + "nl": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?", + "de": "Welche Leistung bietet ein einzelner Stecker vom Typ
Bosch Active Connect mit 5 Pins und Kabel
?" }, "render": { "en": "
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output}", - "nl": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_5pin:output}" + "nl": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_5pin:output}", + "de": "
Bosch Active Connect mit 5 Pins und Kabel
liefert maximal {socket:bosch_5pin:output}" }, "freeform": { "key": "socket:bosch_5pin:output", @@ -3423,7 +3676,8 @@ "question": { "en": "Does one have to pay to use this charging station?", "nl": "Moet men betalen om dit oplaadpunt te gebruiken?", - "de": "Muss man für die Nutzung dieser Ladestation bezahlen?" + "de": "Muss man für die Nutzung dieser Ladestation bezahlen?", + "es": "¿Hay que pagar para utilizar esta estación de carga?" }, "mappings": [ { @@ -3438,7 +3692,7 @@ "then": { "nl": "Gratis te gebruiken (zonder aan te melden)", "en": "Free to use (without authenticating)", - "de": "Kostenlos nutzbar (ohne Authentifizierung)" + "de": "Die Nutzung ist kostenlos, keine Authentifizierung erforderlich" } }, { @@ -3453,7 +3707,7 @@ "then": { "nl": "Gratis te gebruiken, maar aanmelden met een applicatie is verplicht", "en": "Free to use, but one has to authenticate", - "de": "Kostenlose Nutzung, aber man muss sich authentifizieren" + "de": "Die Nutzung ist kostenlos, Authentifizierung erforderlich" } }, { @@ -3478,8 +3732,9 @@ }, "then": { "nl": "Betalend te gebruiken, maar gratis voor klanten van het bijhorende hotel/café/ziekenhuis/...", - "en": "Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station", - "de": "Kostenpflichtige Nutzung, aber kostenlos für Kunden des Hotels / Pub / Krankenhauses / ... wer die Ladestation betreibt" + "en": "Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station", + "de": "Die Nutzung ist kostenpflichtig, aber für Kunden des Betreibers der Einrichtung, wie Hotel, Krankenhaus, … kostenlos", + "es": "De pago, pero gratis para clientes del hotel/pub/hostpital... quien opera la estación de carga" } }, { @@ -3492,7 +3747,8 @@ "then": { "nl": "Betalend", "en": "Paid use", - "de": "Nutzung gebührenpflichtig" + "de": "Die Nutzung ist kostenpflichtig", + "es": "Uso de pago" } } ] @@ -3502,12 +3758,14 @@ "question": { "en": "How much does one have to pay to use this charging station?", "nl": "Hoeveel moet men betalen om dit oplaadpunt te gebruiken?", - "de": "Wie viel muss man für die Nutzung dieser Ladestation bezahlen?" + "de": "Wie viel muss man für die Nutzung dieser Ladestation bezahlen?", + "es": "¿Cuánto hay que pagar para utilizar esta estación de carga?" }, "render": { "en": "Using this charging station costs {charge}", "nl": "Dit oplaadpunt gebruiken kost {charge}", - "de": "Die Nutzung dieser Ladestation kostet {charge}" + "de": "Die Nutzung dieser Ladestation kostet {charge}", + "es": "Utilizar esta estación de carga cuesta {charge}" }, "freeform": { "key": "charge" @@ -3533,6 +3791,7 @@ "en": "What kind of authentication is available at the charging station?", "nl": "Hoe kan men zich aanmelden aan dit oplaadstation?", "de": "Welche Art der Authentifizierung ist an der Ladestation möglich?", + "es": "¿Qué tipo de autenticación está disponible en esta estación de carga?", "fr": "Quelle sorte d'authentification est disponible à cette station de charge ?" }, "multiAnswer": true, @@ -3620,6 +3879,7 @@ "en": "Charging here is (also) possible without authentication", "nl": "Hier opladen is (ook) mogelijk zonder aan te melden", "de": "Das Laden ist hier (auch) ohne Authentifizierung möglich", + "es": "La carga aquí (también) es posible sin autenticación", "fr": "Charger ici est (aussi) possible sans authentification" } } @@ -3641,7 +3901,8 @@ "question": { "en": "What's the phone number for authentication call or SMS?", "nl": "Wat is het telefoonnummer dat men moet bellen of SMS'en om zich aan te melden?", - "de": "Wie lautet die Telefonnummer für den Authentifizierungsanruf oder die SMS?" + "de": "Wie lautet die Telefonnummer für den Authentifizierungsanruf oder die SMS?", + "es": "¿Cual es el número de teléfono para la llamada de autenticación o SMS?" }, "freeform": { "key": "authentication:phone_call:number", @@ -3659,7 +3920,8 @@ "question": { "en": "What is the maximum amount of time one is allowed to stay here?", "nl": "Hoelang mag een voertuig hier blijven staan?", - "de": "Wie lange darf man hier maximal parken?" + "de": "Wie lange darf man hier maximal parken?", + "es": "¿Cuál es la máxima cantidad de tiempo que se permite permanecer aquí?" }, "freeform": { "key": "maxstay" @@ -3667,7 +3929,8 @@ "render": { "en": "One can stay at most {canonical(maxstay)}", "nl": "De maximale parkeertijd hier is {canonical(maxstay)}", - "de": "Die maximale Parkdauer beträgt {canonical(maxstay)}" + "de": "Die maximale Parkdauer beträgt {canonical(maxstay)}", + "es": "Se puede estar como máximo {canonical(maxstay)}" }, "mappings": [ { @@ -3675,7 +3938,8 @@ "then": { "en": "No timelimit on leaving your vehicle here", "nl": "Geen maximum parkeertijd", - "de": "Keine Höchstparkdauer" + "de": "Keine Höchstparkdauer", + "es": "No hay límite de tiempo para dejar tu vehículo aquí" } } ], @@ -3711,7 +3975,8 @@ "then": { "en": "Not part of a bigger network, e.g. because the charging station is maintained by a local business", "nl": "Maakt geen deel uit van een groter netwerk, een lokale zaak of organisatie beheert dit oplaadpunt", - "de": "Nicht Teil eines größeren Netzwerks, z. B. weil die Ladestation von einem lokalen Unternehmen betrieben wird" + "de": "Nicht Teil eines größeren Netzwerks, z. B. weil die Ladestation von einem lokalen Unternehmen betrieben wird", + "es": "No forma parte de una red más grande, ej. porque la estación de carga la mantiene un negocio local" } }, { @@ -3767,12 +4032,14 @@ "question": { "en": "Who is the operator of this charging station?", "nl": "Wie beheert dit oplaadpunt?", - "de": "Wer ist der Betreiber dieser Ladestation?" + "de": "Wer ist der Betreiber dieser Ladestation?", + "es": "¿Quien es la operadora de esta estación de carga?" }, "render": { "en": "This charging station is operated by {operator}", "nl": "Wordt beheerd door {operator}", - "de": "Diese Ladestation wird betrieben von {operator}" + "de": "Die Station wird betrieben von {operator}", + "es": "Esta estación de carga la opera {operator}" }, "freeform": { "key": "operator" @@ -3787,7 +4054,8 @@ "then": { "en": "Actually, {operator} is the network", "nl": "Eigenlijk is {operator} het netwerk waarvan het deel uitmaakt", - "de": "Eigentlich ist {operator} das Netzwerk" + "de": "Eigentlich ist {operator} das Netzwerk", + "es": "De hecho, {operator} es la red" }, "addExtraTags": [ "operator=" @@ -3802,12 +4070,14 @@ "question": { "en": "What number can one call if there is a problem with this charging station?", "nl": "Wat is het telefoonnummer van de beheerder van dit oplaadpunt?", - "de": "Welche Nummer kann man anrufen, wenn es ein Problem mit dieser Ladestation gibt?" + "de": "Welche Nummer kann man anrufen, wenn es ein Problem mit dieser Ladestation gibt?", + "es": "¿A qué número se puede llamar si hay un problema con esta estación de carga?" }, "render": { "en": "In case of problems, call {phone}", "nl": "Bij problemen, bel naar {phone}", - "de": "Bei Problemen, anrufen unter {phone}" + "de": "Bei Problemen, anrufen unter {phone}", + "es": "En caso de problemas, llama a {phone}" }, "freeform": { "key": "phone", @@ -3819,12 +4089,14 @@ "question": { "en": "What is the email address of the operator?", "nl": "Wat is het email-adres van de operator?", - "de": "Wie lautet die E-Mail-Adresse des Betreibers?" + "de": "Wie lautet die E-Mail-Adresse des Betreibers?", + "es": "¿Cual es la dirección de correo electrónico de esta operadora?" }, "render": { "en": "In case of problems, send an email to {email}", "nl": "Bij problemen, email naar {email}", - "de": "Bei Problemen senden Sie bitte eine E-Mail an {email}" + "de": "Bei Problemen senden Sie bitte eine E-Mail an {email}", + "es": "En caso de problemas, envía un correo electrónico a {email}" }, "freeform": { "key": "email", @@ -3835,11 +4107,13 @@ "id": "website", "question": { "en": "What is the website where one can find more information about this charging station?", - "nl": "Wat is de website waar men meer info kan vinden over dit oplaadpunt?" + "nl": "Wat is de website waar men meer info kan vinden over dit oplaadpunt?", + "de": "Auf welcher Webseite kann man weitere Informationen über diese Ladestation finden?" }, "render": { "en": "More info on {website}", - "nl": "Meer informatie op {website}" + "nl": "Meer informatie op {website}", + "de": "Weitere Informationen unter {website}" }, "freeform": { "key": "website", @@ -3851,11 +4125,15 @@ "id": "ref", "question": { "en": "What is the reference number of this charging station?", - "nl": "Wat is het referentienummer van dit oplaadstation?" + "nl": "Wat is het referentienummer van dit oplaadstation?", + "de": "Welche Kennnummer hat die Ladestation?", + "es": "¿Cual es el número de referencia de esta estación de carga?" }, "render": { "en": "Reference number is {ref}", - "nl": "Het referentienummer van dit oplaadpunt is {ref}" + "nl": "Het referentienummer van dit oplaadpunt is {ref}", + "de": "Die Kennziffer ist {ref}", + "es": "El número de referencia es {ref}" }, "freeform": { "key": "ref" @@ -3868,7 +4146,8 @@ "question": { "en": "Is this charging point in use?", "nl": "Is dit oplaadpunt operationeel?", - "de": "Ist dieser Ladepunkt in Betrieb?" + "de": "Ist die Station in Betrieb?", + "es": "¿Está en uso este punto de carga?" }, "mappings": [ { @@ -3884,7 +4163,9 @@ "then": { "en": "This charging station works", "nl": "Dit oplaadpunt werkt", - "de": "Diese Ladestation ist in Betrieb" + "ca": "Aquesta estació de càrrega funciona", + "de": "Die Station ist in Betrieb", + "es": "Esta estación de carga funciona" } }, { @@ -3900,7 +4181,8 @@ "then": { "en": "This charging station is broken", "nl": "Dit oplaadpunt is kapot", - "de": "Diese Ladestation ist defekt" + "de": "Die Station ist defekt", + "es": "Esta estación de carga está rota" } }, { @@ -3916,7 +4198,8 @@ "then": { "en": "A charging station is planned here", "nl": "Hier zal binnenkort een oplaadpunt gebouwd worden", - "de": "Hier ist eine Ladestation geplant" + "de": "Die Station ist erst in Planung", + "es": "Una estación de carga está planeada aquí" } }, { @@ -3932,7 +4215,8 @@ "then": { "en": "A charging station is constructed here", "nl": "Hier wordt op dit moment een oplaadpunt gebouwd", - "de": "Hier wird eine Ladestation errichtet" + "de": "Die Station ist aktuell im Bau", + "es": "Una estación de carga está construida aquí" } }, { @@ -3948,7 +4232,8 @@ "then": { "en": "This charging station has beed permanently disabled and is not in use anymore but is still visible", "nl": "Dit oplaadpunt is niet meer in gebruik maar is wel nog aanwezig", - "de": "Diese Ladestation wurde dauerhaft geschlossen und wird nicht mehr benutzt, ist aber noch sichtbar" + "de": "Die Station ist dauerhaft geschlossen und nicht mehr in Nutzung, aber noch sichtbar", + "es": "Esta estación de carga se ha deshabilitado de forma permanente y ya no está en uso pero todavía es visible" } } ] @@ -3958,7 +4243,9 @@ "question": { "en": "Does one have to pay a parking fee while charging?", "nl": "Moet men parkeergeld betalen tijdens het opladen?", - "de": "Muss man während des Ladens eine Parkgebühr bezahlen?" + "de": "Muss man während des Ladens eine Parkgebühr bezahlen?", + "es": "¿Hay que pagar una tasa de aparcamiento mientras se carga?", + "fr": "Doit-on payer des frais de stationnement pendant la recharge ?" }, "mappings": [ { @@ -3966,7 +4253,9 @@ "then": { "en": "No additional parking cost while charging", "nl": "Geen extra parkeerkost tijdens het opladen", - "de": "Keine zusätzlichen Parkkosten während des Ladens" + "de": "Keine zusätzlichen Parkkosten während des Ladens", + "es": "No hay costes de aparcamiento adicionales mientras se carga", + "fr": "Pas de frais de stationnement supplémentaires pendant la recharge" } }, { @@ -3974,7 +4263,9 @@ "then": { "en": "An additional parking fee should be paid while charging", "nl": "Tijdens het opladen moet er parkeergeld betaald worden", - "de": "Während des Ladens ist eine zusätzliche Parkgebühr zu entrichten" + "de": "Während des Ladens ist eine zusätzliche Parkgebühr zu entrichten", + "es": "Se deberá de pagar una tasa adicional de aparcamiento mientras se carga", + "fr": "Des frais de stationnement supplémentaires doivent être payés lors de la recharge" } } ], @@ -3996,7 +4287,8 @@ "group": "technical", "render": { "en": "

Technical questions

The questions below are very technical. Feel free to ignore them
{questions}", - "nl": "

Technische vragen

De vragen hieronder zijn erg technisch - sla deze over indien je hier geen tijd voor hebt
{questions}" + "nl": "

Technische vragen

De vragen hieronder zijn erg technisch - sla deze over indien je hier geen tijd voor hebt
{questions}", + "de": "

Technische Fragen

Die folgenden Fragen sind sehr technisch. Sie können sie gerne ignorieren
{questions}" } } ], @@ -4074,7 +4366,8 @@ "title": { "en": "a charging station for electrical bikes with a normal european wall plug (meant to charge electrical bikes)", "nl": "een oplaadpunt voor elektrische fietsen met een gewoon Europees stopcontact (speciaal bedoeld voor fietsen)", - "de": "eine Ladestation für Elektrofahrräder mit einer normalen europäischen Steckdose (zum Laden von Elektrofahrrädern)" + "de": "eine Ladestation für Elektrofahrräder mit einer normalen europäischen Steckdose (zum Laden von Elektrofahrrädern)", + "es": "una estación de carga para bicicletas eléctricas con un enchufe de pared europeo normal (pensado para cargar bicicletas eléctricas)" }, "preciseInput": { "preferredBackground": "map" @@ -4089,7 +4382,8 @@ "title": { "en": "a charging station for cars", "nl": "een oplaadstation voor elektrische auto's", - "de": "eine ladestation für e-bikes" + "de": "eine ladestation für e-bikes", + "es": "una estación de carga para coches" }, "preciseInput": { "preferredBackground": "map" @@ -4104,18 +4398,20 @@ "question": { "en": "All vehicle types", "nl": "Alle voertuigen", + "da": "Alle køretøjstyper", "de": "Ladestationen für alle Fahrzeugtypen", - "fr": "Tout type de véhicule", - "da": "Alle køretøjstyper" + "es": "Todo tipo de vehículos", + "fr": "Tout type de véhicule" } }, { "question": { "en": "Charging station for bicycles", "nl": "Oplaadpunten voor fietsen", + "da": "Ladestation til cykler", "de": "Ladestationen für Fahrräder", - "fr": "Station de charge pour vélos", - "da": "Ladestation til cykler" + "es": "Estación de carga para bicicletas", + "fr": "Station de charge pour vélos" }, "osmTags": "bicycle=yes" }, @@ -4123,9 +4419,10 @@ "question": { "en": "Charging station for cars", "nl": "Oplaadpunten voor auto's", + "da": "Ladestation til biler", "de": "Ladestationen für Autos", - "fr": "Station de charge pour automobiles", - "da": "Ladestation til biler" + "es": "Estación de carga para coches", + "fr": "Station de charge pour automobiles" }, "osmTags": { "or": [ @@ -4143,8 +4440,10 @@ "question": { "en": "Only working charging stations", "nl": "Enkel werkende oplaadpunten", + "da": "Kun fungerende ladestationer", "de": "Nur Ladestationen in Betrieb", - "da": "Kun fungerende ladestationer" + "es": "Solo estaciones de carga funcionales", + "fr": "Stations de recharge en service uniquement" }, "osmTags": { "and": [ @@ -4162,22 +4461,27 @@ "question": { "en": "All connectors", "nl": "Alle types", + "ca": "Tots els connectors", "de": "Alle Anschlüsse", - "ca": "Tots els connectors" + "es": "Todos los conectores", + "fr": "Tous types de prise" } }, { "question": { "en": "Has a
Schuko wall plug without ground pin (CEE7/4 type F)
connector", "nl": "Heeft een
Schuko stekker zonder aardingspin (CEE7/4 type F)
", - "de": "Verfügt über einen
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
" + "de": "Verfügt über einen
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
", + "fr": "Dispose d’une
prise murale Schuko sans terre (CEE7/4 type F)
" }, "osmTags": "socket:schuko~*" }, { "question": { "en": "Has a
European wall plug with ground pin (CEE7/4 type E)
connector", - "nl": "Heeft een
Europese stekker met aardingspin (CEE7/4 type E)
" + "nl": "Heeft een
Europese stekker met aardingspin (CEE7/4 type E)
", + "de": "Verfügt über einen
europäischen Netzstecker mit Erdungsstift (CEE7/4 Typ E)
Anschluss", + "es": "Tiene un conector
enchufe de pared Europeo con un pin de tierra (CEE7/4 tipo E
" }, "osmTags": "socket:typee~*" }, @@ -4185,7 +4489,8 @@ "question": { "en": "Has a
Chademo
connector", "nl": "Heeft een
Chademo
", - "de": "Verfügt über einen
Chademo
Stecker" + "de": "Verfügt über einen
Chademo
Stecker", + "es": "Tiene un conector
Chademo
" }, "osmTags": "socket:chademo~*" }, @@ -4193,23 +4498,26 @@ "question": { "en": "Has a
Type 1 with cable (J1772)
connector", "nl": "Heeft een
Type 1 met kabel (J1772)
", - "de": "Verfügt über einen
Typ 1 (J1772)
Stecker mit Kabel" + "de": "Verfügt über einen
Typ 1 (J1772)
Stecker mit Kabel", + "es": "Tiene un conector de
Tipo 1 con cable (J1772)
" }, "osmTags": "socket:type1_cable~*" }, { "question": { - "en": "Has a
Type 1 without cable (J1772)
connector", + "en": "Has a
Type 1 without cable (J1772)
connector", "nl": "Heeft een
Type 1 zonder kabel (J1772)
", - "de": "Verfügt über einen
Typ 1 (J1772)
Stecker ohne Kabel" + "de": "Verfügt über einen
Typ 1 (J1772)Stecker ohne Kabel
", + "es": "Tiene un conector de
Tipo 1 sin cable (J1772)
" }, "osmTags": "socket:type1~*" }, { "question": { - "en": "Has a
Type 1 CCS (aka Type 1 Combo)
connector", + "en": "Has a
Type 1 CCS (aka Type 1 Combo)
connector", "nl": "Heeft een
Type 1 CCS (ook gekend als Type 1 Combo)
", - "de": "Verfügt über einen
Typ 1 CCS
Stecker, auch bekannt als Typ 1 Combo" + "de": "Verfügt über einen
Typ 1 CCS (Typ 1 Combo)
Stecker", + "es": "Tiene un conector
Tipo 1 CCS (Combo Tipo 1)
" }, "osmTags": "socket:type1_combo~*" }, @@ -4217,70 +4525,89 @@ "question": { "en": "Has a
Tesla Supercharger
connector", "nl": "Heeft een
Tesla Supercharger
", - "de": "Verfügt über einen
Tesla Supercharger
Stecker" + "de": "Verfügt über einen
Tesla Supercharger
Stecker", + "es": "Tiene un conector
Tesla Supercharger
" }, "osmTags": "socket:tesla_supercharger~*" }, { "question": { "en": "Has a
Type 2 (mennekes)
connector", - "nl": "Heeft een
Type 2 (mennekes)
" + "nl": "Heeft een
Type 2 (mennekes)
", + "de": "Hat einen
Typ 2 (Mennekes)
Anschluss", + "es": "Tiene un conector
Tipo 2 (mennekes)
" }, "osmTags": "socket:type2~*" }, { "question": { "en": "Has a
Type 2 CCS (mennekes)
connector", - "nl": "Heeft een
Type 2 CCS (mennekes)
" + "nl": "Heeft een
Type 2 CCS (mennekes)
", + "de": "Hat einen
Typ 2 CCS (Mennekes)
Anschluss", + "es": "Tiene un conector
Tipo 2 CCS (mennekes
" }, "osmTags": "socket:type2_combo~*" }, { "question": { "en": "Has a
Type 2 with cable (mennekes)
connector", - "nl": "Heeft een
Type 2 met kabel (J1772)
" + "nl": "Heeft een
Type 2 met kabel (J1772)
", + "de": "Hat einen
Typ 2 (Mennekes)
Anschluss mit Kabel", + "es": "Tiene un conector
Tipo 2 con cable (mennekes)
" }, "osmTags": "socket:type2_cable~*" }, { "question": { "en": "Has a
Tesla Supercharger CCS (a branded type2_css)
connector", - "nl": "Heeft een
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" + "nl": "Heeft een
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
", + "de": "Hat einen
Tesla Supercharger CCS (Typ 2 CSS vonTesla)
Anschluss", + "es": "Tiene un conector
Tesla Supercharger CCS (un tipo2_css de marca)
" }, "osmTags": "socket:tesla_supercharger_ccs~*" }, { "question": { "en": "Has a
Tesla Supercharger (destination)
connector", - "nl": "Heeft een
Tesla Supercharger (destination)
" + "nl": "Heeft een
Tesla Supercharger (destination)
", + "de": "Hat einen
Tesla Supercharger (Destination)
Anschluss", + "es": "Tiene un conector
Tesla Supercharger (destination)
" }, "osmTags": "socket:tesla_destination~*" }, { "question": { - "en": "Has a
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
connector", - "nl": "Heeft een
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
" + "en": "Has a
Tesla Supercharger (Destination) (A Type 2 with cable branded as tesla)
connector", + "nl": "Heeft een
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
", + "de": "Hat einen
Tesla Supercharger (Destination) (Typ 2 von Tesla)
Anschluss mit Kabel", + "es": "Tiene un conector
Tesla Supercharger (Destination) (Tipo2 A con un cable de marca tesla)
" }, "osmTags": "socket:tesla_destination~*" }, { "question": { "en": "Has a
USB to charge phones and small electronics
connector", - "nl": "Heeft een
USB om GSMs en kleine electronica op te laden
" + "nl": "Heeft een
USB om GSMs en kleine electronica op te laden
", + "de": "Hat einen
USB-Anschluss zum Aufladen von Telefonen und kleinen Elektrogeräten
", + "es": "Tiene un conector
USB para cargar teléfonos y dispositivos electrónicos pequeños
" }, "osmTags": "socket:USB-A~*" }, { "question": { "en": "Has a
Bosch Active Connect with 3 pins and cable
connector", - "nl": "Heeft een
Bosch Active Connect met 3 pinnen aan een kabel
" + "nl": "Heeft een
Bosch Active Connect met 3 pinnen aan een kabel
", + "de": "Hat einen
Bosch Active Connect Anschluss mit 3 Pins
und Kabel", + "es": "Tiene un conector
Bosch Active Connect con 3 pines y cable
" }, "osmTags": "socket:bosch_3pin~*" }, { "question": { "en": "Has a
Bosch Active Connect with 5 pins and cable
connector", - "nl": "Heeft een
Bosch Active Connect met 5 pinnen aan een kabel
" + "nl": "Heeft een
Bosch Active Connect met 5 pinnen aan een kabel
", + "de": "Hat einen
Bosch Active Connect Anschluss mit 5 Pins
und Kabel", + "es": "Tiene un conector
Bosch Active Connect con 5 pines y cable
" }, "osmTags": "socket:bosch_5pin~*" } @@ -4306,14 +4633,18 @@ "human": { "en": " minutes", "nl": " minuten", - "ru": " минут", - "ca": " minuts" + "ca": " minuts", + "de": " Minuten", + "es": " minutos", + "ru": " минут" }, "humanSingular": { "en": " minute", "nl": " minuut", - "ru": " минута", - "ca": " minut" + "ca": " minut", + "de": " Minute", + "es": " minuto", + "ru": " минута" } }, { @@ -4330,14 +4661,18 @@ "human": { "en": " hours", "nl": " uren", - "ru": " часов", - "ca": " hores" + "ca": " hores", + "de": " Stunden", + "es": " horas", + "ru": " часов" }, "humanSingular": { "en": " hour", "nl": " uur", - "ru": " час", - "ca": " hora" + "ca": " hora", + "de": " Stunde", + "es": " hora", + "ru": " час" } }, { @@ -4351,14 +4686,18 @@ "human": { "en": " days", "nl": " day", - "ru": " дней", - "ca": " dies" + "ca": " dies", + "de": " Tage", + "es": " días", + "ru": " дней" }, "humanSingular": { "en": " day", "nl": " dag", - "ru": " день", - "ca": " dia" + "ca": " dia", + "de": " Tag", + "es": " día", + "ru": " день" } } ] @@ -4395,8 +4734,10 @@ "human": { "en": "Volts", "nl": "volt", - "ru": "Вольт", - "ca": "Volts" + "ca": "Volts", + "de": "Volt", + "es": "Voltios", + "ru": "Вольт" } } ], @@ -4433,7 +4774,9 @@ "human": { "en": "A", "nl": "A", - "ca": "A" + "ca": "A", + "de": "Ein", + "es": "A" } } ], @@ -4467,8 +4810,10 @@ "human": { "en": "kilowatt", "nl": "kilowatt", - "ru": "киловатт", - "ca": "quilovats" + "ca": "quilovats", + "de": "Kilowatt", + "es": "kilvatio", + "ru": "киловатт" } }, { @@ -4479,8 +4824,10 @@ "human": { "en": "megawatt", "nl": "megawatt", - "ru": "мегаватт", - "ca": "megavats" + "ca": "megavats", + "de": "Megawatt", + "es": "megavatio", + "ru": "мегаватт" } } ], diff --git a/assets/layers/climbing/climbing.json b/assets/layers/climbing/climbing.json index 36cd68b9d3..cf3ceacf83 100644 --- a/assets/layers/climbing/climbing.json +++ b/assets/layers/climbing/climbing.json @@ -2,7 +2,9 @@ "id": "climbing", "title": null, "description": { - "en": "A dummy layer which contains tagrenderings, shared among the climbing layers" + "en": "A dummy layer which contains tagrenderings, shared among the climbing layers", + "nl": "Een dummy-laag die tagrenderings bevat, gedeeld over de verschillende klimsport lagen", + "de": "Eine Dummy-Ebene, die Tagrenderings enthält, die von den Kletterebenen gemeinsam genutzt werden" }, "minzoom": 25, "source": { @@ -42,7 +44,8 @@ "nl": "De klimroutes zijn gemiddeld {canonical(climbing:length)} lang", "ja": "ルートの長さは平均で{canonical(climbing:length)}です", "fr": "Les voies font {canonical(climbing:length)} de long en moyenne", - "it": "Le vie sono lunghe mediamente {canonical(climbing:length)}" + "it": "Le vie sono lunghe mediamente {canonical(climbing:length)}", + "es": "Las rutas miden {canonical(climbing:length)} de media" }, "question": { "de": "Wie lang sind die Routen (durchschnittlich) in Metern?", @@ -50,7 +53,8 @@ "nl": "Wat is de (gemiddelde) lengte van de klimroutes, in meter?", "ja": "ルートの(平均)長さはメートル単位でいくつですか?", "fr": "Quelle est la longueur moyenne des voies en mètres ?", - "it": "Quale è la lunghezza (media) delle vie in metri?" + "it": "Quale è la lunghezza (media) delle vie in metri?", + "es": "¿Cual es la longitud (media) de las rutas en metros?" }, "freeform": { "key": "climbing:length", @@ -317,10 +321,14 @@ { "id": "max_bolts", "question": { - "en": "How many bolts do routes in {title()} have at most?" + "en": "How many bolts do routes in {title()} have at most?", + "de": "Wie viele Haken haben die Routen in {title()} maximal?", + "nl": "Wat is het maximum aantal bouten in routes ban {title()}?" }, "render": { - "en": "The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without relays and indicates how much quickdraws a climber needs
" + "en": "The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without relays and indicates how much quickdraws a climber needs
", + "de": "Die Sportkletterrouten hier haben maximal {climbing:bolts:max} Haken.
Dies ist ohne Relais und gibt an, wie viel Schnellspanner ein Kletterer braucht
", + "nl": "De sportklimroutes hebben maximaal {climbing:bolts:max} bouten.
Hierbij worden relays niet meegteld. Dit geeft aan hoeveel klimsetjes een klimmer nodig heeft
" }, "freeform": { "key": "climbing:bolts:max", @@ -334,10 +342,16 @@ { "id": "fee", "question": { - "en": "Is a fee required to climb here?" + "en": "Is a fee required to climb here?", + "es": "¿Se requiere una tasa para escalar aquí?", + "de": "Ist das Klettern hier gebührenpflichtig?", + "nl": "Moet men betalen om hier te klimmen?" }, "render": { - "en": "A fee of {charge} should be paid for climbing here" + "en": "A fee of {charge} should be paid for climbing here", + "de": "Zum Klettern wird eine Gebühr von {charge} erhoben", + "es": "Se debe de pagar una tasa de {charge} para escalar aquí", + "nl": "Men moet {charge} betalen om hier te klimmen" }, "freeform": { "key": "charge", @@ -353,7 +367,10 @@ "charge=" ], "then": { - "en": "Climbing here is free of charge" + "en": "Climbing here is free of charge", + "de": "Das Klettern ist hier kostenlos", + "es": "La escalada es gratis", + "nl": "Hier klimmen is gratis" } }, { @@ -364,7 +381,10 @@ ] }, "then": { - "en": "Paying a fee is required to climb here" + "en": "Paying a fee is required to climb here", + "es": "Hay que pagar una tasa para escalar aquí", + "de": "Zum Klettern ist eine Gebühr zu zahlen", + "nl": "Men moet betalen om hier te klimmen" }, "hideInAnswer": "charge~*" } diff --git a/assets/layers/climbing_area/climbing_area.json b/assets/layers/climbing_area/climbing_area.json index 22b694ba5a..200cbd670b 100644 --- a/assets/layers/climbing_area/climbing_area.json +++ b/assets/layers/climbing_area/climbing_area.json @@ -2,14 +2,16 @@ "id": "climbing_area", "name": { "nl": "Klimgelegenheden", - "de": "Klettermöglichkeiten", + "de": "Klettereinrichtungen", "en": "Climbing opportunities", "ja": "登坂教室", "fr": "Opportunité d’escalade", "it": "Opportunità di arrampicata" }, "description": { - "en": "An area where climbing is possible, e.g. a crag, site, boulder, ... Contains aggregation of routes" + "en": "An area where climbing is possible, e.g. a crag, site, boulder, … Contains aggregation of routes", + "de": "Ein Gebiet, in dem Klettern möglich ist, z. B. ein Felsen, ein Klettergarten, eine Boulderhalle, … Enthält eine Sammlung von Routen", + "nl": "Een gebied waar klimmen mogelijk is, bv. een klimsite, een bolder of klimrots,…" }, "minzoom": 10, "source": { @@ -27,7 +29,7 @@ "render": { "en": "Climbing opportunity", "nl": "Klimgelegenheid", - "de": "Klettermöglichkeit", + "de": "Klettereinrichtung", "ja": "登坂教室", "nb_NO": "Klatremulighet", "fr": "Opportunité d’escalade", @@ -85,7 +87,7 @@ "nl": "Klimgelegenheid {name}", "en": "Climbing opportunity {name}", "fr": "Opportunité d’escalade {name}", - "de": "Klettermöglichkeit {name}", + "de": "Klettereinrichtung {name}", "it": "Opportunità di arrampicata {name}" } } @@ -117,7 +119,8 @@ "en": "

Length overview

{histogram(_length_hist)}", "fr": "

Résumé de longueur

{histogram(_length_hist)}", "de": "

Längenübersicht

{histogram(_length_hist)}", - "it": "

Riassunto della lunghezza

{histogram(_length_hist)}" + "it": "

Riassunto della lunghezza

{histogram(_length_hist)}", + "nl": "

Overzicht van lengtes

{histogram(_length_hist)}" }, "condition": "_length_hist!~\\[\\]", "id": "Contained routes length hist" @@ -127,7 +130,8 @@ "en": "

Grades overview

{histogram(_difficulty_hist)}", "fr": "

Résumé des difficultés

{histogram(_difficulty_hist)}", "de": "

Schwierigkeitsübersicht

{histogram(_difficulty_hist)}", - "it": "

Riassunto delle difficoltà

{histogram(_difficulty_hist)}" + "it": "

Riassunto delle difficoltà

{histogram(_difficulty_hist)}", + "nl": "

Overzicht van moeilijkheidsgraden{histogram(_difficulty_hist)}" }, "condition": "_difficulty_hist!~\\[\\]", "id": "Contained routes hist" @@ -137,7 +141,8 @@ "en": "

Contains {_contained_climbing_routes_count} routes

    {_contained_climbing_routes}
", "fr": "

Contient {_contained_climbing_routes_count} voies

    {_contained_climbing_routes}
", "it": "

Contiene {_contained_climbing_routes_count} vie

    {_contained_climbing_routes}
", - "de": "

Enthält {_contained_climbing_routes_count} Routen

    {_contained_climbing_routes}
" + "de": "

Enthält {_contained_climbing_routes_count} Routen

    {_contained_climbing_routes}
", + "nl": "

Bevat {_contained_climbing_routes_count} routes

    {_contained_climbing_routes}
" }, "condition": "_contained_climbing_routes~*", "id": "Contained_climbing_routes" @@ -157,7 +162,7 @@ "question": { "en": "What is the name of this climbing opportunity?", "nl": "Wat is de naam van dit Klimgelegenheid?", - "de": "Wie heißt diese Klettergelegenheit?", + "de": "Wie heißt die Klettereinrichtung?", "ja": "この登坂教室の名前は何ですか?", "fr": "Quel est le nom de ce site ?", "it": "Qual è il nome di questa opportunità di arrampicata?" @@ -176,7 +181,7 @@ "then": { "en": "This climbing opportunity doesn't have a name", "nl": "Dit Klimgelegenheid heeft geen naam", - "de": "Diese Klettergelegenheit hat keinen Namen", + "de": "Die Klettereinrichtung hat keinen Namen", "ja": "この登坂教室には名前がついていない", "fr": "Ce site n’a pas de nom", "it": "Questa opportunità di arrampicata non ha un nome" @@ -218,13 +223,15 @@ "en": "What is the rock type here?", "fr": "Quel est le type de roche ?", "de": "Welchen Gesteinstyp gibt es hier?", - "it": "Qual è il tipo di roccia qua?" + "it": "Qual è il tipo di roccia qua?", + "nl": "Wat is de rotssoort?" }, "render": { "en": "The rock type is {rock}", "fr": "La roche est du {rock}", "de": "Der Gesteinstyp ist {rock}", - "it": "Il tipo di roccia è {rock}" + "it": "Il tipo di roccia è {rock}", + "nl": "De rotssoort is {rock}" }, "freeform": { "key": "rock" @@ -251,6 +258,7 @@ "id": "Rock type (crag/rock/cliff only)" }, { + "id": "default_climbing_questions", "builtin": [ "climbing.website", "climbing.fee", @@ -266,7 +274,7 @@ "title": { "en": "a climbing opportunity", "nl": "een klimgelegenheid", - "de": "eine klettermöglichkeit", + "de": "eine Klettereinrichtung", "ja": "登坂教室", "nb_NO": "en klatremulighet", "fr": "une opportunité d’escalade", @@ -274,7 +282,7 @@ }, "description": { "nl": "Een klimgelegenheid", - "de": "Eine Klettergelegenheit", + "de": "Eine Klettereinrichtung", "en": "A climbing opportunity", "ja": "登坂教室", "nb_NO": "En klatremulighet", @@ -297,12 +305,11 @@ ] }, { - "color": { - "render": "#d38d5fAA" - }, - "width": { - "render": "8" - } + "dashArray": "8 16", + "lineCap": "square", + "color": "#d38d5fAA", + "fill": "no", + "width": "8" } ] } \ No newline at end of file diff --git a/assets/layers/climbing_club/climbing_club.json b/assets/layers/climbing_club/climbing_club.json index 6720a17534..4e2bffcdf0 100644 --- a/assets/layers/climbing_club/climbing_club.json +++ b/assets/layers/climbing_club/climbing_club.json @@ -111,7 +111,7 @@ "sport=climbing" ], "title": { - "de": "eine kletterverein", + "de": "einen Kletterverein", "en": "a climbing club", "nl": "een klimclub", "ja": "クライミングクラブ", diff --git a/assets/layers/climbing_gym/climbing_gym.json b/assets/layers/climbing_gym/climbing_gym.json index 74976727fd..63da1cd18c 100644 --- a/assets/layers/climbing_gym/climbing_gym.json +++ b/assets/layers/climbing_gym/climbing_gym.json @@ -74,12 +74,11 @@ "phone", "email", { - "builtin": [ - "climbing.fee" - ] + "builtin": "climbing.fee" }, "opening_hours", { + "id": "climbing_gym_questions", "builtin": [ "climbing.average_length", "climbing.min_difficulty", diff --git a/assets/layers/climbing_opportunity/climbing_opportunity.json b/assets/layers/climbing_opportunity/climbing_opportunity.json index 3a5e851064..ecdba430b6 100644 --- a/assets/layers/climbing_opportunity/climbing_opportunity.json +++ b/assets/layers/climbing_opportunity/climbing_opportunity.json @@ -10,7 +10,8 @@ "it": "Opportunità di arrampicata?" }, "description": { - "en": "Fallback layer with items on which climbing _might_ be possible. It is loaded when zoomed in a lot, to prevent duplicate items to be added" + "en": "Fallback layer with items on which climbing _might_ be possible. It is loaded when zoomed in a lot, to prevent duplicate items to be added", + "de": "Rückfallebene mit Orten, auf denen Klettern eventuell möglich ist. Sie wird erst angezeigt, wenn man stark hineinzoomt, um zu verhindern, dass Elemente doppelt hinzugefügt werden" }, "minzoom": 19, "source": { @@ -65,7 +66,8 @@ "ja": "ここで登坂はできますか?", "nb_NO": "Er klatring mulig her?", "fr": "Est-il possible d’escalader ici ?", - "it": "È possibile arrampicarsi qua?" + "it": "È possibile arrampicarsi qua?", + "nl": "Is klimmen hier mogelijk?" }, "mappings": [ { diff --git a/assets/layers/climbing_route/climbing_route.json b/assets/layers/climbing_route/climbing_route.json index 667f5b251c..0e1ddaa458 100644 --- a/assets/layers/climbing_route/climbing_route.json +++ b/assets/layers/climbing_route/climbing_route.json @@ -10,7 +10,8 @@ "it": "Vie di arrampicata" }, "description": { - "en": "A single climbing route and its properties. Some properties are derived from the containing features" + "en": "A single climbing route and its properties. Some properties are derived from the containing features", + "de": "Eine einzelne Kletterroute und ihre Eigenschaften. Einige Eigenschaften werden von übergeordneten Objekten abgeleitet" }, "minzoom": 18, "source": { @@ -153,8 +154,8 @@ }, "render": { "en": "This route has {climbing:bolts} bolts
This is without relays and indicates how much quickdraws a climber needs
", - "fr": "Cette voie a {climbing:bolts} prises", - "de": "Diese Kletterroute hat {climbing:bolts} Haken", + "fr": "Cette voie a {climbing:bolts} prises
C'est sans relai et indique de combien de dégaine un grimpeur a besoin
", + "de": "Diese Route hat {climbing:bolts} Haken
Dies ist ohne Relais und gibt an, wie viel Schnellspanner ein Kletterer braucht
", "it": "Questo percorso ha {climbing:bolts} bulloni" }, "freeform": { @@ -200,7 +201,7 @@ "en": "a climbing route", "nl": "een klimroute", "fr": "une voie d’escalade", - "de": "eine kletterroute", + "de": "eine Kletterroute", "it": "una via di arrampicata" }, "tags": [ diff --git a/assets/layers/crossings/crossings.json b/assets/layers/crossings/crossings.json index 47dc513d0a..4377af142a 100644 --- a/assets/layers/crossings/crossings.json +++ b/assets/layers/crossings/crossings.json @@ -6,14 +6,16 @@ "de": "Kreuzungen", "fr": "Traversée", "ca": "Encreuaments", - "da": "Overgange" + "da": "Overgange", + "es": "Cruces" }, "description": { "en": "Crossings for pedestrians and cyclists", "nl": "Oversteekplaatsen voor voetgangers en fietsers", "de": "Übergänge für Fußgänger und Radfahrer", "fr": "Traversée pour piétons et cyclistes", - "da": "Overgange for fodgængere og cyklister" + "da": "Overgange for fodgængere og cyklister", + "es": "Cruces para peatones y ciclistas" }, "source": { "osmTags": { @@ -30,7 +32,8 @@ "nl": "Oversteekplaats", "de": "Kreuzung", "fr": "Traversée", - "ca": "Encreuament" + "ca": "Encreuament", + "es": "Cruce" }, "mappings": [ { @@ -41,7 +44,8 @@ "ru": "Светофор", "de": "Ampel", "fr": "Feu de signalisation", - "ca": "Semàfor" + "ca": "Semàfor", + "es": "Señal de tráfico" } }, { @@ -50,7 +54,8 @@ "en": "Crossing with traffic signals", "nl": "Oversteektplaats met verkeerslichten", "de": "Kreuzung mit Ampeln", - "fr": "Traversée avec feu de signalisation" + "fr": "Traversée avec feu de signalisation", + "es": "Cruce con señales de tráfico" } } ] @@ -60,10 +65,11 @@ "title": { "en": "a crossing", "nl": "een oversteekplaats", - "de": "eine kreuzung", + "de": "eine Kreuzung", "fr": "une traversée", "ca": "un pas de vianants", - "da": "en overgang" + "da": "en overgang", + "es": "un cruce" }, "tags": [ "highway=crossing" @@ -73,7 +79,8 @@ "nl": "Oversteekplaats voor voetgangers en/of fietsers", "de": "Kreuzung für Fußgänger und/oder Radfahrer", "fr": "Traversée pour piétons et/ou cyclistes", - "da": "Overgang for fodgængere og/eller cyklister" + "da": "Overgang for fodgængere og/eller cyklister", + "es": "Cruce para peatones y/o ciclistas" }, "preciseInput": { "preferredBackground": [ @@ -88,9 +95,10 @@ "en": "a traffic signal", "nl": "een verkeerslicht", "ru": "Светофор", - "de": "eine ampel", + "de": "eine Ampel", "fr": "une feu de signalisation", - "da": "et trafiksignal" + "da": "et trafiksignal", + "es": "una señal de tráfico" }, "tags": [ "highway=traffic_signals" @@ -100,7 +108,8 @@ "nl": "Verkeerslicht op een weg", "de": "Ampel an einer Straße", "fr": "Feu de signalisation sur la voie", - "da": "Trafiksignal på en vej" + "da": "Trafiksignal på en vej", + "es": "Señal de tráfico en una carretera" }, "preciseInput": { "preferredBackground": [ @@ -117,7 +126,8 @@ "question": { "en": "What kind of crossing is this?", "nl": "Wat voor oversteekplaats is dit?", - "de": "Was ist das für eine Kreuzung?" + "de": "Was ist das für eine Kreuzung?", + "es": "¿Qué tipo de cruce es este?" }, "condition": "highway=crossing", "mappings": [ @@ -126,7 +136,8 @@ "then": { "en": "Crossing, without traffic lights", "nl": "Oversteekplaats, zonder verkeerslichten", - "de": "Kreuzungen ohne Ampeln" + "de": "Kreuzungen ohne Ampeln", + "es": "Cruce, sin semáforos" } }, { @@ -134,7 +145,8 @@ "then": { "en": "Crossing with traffic signals", "nl": "Oversteekplaats met verkeerslichten", - "de": "Kreuzungen mit Ampeln" + "de": "Kreuzungen mit Ampeln", + "es": "Cruce con señales de tráfico" } }, { @@ -143,7 +155,8 @@ "en": "Zebra crossing", "nl": "Zebrapad", "de": "Zebrastreifen", - "ca": "Pas de zebra" + "ca": "Pas de zebra", + "es": "Paso de cebra" }, "hideInAnswer": true }, @@ -151,7 +164,9 @@ "if": "crossing=unmarked", "then": { "en": "Crossing without crossing markings", - "nl": "Oversteekplaats zonder kruispuntmarkeringen" + "nl": "Oversteekplaats zonder kruispuntmarkeringen", + "de": "Kreuzung ohne Kreuzungsmarkierungen", + "es": "Cruce sin marcas de cruce" } } ] @@ -161,7 +176,8 @@ "question": { "en": "Is this is a zebra crossing?", "nl": "Is dit een zebrapad?", - "de": "Ist das ein Zebrastreifen?" + "de": "Ist das ein Zebrastreifen?", + "es": "¿Esto es un paso de cebra?" }, "condition": "crossing=uncontrolled", "mappings": [ @@ -170,7 +186,8 @@ "then": { "en": "This is a zebra crossing", "nl": "Dit is een zebrapad", - "de": "Dies ist ein Zebrastreifen" + "de": "Dies ist ein Zebrastreifen", + "es": "Esto es un paso de cebra" } }, { @@ -178,7 +195,8 @@ "then": { "en": "This is not a zebra crossing", "nl": "Dit is geen zebrapad", - "de": "Dies ist kein Zebrastreifen" + "de": "Dies ist kein Zebrastreifen", + "es": "Esto no es un paso de cebra" } } ] @@ -189,7 +207,8 @@ "en": "Is this crossing also for bicycles?", "nl": "Is deze oversteekplaats ook voor fietsers", "de": "Können Radfahrer diese Kreuzung nutzen?", - "da": "Er denne overgang også for cykler?" + "da": "Er denne overgang også for cykler?", + "es": "¿Este cruce también es para ciclistas?" }, "condition": "highway=crossing", "mappings": [ @@ -199,7 +218,8 @@ "en": "A cyclist can use this crossing", "nl": "Een fietser kan deze oversteekplaats gebruiken", "de": "Radfahrer können diese Kreuzung nutzen", - "da": "En cyklist kan benytte denne overgang" + "da": "En cyklist kan benytte denne overgang", + "es": "Un ciclista puede utilizar este cruce" } }, { @@ -208,7 +228,8 @@ "en": "A cyclist can not use this crossing", "nl": "Een fietser kan deze oversteekplaats niet gebruiken", "de": "Radfahrer können diese Kreuzung nicht nutzen", - "da": "En cyklist kan ikke benytte denne overgang" + "da": "En cyklist kan ikke benytte denne overgang", + "es": "Un ciclista no puede utilizar este cruce" } } ] @@ -218,7 +239,8 @@ "question": { "en": "Does this crossing have an island in the middle?", "nl": "Heeft deze oversteekplaats een verkeerseiland in het midden?", - "de": "Gibt es an diesem Übergang eine Verkehrsinsel?" + "de": "Gibt es an diesem Übergang eine Verkehrsinsel?", + "es": "¿Tiene una isla en el medio este cruce?" }, "condition": "highway=crossing", "mappings": [ @@ -227,7 +249,8 @@ "then": { "en": "This crossing has an island in the middle", "nl": "Deze oversteekplaats heeft een verkeerseiland in het midden", - "de": "Der Übergang hat eine Verkehrsinsel" + "de": "Der Übergang hat eine Verkehrsinsel", + "es": "Este cruce tiene una isla en el medio" } }, { @@ -235,7 +258,8 @@ "then": { "en": "This crossing does not have an island in the middle", "nl": "Deze oversteekplaats heeft geen verkeerseiland in het midden", - "de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern" + "de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern", + "es": "Este cruce no tiene una isla en el medio" } } ] @@ -245,7 +269,8 @@ "question": { "en": "Does this crossing have tactile paving?", "nl": "Heeft deze oversteekplaats een geleidelijn?", - "de": "Gibt es an dieser Kreuzung ein Blindenleitsystem?" + "de": "Gibt es an dieser Kreuzung ein Blindenleitsystem?", + "es": "¿Tiene pavimento táctil este cruce?" }, "condition": "highway=crossing", "mappings": [ @@ -254,7 +279,8 @@ "then": { "en": "This crossing has tactile paving", "nl": "Deze oversteekplaats heeft een geleidelijn", - "de": "An dieser Kreuzung gibt es ein Blindenleitsystem" + "de": "An dieser Kreuzung gibt es ein Blindenleitsystem", + "es": "Este cruce tiene pavimento táctil" } }, { @@ -262,7 +288,8 @@ "then": { "en": "This crossing does not have tactile paving", "nl": "Deze oversteekplaats heeft geen geleidelijn", - "de": "Diese Kreuzung hat kein Blindenleitsystem" + "de": "Diese Kreuzung hat kein Blindenleitsystem", + "es": "Este cruce no tiene pavimento táctil" } }, { @@ -270,7 +297,8 @@ "then": { "en": "This crossing has tactile paving, but is not correct", "nl": "Deze oversteekplaats heeft een geleidelijn, die incorrect is.", - "de": "Diese Kreuzung hat taktile Pflasterung, ist aber nicht korrekt" + "de": "Diese Kreuzung hat taktile Pflasterung, ist aber nicht korrekt", + "es": "Este cruce tiene pavimento táctil, pero no es correcto" }, "hideInAnswer": true } @@ -281,7 +309,8 @@ "question": { "en": "Does this traffic light have a button to request green light?", "nl": "Heeft dit verkeerslicht een knop voor groen licht?", - "de": "Hat diese Ampel eine Taste, um ein grünes Signal anzufordern?" + "de": "Hat diese Ampel eine Taste, um ein grünes Signal anzufordern?", + "es": "¿Este semáforo tiene un botón para pedir luz verde?" }, "condition": { "or": [ @@ -295,7 +324,8 @@ "then": { "en": "This traffic light has a button to request green light", "nl": "Dit verkeerslicht heeft een knop voor groen licht", - "de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern" + "de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern", + "es": "Este semáforo tiene un botón para pedir luz verde" } }, { @@ -303,7 +333,8 @@ "then": { "en": "This traffic light does not have a button to request green light", "nl": "Dit verkeerlicht heeft geen knop voor groen licht", - "de": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern" + "de": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern", + "es": "Este semáforo no tiene un botón para pedir luz verde" } } ] @@ -313,7 +344,8 @@ "question": { "en": "Can a cyclist turn right when the light is red?", "nl": "Mag een fietser rechtsaf slaan als het licht rood is?", - "de": "Kann ein Radfahrer bei roter Ampel rechts abbiegen?" + "de": "Dürfen Radfahrer bei roter Ampel rechts abbiegen?", + "es": "¿Puede girar a la derecha un ciclista cuando la luz está roja?" }, "condition": "highway=traffic_signals", "mappings": [ @@ -322,7 +354,8 @@ "then": { "en": "A cyclist can turn right if the light is red", "nl": "Een fietser mag wel rechtsaf slaan als het licht rood is", - "de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen" + "de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen", + "es": "Un ciclista puede girar a la derecha si la luz está roja" }, "hideInAnswer": "_country!=be", "icon": { @@ -335,7 +368,8 @@ "then": { "en": "A cyclist can turn right if the light is red", "nl": "Een fietser mag wel rechtsaf slaan als het licht rood is", - "de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen" + "de": "Radfahrer dürfen bei roter Ampel rechts abbiegen", + "es": "Un ciclista puede girar a la derecha si la luz está roja" }, "hideInAnswer": "_country=be" }, @@ -344,7 +378,8 @@ "then": { "en": "A cyclist can not turn right if the light is red", "nl": "Een fietser mag niet rechtsaf slaan als het licht rood is", - "de": "Ein Radfahrer kann bei roter Ampel nicht rechts abbiegen" + "de": "Radfahrer dürfen bei roter Ampel nicht rechts abbiegen", + "es": "Un ciclista no puede girar a la derecha si la luz está roja" } } ] @@ -354,7 +389,8 @@ "question": { "en": "Can a cyclist go straight on when the light is red?", "nl": "Mag een fietser rechtdoor gaan als het licht rood is?", - "de": "Kann ein Radfahrer bei roter Ampel geradeaus fahren?" + "de": "Dürfen Radfahrer bei roter Ampel geradeaus fahren?", + "es": "¿Puede ir de frente un ciclista cuando la luz está roja?" }, "condition": "highway=traffic_signals", "mappings": [ @@ -363,7 +399,8 @@ "then": { "en": "A cyclist can go straight on if the light is red", "nl": "Een fietser mag wel rechtdoor gaan als het licht rood is", - "de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren" + "de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren", + "es": "Un ciclista puede ir de frente si la luz está roja" }, "hideInAnswer": "_country!=be", "icon": { @@ -376,7 +413,8 @@ "then": { "en": "A cyclist can go straight on if the light is red", "nl": "Een fietser mag wel rechtdoor gaan als het licht rood is", - "de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren" + "de": "Radfahrer dürfen bei roter Ampel geradeaus fahren", + "es": "Un ciclista puede ir de frente si la luz está roja" }, "hideInAnswer": "_country=be" }, @@ -385,7 +423,8 @@ "then": { "en": "A cyclist can not go straight on if the light is red", "nl": "Een fietser mag niet rechtdoor gaan als het licht rood is", - "de": "Ein Radfahrer kann bei roter Ampel nicht geradeaus fahren" + "de": "Radfahrer dürfen bei roter Ampel nicht geradeaus fahren", + "es": "Un ciclista no puede ir de frente si la luz está roja" } } ] diff --git a/assets/layers/cycleways_and_roads/cycleways_and_roads.json b/assets/layers/cycleways_and_roads/cycleways_and_roads.json index 8c7131cd5d..fe38814741 100644 --- a/assets/layers/cycleways_and_roads/cycleways_and_roads.json +++ b/assets/layers/cycleways_and_roads/cycleways_and_roads.json @@ -4,7 +4,8 @@ "en": "Cycleways and roads", "nl": "Fietspaden, straten en wegen", "de": "Radwege und Straßen", - "fr": "Pistes cyclables et routes" + "fr": "Pistes cyclables et routes", + "es": "Carriles bici y carreteras" }, "minzoom": 16, "source": { @@ -20,6 +21,13 @@ "highway=unclassified", "highway=primary", "highway=secondary", + "highway=tertiary_link", + "highway=primary_link", + "highway=secondary_link", + "highway=service", + "highway=footway", + "highway=pedestrian", + "highway=living_street", { "and": [ "highway=path", @@ -31,14 +39,25 @@ }, "title": { "render": { - "en": "Cycleways", - "nl": "Fietspaden", - "de": "Radwege", - "ru": "Велосипедные дорожки", - "fr": "Pistes cyclables", - "ca": "Vies ciclistes" + "en": "Way", + "nl": "Weg", + "de": "Weg" }, "mappings": [ + { + "if": { + "and": [ + "highway=cycleway", + "name~*" + ] + }, + "then": { + "nl": "Fietsweg {name}", + "en": "Cycleway {name}", + "de": "Radweg {name}", + "fr": "Piste cyclable {name}" + } + }, { "if": { "or": [ @@ -53,7 +72,22 @@ "ru": "Велосипедная дорожка", "fr": "Piste cyclable", "ca": "Via ciclista", - "da": "Cykelsti" + "da": "Cykelsti", + "es": "Carril compartido" + } + }, + { + "if": { + "and": [ + "cycleway=shared_lane", + "name~*" + ] + }, + "then": { + "nl": "Weg met fietssugestiestrook {name}", + "en": "Road with shared lane {name}", + "de": "Straße mit gemeinsam genutzter Fahrspur {name}", + "fr": "Route avec voie partagée {name}" } }, { @@ -63,7 +97,22 @@ "en": "Shared lane", "de": "Gemeinsame Fahrspur", "fr": "Voie partagée", - "ca": "Carril compartit" + "ca": "Carril compartit", + "es": "Vía ciclista al lado de la carretera" + } + }, + { + "if": { + "and": [ + "cycleway=lane", + "name~*" + ] + }, + "then": { + "nl": "Weg met fietsstrook {name}", + "en": "Road with bike lane {name}", + "de": "Straße mit Fahrradstreifen {name}", + "fr": "Route avec voie cyclable {name}" } }, { @@ -73,7 +122,22 @@ "en": "Bike lane", "de": "Fahrradspur", "fr": "Bande cyclable", - "ca": "Carril bici" + "ca": "Carril bici", + "es": "Carril bici" + } + }, + { + "if": { + "and": [ + "cycleway=track", + "name~*" + ] + }, + "then": { + "nl": "Weg met fietspad naast de weg {name}", + "en": "Road with cycleway next to the road {name}", + "de": "Straße mit Radweg neben der Straße {name}", + "fr": "Route avec piste cyclable à côté de la route {name}" } }, { @@ -83,7 +147,22 @@ "nl": "Fietsweg naast de weg", "de": "Radweg neben der Straße", "fr": "Piste cyclable séparée de la route", - "da": "Cykelsti ved siden af vejen" + "da": "Cykelsti ved siden af vejen", + "es": "Vía ciclista al lado de la carretera" + } + }, + { + "if": { + "and": [ + "cyclestreet=yes", + "name~*" + ] + }, + "then": { + "nl": "Fietsstraat {name}", + "en": "Cyclestreet {name}", + "de": "Fahrradstraße {name}", + "fr": "Rue cyclable {name}" } }, { @@ -94,8 +173,13 @@ "de": "Fahrradstraße", "fr": "Vélorue", "ca": "Carrer ciclista", - "da": "Cykelgade" + "da": "Cykelgade", + "es": "Ciclocalle" } + }, + { + "if": "name~*", + "then": "{name}" } ] }, @@ -104,12 +188,15 @@ "question": { "en": "What kind of cycleway is here?", "nl": "Wat voor fietspad is hier?", - "de": "Was für ein Radweg ist hier?" + "de": "Was für ein Radweg ist hier?", + "es": "¿Qué tipo de carril bici hay aquí?", + "fr": "Quel type de piste cyclable il y a ici ?" }, "condition": { "and": [ "highway!=cycleway", - "highway!=path" + "highway!=path", + "highway!=footway" ] }, "mappings": [ @@ -118,7 +205,9 @@ "then": { "en": "There is a shared lane", "nl": "Er is een fietssuggestiestrook", - "de": "Es gibt eine geteilte Fahrspur" + "de": "Es gibt eine geteilte Fahrspur", + "es": "Hay un carril compartido", + "fr": "Il y a une voie partagée" } }, { @@ -126,7 +215,9 @@ "then": { "en": "There is a lane next to the road (separated with paint)", "nl": "Er is een fietspad aangrenzend aan de weg (gescheiden met verf)", - "de": "Es gibt eine Spur neben der Straße (getrennt durch eine Straßenmarkierung)" + "de": "Es gibt eine Spur neben der Straße (getrennt durch eine Straßenmarkierung)", + "es": "Hay un carril a lado de la carretera (separado con pintura)", + "fr": "Il y a une piste cyclable separée de la route" } }, { @@ -134,7 +225,9 @@ "then": { "en": "There is a track, but no cycleway drawn separately from this road on the map.", "nl": "Er is een fietspad (los van de weg), maar geen fietspad afzonderlijk getekend naast deze weg.", - "de": "Es gibt einen Weg, aber keinen Radweg, der auf der Karte getrennt von dieser Straße eingezeichnet ist." + "de": "Es gibt einen Weg, aber keinen Radweg, der auf der Karte getrennt von dieser Straße eingezeichnet ist.", + "es": "Hay una pista, pero no hay un carril bici dibujado separado de esta carretera en el mapa.", + "fr": "Il y a une piste cyclable, mais elle n'est pas séparée de la route sur la carte." } }, { @@ -142,7 +235,9 @@ "then": { "en": "There is a separately drawn cycleway", "nl": "Er is een apart getekend fietspad.", - "de": "Hier ist ein getrennter Radweg vorhanden" + "de": "Hier ist ein getrennter Radweg vorhanden", + "es": "Hay un carril bici dibujado por separado", + "fr": "Il y a une piste cyclable dessinée séparement" } }, { @@ -150,7 +245,9 @@ "then": { "en": "There is no cycleway", "nl": "Er is geen fietspad aanwezig", - "de": "Es gibt keinen Radweg" + "de": "Es gibt keinen Radweg", + "es": "No hay carril bici", + "fr": "Il n'y a pas de piste cyclable" }, "hideInAnswer": "cycleway=opposite" }, @@ -159,7 +256,9 @@ "then": { "en": "There is no cycleway", "nl": "Er is geen fietspad aanwezig", - "de": "Es gibt keinen Radweg" + "de": "Es gibt keinen Radweg", + "es": "No hay carril bici", + "fr": "Il n'y a pas de piste cyclable" }, "hideInAnswer": "cycleway!=opposite", "addExtraTags": [ @@ -175,7 +274,9 @@ "en": "Is this street lit?", "nl": "Is deze weg verlicht?", "de": "Ist diese Straße beleuchtet?", - "da": "Er denne gade belyst?" + "da": "Er denne gade belyst?", + "es": "¿Esta calle está iluminada?", + "fr": "Cette rue est-elle éclairée ?" }, "mappings": [ { @@ -183,7 +284,9 @@ "then": { "en": "This street is lit", "nl": "Deze weg is verlicht", - "de": "Diese Straße ist beleuchtet" + "de": "Diese Straße ist beleuchtet", + "es": "La calle está iluminada", + "fr": "Cette rue est éclairée" } }, { @@ -192,7 +295,9 @@ "en": "This road is not lit", "nl": "Deze weg is niet verlicht", "de": "Diese Straße ist nicht beleuchtet", - "da": "Denne vej er ikke belyst" + "da": "Denne vej er ikke belyst", + "es": "Esta carretera no está iluminada", + "fr": "Cette rue n'est pas éclairée" } }, { @@ -201,7 +306,9 @@ "en": "This road is lit at night", "nl": "Deze weg is 's nachts verlicht", "de": "Diese Straße ist nachts beleuchtet", - "da": "Denne vej er belyst om natten" + "da": "Denne vej er belyst om natten", + "es": "Esta carretera está iluminada por la noche", + "fr": "Cette route est éclairée la nuit" }, "hideInAnswer": true }, @@ -211,7 +318,9 @@ "en": "This road is lit 24/7", "nl": "Deze weg is 24/7 verlicht", "de": "Diese Straße ist durchgehend beleuchtet", - "da": "Denne vej er belyst døgnet rundt" + "da": "Denne vej er belyst døgnet rundt", + "es": "Esta carretera está iluminada 24/7", + "fr": "Cette route est éclairée 24h/24 et 7j/7" } } ], @@ -221,12 +330,15 @@ "question": { "en": "Is this a cyclestreet?", "nl": "Is dit een fietsstraat?", - "de": "Ist das eine Fahrradstraße?" + "de": "Ist das eine Fahrradstraße?", + "es": "¿Esta es una ciclocalle?", + "fr": "Est-ce une route cyclable ?" }, "condition": { "and": [ "highway!=cycleway", - "highway!=path" + "highway!=path", + "highway!=footway" ] }, "mappings": [ @@ -235,7 +347,9 @@ "then": { "en": "This is a cyclestreet, and a 30km/h zone.", "nl": "Dit is een fietsstraat, en dus een 30km/h zone", - "de": "Dies ist eine Fahrradstraße in einer 30km/h Zone." + "de": "Dies ist eine Fahrradstraße in einer 30km/h Zone.", + "es": "Esta es una ciclocalle, y una zona 30km/h.", + "fr": "Ceci est une route cyclable, et une zone à 30 km/h" }, "addExtraTags": [ "overtaking:motor_vehicle=no", @@ -248,7 +362,9 @@ "then": { "en": "This is a cyclestreet", "nl": "Dit is een fietsstraat", - "de": "Dies ist eine Fahrradstraße" + "de": "Dies ist eine Fahrradstraße", + "es": "Esta es una ciclocalle", + "fr": "Ceci est une route cyclable" }, "hideInAnswer": "_country=be" }, @@ -257,7 +373,9 @@ "then": { "en": "This is not a cyclestreet.", "nl": "Dit is geen fietsstraat", - "de": "Dies ist keine Fahrradstraße." + "de": "Dies ist keine Fahrradstraße.", + "es": "Esta no es una ciclocalle.", + "fr": "Ceci n'est pas une route cyclable" }, "addExtraTags": [ "overtaking:motor_vehicle=" @@ -271,7 +389,9 @@ "en": "The maximum speed on this road is {maxspeed} km/h", "nl": "De maximumsnelheid op deze weg is {maxspeed} km/u", "de": "Die Höchstgeschwindigkeit auf dieser Straße beträgt {maxspeed} km/h", - "id": "Kecepatan maksimum di jalan ini adalah {maxspeed} km/jam" + "id": "Kecepatan maksimum di jalan ini adalah {maxspeed} km/jam", + "es": "La velocidad máxima en esta carretera es de {maxspeed} km/h", + "fr": "La vitesse maximum dans cette rue est de {maxspeed} km/h" }, "freeform": { "key": "maxspeed", @@ -280,7 +400,8 @@ "condition": { "and": [ "highway!=cycleway", - "highway!=path" + "highway!=path", + "highway!=footway" ] }, "mappings": [ @@ -289,7 +410,9 @@ "then": { "en": "The maximum speed is 20 km/h", "nl": "De maximumsnelheid is 20 km/u", - "de": "Die Höchstgeschwindigkeit ist 20 km/h" + "de": "Die Höchstgeschwindigkeit ist 20 km/h", + "es": "La velocidad máxima es de 20km/h", + "fr": "La vitesse maximum est de 20 km/h" } }, { @@ -297,7 +420,9 @@ "then": { "en": "The maximum speed is 30 km/h", "nl": "De maximumsnelheid is 30 km/u", - "de": "Die Höchstgeschwindigkeit ist 30 km/h" + "de": "Die Höchstgeschwindigkeit ist 30 km/h", + "es": "La velocidad máxima es de 30km/h", + "fr": "La vitesse maximum est de 30 km/h" } }, { @@ -305,7 +430,9 @@ "then": { "en": "The maximum speed is 50 km/h", "nl": "De maximumsnelheid is 50 km/u", - "de": "Die Höchstgeschwindigkeit ist 50 km/h" + "de": "Die Höchstgeschwindigkeit ist 50 km/h", + "es": "La velocidad máxima es de 50km/h", + "fr": "La vitesse maximum est de 50 km/h" } }, { @@ -314,7 +441,9 @@ "en": "The maximum speed is 70 km/h", "nl": "De maximumsnelheid is 70 km/u", "de": "Die Höchstgeschwindigkeit ist 70 km/h", - "id": "Kecepatan maksimum 70 km/jam" + "id": "Kecepatan maksimum 70 km/jam", + "es": "La velocidad máxima es de 70km/h", + "fr": "La vitesse maximum est de 70 km/h" } }, { @@ -323,7 +452,9 @@ "en": "The maximum speed is 90 km/h", "nl": "De maximumsnelheid is 90 km/u", "de": "Die Höchstgeschwindigkeit ist 90 km/h", - "id": "Kecepatan maksimum 90 km/jam" + "id": "Kecepatan maksimum 90 km/jam", + "es": "La velocidad máxima es de 90km/h", + "fr": "La vitesse maximum est de 90 km/h" } } ], @@ -331,7 +462,9 @@ "en": "What is the maximum speed in this street?", "nl": "Wat is de maximumsnelheid in deze straat?", "de": "Was ist die Höchstgeschwindigkeit auf dieser Straße?", - "id": "Berapa kecepatan maksimum di jalan ini?" + "id": "Berapa kecepatan maksimum di jalan ini?", + "es": "¿Cual es la velocidad máxima en esta calle?", + "fr": "Quelle est la vitesse maximum dans cette rue ?" }, "id": "Maxspeed (for road)" }, @@ -339,7 +472,9 @@ "render": { "en": "This cyleway is made of {cycleway:surface}", "nl": "Dit fietspad is gemaakt van {cycleway:surface}", - "de": "Der Radweg ist aus {cycleway:surface}" + "de": "Der Radweg ist aus {cycleway:surface}", + "es": "Este carril bici está hecho de {cycleway:surface}", + "fr": "Cette piste cyclable est faite de {cycleway:surface}" }, "freeform": { "key": "cycleway:surface" @@ -357,7 +492,9 @@ "then": { "en": "This cycleway is unpaved", "nl": "Dit fietspad is onverhard", - "de": "Dieser Radweg hat keinen festen Belag" + "de": "Dieser Radweg hat keinen festen Belag", + "es": "Este carril bici no está pavimentado", + "fr": "Cette piste cyclable n'est pas goudronnée" }, "hideInAnswer": true }, @@ -366,7 +503,9 @@ "then": { "en": "This cycleway is paved", "nl": "Dit fietspad is geplaveid", - "de": "Dieser Radweg hat einen festen Belag" + "de": "Dieser Radweg hat einen festen Belag", + "es": "Este carril bici está pavimentado", + "fr": "Cette piste cyclable est goudronée" }, "hideInAnswer": true }, @@ -375,7 +514,9 @@ "then": { "en": "This cycleway is made of asphalt", "nl": "Dit fietspad is gemaakt van asfalt", - "de": "Der Radweg ist aus Asphalt" + "de": "Der Radweg ist aus Asphalt", + "es": "Este carril bici está hecho de asfalto", + "fr": "Cette piste cyclable est asphaltée" } }, { @@ -383,7 +524,9 @@ "then": { "en": "This cycleway is made of smooth paving stones", "nl": "Dit fietspad is gemaakt van straatstenen", - "de": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen" + "de": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen", + "es": "Este carril bici está hecho de piedras de pavimento suaves", + "fr": "Cette piste cyclable est faite de petits pavés" } }, { @@ -391,7 +534,9 @@ "then": { "en": "This cycleway is made of concrete", "nl": "Dit fietspad is gemaakt van beton", - "de": "Der Radweg ist aus Beton" + "de": "Der Radweg ist aus Beton", + "es": "Este carril bici está hecho de hormigón", + "fr": "Cette piste cyclable est bétonée" } }, { @@ -399,7 +544,8 @@ "then": { "en": "This cycleway is made of cobblestone (unhewn or sett)", "nl": "Dit fietspad is gemaakt van kasseien (natuurlijk of verwerkt)", - "de": "Dieser Radweg besteht aus Kopfsteinpflaster" + "de": "Dieser Radweg besteht aus Kopfsteinpflaster", + "fr": "Cette piste cyclable est faite de pavés (taillé ou non)" }, "hideInAnswer": true }, @@ -408,7 +554,8 @@ "then": { "en": "This cycleway is made of raw, natural cobblestone", "nl": "Dit fietspad is gemaakt van ruwe, natuurlijke kasseien", - "de": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster" + "de": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster", + "fr": "Cette piste cyclable est en pavés bruts et naturels" } }, { @@ -416,7 +563,8 @@ "then": { "en": "This cycleway is made of flat, square cobblestone", "nl": "Dit fietspad is gemaakt van vlakke, rechthoekige kasseien", - "de": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster" + "de": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster", + "fr": "Cette piste cyclable est en pavés plats ou carrés" } }, { @@ -424,7 +572,9 @@ "then": { "en": "This cycleway is made of wood", "nl": "Dit fietspad is gemaakt van hout", - "de": "Der Radweg ist aus Holz" + "de": "Der Radweg ist aus Holz", + "es": "Este carril bici está hecho de madera", + "fr": "Cette piste cyclable est faite en bois" } }, { @@ -432,7 +582,9 @@ "then": { "en": "This cycleway is made of gravel", "nl": "Dit fietspad is gemaakt van grind", - "de": "Der Radweg ist aus Schotter" + "de": "Der Radweg ist aus Schotter", + "es": "Este carril bici está hecho de grava", + "fr": "Cette piste cyclable est faite en graviers" } }, { @@ -440,7 +592,9 @@ "then": { "en": "This cycleway is made of fine gravel", "nl": "Dit fietspad is gemaakt van fijn grind", - "de": "Dieser Radweg besteht aus feinem Schotter" + "de": "Dieser Radweg besteht aus feinem Schotter", + "es": "Este carril bici está hecho de gravilla", + "fr": "Cette piste cyclable est faite en graviers fins" } }, { @@ -448,7 +602,8 @@ "then": { "en": "This cycleway is made of pebblestone", "nl": "Dit fietspad is gemaakt van kiezelsteentjes", - "de": "Der Radweg ist aus Kies" + "de": "Der Radweg ist aus Kies", + "fr": "Cette piste cyclable est en cailloux" } }, { @@ -456,14 +611,18 @@ "then": { "en": "This cycleway is made from raw ground", "nl": "Dit fietspad is gemaakt van aarde", - "de": "Dieser Radweg besteht aus Rohboden" + "de": "Dieser Radweg besteht aus Rohboden", + "es": "Este carril bici está hecho de tierra natural", + "fr": "Cette piste cyclable est faite en sol brut" } } ], "question": { "en": "What is the surface of the cycleway made from?", "nl": "Waaruit is het oppervlak van het fietspad van gemaakt?", - "de": "Was ist der Belag dieses Radwegs?" + "de": "Was ist der Belag dieses Radwegs?", + "es": "¿De qué superficie está hecho este carril bici?", + "fr": "De quoi est faite la surface de la piste cyclable ?" }, "id": "Cycleway:surface" }, @@ -471,7 +630,9 @@ "question": { "en": "What is the smoothness of this cycleway?", "nl": "Wat is de kwaliteit van dit fietspad?", - "de": "Wie eben ist dieser Radweg?" + "de": "Wie eben ist dieser Radweg?", + "es": "¿Cual es la suavidad de este carril bici?", + "fr": "Quel est l'état de la piste cyclable ?" }, "condition": { "or": [ @@ -486,7 +647,8 @@ "then": { "en": "Usable for thin rollers: rollerblade, skateboard", "nl": "Geschikt voor fijne rollers: rollerblade, skateboard", - "de": "Geeignet für dünne Rollen: Rollerblades, Skateboard" + "de": "Geeignet für dünne Rollen: Rollerblades, Skateboard", + "fr": "Utilisable pour les patins: patins à roulettes, skateboard" } }, { @@ -494,7 +656,8 @@ "then": { "en": "Usable for thin wheels: racing bike", "nl": "Geschikt voor fijne wielen: racefiets", - "de": "Geeignet für dünne Reifen: Rennrad" + "de": "Geeignet für dünne Reifen: Rennrad", + "fr": "Utilisable pour les roues fines: vélo de course" } }, { @@ -502,7 +665,9 @@ "then": { "en": "Usable for normal wheels: city bike, wheelchair, scooter", "nl": "Geschikt voor normale wielen: stadsfiets, rolstoel, scooter", - "de": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter" + "de": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter", + "es": "Utilizable para ruedas normales: bici de ciudad, sillas de ruedas, scooter", + "fr": "Utilisable pour les roues traditionelles : vélo, chaise roulante, trotinettes" } }, { @@ -510,7 +675,8 @@ "then": { "en": "Usable for robust wheels: trekking bike, car, rickshaw", "nl": "Geschikt voor brede wielen: trekfiets, auto, rickshaw", - "de": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha" + "de": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha", + "fr": "Utilisable pour les roues robustes : VTT, voitures, pousse-pousse" } }, { @@ -518,7 +684,8 @@ "then": { "en": "Usable for vehicles with high clearance: light duty off-road vehicle", "nl": "Geschikt voor voertuigen met hoge banden: lichte terreinwagen", - "de": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen" + "de": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen", + "fr": "Utilisable pour les véhicules à dégagement élevé : véhicule tout-terrain léger" } }, { @@ -526,7 +693,8 @@ "then": { "en": "Usable for off-road vehicles: heavy duty off-road vehicle", "nl": "Geschikt voor terreinwagens: zware terreinwagen", - "de": "Geeignet für Geländefahrzeuge: schwerer Geländewagen" + "de": "Geeignet für Geländefahrzeuge: schwerer Geländewagen", + "fr": "Utilisable pour les véhicules tout-terrain : véhicule tout-terrain lourd" } }, { @@ -534,7 +702,8 @@ "then": { "en": "Usable for specialized off-road vehicles: tractor, ATV", "nl": "Geschikt voor gespecialiseerde terreinwagens: tractor, alleterreinwagen", - "de": "Geeignet für Geländefahrzeuge: Traktor, ATV" + "de": "Geeignet für Geländefahrzeuge: Traktor, ATV", + "fr": "Utilisable pour les véhicules hors route spécialisés : tracteur, véhicule 4x4" } }, { @@ -542,7 +711,8 @@ "then": { "en": "Impassable / No wheeled vehicle", "nl": "Niet geschikt voor voertuigen met wielen", - "de": "Unpassierbar / Keine bereiften Fahrzeuge" + "de": "Unpassierbar / Keine bereiften Fahrzeuge", + "fr": "Impasse / Aucun véhicule roulant" } } ], @@ -553,7 +723,9 @@ "en": "This road is made of {surface}", "nl": "Deze weg is gemaakt van {surface}", "de": "Der Radweg ist aus {surface}", - "id": "Jalan ini terbuat dari {surface}" + "id": "Jalan ini terbuat dari {surface}", + "es": "Esta carretera está hecha de {surface}", + "fr": "Cette route est faite de {surface}" }, "freeform": { "key": "surface" @@ -564,7 +736,8 @@ "then": { "en": "This cycleway is unhardened", "nl": "Dit fietspad is onverhard", - "de": "Dieser Radweg ist nicht befestigt" + "de": "Dieser Radweg ist nicht befestigt", + "fr": "Cette piste cycable est non durcie" }, "hideInAnswer": true }, @@ -574,7 +747,9 @@ "en": "This cycleway is paved", "nl": "Dit fietspad is geplaveid", "de": "Dieser Radweg hat einen festen Belag", - "id": "Jalur sepeda ini diaspal" + "id": "Jalur sepeda ini diaspal", + "es": "Este carril bici está pavimentado", + "fr": "Cette piste cyclable est pavée" }, "hideInAnswer": true }, @@ -584,7 +759,9 @@ "en": "This cycleway is made of asphalt", "nl": "Dit fietspad is gemaakt van asfalt", "de": "Der Radweg ist aus Asphalt", - "id": "Jalur sepeda ini terbuat dari aspal" + "id": "Jalur sepeda ini terbuat dari aspal", + "es": "Este carril bici está hecho de asfalto", + "fr": "Cette piste cyclable est asphaltée" } }, { @@ -593,7 +770,8 @@ "en": "This cycleway is made of smooth paving stones", "nl": "Dit fietspad is gemaakt van straatstenen", "de": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen", - "id": "Jalur sepeda ini terbuat dari batu paving halus" + "id": "Jalur sepeda ini terbuat dari batu paving halus", + "fr": "Cette piste cyclable est faite en pavés lisses" } }, { @@ -602,7 +780,9 @@ "en": "This cycleway is made of concrete", "nl": "Dit fietspad is gemaakt van beton", "de": "Der Radweg ist aus Beton", - "id": "Jalur sepeda ini terbuat dari beton" + "id": "Jalur sepeda ini terbuat dari beton", + "es": "Este carril bici está hecho de hormigón", + "fr": "Cette piste cyclable est betonée" } }, { @@ -611,7 +791,8 @@ "en": "This cycleway is made of cobblestone (unhewn or sett)", "nl": "Dit fietspad is gemaakt van kasseien (natuurlijk of verwerkt)", "de": "Dieser Radweg besteht aus Kopfsteinpflaster", - "id": "Jalur sepeda ini terbuat dari cobblestone (unhewn atau sett)" + "id": "Jalur sepeda ini terbuat dari cobblestone (unhewn atau sett)", + "fr": "Cette piste cyclable est faite de pavés (taillé ou non)" }, "hideInAnswer": true }, @@ -621,7 +802,8 @@ "en": "This cycleway is made of raw, natural cobblestone", "nl": "Dit fietspad is gemaakt van ruwe, natuurlijke kasseien", "de": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster", - "id": "Jalur sepeda ini terbuat dari batu bulat alami" + "id": "Jalur sepeda ini terbuat dari batu bulat alami", + "fr": "Cette piste cyclable est en pavés bruts et naturels" } }, { @@ -629,7 +811,8 @@ "then": { "en": "This cycleway is made of flat, square cobblestone", "nl": "Dit fietspad is gemaakt van vlakke, rechthoekige kasseien", - "de": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster" + "de": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster", + "fr": "Cette piste cyclable est en pavés plats ou carrés" } }, { @@ -638,7 +821,9 @@ "en": "This cycleway is made of wood", "nl": "Dit fietspad is gemaakt van hout", "de": "Der Radweg ist aus Holz", - "id": "Jalur sepeda ini terbuat dari kayu" + "id": "Jalur sepeda ini terbuat dari kayu", + "es": "Este carril bici está hecho de madera", + "fr": "Cette piste cyclable est faite en bois" } }, { @@ -647,7 +832,9 @@ "en": "This cycleway is made of gravel", "nl": "Dit fietspad is gemaakt van grind", "de": "Der Radweg ist aus Schotter", - "id": "Jalur sepeda ini terbuat dari kerikil" + "id": "Jalur sepeda ini terbuat dari kerikil", + "es": "Este carril bici está hecho de grava", + "fr": "Cette piste cyclable est faite en graviers" } }, { @@ -656,7 +843,9 @@ "en": "This cycleway is made of fine gravel", "nl": "Dit fietspad is gemaakt van fijn grind", "de": "Dieser Radweg besteht aus feinem Schotter", - "id": "Jalur sepeda ini terbuat dari kerikil halus" + "id": "Jalur sepeda ini terbuat dari kerikil halus", + "es": "Este carril bici está hecho de gravilla", + "fr": "Cette piste cyclable est faite en graviers fins" } }, { @@ -665,7 +854,8 @@ "en": "This cycleway is made of pebblestone", "nl": "Dit fietspad is gemaakt van kiezelsteentjes", "de": "Der Radweg ist aus Kies", - "id": "Jalur sepeda ini terbuat dari batu kerikil" + "id": "Jalur sepeda ini terbuat dari batu kerikil", + "fr": "Cette piste cyclable est en cailloux" } }, { @@ -674,7 +864,8 @@ "en": "This cycleway is made from raw ground", "nl": "Dit fietspad is gemaakt van aarde", "de": "Dieser Radweg besteht aus Rohboden", - "id": "Jalur sepeda ini terbuat dari tanah alami" + "id": "Jalur sepeda ini terbuat dari tanah alami", + "fr": "Cette piste cyclable est faite en sol brut" } } ], @@ -682,7 +873,9 @@ "en": "What is the surface of the street made from?", "nl": "Waaruit is het oppervlak van de straat gemaakt?", "de": "Was ist der Belag dieser Straße?", - "id": "Permukaan jalannya terbuat dari apa?" + "id": "Permukaan jalannya terbuat dari apa?", + "es": "¿De qué esta hecha la superficie de esta calle?", + "fr": "De quel materiel est faite cette rue ?" }, "id": "Surface of the road" }, @@ -690,7 +883,9 @@ "question": { "en": "What is the smoothness of this street?", "nl": "Wat is de kwaliteit van deze straat?", - "de": "Wie eben ist diese Straße?" + "de": "Wie eben ist diese Straße?", + "es": "¿Cual es la suavidad de esta calle?", + "fr": "Quelle est la douceur de cette rue ?" }, "condition": { "or": [ @@ -705,7 +900,8 @@ "en": "Usable for thin rollers: rollerblade, skateboard", "de": "Geeignet für dünne Rollen: Rollerblades, Skateboard", "id": "Dapat digunakan untuk roller tipis: rollerblade, skateboard", - "nl": "Bruikbaar voor kleine, harde wielen: rollerblade, skateboard" + "nl": "Bruikbaar voor kleine, harde wielen: rollerblade, skateboard", + "fr": "Utilisable pour les patins: patins à roulettes, skateboard" } }, { @@ -714,7 +910,8 @@ "en": "Usable for thin wheels: racing bike", "de": "Geeignet für dünne Reifen: Rennrad", "id": "Dapat digunakan untuk roda tipis: sepeda balap", - "nl": "Bruikbaar voor smalle wielen: racefiets" + "nl": "Bruikbaar voor smalle wielen: racefiets", + "fr": "Utilisable pour les roues fines : vélo de course" } }, { @@ -723,7 +920,8 @@ "en": "Usable for normal wheels: city bike, wheelchair, scooter", "de": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter", "id": "Dapat digunakan untuk roda normal: sepeda kota, kursi roda, skuter", - "nl": "Bruikbaar voor normale wielen: stadsfiets, rolwagen, step" + "nl": "Bruikbaar voor normale wielen: stadsfiets, rolwagen, step", + "fr": "Utilisable pour les roues traditionelles : vélo, chaise roulante, trotinettes" } }, { @@ -732,7 +930,8 @@ "en": "Usable for robust wheels: trekking bike, car, rickshaw", "de": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha", "id": "Dapat digunakan untuk roda yang kuat: sepeda trekking, mobil, becak", - "nl": "Bruikbaar voor robuuste wielen: trekking fiets, auto, rickshaw" + "nl": "Bruikbaar voor robuuste wielen: trekking fiets, auto, rickshaw", + "fr": "Utilisable pour les roues robustes : VTT, voitures, pousse-pousse" } }, { @@ -740,7 +939,8 @@ "then": { "en": "Usable for vehicles with high clearance: light duty off-road vehicle", "de": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen", - "nl": "Bruikbaar voor terreinvoertuigen: 4x4 personenwagens" + "nl": "Bruikbaar voor terreinvoertuigen: 4x4 personenwagens", + "fr": "Utilisable pour les véhicules à dégagement élevé : véhicule tout-terrain léger" } }, { @@ -749,7 +949,8 @@ "en": "Usable for off-road vehicles: heavy duty off-road vehicle", "de": "Geeignet für Geländefahrzeuge: schwerer Geländewagen", "id": "Dapat digunakan untuk kendaraan off-road: kendaraan off-road berat", - "nl": "Bruikbaar voor terreinvoertuigen: zware 4x4 voertuigen" + "nl": "Bruikbaar voor terreinvoertuigen: zware 4x4 voertuigen", + "fr": "Utilisable pour les véhicules tout-terrain : véhicule tout-terrain lourd" } }, { @@ -758,7 +959,8 @@ "en": "Usable for specialized off-road vehicles: tractor, ATV", "de": "Geeignet für spezielle Geländewagen: Traktor, ATV", "id": "Dapat digunakan untuk kendaraan off-road khusus: traktor, ATV", - "nl": "Bruikbaar voor uitzonderlijke terreinvoertuigen: tractor, ATV" + "nl": "Bruikbaar voor uitzonderlijke terreinvoertuigen: tractor, ATV", + "fr": "Utilisable pour les véhicules hors route spécialisés : tracteur, véhicule 4x4" } }, { @@ -766,7 +968,8 @@ "then": { "en": "Impassable / No wheeled vehicle", "de": "Unpassierbar / Keine bereiften Fahrzeuge", - "nl": "Onmogelijk om met een voertuig met wielen te passeren" + "nl": "Onmogelijk om met een voertuig met wielen te passeren", + "fr": "Impasse / Aucun véhicule roulant" } } ], @@ -776,17 +979,19 @@ "condition": { "and": [ "highway!=cycleway", - "highway!=path" + "highway!=path", + "highway!=footway" ] }, "render": { "en": "The carriage width of this road is {width:carriageway}m", "nl": "De breedte van deze rijbaan in deze straat is {width:carriageway}m", - "de": "Die Fahrbahnbreite dieser Straße beträgt {width:carriageway}m" + "de": "Die Fahrbahnbreite dieser Straße beträgt {width:carriageway}m", + "fr": "La largeur de cette chaussée est de {width:carriageway}m" }, "freeform": { "key": "width:carriageway", - "type": "length", + "type": "distance", "helperArgs": [ "20", "map" @@ -795,7 +1000,8 @@ "question": { "en": "What is the carriage width of this road (in meters)?
This is measured curb to curb and thus includes the width of parallell parking lanes", "nl": "Hoe breed is de rijbaan in deze straat (in meters)?
Dit is
Meet dit van stoepsteen tot stoepsteen, dus inclusief een parallelle parkeerstrook", - "de": "Wie groß ist die Fahrbahnbreite dieser Straße (in Metern)?
Diese wird von Bordstein zu Bordstein gemessen und schließt daher die Breite von parallelen Parkspuren ein" + "de": "Wie groß ist die Fahrbahnbreite dieser Straße (in Metern)?
Diese wird von Bordstein zu Bordstein gemessen und schließt daher die Breite von parallelen Parkspuren ein", + "fr": "Quelle est la largeur de cette chaussée (en mètres) ?
Elle est mesurée d'une bordure à l'autre et inclut donc la largeur des voies de stationnement parallèles" }, "id": "width:carriageway" }, @@ -805,7 +1011,9 @@ "en": "What traffic sign does this cycleway have?", "nl": "Welk verkeersbord heeft dit fietspad?", "de": "Welches Verkehrszeichen hat dieser Radweg?", - "id": "Rambu lalu lintas apa yang dimiliki jalur sepeda ini?" + "id": "Rambu lalu lintas apa yang dimiliki jalur sepeda ini?", + "es": "¿Qué señal de tráfico tiene este carril bici?", + "fr": "Quel panneau de signalisation cette a cette piste cyclable ?" }, "condition": { "and": [ @@ -830,7 +1038,8 @@ "nl": "Verplicht fietspad", "de": "Vorgeschriebener Radweg", "id": "Jalur sepeda wajib", - "ca": "Via ciclista obligatòria" + "ca": "Via ciclista obligatòria", + "fr": "Piste cyclabe obligatoire" }, "hideInAnswer": "_country!=be", "icon": { @@ -844,7 +1053,8 @@ "en": "Compulsory cycleway (with supplementary sign)
", "nl": "Verplicht fietspad (met onderbord)
", "de": "Vorgeschriebener Radweg (mit Zusatzschild)
", - "id": "Jalur sepeda wajib (dengan tanda tambahan)
" + "id": "Jalur sepeda wajib (dengan tanda tambahan)
", + "fr": "Piste cyclable obligatoire (avec panneau supplémentaire)" }, "hideInAnswer": true, "icon": { @@ -859,7 +1069,8 @@ "nl": "Afgescheiden voet-/fietspad", "de": "Getrennter Fuß-/Radweg", "id": "Jalur pejalan kaki/sepeda terpisah", - "ca": "Via segregada a peu/ciclista" + "ca": "Via segregada a peu/ciclista", + "fr": "Piste piétonne/cyclable séparée" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -878,7 +1089,8 @@ "nl": "Gedeeld voet-/fietspad", "de": "Gemeinsamer Fuß-/Radweg", "id": "Jalur pejalan kaki/sepeda tidak terpisah", - "ca": "Via no segregada a peu/ciclista" + "ca": "Via no segregada a peu/ciclista", + "fr": "Piste piétonne/cyclable non séparée" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -896,7 +1108,9 @@ "en": "No traffic sign present", "nl": "Geen verkeersbord aanwezig", "de": "Kein Verkehrsschild vorhanden", - "id": "Tidak ada rambu lalu lintas" + "id": "Tidak ada rambu lalu lintas", + "es": "Sin señal de tráfico", + "fr": "Aucun panneau de signalisation présent" } } ] @@ -906,7 +1120,9 @@ "question": { "en": "What traffic sign does this cycleway have?", "nl": "Welk verkeersbord heeft dit fietspad?", - "de": "Welches Verkehrszeichen hat dieser Radweg?" + "de": "Welches Verkehrszeichen hat dieser Radweg?", + "es": "¿Qué seña de tráfico tiene este carril bici?", + "fr": "Quel panneau de signalisation cette a cette piste cyclable ?" }, "condition": { "and": [ @@ -932,7 +1148,8 @@ "nl": "Verplicht fietspad", "de": "Vorgeschriebener Radweg", "id": "Jalur sepeda wajib", - "ca": "Via ciclista obligatòria" + "ca": "Via ciclista obligatòria", + "fr": "Piste cyclabe obligatoire" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -951,7 +1168,8 @@ "then": { "en": "Compulsory cycleway (with supplementary sign)
", "nl": "Verplicht fietspad (met onderbord)
", - "de": "Vorgeschriebener Radweg (mit Zusatzschild)
" + "de": "Vorgeschriebener Radweg (mit Zusatzschild)
", + "fr": "Piste cyclable obligatoire (avec panneau supplémentaire)" }, "hideInAnswer": true, "icon": { @@ -965,7 +1183,8 @@ "en": "Segregated foot/cycleway", "nl": "Afgescheiden voet-/fietspad", "de": "Getrennter Fuß-/Radweg", - "ca": "Via segregada a peu/ciclista" + "ca": "Via segregada a peu/ciclista", + "fr": "Piste piétonne/cyclable séparée" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -987,7 +1206,8 @@ "en": "Unsegregated foot/cycleway", "nl": "Gedeeld voet-/fietspad", "de": "Gemeinsamer Fuß-/Radweg", - "ca": "Via no segregada a peu/ciclista" + "ca": "Via no segregada a peu/ciclista", + "fr": "Piste piétonne/cyclable non séparée" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1008,7 +1228,9 @@ "then": { "en": "Compulsory cycleway", "nl": "Verplicht fietspad", - "ca": "Via ciclista obligatòria" + "ca": "Via ciclista obligatòria", + "de": "Verpflichtender Radweg", + "fr": "Piste cyclabe obligatoire" }, "hideInAnswer": "_country!=nl", "addExtraTags": [ @@ -1024,7 +1246,9 @@ "if": "traffic_sign=NL:G12a", "then": { "en": "Compulsory (moped)cycleway", - "nl": "Verplicht bromfietspad" + "nl": "Verplicht bromfietspad", + "de": "Verpflichtender (Moped-)Radweg", + "fr": "Piste cyclable (cyclomoteur) obligatoire" }, "hideInAnswer": "_country!=nl", "addExtraTags": [ @@ -1040,7 +1264,9 @@ "if": "traffic_sign=NL:G13", "then": { "en": "Non-compulsory cycleway", - "nl": "Onverplicht fietspad" + "nl": "Onverplicht fietspad", + "de": "Radweg ohne Nutzungspflicht", + "fr": "Piste cyclable non obligatoire" }, "hideInAnswer": "_country!=nl", "addExtraTags": [ @@ -1057,7 +1283,8 @@ "then": { "en": "No traffic sign present", "nl": "Geen verkeersbord aanwezig", - "de": "Kein Verkehrsschild vorhanden" + "de": "Kein Verkehrsschild vorhanden", + "fr": "Aucun panneau de signalisation présent" } } ] @@ -1067,7 +1294,8 @@ "question": { "en": "Does the traffic sign D7 () have a supplementary sign?", "nl": "Heeft het verkeersbord D7 () een onderbord?", - "de": "Hat das Verkehrszeichen D7 () ein Zusatzzeichen?" + "de": "Hat das Verkehrszeichen D7 () ein Zusatzzeichen?", + "fr": "Le panneau de signalisation D7 () a-t-il un panneau supplémentaire ?" }, "condition": { "or": [ @@ -1080,7 +1308,9 @@ "if": "cycleway:traffic_sign=BE:D7;BE:M6", "then": { "en": "Mopeds must use the cycleway", - "nl": "Bromfiets Klass B verplicht op het fietspad" + "nl": "Bromfiets Klass B verplicht op het fietspad", + "de": "Mopeds müssen den Radweg benutzen", + "fr": "Les cyclomoteurs doivent utiliser la piste cyclable" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1095,7 +1325,9 @@ "if": "cycleway:traffic_sign=BE:D7;BE:M13", "then": { "en": "Speedpedelecs must use the cycleway", - "nl": "Speedpedelec (Bromfiets klasse P) verplicht op het fietspad" + "nl": "Speedpedelec (Bromfiets klasse P) verplicht op het fietspad", + "de": "Speed-Pedelecs müssen den Radweg benutzen", + "fr": "Les VAE (Vélo à Assistance Electrique) rapides doivent utiliser la piste cyclable" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1110,7 +1342,9 @@ "if": "cycleway:traffic_sign=BE:D7;BE:M14", "then": { "en": "Mopeds and speedpedelecs must use the cycleway", - "nl": "Bromfiets klasse B en speedpedelec (Klasse P) verplicht op het fietspad" + "nl": "Bromfiets klasse B en speedpedelec (Klasse P) verplicht op het fietspad", + "de": "Mopeds und Speed-Pedelecs müssen den Radweg benutzen", + "fr": "Les cyclomoteurs et les VAE doivent utiliser la piste cyclable" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1126,7 +1360,9 @@ "if": "cycleway:traffic_sign=BE:D7;BE:M7", "then": { "en": "Mopeds are not allowed", - "nl": "Bromfiets klasse B verboden" + "nl": "Bromfiets klasse B verboden", + "de": "Mopeds sind nicht zulässig", + "fr": "Les cyclomoteurs ne sont pas autorisés" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1141,7 +1377,9 @@ "if": "cycleway:traffic_sign=BE:D7;BE:M15", "then": { "en": "Speedpedelecs are not allowed", - "nl": "Speedpedelec (bromfiets klasse P) verboden" + "nl": "Speedpedelec (bromfiets klasse P) verboden", + "de": "Speed-Pedelecs sind nicht zulässig", + "fr": "Les VAE ne sont pas autorisés" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1156,7 +1394,9 @@ "if": "cycleway:traffic_sign=BE:D7;BE:M16", "then": { "en": "Mopeds and speedpedelecs are not allowed", - "nl": "Bromfiets klasse B en speedpedelec (klasse P) verboden" + "nl": "Bromfiets klasse B en speedpedelec (klasse P) verboden", + "de": "Mopeds und Speed-Pedelecs sind nicht zulässig", + "fr": "Les cyclomoteurs et les VAE ne sont pas autorisés" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -1173,7 +1413,8 @@ "then": { "en": "No supplementary traffic sign present", "nl": "Geen onderbord aanwezig", - "de": "Kein zusätzliches Verkehrszeichen vorhanden" + "de": "Kein zusätzliches Verkehrszeichen vorhanden", + "fr": "Aucun panneau de signalisation supplémentaire présent" } } ] @@ -1187,7 +1428,9 @@ "question": { "en": "How wide is the gap between the cycleway and the road?", "nl": "Hoe breed is de ruimte tussen het fietspad en de weg?", - "de": "Wie breit ist der Abstand zwischen Radweg und Straße?" + "de": "Wie breit ist der Abstand zwischen Radweg und Straße?", + "es": "¿Cómo de ancho es el hueco entre el carril bici y la carretera?", + "fr": "Quelle est la distance entre la piste cyclable et la route ?" }, "condition": { "or": [ @@ -1197,7 +1440,7 @@ }, "freeform": { "key": "cycleway:buffer", - "type": "length", + "type": "distance", "helperArgs": [ "20", "map" @@ -1211,7 +1454,9 @@ "en": "How is this cycleway separated from the road?", "nl": "Hoe is dit fietspad gescheiden van de weg?", "de": "Wie ist der Radweg von der Straße abgegrenzt?", - "id": "Bagaimana jalur sepeda ini terpisah dari jalan?" + "id": "Bagaimana jalur sepeda ini terpisah dari jalan?", + "es": "¿Cómo está separado este carril bici de la carretera?", + "fr": "Comment cette piste cyclable est-elle séparée de la route ?" }, "condition": { "or": [ @@ -1226,7 +1471,9 @@ "en": "This cycleway is separated by a dashed line", "nl": "Dit fietspad is gescheiden van de weg met een onderbroken streep", "de": "Der Radweg ist abgegrenzt durch eine gestrichelte Linie", - "id": "Jalur sepeda ini dipisahkan oleh garis putus-putus" + "id": "Jalur sepeda ini dipisahkan oleh garis putus-putus", + "es": "Este carril bici está separado por una línea discontinua", + "fr": "Cette piste cyclable est séparée par une ligne pointillée" } }, { @@ -1235,7 +1482,9 @@ "en": "This cycleway is separated by a solid line", "nl": "Dit fietspad is gescheiden van de weg met een doorgetrokken streep", "de": "Der Radweg ist abgegrenzt durch eine durchgezogene Linie", - "id": "Jalur sepeda ini dipisahkan oleh garis solid" + "id": "Jalur sepeda ini dipisahkan oleh garis solid", + "es": "Este carril bici está separado por una línea continua", + "fr": "Cette piste cyclable est séparée par une ligne continue" } }, { @@ -1244,7 +1493,9 @@ "en": "This cycleway is separated by a parking lane", "nl": "Dit fietspad is gescheiden van de weg met parkeervakken", "de": "Der Radweg ist abgegrenzt durch eine Parkspur", - "id": "Jalur sepeda ini dipisahkan oleh jalur parkir" + "id": "Jalur sepeda ini dipisahkan oleh jalur parkir", + "es": "Este carril bici está separado por una línea de aparcamiento", + "fr": "Cette piste cyclable est séparée par une voie de stationnement" } }, { @@ -1253,7 +1504,8 @@ "en": "This cycleway is separated by a kerb", "nl": "Dit fietspad is gescheiden van de weg met een stoeprand", "de": "Dieser Radweg ist getrennt durch einen Bordstein", - "id": "Jalur sepeda ini dipisahkan oleh kerb" + "id": "Jalur sepeda ini dipisahkan oleh kerb", + "fr": "Cette piste cyclable est séparée par une bordure" } } ] @@ -1264,7 +1516,9 @@ "en": "How is this cycleway separated from the road?", "nl": "Hoe is dit fietspad gescheiden van de weg?", "de": "Wie ist der Radweg von der Straße abgegrenzt?", - "id": "Bagaimana jalur sepeda ini dipisahkan dari jalan?" + "id": "Bagaimana jalur sepeda ini dipisahkan dari jalan?", + "es": "¿Cómo esta separado este carril bici de la carretera?", + "fr": "Comment cette piste cyclable est-elle séparée de la route ?" }, "condition": { "or": [ @@ -1279,7 +1533,9 @@ "en": "This cycleway is separated by a dashed line", "nl": "Dit fietspad is gescheiden van de weg met een onderbroken streep", "de": "Der Radweg ist abgegrenzt durch eine gestrichelte Linie", - "id": "Jalur sepeda ini dipisahkan oleh garis putus-putus" + "id": "Jalur sepeda ini dipisahkan oleh garis putus-putus", + "es": "Este carril bici está separado por una línea discontinua", + "fr": "Cette piste cyclable est séparée par une ligne pointillée" } }, { @@ -1288,7 +1544,9 @@ "en": "This cycleway is separated by a solid line", "nl": "Dit fietspad is gescheiden van de weg met een doorgetrokken streep", "de": "Der Radweg ist abgegrenzt durch eine durchgezogene Linie", - "id": "Jalur sepeda ini dipisahkan oleh garis solid" + "id": "Jalur sepeda ini dipisahkan oleh garis solid", + "es": "Este carril bici está separado por una línea continua", + "fr": "Cette piste cyclable est séparée par une ligne continue" } }, { @@ -1297,7 +1555,9 @@ "en": "This cycleway is separated by a parking lane", "nl": "Dit fietspad is gescheiden van de weg met parkeervakken", "de": "Der Radweg ist abgegrenzt durch eine Parkspur", - "id": "Jalur sepeda ini dipisahkan oleh jalur parkir" + "id": "Jalur sepeda ini dipisahkan oleh jalur parkir", + "es": "Este carril bici está separado por una línea de aparcamiento", + "fr": "Cette piste cyclable est séparée par une voie de stationnement" } }, { @@ -1306,7 +1566,8 @@ "en": "This cycleway is separated by a kerb", "nl": "Dit fietspad is gescheiden van de weg met een stoeprand", "de": "Dieser Radweg ist getrennt durch einen Bordstein", - "id": "Jalur sepeda ini dipisahkan oleh kerb" + "id": "Jalur sepeda ini dipisahkan oleh kerb", + "fr": "Cette piste cyclable est séparée par une bordure" } } ] @@ -1396,7 +1657,10 @@ } ], "description": { - "en": "All infrastructure that someone can cycle over, accompanied with questions about this infrastructure\"", - "nl": "Alle infrastructuur waar je over kunt fietsen, met vragen over die infrastructuur" + "en": "All infrastructure that someone can cycle over, accompanied with questions about this infrastructure", + "nl": "Alle infrastructuur waar je over kunt fietsen, met vragen over die infrastructuur", + "de": "Infrastruktur, die man mit dem Fahrrad befahren kann, begleitet von diesbezüglichen Fragen", + "es": "Toda la infraestructura sobre la que alguien puede ir en bici, acompañado de preguntas sobre esta infraestructura\"", + "fr": "Toutes les infrastructures sur lesquelles quelqu'un peut rouler, accompagnées de questions sur cette infrastructure" } } \ No newline at end of file diff --git a/assets/layers/defibrillator/defibrillator.json b/assets/layers/defibrillator/defibrillator.json index 83758d91bf..79bacd7b55 100644 --- a/assets/layers/defibrillator/defibrillator.json +++ b/assets/layers/defibrillator/defibrillator.json @@ -41,7 +41,7 @@ "es": "una desfibrilador", "fr": "une défibrillateur", "nl": "een defibrillator", - "de": "eine defibrillator", + "de": "einen Defibrillator", "it": "una defibrillatore", "ru": "Дефибриллятор", "sl": "Defibrilator", @@ -56,7 +56,9 @@ "en": "a defibrillator mounted on a wall", "nl": "een defibrillator die aan een muur hangt", "sl": "defibrilator je pritrjen na steno", - "da": "en hjertestarter monteret på en væg" + "da": "en hjertestarter monteret på en væg", + "de": "einen wandseitig befestigten Defibrillator", + "es": "un desfibrilador montado en una pared" }, "tags": [ "emergency=defibrillator" @@ -78,7 +80,7 @@ "es": "¿Esté el desfibrilador en interior?", "fr": "Ce défibrillateur est-il disposé en intérieur ?", "nl": "Hangt deze defibrillator binnen of buiten?", - "de": "Befindet sich dieser Defibrillator im Gebäude?", + "de": "Befindet sich der Defibrillator in einem Gebäude?", "it": "Questo defibrillatore si trova all’interno?", "sl": "Ali se ta defibrilator nahaja znotraj?" }, @@ -91,7 +93,7 @@ "es": "Este desfibrilador está en interior", "fr": "Ce défibrillateur est en intérieur (dans un batiment)", "nl": "Deze defibrillator bevindt zich in een gebouw", - "de": "Dieser Defibrillator befindet sich im Gebäude", + "de": "Der Defibrillator befindet sich in einem Gebäude", "it": "Questo defibrillatore si trova all’interno", "sl": "Defibrilator se nahaja znotraj" } @@ -104,7 +106,7 @@ "es": "Este desfibrilador está en exterior", "fr": "Ce défibrillateur est situé en extérieur", "nl": "Deze defibrillator hangt buiten", - "de": "Dieser Defibrillator befindet sich im Freien", + "de": "Der Defibrillator befindet sich im Freien", "it": "Questo defibrillatore si trova all’esterno", "sl": "Defibrilator se nahaja zunaj" } @@ -118,7 +120,7 @@ "es": "¿Está el desfibrilador accesible libremente?", "fr": "Ce défibrillateur est-il librement accessible ?", "nl": "Is deze defibrillator vrij toegankelijk?", - "de": "Ist dieser Defibrillator frei zugänglich?", + "de": "Ist der Defibrillator frei zugänglich?", "it": "Questo defibrillatore è liberamente accessibile?", "sl": "Ali je ta defibrilator prosto dostopen?", "da": "Er denne hjertestarter frit tilgængelig?" @@ -148,7 +150,7 @@ "es": "Acceso libre", "fr": "Librement accessible", "nl": "Publiek toegankelijk", - "de": "Öffentlich zugänglich", + "de": "Der Defibrillator ist öffentlich zugänglich", "it": "Pubblicamente accessibile", "ru": "Общедоступный", "sl": "Javno dostopen", @@ -179,7 +181,7 @@ "es": "Sólo accesible a clientes", "fr": "Réservé aux clients du lieu", "nl": "Enkel toegankelijk voor klanten", - "de": "Nur für Kunden zugänglich", + "de": "Der Defibrillator ist nur für Kunden zugänglich", "it": "Accessibile solo ai clienti", "ru": "Доступно только для клиентов", "sl": "Dostopen samo strankam" @@ -188,12 +190,12 @@ { "if": "access=private", "then": { - "en": "Not accessible to the general public (e.g. only accesible to staff, the owners, ...)", + "en": "Not accessible to the general public (e.g. only accesible to staff, the owners, …)", "ca": "No accessible al públic en general (ex. només accesible a treballadors, propietaris, ...)", "es": "No accesible al público en general (ex. sólo accesible a trabajadores, propietarios, ...)", - "fr": "Non accessible au public (par exemple réservé au personnel, au propriétaire, ...)", + "fr": "Non accessible au public (par exemple réservé au personnel, au propriétaire…)", "nl": "Niet toegankelijk voor het publiek (bv. enkel voor personeel, de eigenaar, ...)", - "de": "Nicht für die Öffentlichkeit zugänglich (z.B. nur für das Personal, die Eigentümer, ...)", + "de": "Der Defibrillator ist nicht öffentlich zugänglich (z.B. nur für Personal, Eigentümer, …)", "it": "Non accessibile al pubblico (ad esempio riservato al personale, ai proprietari, etc.)", "sl": "Ni dostopen splošni javnosti (npr. samo za osebje, za lastnike, ...)" } @@ -205,8 +207,9 @@ "nl": "Niet toegankelijk, mogelijk enkel voor professionals", "fr": "Pas accessible, peut-être uniquement à usage professionnel", "it": "Non accessibile, potrebbe essere solo per uso professionale", - "de": "Nicht zugänglich, möglicherweise nur für betriebliche Nutzung", - "sl": "Ni dostopen, morda samo za profesionalno rabo" + "de": "Der Defibrillator ist nicht zugänglich, möglicherweise nur für betriebliche Nutzung", + "sl": "Ni dostopen, morda samo za profesionalno rabo", + "es": "No accesible, posiblemente solo para el uso profesional" } } ], @@ -219,7 +222,8 @@ "fr": "Est-ce un défibrillateur automatique normal ou un défibrillateur manuel à usage professionnel uniquement ?", "it": "Si tratta di un normale defibrillatore automatico o un defibrillatore manuale riservato ai professionisti?", "de": "Ist dies ein normaler automatischer Defibrillator oder ein manueller Defibrillator nur für Profis?", - "sl": "Ali je to navaden avtomatski defibrilator ali ročni defibrilator namenjen poklicnim reševalcem?" + "sl": "Ali je to navaden avtomatski defibrilator ali ročni defibrilator namenjen poklicnim reševalcem?", + "es": "¿Este es un desfibrilador automático normal o un desfibrilador manual solo para profesionales?" }, "condition": { "and": [ @@ -235,7 +239,8 @@ "fr": "Il n'y a pas d'information sur le type de dispositif", "it": "Non vi sono informazioni riguardanti il tipo di questo dispositivo", "de": "Es gibt keine Informationen über den Gerätetyp", - "sl": "Ni informacij o vrsti naprave" + "sl": "Ni informacij o vrsti naprave", + "es": "No hay información sobre el tipo de dispositivo" }, "hideInAnswer": true }, @@ -248,7 +253,8 @@ "it": "Questo è un defibrillatore manuale per professionisti", "de": "Dies ist ein manueller Defibrillator für den professionellen Einsatz", "sl": "To je ročni defibrilator za poklicne reševalce", - "da": "Dette er en manuel hjertestarter til professionelle" + "da": "Dette er en manuel hjertestarter til professionelle", + "es": "Este es un desfibrilador manual para profesionales" } }, { @@ -261,7 +267,8 @@ "ru": "Это обычный автоматический дефибриллятор", "de": "Dies ist ein normaler automatischer Defibrillator", "sl": "To je normalen avtomatski defibrilator", - "da": "Dette er en normal automatisk hjertestarter" + "da": "Dette er en normal automatisk hjertestarter", + "es": "Este es un desfibrilador automático normal" } }, { @@ -270,7 +277,9 @@ "en": "This is a special type of defibrillator: {defibrillator}", "nl": "Dit is een speciaal type defibrillator: {defibrillator}", "sl": "To je posebna vrsta defibrilatorja: {defibrillator}", - "da": "Dette er en særlig type hjertestarter: {defibrillator}" + "da": "Dette er en særlig type hjertestarter: {defibrillator}", + "de": "Dies ist eine besondere Art von Defibrillator: {defibrillator}", + "es": "Este es un tipo de desfibrilador especial: {defibrillator}" }, "hideInAnswer": true } @@ -284,7 +293,7 @@ "es": "¿En qué planta se encuentra el defibrilador localizado?", "fr": "À quel étage est situé ce défibrillateur ?", "nl": "Op welke verdieping bevindt deze defibrillator zich?", - "de": "In welchem Stockwerk befindet sich dieser Defibrillator?", + "de": "Auf welcher Etage befindet sich der Defibrillator?", "it": "A che piano si trova questo defibrillatore?", "sl": "V katerem nadstropju je defibrilator?" }, @@ -315,8 +324,9 @@ "nl": "Deze defibrillator bevindt zich gelijkvloers", "fr": "Ce défibrillateur est au rez-de-chaussée", "it": "Questo defibrillatore è al pian terreno", - "de": "Dieser Defibrillator befindet sich im Erdgeschoss", - "sl": "Ta defibrilator je v pritličju" + "de": "Der Defibrillator befindet sich im Erdgeschoss", + "sl": "Ta defibrilator je v pritličju", + "es": "Este desfibrilador se encuentra en la planta baja" } }, { @@ -326,8 +336,9 @@ "nl": "Deze defibrillator is op de eerste verdieping", "fr": "Ce défibrillateur est au premier étage", "it": "Questo defibrillatore è al primo piano", - "de": "Dieser Defibrillator befindet sich in der ersten Etage", - "sl": "Ta defibrilator je v prvem nadstropju" + "de": "Der Defibrillator befindet sich in der ersten Etage", + "sl": "Ta defibrilator je v prvem nadstropju", + "es": "Este desfibrilador se encuentra en la primera planta" } } ], @@ -340,7 +351,8 @@ "fr": "Informations supplémentaires à propos de l'emplacement (dans la langue locale) :
{defibrillator:location}", "it": "Informazioni supplementari circa la posizione (in lingua locale):
{defibrillator:location}", "de": "Zusätzliche Informationen über den Standort (in der Landessprache):
{defibrillator:location}", - "sl": "Dodatne informacije o lokaciji (v lokalnem jeziku):
{defibrillator:location}" + "sl": "Dodatne informacije o lokaciji (v lokalnem jeziku):
{defibrillator:location}", + "es": "Información a mayores sobre la localización (en el idioma local):
{defibrillator:location}" }, "question": { "en": "Please give some explanation on where the defibrillator can be found (in the local language)", @@ -348,7 +360,7 @@ "es": "Da detalles de dónde se puede encontrar el desfibrilador (en el idioma local)", "fr": "Veuillez indiquez plus précisément où se situe le défibrillateur (dans la langue local)", "nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in de plaatselijke taal)", - "de": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (in der lokalen Sprache)", + "de": "Bitte geben Sie einen Hinweis, wo genau der Defibrillator zu finden ist (in lokaler Sprache)", "it": "Indica più precisamente dove si trova il defibrillatore (in lingua locale)", "sl": "Prosimo, opišite kje se nahaja defibrilator (v lokalnem jeziku)" }, @@ -365,7 +377,8 @@ "fr": "Informations supplémentaires à propos de l'emplacement (en anglais) :
{defibrillator:location:en}", "it": "Informazioni supplementari circa la posizione (in inglese):
{defibrillator:location:en}", "de": "Zusätzliche Informationen über den Standort (auf Englisch):
{defibrillator:location:en}", - "sl": "Dodatne informacije o lokaciji (v Angleščini):
{defibrillator:location:en}" + "sl": "Dodatne informacije o lokaciji (v Angleščini):
{defibrillator:location:en}", + "es": "Información a mayores sobre la localización (en Inglés):
{defibrillator:location:en}" }, "question": { "en": "Please give some explanation on where the defibrillator can be found (in English)", @@ -373,7 +386,7 @@ "es": "Da detalles de dónde se puede encontrar el desfibrilador (en ingles)", "fr": "Veuillez indiquez plus précisément où se situe le défibrillateur (en englais)", "nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Engels)", - "de": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Englisch)", + "de": "Bitte geben Sie einen Hinweis, wo der Defibrillator zu finden ist (auf Englisch)", "it": "Indica più precisamente dove si trova il defibrillatore (in inglese)", "sl": "Prosimo, opišite kje se nahaja defibrilator (v Angleščini)" }, @@ -390,7 +403,8 @@ "fr": "Informations supplémentaires à propos de l'emplacement (en Français) :
{defibrillator:location:fr}", "it": "Informazioni supplementari circa la posizione (in francese):
{defibrillator:location:fr}", "de": "Zusätzliche Informationen zum Standort (auf Französisch):
{defibrillator:location:fr}", - "sl": "Dodatne informacije o lokaciji (v Francoščini):
{defibrillator:location:fr}" + "sl": "Dodatne informacije o lokaciji (v Francoščini):
{defibrillator:location:fr}", + "es": "Información a mayores sobre la localización (en Francés):
{defibrillator:location:fr}" }, "question": { "en": "Please give some explanation on where the defibrillator can be found (in French)", @@ -416,7 +430,8 @@ "fr": "Numéro d'identification officiel de ce dispositif : {ref}", "it": "Numero identificativo ufficiale di questo dispositivo:{ref}", "de": "Offizielle Identifikationsnummer des Geräts: {ref}", - "sl": "Uradna identifikacijska številka te naprave: {ref}" + "sl": "Uradna identifikacijska številka te naprave: {ref}", + "es": "Número de identificación oficial del dispositivo: {ref}" }, "question": { "en": "What is the official identification number of the device? (if visible on device)", @@ -424,7 +439,8 @@ "fr": "Quel est le numéro d'identification officiel de ce dispositif ? (si il est visible sur le dispositif)", "it": "Qual è il numero identificativo ufficiale di questo dispositivo? (se visibile sul dispositivo)", "de": "Wie lautet die offizielle Identifikationsnummer des Geräts? (falls am Gerät sichtbar)", - "sl": "Kakšna je uradna identifikacijska številka te naprave? (če je vidna na napravi)" + "sl": "Kakšna je uradna identifikacijska številka te naprave? (če je vidna na napravi)", + "es": "¿Cual es el número de identificación oficial de este dispositivo? (si está visible en el dispositivo)" }, "freeform": { "type": "text", @@ -439,7 +455,8 @@ "fr": "Adresse électronique pour des questions à propos de ce défibrillateur : {email}", "it": "Indirizzo email per le domande su questo defibrillatore:{email}", "de": "E-Mail für Fragen zu diesem Defibrillator: {email}", - "sl": "Email naslov za vprašanja o tem defibrilatorju: {email}" + "sl": "Email naslov za vprašanja o tem defibrilatorju: {email}", + "es": "Correo electrónico para preguntas sobre este desfibrilador: {email}" }, "question": { "en": "What is the email for questions about this defibrillator?", @@ -447,7 +464,8 @@ "fr": "Quelle est l'adresse électronique pour des questions à propos de ce défibrillateur ?", "it": "Qual è l’indirizzo email per le domande riguardanti questo defibrillatore?", "de": "Wie lautet die E-Mail für Fragen zu diesem Defibrillator?", - "sl": "Kakšen je email naslov za vprašanja o tem defibrilatorju?" + "sl": "Kakšen je email naslov za vprašanja o tem defibrilatorju?", + "es": "¿Cual es el correo electrónico para preguntas sobre este desfibrilador?" }, "freeform": { "key": "email", @@ -470,7 +488,8 @@ "nl": "Wat is het telefoonnummer voor vragen over deze defibrillator", "it": "Qual è il numero di telefono per le domande riguardanti questo defibrillatore?", "de": "Wie lautet die Telefonnummer für Fragen zu diesem Defibrillator?", - "sl": "Kakšna je telefonska številka za vprašanja o tem defibrilatorju?" + "sl": "Kakšna je telefonska številka za vprašanja o tem defibrilatorju?", + "es": "¿Cual es el número de teléfono para preguntas sobre este desfibrilador?" }, "freeform": { "key": "phone", @@ -487,7 +506,8 @@ "ru": "{opening_hours_table(opening_hours)}", "de": "{opening_hours_table(opening_hours)}", "sl": "{opening_hours_table(opening_hours)}", - "ca": "{opening_hours_table(opening_hours)}" + "ca": "{opening_hours_table(opening_hours)}", + "es": "{opening_hours_table(opening_hours)}" }, "question": { "en": "At what times is this defibrillator available?", @@ -495,8 +515,9 @@ "fr": "À quels horaires ce défibrillateur est-il accessible ?", "it": "In quali orari è disponibile questo defibrillatore?", "ru": "В какое время доступен этот дефибриллятор?", - "de": "Zu welchen Zeiten ist dieser Defibrillator verfügbar?", - "sl": "Ob katerih urah je ta defibrilator na voljo?" + "de": "Zu welchen Zeiten ist der Defibrillator verfügbar?", + "sl": "Ob katerih urah je ta defibrilator na voljo?", + "es": "¿A qué horas está disponible este desfibrilador?" }, "freeform": { "key": "opening_hours", @@ -511,7 +532,8 @@ "fr": "Ouvert 24/7 (jours feriés inclus)", "it": "Aperto 24/7 (festivi inclusi)", "de": "24/7 geöffnet (auch an Feiertagen)", - "sl": "Na voljo 24/7 (tudi za praznike)" + "sl": "Na voljo 24/7 (tudi za praznike)", + "es": "Abierto 24/7 (incluyendo festivos)" } } ], @@ -526,7 +548,8 @@ "ru": "Дополнительная информация: {description}", "de": "Zusätzliche Informationen: {description}", "id": "Informasi tambahan: {description}", - "sl": "Dodatne informacije: {description}" + "sl": "Dodatne informacije: {description}", + "es": "Información adicional: {description}" }, "question": { "en": "Is there any useful information for users that you haven't been able to describe above? (leave blank if no)", @@ -534,7 +557,8 @@ "fr": "Y a-t-il des informations utiles pour les utilisateurs que vous n'avez pas pu décrire ci-dessus ? (laisser vide sinon)", "it": "Vi sono altre informazioni utili agli utenti che non è stato possibile aggiungere prima? (lasciare vuoto in caso negativo)", "de": "Gibt es nützliche Informationen für Benutzer, die Sie oben nicht beschreiben konnten? (leer lassen, wenn nein)", - "sl": "Ali imate še kakšne uporabne informacije za uporabnike, ki jih niste mogli podati zgoraj? (pustite prazno če jih nimate)" + "sl": "Ali imate še kakšne uporabne informacije za uporabnike, ki jih niste mogli podati zgoraj? (pustite prazno če jih nimate)", + "es": "¿Hay alguna información útil para los usuarios que no hayas podido describir arriba? (dejar en blanco si no)" }, "freeform": { "key": "description", @@ -548,8 +572,9 @@ "nl": "Wanneer is deze defibrillator het laatst gecontroleerd in OpenStreetMap?", "fr": "Quand le défibrillateur a-t-il été vérifié pour la dernière fois ?", "it": "Quando è stato verificato per l’ultima volta questo defibrillatore?", - "de": "Wann wurde dieser Defibrillator zuletzt überprüft?", - "sl": "Kdaj je bil ta defibrilator nazadnje opažen?" + "de": "Wann wurde der Defibrillator zuletzt überprüft?", + "sl": "Kdaj je bil ta defibrilator nazadnje opažen?", + "es": "¿Cuándo se sondeó por última vez este desfibrilador?" }, "render": { "en": "This defibrillator was last surveyed on {survey:date}", @@ -557,7 +582,8 @@ "fr": "Ce défibrillateur a été vérifié pour la dernière fois le {survey:date}", "it": "Questo defibrillatore è stato verificato per l‘ultima volta in data {survey:date}", "de": "Dieser Defibrillator wurde zuletzt am {survey:date} überprüft", - "sl": "Ta defibrilator je bil nazadnje opažen {survey:date}" + "sl": "Ta defibrilator je bil nazadnje opažen {survey:date}", + "es": "Este desfibrilador se sondeó por última vez el {survey:date}" }, "freeform": { "key": "survey:date", @@ -574,7 +600,8 @@ "ru": "Проверено сегодня!", "de": "Heute überprüft!", "sl": "Preverjeno danes!", - "ca": "Comprovat avui!" + "ca": "Comprovat avui!", + "es": "¡Comprobado hoy!" } } ], @@ -588,15 +615,17 @@ "it": "Informazioni supplementari per gli esperti di OpenStreetMap: {fixme}", "de": "Zusätzliche Informationen für OpenStreetMap-Experten: {fixme}", "ru": "Дополнительная информация для экспертов OpenStreetMap: {fixme}", - "sl": "Dodatne informacije za OpenStreetMap strokovnjake: {fixme}" + "sl": "Dodatne informacije za OpenStreetMap strokovnjake: {fixme}", + "es": "Información extra para expertos en OpenStreetMap: {fixme}" }, "question": { "en": "Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)", "nl": "Is er iets mis met de informatie over deze defibrillator dat je hier niet opgelost kreeg? (laat hier een berichtje achter voor OpenStreetMap experts)", "fr": "Y a-t-il quelque chose qui ne va pas dans la manière dont ça a été cartographié, et que vous n'avez pas pu réparer ici ? (laisser une note pour les experts d'OpenStreetMap)", "it": "C’è qualcosa di sbagliato riguardante come è stato mappato, che non si è potuto correggere qua? (lascia una nota agli esperti di OpenStreetMap)", - "de": "Gibt es einen Fehler in der Kartierung, den Sie hier nicht beheben konnten? (hinterlasse eine Notiz an OpenStreetMap-Experten)", - "sl": "Ali je kaj narobe s tem vnosom na zemljevid, in tega niste mogli sami popraviti tu? (pustite opombo OpenStreetMap strokovnjakom)" + "de": "Gibt es einen Fehler in der Kartierung, den Sie hier nicht beheben konnten? (hinterlasse eine Notiz für OpenStreetMap-Experten)", + "sl": "Ali je kaj narobe s tem vnosom na zemljevid, in tega niste mogli sami popraviti tu? (pustite opombo OpenStreetMap strokovnjakom)", + "es": "¿Hay algo mal con como esta mapeado, que no pudiste arreglar aquí? (deja una nota para los expertos de OpenStreetMap)" }, "freeform": { "key": "fixme", @@ -640,6 +669,8 @@ "description": { "en": "A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device", "nl": "Een laag die defibrillatoren toont die je kan gebruiken bij noodgevallen. Dit omvat zowel publiek beschikbare toestellen als defibrillatoren waarvoor het toestel enkel door personeel aangeboden kan worden", - "sl": "Sloj prikazuje defibrilatorje, ki jih je možno uporabiti v primeru sile. Sloj poleg javno dostopnih defibrilatorjev vsebuje tudi tiste, ki za dostop morda potrebujejo pomoč osebja" + "sl": "Sloj prikazuje defibrilatorje, ki jih je možno uporabiti v primeru sile. Sloj poleg javno dostopnih defibrilatorjev vsebuje tudi tiste, ki za dostop morda potrebujejo pomoč osebja", + "de": "Eine Ebene mit Defibrillatoren, die in Notfällen eingesetzt werden können. Diese Ebene enthält öffentliche Defibrillatoren, aber auch Defibrillatoren, bei denen möglicherweise Personal benötigt wird, um das Gerät zu holen", + "es": "Una capa que muestra desfibriladores que se pueden utilizar en caso de emergencia. Contiene desfibriladores públicos, pero también desfibriladores para los que se puede necesitar que el personal vaya a buscar el dispositivo" } } \ No newline at end of file diff --git a/assets/layers/doctors/dentist.svg b/assets/layers/doctors/dentist.svg new file mode 100644 index 0000000000..7c9728084f --- /dev/null +++ b/assets/layers/doctors/dentist.svg @@ -0,0 +1,20 @@ + + + + + + + diff --git a/assets/layers/doctors/doctors.json b/assets/layers/doctors/doctors.json new file mode 100644 index 0000000000..8e45b98527 --- /dev/null +++ b/assets/layers/doctors/doctors.json @@ -0,0 +1,192 @@ +{ + "id": "doctors", + "name": { + "en": "Doctors", + "de": "Ärzte", + "nl": "Dokters", + "fr": "Médecins" + }, + "description": { + "en": "This layer shows doctor offices, dentists and other healthcare facilities", + "de": "Diese Ebene zeigt Arztpraxen, Zahnärzte und andere Gesundheitseinrichtungen", + "nl": "Deze laag toont dokterspraktijken, tandartsen en andere gezondheidszorgfaciliteiten", + "fr": "Ce calque montre les cabinets médicaux, les dentistes et autres établissements de santé" + }, + "source": { + "osmTags": { + "or": [ + "amenity=doctors", + "amenity=dentist", + "healthcare=physiotherapist" + ] + } + }, + "title": { + "render": { + "en": "Doctors Office {name}", + "de": "Arztpraxis {name}", + "nl": "Dokterspraktijk {name}", + "fr": "Cabinet medical {name}" + }, + "mappings": [ + { + "if": "amenity=doctors", + "then": "Doctors Office {name}" + }, + { + "if": "amenity=dentist", + "then": "Dentists office {name}" + }, + { + "if": "healthcare=physiotherapist", + "then": "Physiotherapists office {name}" + } + ] + }, + "minzoom": 13, + "tagRenderings": [ + "images", + "opening_hours", + "phone", + "email", + "website", + { + "question": { + "en": "What is the name of this doctors place?", + "de": "Wie heißt diese Arztpraxis?", + "nl": "Wat is de naam van deze dokterspraktijk?", + "fr": "Comment s'appelle ce cabinet médical ?" + }, + "render": { + "en": "This doctors place is called {name}", + "de": "Diese Arztpraxis heißt {name}", + "nl": "Deze dokterspraktijk heet {name}", + "fr": "Ce cabinet médical s'appelle {name}" + }, + "freeform": { + "key": "name" + }, + "id": "name" + }, + { + "condition": "amenity=doctors", + "id": "specialty", + "render": { + "en": "This doctor is specialized in {healthcare:speciality}", + "de": "Dieser Arzt ist spezialisiert auf {healthcare:speciality}", + "nl": "Deze dokter is gespecialiseerd in {healthcare:speciality}", + "fr": "Ce médecin est spécialisé dans {healthcare:speciality}" + }, + "question": { + "en": "What is this doctor specialized in?", + "de": "Worauf ist dieser Arzt spezialisiert?", + "nl": "Waar is deze dokter in gespecialiseerd?", + "fr": "En quoi ce médecin est-il spécialisé ?" + }, + "freeform": { + "key": "healthcare:speciality" + }, + "mappings": [ + { + "if": "healthcare:speciality=general", + "then": { + "en": "This is a general practitioner", + "de": "Dies ist ein Allgemeinmediziner", + "nl": "Dit is een huisarts", + "fr": "C'est un médecin généraliste" + } + }, + { + "if": "healthcare:speciality=gynaecology", + "then": { + "en": "This is a gynaecologist", + "de": "Dies ist ein Gynäkologe", + "nl": "Dit is een gynaecoloog", + "fr": "C'est un gynécologue" + } + }, + { + "if": "healthcare:speciality=psychiatry", + "then": { + "en": "This is a psychiatrist", + "de": "Dies ist ein Psychiater", + "nl": "Dit is een psychiater", + "fr": "C'est un psychiatre" + } + }, + { + "if": "healthcare:speciality=paediatrics", + "then": { + "en": "This is a paediatrician", + "de": "Dies ist ein Kinderarzt", + "nl": "Dit is een kinderarts", + "fr": "C'est un pédiatre" + } + } + ] + } + ], + "presets": [ + { + "title": { + "en": "a doctors office", + "de": "eine Arztpraxis", + "nl": "een dokterspraktijk", + "fr": "un cabinet médical" + }, + "tags": [ + "amenity=doctors" + ] + }, + { + "title": { + "en": "a dentists office", + "de": "eine Zahnarztpraxis", + "nl": "een tandartspraktijk", + "fr": "un cabinet de dentistes" + }, + "tags": [ + "amenity=dentist" + ] + }, + { + "title": { + "en": "a physiotherapists office", + "de": "Praxis eines Physiotherapeuten", + "nl": "een fysiotherapeutenpraktijk", + "fr": "un cabinet de kinésithérapeutes" + }, + "tags": [ + "healthcare=physiotherapist" + ] + } + ], + "filter": [ + { + "id": "opened-now", + "options": [ + { + "question": { + "en": "Opened now", + "de": "Jetzt geöffnet", + "nl": "Nu geopend", + "fr": "Ouvert maintenant" + }, + "osmTags": "_isOpen=yes" + } + ] + } + ], + "mapRendering": [ + { + "icon": { + "render": "circle:white;./assets/layers/doctors/doctors.svg" + }, + "iconSize": "40,40,center", + "location": [ + "point", + "centroid" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/doctors/doctors.svg b/assets/layers/doctors/doctors.svg new file mode 100644 index 0000000000..94516a6887 --- /dev/null +++ b/assets/layers/doctors/doctors.svg @@ -0,0 +1,20 @@ + + + + + + + diff --git a/assets/layers/doctors/license_info.json b/assets/layers/doctors/license_info.json new file mode 100644 index 0000000000..cc0457d850 --- /dev/null +++ b/assets/layers/doctors/license_info.json @@ -0,0 +1,22 @@ +[ + { + "path": "dentist.svg", + "license": "CC0", + "authors": [ + "OSM Carto" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Dentist-14.svg" + ] + }, + { + "path": "doctors.svg", + "license": "cc0", + "authors": [ + "osmcarto" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Doctors-14.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/dogpark/dog-park.svg b/assets/layers/dogpark/dog-park.svg index 4af873c799..6a0ec8be57 100644 --- a/assets/layers/dogpark/dog-park.svg +++ b/assets/layers/dogpark/dog-park.svg @@ -1,23 +1,22 @@ image/svg+xml + style="display:inline">
diff --git a/assets/layers/dogpark/dogpark.json b/assets/layers/dogpark/dogpark.json index 35eaebe456..12ad390f5e 100644 --- a/assets/layers/dogpark/dogpark.json +++ b/assets/layers/dogpark/dogpark.json @@ -1,5 +1,6 @@ { "id": "dogpark", + "description": "A layer showing dogparks, which are areas where dog are allowed to run without a leash", "source": { "osmTags": { "or": [ @@ -18,25 +19,33 @@ { "title": { "en": "a dog park", - "da": "en hundeskov" + "da": "en hundeskov", + "de": "Ein Hundepark", + "es": "un parque para perros" }, "tags": [ "leisure=dog_park" ], "description": { "en": "A place for dogs, where they can run unleashed", - "da": "En hundeskov eller hundegård beregnet til hunde, hvor de kan løbe uden snor" + "da": "En hundeskov eller hundegård beregnet til hunde, hvor de kan løbe uden snor", + "de": "Ein Ort ohne Leinenzwang für Hunde", + "es": "Un lugar para perros, donde pueden correr sin correa" } } ], "name": { "en": "dog parks", - "da": "hundeskove" + "da": "hundeskove", + "de": "Hundeparks", + "es": "parques de perros" }, "title": { "render": { "en": "dog park", - "da": "hundeskov" + "da": "hundeskov", + "de": "Hundepark", + "es": "parque para perros" }, "mappings": [ { @@ -77,20 +86,26 @@ "if": "barrier=fence", "then": { "en": "This dogpark is fenced all around", - "da": "Denne hundskov er indhegnet" + "da": "Denne hundskov er indhegnet", + "de": "Dieser Hundepark ist komplett umzäunt", + "es": "Este parque para perros está cerrado todo alrededor" } }, { "if": "barrier=no", "then": { "en": "This dogpark is not fenced all around", - "da": "Denne hundskov er ikke indhegnet" + "da": "Denne hundskov er ikke indhegnet", + "de": "Dieser Hundepark ist nicht komplett umzäunt", + "es": "Este parque para perros no está cerrado todo alrededor" } } ], "question": { "en": "It this dog park fenced in?", - "da": "Er denne hundeskov indhegnet?" + "da": "Er denne hundeskov indhegnet?", + "de": "Ist dieser Hundepark umzäunt?", + "es": "¿Este parque para perros está vallado?" } }, { @@ -100,30 +115,39 @@ "if": "small_dog=separate", "then": { "en": "Have separate area for puppies and small dogs", - "da": "Har en indhegning til hvalpe og små hunde" + "da": "Har en indhegning til hvalpe og små hunde", + "de": "Hat einen separaten Bereich für Hundewelpen und kleine Hunde", + "es": "Tiene un espacio separado para cachorros y perros pequeños" } }, { "if": "small_dog=shared", "then": { "en": "Does not have a separate area for puppies and small dogs", - "da": "Har ikke en indhegning til hvalpe og små hunde" + "da": "Har ikke en indhegning til hvalpe og små hunde", + "de": "Hat keinen separaten Bereich für Hundewelpen und kleine Hunde", + "es": "No tiene un espacio separado para cachorros y perros pequeños" } } ], "question": { "en": "Does this dog park have a separate fenced in area for small dogs and puppies?", - "da": "Har denne hundeskov et separat indhegnet område for små hunde og hvalpe (hvalpegård)?" + "da": "Har denne hundeskov et separat indhegnet område for små hunde og hvalpe (hvalpegård)?", + "de": "Hat der Hundepark einen separaten Bereich für Hundewelpen und kleine Hunde?", + "es": "¿Este parque para perros tiene una zona separada vallada para perros pequeños y cachorros?" } }, { "question": { "en": "What is the name of this dog park?", - "da": "Hvad hedder denne hundeskov?" + "da": "Hvad hedder denne hundeskov?", + "de": "Wie lautet der Name dieses Hundeparks?", + "es": "¿Cual es el nombre de este parque para perros?" }, "render": { "en": "The name of this dog park is {name}", - "de": "Denne hundeskov hedder {name}" + "de": "Denne hundeskov hedder {name}", + "es": "El nombre de este parque para perros es {name}" }, "freeform": { "key": "name" @@ -134,7 +158,9 @@ "id": "dogarea", "render": { "en": "This dogpark is {_surface:ha} ha big", - "da": "Denne hundeskov er på {_surface:ha} hektar" + "da": "Denne hundeskov er på {_surface:ha} hektar", + "de": "Der Hundepark ist {_surface:ha} ha groß", + "es": "Este parque para perros tiene {_surface:ha} ha" }, "condition": "_surface:ha!=0" }, diff --git a/assets/layers/drinking_water/drinking_water.json b/assets/layers/drinking_water/drinking_water.json index 6531e7b638..795e06d658 100644 --- a/assets/layers/drinking_water/drinking_water.json +++ b/assets/layers/drinking_water/drinking_water.json @@ -10,7 +10,8 @@ "ru": "Питьевая вода", "id": "Air minum", "hu": "Ivóvíz", - "ca": "Aigua potable" + "ca": "Aigua potable", + "es": "Agua potable" }, "title": { "render": { @@ -23,13 +24,20 @@ "ru": "Питьевая вода", "id": "Air minum", "hu": "Ivóvíz", - "ca": "Aigua potable" + "ca": "Aigua potable", + "es": "Agua potable" } }, "source": { "osmTags": { "and": [ - "amenity=drinking_water", + { + "or": [ + "amenity=drinking_water", + "drinking_water=yes" + ] + }, + "man_made!=reservoir_covered", "access!=permissive", "access!=private" ] @@ -48,7 +56,7 @@ "nl": "drinkbaar water", "fr": "une eau potable", "gl": "auga potábel", - "de": "eine trinkwasser", + "de": "eine Trinkwasserstelle", "it": "una acqua potabile", "ru": "питьевая вода", "id": "air minum", @@ -68,7 +76,8 @@ "it": "Questo punto di acqua potabile è sempre funzionante?", "fr": "Ce point d'eau potable est-il toujours opérationnel ?", "de": "Ist diese Trinkwasserstelle noch in Betrieb?", - "hu": "Működik-e még ez az ivóvíznyerő hely?" + "hu": "Működik-e még ez az ivóvíznyerő hely?", + "es": "¿Todavía esta operativo este punto de agua potable?" }, "render": { "en": "The operational status is {operational_status}", @@ -76,7 +85,8 @@ "it": "Lo stato operativo è {operational_status}", "fr": "L'état opérationnel est {operational_status}", "de": "Der Betriebsstatus ist {operational_status}", - "hu": "Működési állapota: {operational_status}" + "hu": "Működési állapota: {operational_status}", + "es": "El estado operacional es {operational_status}" }, "freeform": { "key": "operational_status" @@ -90,7 +100,8 @@ "it": "La fontanella funziona", "fr": "Cette fontaine fonctionne", "de": "Diese Trinkwasserstelle ist in Betrieb", - "hu": "Ez az ivóvízkút működik" + "hu": "Ez az ivóvízkút működik", + "es": "Esta agua potable funciona" } }, { @@ -101,7 +112,8 @@ "it": "La fontanella è guasta", "fr": "Cette fontaine est cassée", "de": "Diese Trinkwasserstelle ist kaputt", - "hu": "Ez az ivóvízkút elromlott" + "hu": "Ez az ivóvízkút elromlott", + "es": "Esta agua potable está rota" } }, { @@ -112,7 +124,8 @@ "it": "La fontanella è chiusa", "fr": "Cette fontaine est fermée", "de": "Diese Trinkwasserstelle wurde geschlossen", - "hu": "Ez az ivóvízkút el van zárva" + "hu": "Ez az ivóvízkút el van zárva", + "es": "Esta agua potable está cerrada" } } ], @@ -122,10 +135,11 @@ "question": { "en": "How easy is it to fill water bottles?", "nl": "Hoe gemakkelijk is het om drinkbussen bij te vullen?", - "de": "Wie einfach ist es, Wasserflaschen zu füllen?", + "de": "Wie einfach hier das Befüllen von Wasserflaschen?", "it": "Quanto è facile riempire d’acqua le bottiglie?", "fr": "Est-il facile de remplir des bouteilles d'eau ?", - "hu": "Mennyire könnyű itt vizespalackot tölteni?" + "hu": "Mennyire könnyű itt vizespalackot tölteni?", + "es": "¿Cómo de fácil es rellenar botellas de agua?" }, "mappings": [ { @@ -133,10 +147,11 @@ "then": { "en": "It is easy to refill water bottles", "nl": "Een drinkbus bijvullen gaat makkelijk", - "de": "Es ist einfach, Wasserflaschen nachzufüllen", + "de": "Wasserflaschen können hier problemlos gefüllt werden", "it": "È facile riempire d’acqua le bottiglie", "fr": "Il est facile de remplir les bouteilles d'eau", - "hu": "Könnyen lehet vizespalackot tölteni" + "hu": "Könnyen lehet vizespalackot tölteni", + "es": "Es fácil rellenar botellas de agua" } }, { @@ -144,10 +159,11 @@ "then": { "en": "Water bottles may not fit", "nl": "Een drinkbus past moeilijk", - "de": "Wasserflaschen passen möglicherweise nicht", + "de": "Wasserflaschen können hier nicht oder nur sehr aufwändig gefüllt werden", "it": "Le bottiglie d’acqua potrebbero non entrare", "fr": "Les bouteilles d'eau peuvent ne pas passer", - "hu": "Lehet, hogy nem fér alá egy vizespalack" + "hu": "Lehet, hogy nem fér alá egy vizespalack", + "es": "Las botellas de agua pueden no caber" } } ], @@ -156,12 +172,13 @@ { "id": "render-closest-drinking-water", "render": { - "en": "There is another drinking water fountain at {_closest_other_drinking_water_distance} meter", + "en": "There is another drinking water fountain at {_closest_other_drinking_water_distance} meters", "nl": "Er bevindt zich een ander drinkwaterpunt op {_closest_other_drinking_water_distance} meter", "it": "C’è un’altra fontanella a {_closest_other_drinking_water_distance} metri", "de": "Eine weitere Trinkwasserstelle befindet sich in {_closest_other_drinking_water_distance} Meter", - "fr": "Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>", - "hu": "Van egy másik ivóvízkút {_closest_other_drinking_water_distance} méter távolságra" + "fr": "Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres", + "hu": "Van egy másik ivóvízkút {_closest_other_drinking_water_distance} méter távolságra", + "es": "Hay otra fuente de agua potable a {_closest_other_drinking_water_distance} metros" }, "condition": "_closest_other_drinking_water_id~*" } @@ -184,7 +201,9 @@ }, "then": { "en": "This is a decorative fountain of which the water is not drinkable by humans", - "nl": "Dit is een decoratieve fontein waarvan het water niet geschikt is om te drinken door mensen" + "nl": "Dit is een decoratieve fontein waarvan het water niet geschikt is om te drinken door mensen", + "de": "Dies ist ein Zierbrunnen, dessen Wasser für den Menschen nicht trinkbar ist", + "es": "Esta es una fuente decorativa con agua no potable" } }, { @@ -197,7 +216,9 @@ }, "then": { "en": "This is a water tap or water pump with non-drinkable water.
Examples are water taps with rain water to tap water for nearby plants
", - "nl": "Dit is een waterkraan of waterpomp met ondrinkbaar water.
Bijvoorbeeld een waterkraan met regenwater om planten water mee te gevenBijvoorbeeld een waterkraan met regenwater om planten water mee te gevenBeispiele sind Wasserhähne mit Regenwasser zum Zapfen von Wasser für nahe gelegene Pflanzen
", + "es": "Este es un grifo de agua o una bomba de agua con agua no potable.
Ejemplos son grifos con agua de lluvia o agua del grifo para plantas cercanas
" } } ] @@ -232,6 +253,9 @@ "description": { "en": "A layer showing drinking water fountains", "nl": "Deze laag toont drinkwaterpunten", - "hu": "Ivóvizet adó kutakat megjelenítő réteg" + "hu": "Ivóvizet adó kutakat megjelenítő réteg", + "de": "Eine Ebene mit Trinkwasserbrunnen", + "es": "Una capa que muestra fuentes de agua potable", + "fr": "Une couche montrant les fontaines d'eau potable" } } \ No newline at end of file diff --git a/assets/layers/elevator/elevator.json b/assets/layers/elevator/elevator.json new file mode 100644 index 0000000000..8db1b68100 --- /dev/null +++ b/assets/layers/elevator/elevator.json @@ -0,0 +1,212 @@ +{ + "id": "elevator", + "name": { + "en": "elevator", + "fr": "ascenseur", + "de": "Aufzug", + "nl": "lift" + }, + "source": { + "osmTags": "highway=elevator" + }, + "minzoom": 13, + "description": { + "en": "This layer show elevators and asks for operational status and elevator dimensions. Useful for wheelchair accessibility information", + "fr": "Ce calque montre les ascenseurs et demande l'état opérationnel et les dimensions de l'ascenseur. Utile pour les informations sur l'accessibilité en fauteuil roulant", + "de": "Diese Ebene zeigt Aufzüge an und fragt nach dem Betriebsstatus und den Abmessungen des Aufzugs. Nützlich für Informationen zur Zugänglichkeit für Rollstuhlfahrer", + "nl": "Deze laag toont liften en vraagt praktische info over de grootte van de lift en ofdat deze werkt, vooral met het oog op of de lift werkt of niet." + }, + "title": { + "render": { + "en": "Elevator", + "fr": "Ascenseur", + "de": "Aufzug", + "nl": "Lift" + } + }, + "tagRenderings": [ + "images", + "multilevels", + { + "id": "operational_status", + "question": { + "en": "Does this elevator work?", + "fr": "Cet ascenseur fonctionne-t-il ?", + "de": "Ist dieser Aufzug in Betrieb?", + "nl": "Werkt deze lift?" + }, + "mappings": [ + { + "if": "operational_status=broken", + "then": { + "en": "This elevator is broken", + "fr": "Cet ascenseur est en panne", + "de": "Dieser Aufzug ist kaputt", + "nl": "Deze lift is kapot" + }, + "icon": "close:red" + }, + { + "if": "operational_status=closed", + "then": { + "en": "This elevator is closed e.g. because renovation works are going on", + "fr": "Cet ascenseur est fermé par ex. parce que des travaux de rénovation sont en cours", + "de": "Dieser Aufzug ist außer Betrieb z.B. wegen Renovierungsarbeiten", + "nl": "Deze lift is tijdelijk gesloten bijvoorbeeld door renovatiewerken" + }, + "icon": "invalid:red" + }, + { + "if": "operational_status=ok", + "then": { + "en": "This elevator works", + "fr": "Cet ascenseur fonctionne", + "de": "Dieser Aufzug ist in Betrieb", + "nl": "Deze lift werkt" + } + }, + { + "if": "operational_status=", + "then": { + "en": "This elevator works", + "fr": "Cet ascenseur fonctionne", + "de": "Dieser Aufzug ist in Betrieb", + "nl": "Deze lift werkt" + }, + "hideInAnswer": true + } + ] + }, + { + "id": "door-width", + "render": { + "en": "This elevator's doors have a width of {canonical(door:width)}", + "fr": "Les portes de cet ascenseur ont une largeur de {canonical(door:width)}", + "de": "Die Türen des Aufzugs haben eine Breite von {canonical(door:width)}", + "nl": "De breedte van de liftdeur is {canonical(door:width)}" + }, + "question": { + "en": "What is the width of this elevator's entrance?", + "fr": "Quelle est la largeur de l'entrée de cet ascenseur ?", + "de": "Wie breit ist die Tür dieses Aufzugs?", + "nl": "Wat is de breedte van de liftdeur?" + }, + "freeform": { + "key": "door:width", + "type": "pfloat" + } + }, + { + "id": "elevator-width", + "render": { + "en": "This elevator has a width of {canonical(elevator:width)}", + "fr": "Cet ascenseur a une largeur de {canonical(elevator:width)}", + "de": "Die Aufzugskabine hat eine Breite von {canonical(elevator:width)}", + "nl": "Deze lift heeft een breedte van {canonical(elevator:width)}" + }, + "question": { + "en": "What is the width of this elevator?", + "fr": "Quelle est la largeur de cet ascenseur ?", + "de": "Wie breit ist die Kabine dieses Aufzugs?", + "nl": "Wat is de breedte van deze lift?" + }, + "freeform": { + "key": "elevator:width", + "type": "pfloat" + } + }, + { + "id": "elevator-depth", + "render": { + "en": "This elevator has a depth of {canonical(elevator:depth)}", + "fr": "Cet ascenseur a une profondeur de {canonical(elevator:depth)}", + "de": "Dieser Aufzug hat eine Kabinentiefe von {canonical(elevator:depth)}", + "nl": "Deze lift heeft een diepte van {canonical(elevator:depth)}" + }, + "question": { + "en": "What is the depth of this elevator?", + "fr": "Quelle est la profondeur de cet ascenseur ?", + "de": "Wie tief ist die Kabine dieses Aufzugs?", + "nl": "Wat is de diepte van deze lift?" + }, + "freeform": { + "key": "elevator:depth", + "type": "pfloat" + } + }, + "induction-loop" + ], + "mapRendering": [ + { + "icon": { + "render": "circle:white;./assets/layers/elevator/elevator_wheelchair.svg" + }, + "iconSize": "40,40,center", + "location": [ + "point", + "centroid" + ], + "iconBadges": [ + { + "if": { + "or": [ + "operational_status=broken", + "operational_status=closed" + ] + }, + "then": "close:#c33" + } + ] + } + ], + "presets": [ + { + "title": { + "en": "an elevator", + "nl": "een lift", + "fr": "un ascenseur", + "de": "einen Aufzug" + }, + "tags": [ + "highway=elevator" + ] + } + ], + "units": [ + { + "appliesToKey": [ + "door:width", + "elevator:width", + "elevator:depth" + ], + "applicableUnits": [ + { + "canonicalDenomination": "m", + "alternativeDenomination": [ + "meter" + ], + "human": { + "en": "meter", + "fr": "mètre", + "de": "Meter", + "nl": "meter" + } + }, + { + "default": true, + "canonicalDenomination": "cm", + "alternativeDenomination": [ + "centimeter", + "cms" + ], + "human": { + "en": "centimeter", + "fr": "centimètre", + "de": "Zentimeter", + "nl": "centimeter" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/elevator/elevator_wheelchair.svg b/assets/layers/elevator/elevator_wheelchair.svg new file mode 100644 index 0000000000..5ad6ee402d --- /dev/null +++ b/assets/layers/elevator/elevator_wheelchair.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + diff --git a/assets/layers/elevator/license_info.json b/assets/layers/elevator/license_info.json new file mode 100644 index 0000000000..37b617e4f6 --- /dev/null +++ b/assets/layers/elevator/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "elevator_wheelchair.svg", + "license": "CC-BY-SA", + "authors": [ + "https://www.ctsteward.com/" + ], + "sources": [ + "https://www.ctsteward.com/" + ] + } +] \ No newline at end of file diff --git a/assets/layers/entrance/door.svg b/assets/layers/entrance/door.svg deleted file mode 100644 index 4720d93d98..0000000000 --- a/assets/layers/entrance/door.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/assets/layers/entrance/entrance.json b/assets/layers/entrance/entrance.json index 63145215d2..3feea6258a 100644 --- a/assets/layers/entrance/entrance.json +++ b/assets/layers/entrance/entrance.json @@ -4,17 +4,23 @@ "en": "Entrance", "nl": "Toegang", "de": "Eingänge", - "ca": "Entrada" + "ca": "Entrada", + "es": "Entrada", + "fr": "Entrée" }, "description": { - "en": "A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, ...)", - "nl": "Een laag met ingangen (van gebouwen etc.) waarmee je details kunt aanvullen die belangrijk zijn voor bijvoorbeeld rolstoelgebruikers (en fietsers, leveranciers, ...)" + "en": "A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, …)", + "nl": "Een laag met ingangen (van gebouwen etc.) waarmee je details kunt aanvullen die belangrijk zijn voor bijvoorbeeld rolstoelgebruikers (en fietsers, leveranciers, …)", + "de": "Eine Ebene, die Eingänge anzeigt und die Möglichkeit bietet, weitere Daten zu erheben, die z. B. für Rollstuhlfahrer wichtig sind (aber auch für Radfahrer, Lieferpersonal, …)", + "es": "Una capa que muestra capas y ofrece la posibilidad de sondear algunos datos avanzados que son importantes para, por ejemplo, usuarios de sillas de ruedas (pero también incluye ciclistas, gente que quiere repartir, ...)", + "fr": "Une couche montrant les entrées et offrant des capacités pour étudier certaines données avancées qui sont importantes, par exemple. les utilisateurs de fauteuils roulants (mais aussi les utilisateurs de vélos, les personnes qui veulent faire des livraisons, …)" }, "source": { "osmTags": { "or": [ "entrance~*", - "indoor=door" + "indoor=door", + "door~*" ] } }, @@ -24,23 +30,33 @@ "en": "Entrance", "nl": "Ingang", "ca": "Entrada", - "da": "Indgang" + "da": "Indgang", + "de": "Eingang", + "es": "Entrada", + "fr": "Entrée" } }, "tagRenderings": [ "images", + "level", { "id": "Entrance type", "question": { "en": "What type of entrance is this?", - "nl": "Wat voor ingang is dit?" + "nl": "Wat voor ingang is dit?", + "de": "Um welchen Eingangstyp handelt es sich hier?", + "es": "¿Qué tipo de entrada es esta?", + "fr": "De quel type d'entrée s'agit-il ?" }, "mappings": [ { "if": "entrance=yes", "then": { "en": "No specific entrance type is known", - "nl": "Het specifieke type ingang is onbekend" + "nl": "Het specifieke type ingang is onbekend", + "de": "Der Eingangstyp ist nicht bekannt", + "es": "No se conoce un tipo de entrada específico", + "fr": "Aucun type d'entrée spécifique n'est connu" }, "hideInAnswer": true }, @@ -53,7 +69,10 @@ }, "then": { "en": "This is an indoor door, separating a room or a corridor within a single building", - "nl": "Dit is een binnendeur, die een kamer of een gang volledig binnen hetzelfde gebouw afsluit" + "nl": "Dit is een binnendeur, die een kamer of een gang volledig binnen hetzelfde gebouw afsluit", + "de": "Dies ist eine Innentür, die Räume oder Gänge innerhalb eines Gebäudes verbindet", + "es": "Esta es una puerta interior, que separa una habitación o pasillo dentro de un único edificio", + "fr": "Il s'agit d'une porte intérieure, séparant une pièce ou un couloir d'un même bâtiment" } }, { @@ -65,7 +84,10 @@ }, "then": { "en": "This is the main entrance", - "nl": "Dit is de hoofdingang" + "nl": "Dit is de hoofdingang", + "de": "Dies ist der Haupteingang", + "es": "Esta es la entrada principal", + "fr": "Ceci est l'entrée principale" } }, { @@ -77,7 +99,10 @@ }, "then": { "en": "This is a secondary entrance", - "nl": "Dit is een secundaire ingang" + "nl": "Dit is een secundaire ingang", + "de": "Dies ist ein Nebeneingang", + "es": "Esta es una entrada secundaria", + "fr": "Ceci est une entrée secondaire" } }, { @@ -88,8 +113,11 @@ ] }, "then": { - "en": "This is a service entrance - normally only used for employees, delivery, ...", - "nl": "Dit is een dienstingang - normaal gezien enkel gebruikt door werknemers, leveranciers, ..." + "en": "This is a service entrance - normally only used for employees, delivery, …", + "nl": "Dit is een dienstingang - normaal gezien enkel gebruikt door werknemers, leveranciers, …", + "de": "Dies ist ein Diensteingang - normalerweise nur für Mitarbeiter, Anlieferung, …", + "es": "Esta es una entrada de servicio - normalmente solo la utilizan empleados, repartidores, …", + "fr": "Ceci est une entrée de service - normalement utilisée uniquement pour les employés, la livraison, …" } }, { @@ -101,7 +129,10 @@ }, "then": { "en": "This is an exit where one can not enter", - "nl": "Dit is enkel een uitgang, je kan hier niet naar binnen" + "nl": "Dit is enkel een uitgang, je kan hier niet naar binnen", + "de": "Dies ist ein Ausgang, ohne Zutrittsmöglichkeit", + "es": "Esta es una salida por la cual no se puede entrar", + "fr": "Ceci est une sortie où l'on ne peut pas entrer" } }, { @@ -113,7 +144,10 @@ }, "then": { "en": "This is an entrance where one can only enter (but not exit)", - "nl": "Dit is een ingang waar je enkel naar binnen kunt (niet naar buiten)" + "nl": "Dit is een ingang waar je enkel naar binnen kunt (niet naar buiten)", + "de": "Dies ist ein Eingang, an dem man nur hineingehen kann (aber nicht hinausgehen)", + "es": "Esta es una entrada por la que solo se puede entrar (pero no salir)", + "fr": "C'est une entrée où l'on ne peut qu'entrer (mais pas sortir)" } }, { @@ -125,7 +159,10 @@ }, "then": { "en": "This is emergency exit", - "nl": "Dit is een nooduitgang" + "nl": "Dit is een nooduitgang", + "de": "Dies ist ein Notausgang", + "es": "Esta es una salida de emergencia", + "fr": "Ceci est la sortie de secours" } }, { @@ -137,7 +174,10 @@ }, "then": { "en": "This is the entrance to a private home", - "nl": "Dit is de ingang van een private woning" + "nl": "Dit is de ingang van een private woning", + "de": "Dies ist ein Eingang zu einem privaten Haus", + "es": "Esta es la entrada a una vivienda privada", + "fr": "C'est l'entrée d'une maison privée" } } ] @@ -146,14 +186,20 @@ "id": "Door_type", "question": { "en": "What is the type of this door?
Wether or not the door is automated is asked in the next question", - "nl": "Om wat voor deur gaat het?
Of de deur al of niet automatisch werkt, vragen we hierna " + "nl": "Om wat voor deur gaat het?
Of de deur al of niet automatisch werkt, vragen we hierna ", + "de": "Welche Tür gibt es an diesem Eingang?
Ob die Tür automatisiert ist oder nicht, wird in der nächsten Frage gefragt", + "es": "¿Cual es el tipo de esta puerta?
Si la puerta está automatizada o no se pregunta en la siguiente pregunta", + "fr": "Quel est le type de cette porte ?
Le fait que la porte soit automatisée ou non est demandé dans la question suivante" }, "mappings": [ { "if": "door=yes", "then": { "en": "The door type is not known", - "nl": "Het type deur is onbekend" + "nl": "Het type deur is onbekend", + "de": "Der Türtyp ist nicht bekannt", + "es": "Se desconoce el tipo de puerta", + "fr": "Le type de porte n'est pas connu" }, "hideInAnswer": true }, @@ -161,35 +207,49 @@ "if": "door=hinged", "then": { "en": "A classical, hinged door supported by joints", - "nl": "Een gewone deur die aan scharnieren ophangt en openzwaait" + "nl": "Een gewone deur die aan scharnieren ophangt en openzwaait", + "de": "Der Eingang hat eine normale Tür mit seitlichem Anschlag", + "es": "Una puerta clásica, con bisagras soportadas por uniones", + "fr": "Une porte battante classique soutenue par des joints" } }, { "if": "door=revolving", "then": { "en": "A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure", - "nl": "Een tourniquet-deur (draaideur) die in een cylinder rond een centrale as draait" + "nl": "Een tourniquet-deur (draaideur) die in een cylinder rond een centrale as draait", + "de": "Der Eingang hat eine Karusselltür, die sich um ihre eigene Achse dreht", + "es": "Una puerta giratoria que cuelga de un eje central y que rota dentro de una carcasa cilíndrica", + "fr": "Une porte tournante suspendue à un arbre central, tournant dans une enceinte cylindrique" } }, { "if": "door=sliding", "then": { "en": "A sliding door where the door slides sidewards, typically parallel with a wall", - "nl": "Een schuifdeur or roldeur die bij het openen en sluiten zijwaarts beweegt" + "nl": "Een schuifdeur or roldeur die bij het openen en sluiten zijwaarts beweegt", + "de": "Der Eingang hat eine Schiebetür, bei der sich die Tür zur Seite bewegt", + "es": "Una puerta corredera donde las hojas se deslizan de lado a lado, típicamente con una pared", + "fr": "Une porte coulissante où la porte coulisse latéralement, généralement parallèlement à un mur" } }, { "if": "door=overhead", "then": { "en": "A door which rolls from overhead, typically seen for garages", - "nl": "Een poort die langs boven dichtrolt, typisch voor garages" + "nl": "Een poort die langs boven dichtrolt, typisch voor garages", + "de": "Der Eingang hat ein Rolltor, das von oben nach unten rollt, typischerweise für Garagen", + "fr": "Une porte qui roule du haut, généralement vue pour les garages" } }, { "if": "door=no", "then": { "en": "This is an entrance without a physical door", - "nl": "Er is een toegang zonder een deur" + "nl": "Er is een toegang zonder een deur", + "de": "Der Eingang hat eine keine Tür", + "es": "Esta es una entrada sin una puerta física", + "fr": "Ceci est une entrée sans porte physique" }, "hideInAnswer": "entrance=" } @@ -204,7 +264,10 @@ "if": "automatic_door=yes", "then": { "en": "This is an automatic door", - "nl": "Dit is een automatische deur" + "nl": "Dit is een automatische deur", + "de": "Dies ist eine Automatiktür", + "es": "Esta es una puerta automática", + "fr": "C'est une porte automatique" }, "hideInAnswer": true }, @@ -212,56 +275,82 @@ "if": "automatic_door=no", "then": { "en": "This door is not automated", - "nl": "Deze deur is niet automatisch" + "nl": "Deze deur is niet automatisch", + "de": "Diese Tür ist nicht automatisiert", + "es": "Esta puerta no está automatizada", + "fr": "Cette porte n'est pas automatisée" } }, { "if": "automatic_door=motion", "then": { "en": "This door will open automatically when motion is detected", - "nl": "De deur gaat automatisch open wanneer er beweging wordt gedetecteerd" + "nl": "De deur gaat automatisch open wanneer er beweging wordt gedetecteerd", + "de": "Diese Tür öffnet sich automatisch, wenn Bewegung erkannt wird", + "es": "Esta puerta se abre automáticamente cuando se detecta movimiento", + "fr": "Cette porte s'ouvrira automatiquement lorsqu'un mouvement sera détecté" } }, { "if": "automatic_door=floor", "then": { "en": "This door will open automatically when a sensor in the floor is triggered", - "nl": "De deur gaat automatisch open wanneer een sensor in de vloer wordt geactiveerd" + "nl": "De deur gaat automatisch open wanneer een sensor in de vloer wordt geactiveerd", + "de": "Diese Tür öffnet sich automatisch, wenn ein Sensor im Boden ausgelöst wird", + "es": "Esta puerta se abre automáticamente cuando se activa un sensor en el suelo", + "fr": "Cette porte s'ouvrira automatiquement lorsqu'un capteur au sol est déclenché" } }, { "if": "automatic_door=button", "then": { "en": "This door will open automatically when a button is pressed", - "nl": "De deur gaat open wanneer een knop wordt ingedrukt" + "nl": "De deur gaat open wanneer een knop wordt ingedrukt", + "de": "Diese Tür öffnet sich automatisch, wenn ein Taster betätigt wird", + "es": "Esta puerta se abre automáticamente cuando se pulsa un botón", + "fr": "Cette porte s'ouvrira automatiquement lorsqu'un bouton est pressé" } }, { "if": "automatic_door=slowdown_button", "then": { "en": "This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users", - "nl": "De deur draait continue automatisch, maar heeft een knop om te vertragen, bijvoorbeeld voor rolstoelgebruikers" - } + "nl": "De deur draait continue automatisch, maar heeft een knop om te vertragen, bijvoorbeeld voor rolstoelgebruikers", + "de": "Diese Tür dreht sich durchgehend automatisch, hat aber einenKnopf, um die Drehgeschwindigkeit zu reduzieren, z.B. für Rollstuhlnutzer", + "es": "Esta puerta gira automáticamente todo el rato, pero tiene un botón para ralentizarla, por ejemplo, para usuarios de sillas de ruedas", + "fr": "Cette porte tourne automatiquement tout le temps, mais dispose d'un bouton pour la ralentir, par ex. pour les utilisateurs de fauteuils roulants" + }, + "hideInAnswer": "door!=revolving" }, { "if": "automatic_door=continuous", "then": { "en": "This door revolves automatically all the time", - "nl": "De deur draait continue automatisch" - } + "nl": "De deur draait continue automatisch", + "de": "Diese Tür dreht sich durchgehend automatisch", + "es": "Esta puerta gira automáticamente todo el rato", + "fr": "Cette porte tourne automatiquement tout le temps" + }, + "hideInAnswer": "door!=revolving" }, { "if": "automatic_door=serviced_on_button_press", "then": { "en": "This door will be opened by staff when requested by pressing a button", - "nl": "De deur wordt geopend door personeel als je dat vraagt door op een knop te duwen" + "nl": "De deur wordt geopend door personeel als je dat vraagt door op een knop te duwen", + "de": "Diese Tür wird von Mitarbeitern geöffnet auf Anfrage per Rufknopf", + "es": "Esta puerta la abre el personal cuando se pide pulsando un botón", + "fr": "Cette porte sera ouverte par le personnel à la demande en appuyant sur un bouton" } }, { "if": "automatic_door=serviced_on_request", "then": { "en": "This door will be opened by staff when requested", - "nl": "De deur wordt geopend door personeel wanneer je het vraagt" + "nl": "De deur wordt geopend door personeel wanneer je het vraagt", + "de": "Diese Tür wird von Mitarbeitern geöffnet auf Anfrage", + "es": "Esta puerta la abrirá el personal cuando se pida", + "fr": "Cette porte sera ouverte par le personnel sur demande" } } ] @@ -270,16 +359,57 @@ "id": "width", "render": { "en": "This door has a width of {canonical(width)} meter", - "nl": "Deze deur heeft een breedte van {canonical(width)} meter" + "nl": "Deze deur heeft een breedte van {canonical(width)} meter", + "de": "Diese Tür hat eine Durchgangsbreite von {canonical(width)} Meter", + "es": "Esta puerta tiene una ancho de {canonical(width)} metros", + "fr": "Cette porte a une largeur de {canonical(width)} mètre" }, "question": { "en": "What is the width of this door/entrance?", - "nl": "Wat is de breedte van deze deur/toegang?" + "nl": "Wat is de breedte van deze deur/toegang?", + "de": "Wie breit ist diese Tür bzw. dieser Eingang?", + "es": "¿Cual es el ancho de esta puerta/entrada?", + "fr": "Quelle est la largeur de cette porte/entrée ?" }, "freeform": { - "key": "width", - "type": "length" + "key": "width" } + }, + { + "id": "kerb-height", + "question": { + "en": "What is the height of this kerb?", + "fr": "Quelle est la hauteur de ce seuil ?", + "de": "Wie hoch ist die Türschwelle?", + "nl": "Hoe hoog is de drempel?" + }, + "render": { + "en": "The kerb height of this door is {kerb:height}", + "fr": "La hauteur du seuil de porte de cette porte est {kerb:height}", + "de": "Die Höhe der Türschwelle ist {kerb:height}", + "nl": "De drempel bij deze deur is {kerb:height}" + }, + "freeform": { + "key": "kerb:height", + "placeholder": { + "en": "Height of the door kerb", + "fr": "Hauteur du seuil de porte", + "de": "Höhe der Türschwelle", + "nl": "Hoogte van de drempel" + }, + "type": "pnat" + }, + "mappings": [ + { + "if": "kerb:height=0", + "then": { + "en": "This door does not have a kerb", + "nl": "Deze deur heeft geen drempel", + "fr": "Cette porte n'a pas de seuil", + "de": "Diese Tür hat keine Türschwelle" + } + } + ] } ], "mapRendering": [ @@ -289,7 +419,7 @@ "centroid" ], "icon": { - "render": "circle:white;./assets/layers/entrance/door.svg", + "render": "circle:white;./assets/layers/entrance/entrance.svg", "mappings": [ { "if": "entrance=emergency", @@ -302,7 +432,10 @@ "presets": [ { "title": { - "*": "entrance" + "en": "an entrance", + "fr": "une entrée", + "de": "einen Eingang", + "nl": "een toegang" }, "preciseInput": { "preferredBackground": "photo", @@ -314,6 +447,56 @@ "tags": [ "entrance=yes" ] + }, + { + "title": { + "en": "an indoor door", + "de": "eine Innentür" + }, + "preciseInput": { + "preferredBackground": "map", + "snapToLayer": [ + "indoors" + ] + }, + "tags": [ + "indoor=door" + ] + } + ], + "units": [ + { + "appliesToKey": [ + "kerb:height" + ], + "applicableUnits": [ + { + "canonicalDenomination": "m", + "alternativeDenomination": [ + "meter" + ], + "human": { + "en": "meter", + "fr": "mètre", + "de": "Meter", + "nl": "meter" + } + }, + { + "default": true, + "canonicalDenomination": "cm", + "alternativeDenomination": [ + "centimeter", + "cms" + ], + "human": { + "en": "centimeter", + "fr": "centimètre", + "de": "Zentimeter", + "nl": "centimeter" + } + } + ] } ] } \ No newline at end of file diff --git a/assets/layers/entrance/entrance.svg b/assets/layers/entrance/entrance.svg new file mode 100644 index 0000000000..b071d0c8e1 --- /dev/null +++ b/assets/layers/entrance/entrance.svg @@ -0,0 +1,27 @@ + + diff --git a/assets/layers/entrance/license_info.json b/assets/layers/entrance/license_info.json index c5919b9c81..2beea1223a 100644 --- a/assets/layers/entrance/license_info.json +++ b/assets/layers/entrance/license_info.json @@ -1,14 +1,4 @@ [ - { - "path": "door.svg", - "license": "CC-BY 3.0 Unported", - "authors": [ - "Icons Bazaar" - ], - "sources": [ - "https://commons.wikimedia.org/wiki/File:Noun_Project_Door_icon_1512154.svg" - ] - }, { "path": "emergency_door.svg", "license": "CC-BY-SA 4.0 international", @@ -18,5 +8,15 @@ "sources": [ "https://commons.wikimedia.org/wiki/File:Emergency_door_icon.svg" ] + }, + { + "path": "entrance.svg", + "license": "CC-BY-SA", + "authors": [ + "CT Steward" + ], + "sources": [ + "https://www.ctsteward.com/" + ] } ] \ No newline at end of file diff --git a/assets/layers/etymology/etymology.json b/assets/layers/etymology/etymology.json index e37a307de4..f6bdda14b1 100644 --- a/assets/layers/etymology/etymology.json +++ b/assets/layers/etymology/etymology.json @@ -4,7 +4,8 @@ "name": { "en": "Has etymolgy", "nl": "Heeft etymology info", - "de": "Objekte mit Informationen zur Namensherkunft" + "de": "Objekte mit Informationen zur Namensherkunft", + "fr": "A une étymologie" }, "minzoom": 12, "source": { @@ -27,7 +28,9 @@ "description": { "en": "All objects which have an etymology known", "nl": "Alle lagen met een gelinkt etymology", - "de": "Alle Objekte, die eine bekannte Namensherkunft haben" + "de": "Alle Objekte, die eine bekannte Namensherkunft haben", + "hu": "Minden olyan objektum, amelynél ismert a nevének az eredete", + "fr": "Tous les objets dont l’étymologie est connue" }, "calculatedTags": [ "_same_name_ids=feat.closestn('*', 250, undefined, 2500)?.filter(f => f.feat.properties.name === feat.properties.name)?.map(f => f.feat.properties.id)??[]" @@ -44,7 +47,8 @@ "question": { "en": "What is the Wikidata-item that this object is named after?", "nl": "Wat is het Wikidata-item van hetgeen dit object is naar vernoemd?", - "de": "Was ist das Wikidata-Element, nach dem dieses Objekt benannt ist?" + "de": "Was ist das Wikidata-Element, nach dem dieses Objekt benannt ist?", + "fr": "Quel est l'Item Wikidata auquel l'objet fait référence ?" }, "freeform": { "key": "name:etymology:wikidata", @@ -56,89 +60,151 @@ "Q79007", "Q22698" ], - "removePrefixes": [ - "allée du", - "allée", - "autoroute du", - "autoroute", - "avenue du", - "avenue", - "bibliothèque du", - "bibliothèque", - "boulevard du", - "boulevard", - "centre du", - "centre", - "centre culturel du", - "centre culturel", - "chaussée du", - "chaussée", - "chemin du", - "chemin", - "collège du", - "collège", - "complexe sportif du", - "complexe sportif", - "école du", - "école", - "école élémentaire du", - "école élémentaire", - "école maternelle du", - "école maternelle", - "école primaire du", - "école primaire", - "esplanade du", - "esplanade", - "groupe scolaire du", - "groupe scolaire", - "gymnase du", - "gymnase", - "lycée du", - "lycée", - "mail du", - "mail", - "médiathèque du", - "médiathèque", - "musée du", - "musée", - "parc du", - "parc", - "rue du", - "rue", - "square du", - "square", - "stade du", - "stade" - ], - "removePostfixes": [ - "steenweg", - "heirbaan", - "baan", - "straat", - "street", - "weg", - "dreef", - "laan", - "boulevard", - "pad", - "path", - "plein", - "square", - "plaza", - "wegel", - "kerk", - "church", - "kaai", - "park", - "parque" - ] + "removePrefixes": { + "#": "no-translations", + "fr": [ + "allée de", + "allée du", + "allée", + "autoroute de", + "autoroute du", + "autoroute", + "avenue de", + "avenue du", + "avenue", + "bibliothèque de", + "bibliothèque du", + "bibliothèque", + "boulevard de", + "boulevard du", + "boulevard", + "centre culturel de", + "centre culturel du", + "centre culturel", + "centre de", + "centre du", + "centre", + "chaussée de", + "chaussée du", + "chaussée", + "chemin de", + "chemin du", + "chemin", + "collège de", + "collège du", + "collège", + "complexe sportif de", + "complexe sportif du", + "complexe sportif", + "école élémentaire de", + "école élémentaire du", + "école élémentaire", + "école maternelle de", + "école maternelle du", + "école maternelle", + "école primaire de", + "école primaire du", + "école primaire", + "école de", + "école du", + "école", + "esplanade de", + "esplanade du", + "esplanade", + "groupe scolaire de", + "groupe scolaire du", + "groupe scolaire", + "gymnase de", + "gymnase du", + "gymnase", + "impasse de", + "impasse du", + "impasse", + "lycée de", + "lycée du", + "lycée", + "mail de", + "mail du", + "mail", + "médiathèque de", + "médiathèque du", + "médiathèque", + "musée de", + "musée du", + "musée", + "parc de", + "parc du", + "parc", + "place de", + "place du", + "place", + "résidence de", + "résidence du", + "résidence", + "route de", + "route du", + "route", + "rue de", + "rue du", + "rue", + "square de", + "square du", + "square", + "stade de", + "stade du", + "stade", + "villa de", + "villa du", + "villa" + ] + }, + "removePostfixes": { + "#": "no-translations", + "nl": [ + "baan", + "boulevard", + "dreef", + "heirbaan", + "kaai", + "kerk", + "laan", + "lei", + "pad", + "park", + "plein", + "ring", + "steenweg", + "straat", + "weg", + "wegel" + ], + "fr": [ + "parque" + ], + "de": [ + "straße", + "platz", + "gasse", + "grundschule", + "gymnasium", + "schule" + ], + "en": [ + "street", + "path", + "plaza", + "square", + "church" + ] + } } ] }, "render": { "en": "

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}", "nl": "

Wikipedia artikel van de naamgever

{wikipedia(name:etymology:wikidata):max-height:20rem}", - "de": "

Wikipedia Artikel zur Namensherkunft

{wikipedia(name:etymology:wikidata):max-height:20rem}" + "de": "

Wikipedia Artikel zur Namensherkunft

{wikipedia(name:etymology:wikidata):max-height:20rem}", + "fr": "

Article Wikipedia de la référence au nom

{wikipedia(name:etymology:wikidata):max-height:20rem}" }, "condition": "name:etymology!=unknown" }, @@ -146,7 +212,9 @@ "id": "zoeken op inventaris onroerend erfgoed", "render": { "nl": "Zoeken op inventaris onroerend erfgoed", - "en": "Search on inventaris onroerend erfgoed" + "en": "Search on inventaris onroerend erfgoed", + "de": "Suche auf inventaris onroerend erfgoed", + "fr": "Chercher sur inventaris onroerend erfgoed" }, "conditions": "_country=be" }, @@ -155,13 +223,15 @@ "question": { "en": "What is this object named after?
This might be written on the street name sign", "nl": "Naar wat is dit object vernoemd?
Dit staat mogelijks vermeld op het straatnaambordje", - "de": "Wonach ist dieses Objekt benannt?
Das könnte auf einem Straßenschild stehen" + "de": "Wonach ist dieses Objekt benannt?
Das könnte auf einem Straßenschild stehen", + "fr": "En référence à quoi cet objet est-il nommé ?
Cela peut être indiqué sur le panneau de la rue" }, "render": { "en": "Named after {name:etymology}", "nl": "Vernoemd naar {name:etymology}", "de": "Benannt nach {name:etymology}", - "da": "Opkaldt efter {name:etymology}" + "da": "Opkaldt efter {name:etymology}", + "fr": "Nommé en référence à {name:etymology}" }, "freeform": { "key": "name:etymology" @@ -173,7 +243,8 @@ "en": "The origin of this name is unknown in all literature", "nl": "De oorsprong van deze naam is onbekend in de literatuur", "de": "Der Ursprung dieses Namens ist in der gesamten Literatur unbekannt", - "da": "Oprindelsen af dette navn er ukendt i al litteratur" + "da": "Oprindelsen af dette navn er ukendt i al litteratur", + "fr": "L'origine de ce nom est inconnu" } } ], @@ -189,7 +260,9 @@ "id": "street-name-sign-image", "render": { "en": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Add image of a street name sign)}", - "nl": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Voeg afbeelding van straatnaambordje toe)}" + "nl": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Voeg afbeelding van straatnaambordje toe)}", + "de": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Bild eines Straßenschildes hinzufügen)}", + "fr": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Ajouter une photo de la plaque de rue)}" } }, { @@ -203,7 +276,8 @@ "render": { "en": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}", "nl": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Wijzigingen worden automatisch gedaan op alle segmenten met dezelfde naam, true)}", - "de": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Automatische Datenübernahme auf alle Segmente mit demselben Namen, true)}" + "de": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Automatische Datenübernahme auf alle Segmente mit demselben Namen, true)}", + "fr": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Appliquer automatiquement aux segments avec le même nom, true)}" } }, { @@ -211,7 +285,9 @@ "#": "Note that this is a _read_only_ option, to prevent people entering a 'wikidata'-link instead of 'name:etymology:wikidata'", "render": { "en": "A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}", - "nl": "Een Wikipedia artikel over deze straat bestaat:
{wikipedia():max-height:25rem}" + "nl": "Een Wikipedia artikel over deze straat bestaat:
{wikipedia():max-height:25rem}", + "de": "Zu dieser Straße existiert ein Wikipedia-Artikel:
{wikipedia():max-height:25rem}", + "fr": "Un article Wikipédia à propos de cette rue existe :
{wikipedia():max-height:25rem}" }, "condition": "wikidata~*" } @@ -266,4 +342,4 @@ } } ] -} +} \ No newline at end of file diff --git a/assets/layers/extinguisher/extinguisher.json b/assets/layers/extinguisher/extinguisher.json index 5e637eee9e..f132cfaab2 100644 --- a/assets/layers/extinguisher/extinguisher.json +++ b/assets/layers/extinguisher/extinguisher.json @@ -1,14 +1,15 @@ { "id": "extinguisher", "name": { - "en": "Map of fire extinguishers.", + "en": "Map of fire extinguishers", "ja": "消火器の地図です。", "nb_NO": "Kart over brannhydranter", "ru": "Карта огнетушителей.", - "fr": "Couche des extincteurs.", - "de": "Feuerlöscher anzeigen.", + "fr": "Couche des extincteurs", + "de": "Feuerlöscher", "it": "Cartina degli estintori.", - "nl": "Kaart van brandblussers." + "nl": "Kaart van brandblussers", + "es": "Mapa de extintores" }, "minzoom": 14, "source": { @@ -28,7 +29,8 @@ "de": "Feuerlöscher", "it": "Estintori", "nl": "Brandblussers", - "ca": "Extintors" + "ca": "Extintors", + "es": "Extintores" } }, "description": { @@ -41,7 +43,8 @@ "de": "Kartenebene zur Anzeige von Hydranten.", "it": "Livello della mappa che mostra gli idranti antincendio.", "nl": "Kaartlaag met brandblussers.", - "da": "Kortlag til visning af ildslukkere." + "da": "Kortlag til visning af ildslukkere.", + "es": "Capa del mapa que muestra extintores." }, "tagRenderings": [ { @@ -54,7 +57,8 @@ "de": "Standort: {location}", "eo": "Loko: {location}", "it": "Posizione: {location}", - "nl": "Locatie: {location}" + "nl": "Locatie: {location}", + "es": "Localización: {location}" }, "question": { "en": "Where is it positioned?", @@ -64,7 +68,8 @@ "de": "Wo befindet er sich?", "it": "Dove è posizionato?", "nl": "Op welke locatie staat dit?", - "da": "Hvor er den placeret?" + "da": "Hvor er den placeret?", + "es": "¿Dónde se encuentra?" }, "mappings": [ { @@ -81,7 +86,8 @@ "de": "Im Innenraum vorhanden.", "it": "Si trova all’interno.", "nl": "In een gebouw.", - "da": "Findes indendørs." + "da": "Findes indendørs.", + "es": "Se encuentra en el interior." } }, { @@ -98,7 +104,8 @@ "de": "Im Außenraum vorhanden.", "it": "Si trova all’esterno.", "nl": "In open lucht.", - "da": "Findes udendørs." + "da": "Findes udendørs.", + "es": "Se encuentra en el exterior." } } ], @@ -119,10 +126,11 @@ "nb_NO": "en brannslukker", "ru": "Огнетушитель", "fr": "une extincteur", - "de": "eine feuerlöscher", + "de": "einen Feuerlöscher", "it": "una estintore", "nl": "een brandblusser", - "da": "en ildslukker" + "da": "en ildslukker", + "es": "un extintor" }, "description": { "en": "A fire extinguisher is a small, portable device used to stop a fire", @@ -132,7 +140,8 @@ "de": "Ein Feuerlöscher ist ein kleines, tragbares Gerät, das dazu dient, ein Feuer zu löschen", "it": "Un estintore è un dispositivo portatile di piccole dimensioni usato per spegnere un incendio", "nl": "Een brandblusser is een klein, draagbaar apparaat om een brand te blussen", - "da": "En ildslukker er en lille, bærbar beholder, der bruges til at stoppe en brand" + "da": "En ildslukker er en lille, bærbar beholder, der bruges til at stoppe en brand", + "es": "Un extintor es un dispositivo pequeño y portátil utilizado para parar un fuego" } } ], diff --git a/assets/layers/fire_station/fire_station.json b/assets/layers/fire_station/fire_station.json index 5a9b60cbec..3f90c34568 100644 --- a/assets/layers/fire_station/fire_station.json +++ b/assets/layers/fire_station/fire_station.json @@ -7,8 +7,9 @@ "it": "Mappa delle caserme dei vigili del fuoco", "ru": "Карта пожарных частей", "fr": "Couche des stations de pompiers", - "de": "Feuerwachen anzeigen", - "nl": "Kaart van de brandweerstations" + "de": "Feuerwachen", + "nl": "Kaart van de brandweerstations", + "es": "Mapa de parques de bomberos" }, "minzoom": 12, "source": { @@ -27,7 +28,8 @@ "it": "Caserma dei vigili del fuoco", "fr": "Station de pompiers", "de": "Feuerwache", - "nl": "Brandweerstation" + "nl": "Brandweerstation", + "es": "Parque de bomberos" } }, "description": { @@ -37,7 +39,8 @@ "ru": "Слой карты, отображающий пожарные части.", "fr": "Couche des stations de pompiers.", "de": "Kartenebene zur Darstellung von Feuerwachen.", - "nl": "Kaartlaag die de brandweerstations toont." + "nl": "Kaartlaag die de brandweerstations toont.", + "es": "Capa del mapa que muestra parques de bomberos." }, "tagRenderings": [ { @@ -51,8 +54,9 @@ "ru": "Как называется эта пожарная часть?", "it": "Come si chiama questa caserma dei vigili del fuoco?", "fr": "Quel est le nom de la station ?", - "de": "Wie lautet der Name dieser Feuerwache?", - "nl": "Wat is de naam van dit brandweerstation?" + "de": "Wie ist der Name der Feuerwache?", + "nl": "Wat is de naam van dit brandweerstation?", + "es": "¿Cual es el nombre de este parque de bomberos?" }, "render": { "en": "This station is called {name}.", @@ -61,7 +65,9 @@ "ru": "Эта часть называется {name}.", "fr": "Cette station s’appelle {name}.", "nb_NO": "Denne stasjonen heter {name}.", - "nl": "Dit station heet {name}." + "nl": "Dit station heet {name}.", + "de": "Der Name der Feuerwache ist {name}.", + "es": "Este parque de bomberos se llama {name}." } }, { @@ -75,7 +81,8 @@ "it": " Qual è il nome della via in cui si trova la caserma?", "ru": " По какому адресу расположена эта часть?", "fr": " Quel est le nom de la rue dans lequel elle se situe ?", - "nl": " Aan welke straat ligt dit station?" + "nl": " Aan welke straat ligt dit station?", + "de": " In welcher Straße ist die Feuerwache?" }, "render": { "en": "This station is along a highway called {addr:street}.", @@ -83,7 +90,8 @@ "ru": "Часть расположена вдоль шоссе {addr:street}.", "fr": "La station fait partie de la {addr:street}.", "it": "La stazione si trova in una strada chiamata {addr:street}.", - "nl": "Dit station ligt aan {addr:street}." + "nl": "Dit station ligt aan {addr:street}.", + "de": "Die Feuerwache liegt an der Straße namens {addr:street}." } }, { @@ -92,9 +100,10 @@ "en": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", "ja": "このステーションの住所は?(例: 地区、村、または町の名称)", "ru": "Где расположена часть? (напр., название населённого пункта)", - "fr": "Dans quelle localité la station est-elle située ?", + "fr": "Dans quelle localité la station est-elle située (p.ex. nom du quartier, village ou ville) ?", "it": "In che località si trova la stazione? (ad es. quartiere, paese o città)", - "nl": "Waar is dit station gelegen? (v.b. naam van de buurt, dorp of stad)" + "nl": "Waar is dit station gelegen? (v.b. naam van de buurt, dorp of stad)", + "de": "Wo befindet sich die Station? (z. B. Name des Viertels, des Dorfes oder der Stadt)" }, "freeform": { "key": "addr:place" @@ -105,7 +114,8 @@ "ru": "Эта часть расположена в {addr:place}.", "fr": "La station fait partie de {addr:place}.", "it": "La stazione si trova a {addr:place}.", - "nl": "Dit station ligt in {addr:place}." + "nl": "Dit station ligt in {addr:place}.", + "de": "Diese Station befindet sich innerhalb von {addr:place}." } }, { @@ -115,14 +125,18 @@ "ja": "このステーションを運営しているのはどこですか?", "fr": "Quel est l’exploitant de la station ?", "it": "Quale agenzia gestisce questa stazione?", - "nl": "Welk agentschap beheert dit station?" + "nl": "Welk agentschap beheert dit station?", + "de": "Welche Organisation betreibt diese Station?", + "es": "¿Que agencia opera este parque?" }, "render": { "en": "This station is operated by {operator}.", "ja": "このステーションは{operator}によって運営されています。", "fr": "Cette station est opérée par {operator}.", "it": "Questa stazione è gestita da {operator}.", - "nl": "Dit station wordt beheerd door {operator}." + "nl": "Dit station wordt beheerd door {operator}.", + "de": "Diese Station wird betrieben von {operator}.", + "es": "Este parque lo opera {operator}." }, "freeform": { "key": "operator" @@ -153,14 +167,16 @@ "ja": "ステーションの運営の分類は?", "fr": "Quel est le type d’exploitant ?", "it": "Com’è classificato il gestore di questa stazione?", - "nl": "Wat voor soort beheerder beheert dit station?" + "nl": "Wat voor soort beheerder beheert dit station?", + "de": "Wie kann der Betreiber der Feuerwache eingestuft werden?" }, "render": { "en": "The operator is a(n) {operator:type} entity.", "ja": "運営者は、{operator:type} です。", "fr": "L’exploitant est de type {operator:type}.", "it": "Il gestore è un ente {operator:type}.", - "nl": "De beheerder is een organisatie van type {operator:type} ." + "nl": "De beheerder is een organisatie van type {operator:type} .", + "de": "Der Betreiber ist {operator:type}." }, "freeform": { "key": "operator:type" @@ -178,7 +194,9 @@ "fr": "La station est opérée par le gouvernement.", "it": "Questa stazione è gestita dal governo.", "nb_NO": "Stasjonen drives av myndighetene.", - "nl": "Dit station wordt beheerd door de overheid." + "nl": "Dit station wordt beheerd door de overheid.", + "de": "Die Station wird von einer Behörde betrieben.", + "es": "Este parque de bomberos lo opera el gobierno." } }, { @@ -192,7 +210,8 @@ "ja": "任意団体やコミュニティが運営しているステーションである。", "fr": "La station est opérée par une organisation informelle.", "it": "Questa stazione è gestita dalla comunità oppure un’associazione informale.", - "nl": "Dit station wordt beheerd door een informele of gemeenschapsorganisatie." + "nl": "Dit station wordt beheerd door een informele of gemeenschapsorganisatie.", + "de": "Die Feuerwache wird von einer gemeinnützigen Organisation betrieben." } }, { @@ -206,7 +225,8 @@ "ja": "公益団体が運営しているステーションである。", "fr": "La station est opérée par un groupe officiel de bénévoles.", "it": "Questa stazione è gestita da un gruppo di volontari ufficiale.", - "nl": "Dit station wordt beheerd door een formele groep vrijwilligers." + "nl": "Dit station wordt beheerd door een formele groep vrijwilligers.", + "de": "Die Feuerwache wird von einer Freiwilligenorganisation betrieben." } }, { @@ -220,7 +240,8 @@ "ja": "個人が運営しているステーションである。", "fr": "La station est opérée par un groupe privé.", "it": "Questa stazione è gestita da privati.", - "nl": "Dit station wordt door private organisatie beheerd." + "nl": "Dit station wordt door private organisatie beheerd.", + "de": "Die Feuerwache wird von einer privaten Organisation betrieben." } } ] @@ -237,10 +258,11 @@ "ja": "消防署", "ru": "Пожарная часть", "fr": "une caserne de pompiers", - "de": "eine feuerwache", + "de": "eine Feuerwache", "it": "una caserma dei vigili del fuoco", "nb_NO": "en brannstasjon", - "nl": "een brandweerstation" + "nl": "een brandweerstation", + "es": "un parque de bomberos" }, "description": { "en": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", @@ -248,7 +270,8 @@ "fr": "Une caserne de pompiers est un lieu où les pompiers et leur équipements sont situés en dehors des missions.", "de": "Eine Feuerwache ist ein Ort, an dem die Feuerwehrfahrzeuge und die Feuerwehrleute untergebracht sind, wenn sie nicht im Einsatz sind.", "it": "Una caserma dei pompieri è un luogo dove si trovano i mezzi antincendio e i pompieri tra una missione e l’altra.", - "nl": "Een brandweerstation is een plaats waar brandweerwagens en brandweerlieden gebaseerd zijn." + "nl": "Een brandweerstation is een plaats waar brandweerwagens en brandweerlieden gebaseerd zijn.", + "es": "Un parque de bomberos es donde los bomberos y los camiones de incendios se encuentran cuando no están en uso." } } ], diff --git a/assets/layers/food/food.json b/assets/layers/food/food.json index aad336fac3..ba1cbfa7d5 100644 --- a/assets/layers/food/food.json +++ b/assets/layers/food/food.json @@ -1,10 +1,12 @@ { "id": "food", "name": { - "nl": "Eetgelegenheden", "en": "Restaurants and fast food", - "de": "Restaurants und Fast Food", - "da": "Restauranter og fastfood" + "nl": "Eetgelegenheden", + "de": "Restaurants und Imbisse", + "da": "Restauranter og fastfood", + "es": "Restaurantes y comida rápida", + "fr": "Restaurants et nourriture rapide" }, "source": { "osmTags": { @@ -21,8 +23,10 @@ "en": "a restaurant", "nl": "een restaurant", "ru": "ресторан", - "de": "eine restaurant", - "ca": "un restaurant" + "de": "ein Restaurant", + "ca": "un restaurant", + "es": "un restaurante", + "fr": "un restaurant" }, "tags": [ "amenity=restaurant" @@ -30,7 +34,9 @@ "description": { "nl": "Een eetgegelegenheid waar je aan tafel wordt bediend", "en": "A formal eating place with sit-down facilities selling full meals served by waiters", - "de": "Ein klassisches Speiselokal mit Sitzgelegenheiten, in dem vollständige Mahlzeiten von Kellnern serviert werden" + "de": "Ein klassisches Speiselokal mit Sitzgelegenheiten, in dem vollständige Mahlzeiten von Kellnern serviert werden", + "es": "Un lugar de comidas formal, con mesas y sillas y que vende comidas completas servidas por camareros", + "fr": "Un lieu de restauration formel avec des installations pour s'asseoir vendant des repas complets servis par des serveurs" }, "preciseInput": { "preferredBackground": "map" @@ -41,8 +47,9 @@ "en": "a fastfood", "nl": "een fastfood-zaak", "ru": "быстрое питание", - "de": "eine schnellimbiss", - "ca": "un de menjar ràpid" + "de": "ein Schnellimbiss", + "ca": "un de menjar ràpid", + "fr": "un fast-food" }, "tags": [ "amenity=fast_food" @@ -50,7 +57,9 @@ "description": { "nl": "Een zaak waar je snel bediend wordt, vaak met de focus op afhalen. Zitgelegenheid is eerder beperkt (of zelfs afwezig)", "en": "A food business concentrating on fast counter-only service and take-away food", - "de": "Ein Lebensmittelunternehmen, das sich auf schnellen Thekendienst und Essen zum Mitnehmen konzentriert" + "de": "Ein Lebensmittelunternehmen, das sich auf schnellen Thekendienst und Essen zum Mitnehmen konzentriert", + "es": "Un negocio de comida centrado en servicio rápido solo en mostrador y comida para llevar", + "fr": "Une entreprise alimentaire se concentrant sur le service rapide au comptoir et les plats à emporter" }, "preciseInput": { "preferredBackground": "map" @@ -60,7 +69,8 @@ "title": { "en": "a fries shop", "nl": "een frituur", - "de": "eine pommesbude" + "de": "eine Pommesbude", + "fr": "Une friterie" }, "tags": [ "amenity=fast_food", @@ -68,7 +78,9 @@ ], "description": { "en": "A fastfood-business focused on french fries", - "nl": "Een fastfood-zaak waar je frieten koopt" + "nl": "Een fastfood-zaak waar je frieten koopt", + "de": "Eine Pommesbude", + "fr": "Une restauration rapide centré sur la vente de frites" }, "preciseInput": { "preferredBackground": "map" @@ -80,7 +92,9 @@ "en": "Restaurant", "nl": "Eetgelegenheid", "ca": "Restaurant", - "de": "Restaurant" + "de": "Restaurant", + "es": "Restaurante", + "fr": "Restaurant" }, "mappings": [ { @@ -94,7 +108,9 @@ "nl": "Restaurant {name}", "en": "Restaurant {name}", "de": "Restaurant {name}", - "ca": "Restaurant {name}" + "ca": "Restaurant {name}", + "es": "Restaurante {name}", + "fr": "Restaurant {name}" } }, { @@ -107,8 +123,10 @@ "then": { "nl": "Fastfood-zaak {name}", "en": "Fastfood {name}", - "de": "Schnellrestaurant{name}", - "ca": "Lloc de menjar ràpid {name}" + "de": "Schnellimbiss {name}", + "ca": "Lloc de menjar ràpid {name}", + "es": "Comida rápida {name}", + "fr": "Fast-food {name}" } }, { @@ -120,24 +138,31 @@ "then": { "nl": "Fastfood-zaak", "en": "Fastfood", - "de": "Schnellrestaurant", - "ca": "Menjar ràpid" + "de": "Schnellimbiss", + "ca": "Menjar ràpid", + "es": "Comida rápida", + "fr": "Fast-food" } } ] }, "tagRenderings": [ "images", + "level", { "question": { "nl": "Wat is de naam van deze eetgelegenheid?", "en": "What is the name of this restaurant?", - "de": "Wie heißt dieses Restaurant?" + "de": "Wie heißt dieses Restaurant?", + "es": "¿Cual es el nombre de este restaurante?", + "fr": "Quel est le nom de ce restaurant ?" }, "render": { "nl": "De naam van deze eetgelegeheid is {name}", "en": "The name of this restaurant is {name}", - "de": "Das Restaurant heißt {name}" + "de": "Das Restaurant heißt {name}", + "es": "El nombre de este restaurante es {name}", + "fr": "Le nom de ce restaurant est {name}" }, "freeform": { "key": "name" @@ -148,21 +173,29 @@ "question": { "en": "What type of business is this?", "nl": "Wat voor soort zaak is dit?", - "de": "Um was für ein Geschäft handelt es sich?" + "de": "Um was für einen Ort handelt es sich?", + "es": "¿Qué tipo de negocio es este?", + "fr": "Quel type de restaurant est-ce ?" }, "mappings": [ { "if": "amenity=fast_food", "then": { - "en": "This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.", - "nl": "Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel" + "en": "This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.", + "nl": "Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel.", + "de": "Es handelt sich um einen Schnellimbiss, mit Fokus auf schnelle Bedienung am Tresen. Sitzmöglichkeiten sind begrenzt und funktional.", + "es": "Este es un negocio de comida rápida, centrado en servicio rápido. Si hay asientos disponibles, son más bien limitados y funcionales.", + "fr": "C'est un fast-food, centrée sur le service rapide. Si des places sont disponibles, elles sont plutôt limitées et fonctionnelles." } }, { "if": "amenity=restaurant", "then": { - "en": "A restaurant, focussed on creating a nice experience where one is served at the table", - "nl": "Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend" + "en": "A restaurant, focused on creating a nice experience where one is served at the table", + "nl": "Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend", + "de": "Es handelt sich um ein Restaurant, mit Fokus auf eine nette Atmosphäre und Tischbedienung", + "es": "Un restaurante, centrado en crear una buena experiencia donde se sirve en la mesa", + "fr": "Un restaurant, axé sur la création d'une expérience agréable où l'on est servi à table" } } ], @@ -178,12 +211,16 @@ "question": { "nl": "Welk soort gerechten worden hier geserveerd?", "en": "Which food is served here?", - "de": "Welches Essen gibt es hier?" + "de": "Welches Essen gibt es hier?", + "es": "¿Qué comida se sirve aquí?", + "fr": "Quelle type de nourriture est servie ici ?" }, "render": { "nl": "Deze plaats serveert vooral {cuisine}", "en": "This place mostly serves {cuisine}", - "de": "An diesem Ort gibt es hauptsächlich {cuisine}" + "de": "An diesem Ort gibt es hauptsächlich {cuisine}", + "es": "Aquí se sirve principalmente {cuisine}", + "fr": "Cet endroit sert principalement des plats {cuisine}" }, "freeform": { "key": "cuisine", @@ -197,7 +234,9 @@ "then": { "en": "This is a pizzeria", "nl": "Dit is een pizzeria", - "de": "Dies ist eine Pizzeria" + "de": "Dies ist eine Pizzeria", + "es": "Esto es una pizzería", + "fr": "C'est une pizzéria" } }, { @@ -205,7 +244,8 @@ "then": { "en": "This is a friture", "nl": "Dit is een frituur", - "de": "Dies ist eine Pommesbude" + "de": "Dies ist eine Pommesbude", + "fr": "C'est une friterie" } }, { @@ -213,91 +253,127 @@ "then": { "en": "Mainly serves pasta", "nl": "Dit is een pastazaak", - "de": "Bietet vorwiegend Pastagerichte an" + "de": "Bietet vorwiegend Pastagerichte an", + "es": "Principalmente sirve pasta", + "fr": "Restaurant Italien" } }, { "if": "cuisine=kebab", "then": { "en": "This is kebab shop", - "nl": "Dit is een kebabzaak" + "nl": "Dit is een kebabzaak", + "de": "Das ist ein Dönerladen", + "es": "Esta es una tienda de kebak", + "fr": "C'est un resto kebab" } }, { "if": "cuisine=sandwich", "then": { "en": "This is a sandwichbar", - "nl": "Dit is een broodjeszaak" + "nl": "Dit is een broodjeszaak", + "de": "Dies ist ein Sandwichladen", + "fr": "C'est une sandwicherie" } }, { "if": "cuisine=burger", "then": { "en": "Burgers are served here", - "nl": "Dit is een hamburgerrestaurant" + "nl": "Dit is een hamburgerrestaurant", + "de": "Hier werden Burger serviert", + "es": "Aquí se sirven hamburguesas", + "fr": "Des hamburgers sont servis ici" } }, { "if": "cuisine=sushi", "then": { "en": "Sushi is served here", - "nl": "Dit is een sushirestaurant" + "nl": "Dit is een sushirestaurant", + "de": "Hier wird Sushi serviert", + "es": "Aquí se sirve sushi", + "fr": "Des sushis sont servis ici" } }, { "if": "cuisine=coffee", "then": { "en": "Coffee is served here", - "nl": "Dit is een koffiezaak" + "nl": "Dit is een koffiezaak", + "de": "Hier wird Kaffee serviert", + "es": "Aquí se sirve café", + "fr": "Ceci est un café" } }, { "if": "cuisine=italian", "then": { "en": "This is an italian restaurant (which serves more then pasta and pizza)", - "nl": "Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)" + "nl": "Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)", + "de": "Dies ist ein italienisches Restaurant (das mehr als nur Pasta und Pizza serviert)", + "es": "Este es un restaurante italiano (que sirve más que pasta y pizza)", + "fr": "C'est un Restaurant Italien (qui sert plus que des pâtes et des pizzas)" } }, { "if": "cuisine=french", "then": { "en": "French dishes are served here", - "nl": "Dit is een Frans restaurant" + "nl": "Dit is een Frans restaurant", + "de": "Hier werden französische Gerichte serviert", + "es": "Aquí se sirven platos Franceses", + "fr": "Des plats français sont servis ici" } }, { "if": "cuisine=chinese", "then": { "en": "Chinese dishes are served here", - "nl": "Dit is een Chinees restaurant" + "nl": "Dit is een Chinees restaurant", + "de": "Hier werden chinesische Gerichte serviert", + "es": "Aquí se sirven platos Chinos", + "fr": "Des plats chinois sont servis ici" } }, { "if": "cuisine=greek", "then": { "en": "Greek dishes are served here", - "nl": "Dit is een Grieks restaurant" + "nl": "Dit is een Grieks restaurant", + "de": "Hier werden griechische Gerichte serviert", + "es": "Aquí se sirven platos Griegos", + "fr": "Des plats grecs sont servis ici" } }, { "if": "cuisine=indian", "then": { "en": "Indian dishes are served here", - "nl": "Dit is een Indisch restaurant" + "nl": "Dit is een Indisch restaurant", + "de": "Hier werden indische Gerichte serviert", + "es": "Aquí se sirven platos Indios", + "fr": "Des plats indiens sont servis ici" } }, { "if": "cuisine=turkish", "then": { "en": "Turkish dishes are served here", - "nl": "Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)" + "nl": "Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)", + "de": "Hier werden türkische Gerichte serviert", + "es": "Aquí se sirven platos Turcos", + "fr": "Des plats turcs sont servis ici" } }, { "if": "cuisine=thai", "then": { "en": "Thai dishes are served here", - "nl": "Dit is een Thaïs restaurant" + "nl": "Dit is een Thaïs restaurant", + "de": "Hier werden thailändische Gerichte serviert", + "fr": "Des plats thaïlandais sont servis ici" } } ], @@ -306,8 +382,10 @@ { "question": { "nl": "Biedt deze zaak een afhaalmogelijkheid aan?", - "en": "Does this place offer takea-way?", - "de": "Ist an diesem Ort Mitnahme möglich?" + "en": "Does this place offer take-away?", + "de": "Werden Gerichte zum Mitnehmen angeboten?", + "es": "¿Este lugar ofrece para llevar?", + "fr": "Cet établissement propose-t-il des plats à emporter ?" }, "mappings": [ { @@ -315,7 +393,9 @@ "then": { "en": "This is a take-away only business", "nl": "Hier is enkel afhaal mogelijk", - "de": "Dieses Geschäft bietet nur Artikel zur Mitnahme an" + "de": "Hier werden Gerichte ausschließlich zum Mitnehmen angeboten", + "es": "Este es un negocio solo para pedir para llevar", + "fr": "Ceci est un resto uniquement de vente à emporter" } }, { @@ -323,7 +403,9 @@ "then": { "en": "Take-away is possible here", "nl": "Eten kan hier afgehaald worden", - "de": "Mitnahme möglich" + "de": "Hier werden Gerichte auch zum Mitnehmen angeboten", + "es": "Aquí es posible pedir para llevar", + "fr": "La vente à emporter est possible ici" } }, { @@ -331,45 +413,90 @@ "then": { "en": "Take-away is not possible here", "nl": "Hier is geen afhaalmogelijkheid", - "de": "Mitnahme nicht möglich" + "de": "Hier werden Gerichte nicht zum Mitnehmen angeboten", + "es": "Aquí no es posible pedir para llevar", + "fr": "La vente à emporter n'est pas possible ici" } } ], "id": "Takeaway" }, + { + "id": "delivery", + "question": { + "en": "Delivers {title()} their food at home?", + "de": "Liefert {title()} ihr Essen nach Hause?", + "nl": "Levert {title()} aan huis?", + "fr": "Est-ce que {title()} livre sa nourriture à domicile ?" + }, + "mappings": [ + { + "if": "delivery=yes", + "then": { + "en": "This business does home delivery (eventually via a third party)", + "de": "Dieses Unternehmen liefert nach Hause (eventuell über eine dritte Partei)", + "fr": "Ce restaurant effectue la livraison à domicile (éventuellement via un tiers)", + "nl": "Deze zaak levert aan huis (eventueel via een derde partij)" + } + }, + { + "if": "delivery=no", + "then": { + "en": "This business does not deliver at home", + "de": "Dieses Unternehmen liefert nicht nach Hause", + "fr": "Ce restaurant ne livre pas à domicile", + "nl": "Deze zaak doet geen thuisleveringen" + } + } + ] + }, { "question": { "nl": "Heeft deze eetgelegenheid een vegetarische optie?", "en": "Does this restaurant have a vegetarian option?", - "de": "Gibt es im das Restaurant vegetarische Speisen?" + "de": "Werden hier vegetarische Gerichte angeboten?", + "es": "¿Este restaurante tiene una opción vegetariana?", + "fr": "Ce restaurant propose-t-il une option végétarienne ?" }, "mappings": [ { "if": "diet:vegetarian=no", "then": { "en": "No vegetarian options are available", - "nl": "Geen vegetarische opties beschikbaar" + "nl": "Geen vegetarische opties beschikbaar", + "de": "Hier werden keine vegetarischen Gerichte angeboten", + "es": "Sin opciones vegetarianas", + "fr": "Aucune option végétarienne n'est disponible" } }, { "if": "diet:vegetarian=limited", "then": { "en": "Some vegetarian options are available", - "nl": "Beperkte vegetarische opties zijn beschikbaar" + "nl": "Beperkte vegetarische opties zijn beschikbaar", + "de": "Hier werden nur wenige vegetarische Gerichte angeboten", + "es": "Algunas opciones vegetarianas", + "fr": "Certaines options végétariennes sont disponibles" } }, { "if": "diet:vegetarian=yes", "then": { "en": "Vegetarian options are available", - "nl": "Vegetarische opties zijn beschikbaar" + "nl": "Vegetarische opties zijn beschikbaar", + "de": "Hier werden vegetarische Gerichte angeboten", + "es": "Opciones vegetarianas disponibles", + "fr": "Des options végétariennes sont disponibles" } }, { "if": "diet:vegetarian=only", "then": { "en": "All dishes are vegetarian", - "nl": "Enkel vegetarische opties zijn beschikbaar" + "nl": "Enkel vegetarische opties zijn beschikbaar", + "de": "Hier werden ausschließlich vegetarische Gerichte angeboten", + "es": "Todos los platos son vegetarianos", + "fr": "Tous les plats sont végétariens" } } ], @@ -379,35 +506,50 @@ { "question": { "en": "Does this business serve vegan meals?", - "nl": "Heeft deze eetgelegenheid een veganistische optie?" + "nl": "Heeft deze eetgelegenheid een veganistische optie?", + "de": "Werden hier vegane Gerichte angeboten?", + "es": "¿Este negocio sirve comida vegana?", + "fr": "Cet établissement sert-il des repas végétaliens ?" }, "mappings": [ { "if": "diet:vegan=no", "then": { "en": "No vegan options available", - "nl": "Geen veganistische opties beschikbaar" + "nl": "Geen veganistische opties beschikbaar", + "de": "Hier werden keine veganen Gerichte angeboten", + "es": "Sin opciones veganas disponibles", + "fr": "Aucune option végétalienne disponible" } }, { "if": "diet:vegan=limited", "then": { "en": "Some vegan options are available", - "nl": "Beperkte veganistische opties zijn beschikbaar" + "nl": "Beperkte veganistische opties zijn beschikbaar", + "de": "Hier werden nur wenige vegane Gerichte angeboten", + "es": "Alguna opciones veganas disponibles", + "fr": "Certaines options végétaliennes sont disponibles" } }, { "if": "diet:vegan=yes", "then": { "en": "Vegan options are available", - "nl": "Veganistische opties zijn beschikbaar" + "nl": "Veganistische opties zijn beschikbaar", + "de": "Hier werden vegane Gerichte angeboten", + "es": "Opciones veganas disponibles", + "fr": "Des options végétaliennes sont disponibles" } }, { "if": "diet:vegan=only", "then": { "en": "All dishes are vegan", - "nl": "Enkel veganistische opties zijn beschikbaar" + "nl": "Enkel veganistische opties zijn beschikbaar", + "de": "Hier werden ausschließlich vegane Gerichte angeboten", + "es": "Todos los platos son veganos", + "fr": "Tous les plats sont végétaliens" } } ], @@ -418,7 +560,8 @@ "question": { "en": "Does this restaurant offer a halal menu?", "nl": "Heeft dit restaurant halal opties?", - "de": "Gibt es im das Restaurant halal Speisen?" + "de": "Werden hier halal Gerichte angeboten?", + "fr": "Ce restaurant propose-t-il un menu halal ?" }, "mappings": [ { @@ -426,7 +569,8 @@ "then": { "en": "There are no halal options available", "nl": "Er zijn geen halal opties aanwezig", - "de": "Hier gibt es keine halal Speisen" + "de": "Hier werden keine halal Gerichte angeboten", + "fr": "Il n'y a pas d'options halal disponibles" } }, { @@ -434,7 +578,8 @@ "then": { "en": "There is a small halal menu", "nl": "Er zijn een beperkt aantal halal opties", - "de": "Hier gibt es wenige halal Speisen" + "de": "Hier werden nur wenige halal Gerichte angeboten", + "fr": "Il y a un petit menu halal" } }, { @@ -442,7 +587,8 @@ "then": { "nl": "Halal menu verkrijgbaar", "en": "There is a halal menu", - "de": "Es gibt halal Speisen" + "de": "Hier werden halal Gerichte angeboten", + "fr": "Il y a un menu halal" } }, { @@ -450,7 +596,8 @@ "then": { "nl": "Enkel halal opties zijn beschikbaar", "en": "Only halal options are available", - "de": "Es gibt ausschließlich halal Speisen" + "de": "Hier werden ausschließlich halal Gerichte angeboten", + "fr": "Seules les options halal sont disponibles" } } ], @@ -471,7 +618,8 @@ "then": { "en": "Vegetarian snacks are available", "nl": "Er zijn vegetarische snacks aanwezig", - "fr": "Des collations végétariens sont disponibles" + "fr": "Des collations végétariens sont disponibles", + "de": "Vegetarische Snacks sind erhältlich" } }, { @@ -479,7 +627,8 @@ "then": { "en": "Only a small selection of snacks are vegetarian", "nl": "Slechts enkele vegetarische snacks", - "fr": "Quelques snacks végétariens seulement" + "fr": "Quelques snacks végétariens seulement", + "de": "Nur eine kleine Auswahl an Snacks ist vegetarisch" } }, { @@ -487,7 +636,8 @@ "then": { "en": "No vegetarian snacks are available", "nl": "Geen vegetarische snacks beschikbaar", - "fr": "Pas d'en-cas végétariens disponibles" + "fr": "Pas d'en-cas végétariens disponibles", + "de": "Es sind keine vegetarischen Snacks erhältlich" } } ], @@ -498,7 +648,8 @@ "question": { "en": "Does this fries shop have vegan snacks?", "nl": "Heeft deze frituur veganistische snacks?", - "fr": "Cette friterie est-elle équipée de snacks végétaliens ?" + "fr": "Cette friterie est-elle équipée de snacks végétaliens ?", + "de": "Gibt es in dieser Pommesbude auch vegane Snacks?" }, "mappings": [ { @@ -506,7 +657,8 @@ "then": { "en": "Vegan snacks are available", "nl": "Er zijn veganistische snacks aanwezig", - "fr": "Des collations végétaliens sont disponibles" + "fr": "Des collations végétaliens sont disponibles", + "de": "Vegane Snacks sind erhältlich" } }, { @@ -514,7 +666,8 @@ "then": { "en": "A small selection of vegan snacks are available", "nl": "Slechts enkele veganistische snacks", - "fr": "Quelques snacks végétaliens seulement" + "fr": "Quelques snacks végétaliens seulement", + "de": "Eine kleine Auswahl an veganen Snacks ist verfügbar" } }, { @@ -522,7 +675,8 @@ "then": { "en": "No vegan snacks are available", "nl": "Geen veganistische snacks beschikbaar", - "fr": "Pas d'en-cas végétaliens disponibles" + "fr": "Pas d'en-cas végétaliens disponibles", + "de": "Es sind keine veganen Snacks verfügbar" } } ], @@ -531,25 +685,30 @@ { "id": "friture-oil", "question": { - "en": "Does this fries shop use vegetable or animal cooking?", + "en": "Does this fries shop use vegetable or animal oil for cooking?", "nl": "Bakt deze frituur met dierlijk vet of met plantaardige olie?", - "fr": "Cette friteuse fonctionne-t-elle avec de la graisse animale ou végétale ?" + "fr": "Cette friteuse fonctionne-t-elle avec de la graisse animale pour la cuisson ?", + "de": "Wird in dieser Pommesbude pflanzliches oder tierisches Fett zum Frittieren verwendet?" }, "mappings": [ { "if": "friture:oil=vegetable", "then": { - "en": "Vegetable oil", + "en": "The frying is done with vegetable oil", "nl": "Bakt in plantaardige olie", - "fr": "Huile végétale" + "fr": "La friture est faite avec de l'huile végétale", + "de": "Es wird pflanzliches Fett zum Frittieren verwendet", + "es": "Aceite vegetal" } }, { "if": "friture:oil=animal", "then": { - "en": "Animal oil", + "en": "The frying is done with animal oil", "nl": "Dierlijk vet", - "fr": "Graisse animale" + "fr": "La friture est faite avec de la graisse animale", + "de": "Es wird tierisches Fett zum Frittieren verwendet", + "es": "Aceite animal" } } ], @@ -562,7 +721,8 @@ "fr": "Est-il proposé d’utiliser ses propres contenants pour sa commande ?
", "en": "If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
", "ja": "お客様が持参容器(調理用の鍋や小さな鍋など)をもってきた場合は、注文の梱包に使用されますか?
", - "de": "Wenn Sie Ihr eigenes Behältnis mitbringen (z. B. einen Kochtopf und kleine Töpfe), wird es dann zum Verpacken Ihrer Bestellung verwendet?
" + "de": "Wenn Sie Ihr eigenes Behältnis mitbringen (z. B. einen Kochtopf und kleine Töpfe), wird es dann zum Verpacken Ihrer Bestellung verwendet?
", + "es": "Si traes tu propio recipiente (como ollas de cocina y ollas pequeñas), ¿se utiliza para empaquetar tu pedido?
" }, "mappings": [ { @@ -572,7 +732,8 @@ "fr": "Vous pouvez apporter vos contenants pour votre commande, limitant l’usage de matériaux à usage unique et les déchets", "en": "You can bring your own containers to get your order, saving on single-use packaging material and thus waste", "ja": "自分の容器を持ってきて、注文を受け取ることができ、使い捨ての梱包材を節約して、無駄を省くことができます", - "de": "Sie können ihre eigenen Behälter mitbringen, um Ihre Bestellung zu erhalten, was Einwegverpackungsmaterial und damit Abfall spart" + "de": "Sie können ihre eigenen Behälter mitbringen, um Ihre Bestellung zu erhalten, was Einwegverpackungsmaterial und damit Abfall spart", + "es": "Puedes traer tus propios recipientes para recoger tu pedido, ahorrando material de un solo uso y por tanto basura" } }, { @@ -583,7 +744,8 @@ "en": "Bringing your own container is not allowed", "ja": "独自の容器を持参することはできません", "ru": "Приносить свою тару не разрешено", - "de": "Das Mitbringen eines eigenen Containers ist nicht erlaubt" + "de": "Das Mitbringen eines eigenen Containers ist nicht erlaubt", + "es": "Traer tu propio recipiente no está permitido" } }, { @@ -592,8 +754,9 @@ "nl": "Je moet je eigen containers meenemen om je bestelling in mee te nemen.", "en": "You must bring your own container to order here.", "ja": "自身の容器が注文に必要。", - "fr": "Il est obligatoire d’apporter ses propres contenants", - "de": "Sie müssen Ihren eigenen Behälter mitbringen, um hier zu bestellen." + "fr": "Il est obligatoire d’apporter ses propres contenants.", + "de": "Sie müssen Ihren eigenen Behälter mitbringen, um hier zu bestellen.", + "es": "Debes de traer tu propio recipiente para pedir aquí." } } ], @@ -612,7 +775,9 @@ "en": "Opened now", "nl": "Nu geopened", "de": "Aktuell geöffnet", - "ca": "Obert ara" + "ca": "Obert ara", + "es": "Abierta ahora", + "fr": "Ouvert maintenant" }, "osmTags": "_isOpen=yes" } @@ -625,7 +790,9 @@ "question": { "en": "Has a vegetarian menu", "nl": "Heeft een vegetarisch menu", - "de": "Vegetarische Gerichte im Angebot" + "de": "Vegetarische Gerichte im Angebot", + "es": "Tiene menú vegetariano", + "fr": "A un menu végétarien" }, "osmTags": { "or": [ @@ -645,7 +812,9 @@ "question": { "en": "Has a vegan menu", "nl": "Heeft een veganistisch menu", - "de": "Vegane Gerichte im Angebot" + "de": "Vegane Gerichte im Angebot", + "es": "Tiene menú vegano", + "fr": "A un menu végétalien" }, "osmTags": { "or": [ @@ -664,7 +833,9 @@ "en": "Has a halal menu", "nl": "Heeft een halal menu", "de": "Halal Gerichte im Angebot", - "da": "Har en halalmenu" + "da": "Har en halalmenu", + "es": "Tiene menú halah", + "fr": "A un menu halal" }, "osmTags": { "or": [ @@ -681,7 +852,11 @@ { "osmTags": "payment:cash=yes", "question": { - "en": "Accepts cash" + "en": "Accepts cash", + "de": "Akzeptiert Bargeld", + "es": "Acepta efectivo", + "nl": "Accepteert cash", + "fr": "Accepte les paiements en espèces" } } ] @@ -692,13 +867,37 @@ { "osmTags": "payment:cards=yes", "question": { - "en": "Accepts payment cards" + "en": "Accepts payment cards", + "de": "Akzeptiert Kartenzahlung", + "es": "Acepta tarjetas de pago", + "nl": "Accepteert betaalkaarten", + "fr": "Accepte les cartes de paiement" } } ] } ], "deletion": { + "nonDeleteMappings": [ + { + "if": "amenity=pub", + "then": { + "en": "This is actually a pub", + "de": "Dies ist eigentlich eine Kneipe", + "fr": "C'est en fait un bar", + "nl": "Dit is eigenlijk een bruin cafe of kroeg" + } + }, + { + "if": "amenity=cafe", + "then": { + "en": "This is actually a cafe", + "de": "Dies ist eigentlich ein Café", + "fr": "C'est en fait un café", + "nl": "Dit is eigenlijk een cafe (een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen)" + } + } + ], "softDeletionTags": { "and": [ "amenity=", @@ -709,7 +908,10 @@ { "explanation": { "nl": "{title()} is permanent gestopt", - "en": "{title()} has closed down permanently" + "en": "{title()} has closed down permanently", + "de": "{title()} wurde dauerhaft geschlossen", + "es": "{title()} ha cerrado permanentemente", + "fr": "{title()} a fermé définitivement" }, "changesetMessage": "shop_closed" } @@ -769,6 +971,9 @@ ], "description": { "en": "A layer showing restaurants and fast-food amenities (with a special rendering for friteries)", - "nl": "Een laag die restaurants en fast food toont (met een speciale weergave van frituren)" + "nl": "Een laag die restaurants en fast food toont (met een speciale weergave van frituren)", + "de": "Eine Ebene mit Restaurants und Fast-Food-Einrichtungen (mit speziellem Rendering für Pommesbuden)", + "es": "Una capa que muestra restaurantes y facilidades de comida rápida", + "fr": "Un claque montrant les restaurants et les endroits de nourriture rapide (avec un rendu spécial pour les friteries)" } } \ No newline at end of file diff --git a/assets/layers/ghost_bike/ghost_bike.json b/assets/layers/ghost_bike/ghost_bike.json index 550daa9c24..4a63f174e2 100644 --- a/assets/layers/ghost_bike/ghost_bike.json +++ b/assets/layers/ghost_bike/ghost_bike.json @@ -135,14 +135,14 @@ }, { "question": { - "en": "On what webpage can one find more information about the Ghost bike or the accident?", + "en": "On what webpage can one find more info about the ghost bike or the accident?", "nl": "Op welke website kan men meer informatie vinden over de Witte fiets of over het ongeval?", "de": "Auf welcher Webseite kann man mehr Informationen über das Geisterrad oder den Unfall finden?", "it": "In quale pagina web si possono trovare informazioni sulla bici fantasma o l’incidente?", "fr": "Sur quelle page web peut-on trouver plus d'informations sur le Vélo fantôme ou l'accident ?" }, "render": { - "en": "More information is available", + "en": "More info available", "nl": "Meer informatie", "de": "Mehr Informationen", "it": "Sono disponibili ulteriori informazioni", diff --git a/assets/layers/governments/government.svg b/assets/layers/governments/government.svg new file mode 100644 index 0000000000..7a0577c173 --- /dev/null +++ b/assets/layers/governments/government.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/assets/layers/governments/governments.json b/assets/layers/governments/governments.json new file mode 100644 index 0000000000..6ef649bc91 --- /dev/null +++ b/assets/layers/governments/governments.json @@ -0,0 +1,74 @@ +{ + "id": "governments", + "name": { + "en": "governments", + "de": "Öffentliche Verwaltung", + "nl": "Overheidsdiensten" + }, + "description": { + "en": "This layer show governmental buildings. It was setup as commissioned layer for the client of OSOC '22", + "de": "Diese Ebene zeigt Gebäude der öffentlichen Verwaltung. Sie wurde im Auftrag für den Kunden von OSOC '22 erstellt", + "nl": "Deze laag toont overheidsgebouwen. Opgezet voor OSOC '22" + }, + "source": { + "osmTags": { + "or": [ + "office=government" + ] + } + }, + "title": { + "render": { + "en": "Governmental Office {name}", + "de": "Behörde {name}", + "nl": "Overheidsdienst {name}" + } + }, + "minzoom": 13, + "tagRenderings": [ + "images", + "phone", + "email", + "website", + { + "question": { + "en": "What is the name of this Governmental Office?", + "de": "Wie lautet der Name dieser Behörde?", + "nl": "Wat is de naam van deze overheidsdienst?" + }, + "render": { + "en": "This Governmental Office is called {name}", + "de": "Der Name der Behörde lautet {name}", + "nl": "Deze overheidsdienst heet {name}" + }, + "freeform": { + "key": "name" + }, + "id": "name" + } + ], + "presets": [ + { + "title": { + "en": "a Governmental Office", + "de": "ein Büro der öffentlichen Verwaltung", + "nl": "een overheidsdienst" + }, + "tags": [ + "office=government" + ] + } + ], + "mapRendering": [ + { + "icon": { + "render": "circle:white;./assets/layers/governments/government.svg" + }, + "iconSize": "40,40,center", + "location": [ + "point", + "centroid" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/governments/license_info.json b/assets/layers/governments/license_info.json new file mode 100644 index 0000000000..3281710ec6 --- /dev/null +++ b/assets/layers/governments/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "government.svg", + "license": "CC0", + "authors": [ + "OSM Carto" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Office-16.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/gps_track/gps_track.json b/assets/layers/gps_track/gps_track.json index 18a4d83b3f..4c159671f7 100644 --- a/assets/layers/gps_track/gps_track.json +++ b/assets/layers/gps_track/gps_track.json @@ -16,7 +16,8 @@ "render": { "en": "This is the path you've travelled since this website is opened. Don't worry - this is only visible to you and no one else. Your location data is never sent off-device.", "nl": "Dit is waar je was sinds je deze website hebt geopened. Dit is enkel zichtbaar voor jou en niemand anders, je locatie wordt niet verstuurd", - "de": "Dies ist der Weg, den Sie seit dem Besuch dieser Webseite zurückgelegt haben. Keine Sorge - diese Daten sind nur für Sie sichtbar und für niemanden sonst. Ihre Standortdaten werden niemals an ein anderes Gerät gesendet." + "de": "Dies ist der Weg, den Sie seit dem Besuch dieser Webseite zurückgelegt haben. Keine Sorge - diese Daten sind nur für Sie sichtbar und für niemanden sonst. Ihre Standortdaten werden niemals an ein anderes Gerät gesendet.", + "fr": "C'est le chemin que vous avez parcouru depuis l'ouverture de ce site. Ne vous inquiétez pas - ceci n'est visible que pour vous et personne d'autre. Vos données de localisation ne sont jamais envoyées hors de l'appareil." } }, "export_as_gpx", @@ -30,7 +31,8 @@ "name": { "en": "Your travelled track", "nl": "Jouw afgelegde route", - "de": "Zurückgelegte Strecke anzeigen" + "de": "Zurückgelegte Strecke anzeigen", + "fr": "Votre chemin parcouru" }, "mapRendering": [ { diff --git a/assets/layers/grass_in_parks/grass_in_parks.json b/assets/layers/grass_in_parks/grass_in_parks.json index cff3988582..90a4923781 100644 --- a/assets/layers/grass_in_parks/grass_in_parks.json +++ b/assets/layers/grass_in_parks/grass_in_parks.json @@ -62,7 +62,8 @@ } ], "description": { - "en": "Searches for all accessible grass patches within public parks - these are 'groenzones'\"", - "nl": "Dit zoekt naar alle toegankelijke grasvelden binnen publieke parken - dit zijn 'groenzones'" + "en": "Searches for all accessible grass patches within public parks - these are 'groenzones'", + "nl": "Dit zoekt naar alle toegankelijke grasvelden binnen publieke parken - dit zijn 'groenzones'", + "de": "Sucht nach allen zugänglichen Grasflächen in öffentlichen Parks - dies sind 'Grünzonen'" } } \ No newline at end of file diff --git a/assets/layers/hackerspace/hackerspace.json b/assets/layers/hackerspace/hackerspace.json index 3a360fbbbd..13f36639bd 100644 --- a/assets/layers/hackerspace/hackerspace.json +++ b/assets/layers/hackerspace/hackerspace.json @@ -5,7 +5,9 @@ "de": "Hackerspaces", "ru": "Хакерспейс", "zh_Hant": "駭客空間", - "hu": "Hackerspace" + "hu": "Hackerspace", + "es": "Espacio hacker", + "nl": "Hackerspace" }, "minzoom": 8, "title": { @@ -14,7 +16,9 @@ "de": "Hackerspace", "ru": "Хакерспейс", "zh_Hant": "駭客空間", - "hu": "Hackerspace" + "hu": "Hackerspace", + "es": "Espacio Hacker", + "nl": "Hackerspace" }, "mappings": [ { @@ -29,7 +33,9 @@ "ru": " {name}", "zh_Hant": " {name}", "hu": " {name}", - "ca": " {name}" + "ca": " {name}", + "es": " {name}", + "nl": " {name}" } } ] @@ -39,16 +45,21 @@ "de": "Hackerspace", "ru": "Хакерспейс", "zh_Hant": "駭客空間", - "hu": "Hackerspace" + "hu": "Hackerspace", + "es": "Espacio hacker", + "nl": "Hackerspace" }, "tagRenderings": [ + "images", { "id": "is_makerspace", "question": { "en": "Is this a hackerspace or a makerspace?", "de": "Ist dies ein Hackerspace oder ein Makerspace?", "zh_Hant": "這邊是駭客空間還是創客空間?", - "hu": "Ez hackerspace vagy makerspace?" + "hu": "Ez hackerspace vagy makerspace?", + "es": "¿Esto es un espacio hacker o un espacio maker?", + "nl": "Is dit een hackerspace of een makerspace?" }, "mappings": [ { @@ -57,7 +68,9 @@ "en": "This is a makerspace", "de": "Dies ist ein Makerspace", "zh_Hant": "這是創客空間", - "hu": "Ez egy makerspace" + "hu": "Ez egy makerspace", + "es": "Este es un espacio maker", + "nl": "Dit is een makerspace" } }, { @@ -66,7 +79,9 @@ "en": "This is a traditional (software oriented) hackerspace", "de": "Dies ist ein traditioneller (softwareorientierter) Hackerspace", "zh_Hant": "這是傳統的 (軟體導向) 駭客空間", - "hu": "Ez egy hagyományos (szoftverekkel foglalkozó) hackerspace" + "hu": "Ez egy hagyományos (szoftverekkel foglalkozó) hackerspace", + "es": "Este es un espacio hacker tradicional (orientado al software)", + "nl": "Dit een een traditionele (software-gerichte) hackerspace" } } ] @@ -75,12 +90,16 @@ "question": { "en": "What is the name of this hackerspace?", "de": "Wie lautet der Name dieses Hackerspace?", - "zh_Hant": "這個駭客空間的名稱是?" + "zh_Hant": "這個駭客空間的名稱是?", + "es": "¿Cual es el nombre de este espacio hacker?", + "nl": "Wat is de naam van deze hackerspace?" }, "render": { "en": "This hackerspace is named {name}", "de": "Dieser Hackerspace heißt {name}", - "zh_Hant": "這個駭客空間叫 {name}" + "zh_Hant": "這個駭客空間叫 {name}", + "es": "Este espacio hacker se llama {name}", + "nl": "Deze hackerspace heet {name}" }, "freeform": { "key": "name" @@ -94,7 +113,9 @@ "question": { "en": "When is this hackerspace opened?", "de": "Wann hat dieser Hackerspace geöffnet?", - "zh_Hant": "這個駭客空間的營業時間?" + "zh_Hant": "這個駭客空間的營業時間?", + "es": "¿Cuándo está abierto este espacio hacker?", + "nl": "Wanneer is deze hackerspace geopend?" }, "freeform": { "key": "opening_hours", @@ -105,7 +126,9 @@ "de": "{opening_hours_table()}", "ru": "{opening_hours_table()}", "zh_Hant": "{opening_hours_table()}", - "ca": "{opening_hours_table()}" + "ca": "{opening_hours_table()}", + "es": "{opening_hours_table()}", + "nl": "{opening_hours_table()}" }, "mappings": [ { @@ -119,19 +142,102 @@ "de": "durchgehend geöffnet", "ru": "Открыто 24/7", "zh_Hant": "24/7 營業", - "ca": "Obert 24/7" + "ca": "Obert 24/7", + "es": "Abierto 24/7", + "nl": "24/7 geopend" } } ], "id": "hackerspaces-opening_hours" }, + { + "id": "available_devices", + "rewrite": { + "sourceString": [ + "device-key", + "{device-name}", + "{negative-name}" + ], + "into": [ + [ + "3dprinter", + { + "en": "a 3D-printer", + "nl": "een 3D-printer", + "de": "einen 3D-Drucker" + }, + { + "en": "3D-printer", + "nl": "3D-printer", + "de": "3D-Drucker" + } + ], + [ + "lasercutter", + { + "en": "a laser cutter", + "nl": "een lasercutter", + "de": "einen Laserschneider" + }, + { + "en": "laser cutter", + "nl": "lasercutter", + "de": "Laserschneider" + } + ], + [ + "cnc_drilling_machine", + { + "en": "a CNC drill", + "nl": "een CNC-boormachine", + "de": "eine CNC-Fräse" + }, + { + "en": "CNC drill", + "nl": "CNC-boormachine", + "de": "CNC-Fräse" + } + ] + ] + }, + "renderings": [ + { + "question": { + "en": "Is {device-name} available at this hackerspace?", + "nl": "Is er {device-name} beschikbaar in deze hackerspace?", + "de": "Gibt es {device-name} in diesem Hackerspace?" + }, + "mappings": [ + { + "if": "service:device-key=yes", + "then": { + "en": "There is {device-name} available at this hackerspace", + "nl": "Er is {device-name} beschikbaar in deze hackerspace", + "de": "In diesem Hackerspace gibt es {device-name}" + } + }, + { + "if": "service:device-key=no", + "then": { + "en": "There is no {negative-name} available at this hackerspace", + "nl": "Er is geen {negative-name} beschikbaar in deze hackerspace", + "de": "In diesem Hackerspace gibt es kein {negative-name}" + } + } + ], + "id": "hackerspaces-service-device-key" + } + ] + }, + "reviews", "wheelchair-access", { "id": "hs-club-mate", "question": { "en": "Does this hackerspace serve Club Mate?", "de": "Gibt es in diesem Hackerspace Club Mate?", - "zh_Hant": "這個駭客空間是否服務俱樂部伙伴?" + "zh_Hant": "這個駭客空間是否服務俱樂部伙伴?", + "nl": "Biedt deze hackerspace club-mate aan?" }, "mappings": [ { @@ -143,7 +249,8 @@ "then": { "en": "This hackerspace serves club mate", "de": "In diesem Hackerspace gibt es Club Mate", - "zh_Hant": "這個駭客空間服務俱樂部伙伴" + "zh_Hant": "這個駭客空間服務俱樂部伙伴", + "nl": "Deze hackerspace biedt clube-mate aan" } }, { @@ -155,7 +262,8 @@ "then": { "en": "This hackerspace does not serve club mate", "de": "In diesem Hackerspace gibt es kein Club Mate", - "zh_Hant": "這個駭客空間沒有服務俱樂部伙伴" + "zh_Hant": "這個駭客空間沒有服務俱樂部伙伴", + "nl": "Deze hackerspace biedt geen club-mate aan" } } ] @@ -164,12 +272,16 @@ "render": { "en": "This hackerspace was founded at {start_date}", "de": "Dieser Hackerspace wurde gegründet am {start_date}", - "zh_Hant": "這駭客空間是 {start_date} 成立的" + "zh_Hant": "這駭客空間是 {start_date} 成立的", + "es": "Este espacio hacker se fundó el {start_date}", + "nl": "Deze hackerspace is opgericht op {start_date}" }, "question": { "en": "When was this hackerspace founded?", "de": "Wann wurde dieser Hackerspace gegründet?", - "zh_Hant": "這個駭客空間何時成立的?" + "zh_Hant": "這個駭客空間何時成立的?", + "es": "¿Cuándo se fundó este espacio hacker?", + "nl": "Wanneer is deze hackerspace opgericht?" }, "freeform": { "key": "start_date", @@ -185,16 +297,20 @@ ], "title": { "en": "a hackerspace", - "de": "eine hackerspace", + "de": "einen Hackerspace", "ru": "Хакерспейс", "zh_Hant": "駭客空間", - "hu": "Hackerspace" + "hu": "Hackerspace", + "es": "un espacio hacker", + "nl": "een hackerspace" }, "description": { "en": "A hackerspace is an area where people interested in software gather", "de": "Ein Hackerspace ist ein Ort, an dem sich Menschen treffen, die sich für Software interessieren", "zh_Hant": "駭客空間是對軟體有興趣的人聚集的地方", - "hu": "A hackerspace egy olyan hely, ahol szoftverek iránt érdeklő emberek találkoznak" + "hu": "A hackerspace egy olyan hely, ahol szoftverek iránt érdeklő emberek találkoznak", + "es": "Un espacio hacker es un lugar en el que gente interesada en software se reúne", + "nl": "Een hackerspace is een ruimte waar mensen met een interesse in software samenkomen" } }, { @@ -204,15 +320,19 @@ ], "title": { "en": "a makerspace", - "de": "eine makerspace", + "de": "einen Makerspace", "zh_Hant": "創客空間", - "hu": "Makerspace" + "hu": "Makerspace", + "es": "un espacio maker", + "nl": "een makerspace" }, "description": { - "en": "A makerspace is a place where DIY-enthusiasts gather to experiment with electronics such as arduino, LEDstrips, ...", - "de": "Ein Makerspace ist ein Ort, an dem Heimwerker-Enthusiasten zusammenkommen, um mit Elektronik zu experimentieren, wie Arduino, LED-Strips, ...", + "en": "A makerspace is a place where DIY-enthusiasts gather to experiment with electronics such as arduino, LEDstrips, …", + "de": "Ein Makerspace ist ein Ort, an dem Heimwerker-Enthusiasten zusammenkommen, um mit Elektronik zu experimentieren, wie Arduino, LED-Strips, …", "zh_Hant": "創客空間是 DIY 愛好者聚集在一起弄電子零件實驗,例如用 arduino、LEDstrips 等...", - "hu": "A makerspace olyan hely, ahol a barkácsolás szerelmesei találkoznak, hogy olyan elektronikai eszközökkel kísérletezzenek, mint például az Arduino vagy a LEDstrips." + "hu": "A makerspace olyan hely, ahol a barkácsolás szerelmesei találkoznak, hogy olyan elektronikai eszközökkel kísérletezzenek, mint például az Arduino vagy a LEDstrips…", + "es": "Un espacio maker es un lugar donde entusiastas del DIY se reúnen para experimentar con electrónica, como arduino, …", + "nl": "Een makerspace is een ruimte waar makers en creatievelingen samenkomen om met electronica te experimenteren en te bouwen, bv. met Arduino, LED-strips, 3D-printers, lasercutters, …" } } ], diff --git a/assets/layers/hospital/hospital.json b/assets/layers/hospital/hospital.json new file mode 100644 index 0000000000..767cab2648 --- /dev/null +++ b/assets/layers/hospital/hospital.json @@ -0,0 +1,62 @@ +{ + "id": "hospital", + "name": { + "en": "Hospitals", + "de": "Krankenhäuser", + "nl": "Ziekenhuizen" + }, + "title": { + "render": { + "en": "Hospital", + "de": "Krankenhaus", + "nl": "Ziekenhuis" + } + }, + "description": { + "en": "A layer showing hospital grounds", + "de": "Eine Ebene mit Krankenhäusern", + "nl": "Een laag die ziekehuizen toont" + }, + "minzoom": 12, + "source": { + "osmTags": "amenity=hospital" + }, + "tagRenderings": [ + { + "id": "name", + "render": { + "en": "This hospital is called {name}", + "ca": "El nom del nom de l'hospital és {name}", + "de": "Der Name des Krankenhauses lautet {name}", + "nl": "Dit ziekenhuis heet {name}" + }, + "question": { + "en": "What is the name of this hospital?", + "de": "Wie lautet der Name des Krankenhauses?", + "nl": "Wat is de naam van dit ziekenhuis?" + }, + "freeform": { + "key": "name" + } + }, + "phone", + "email", + "website" + ], + "mapRendering": [ + { + "icon": { + "render": "circle:white;./assets/layers/hospital/hospital.svg" + }, + "iconSize": "40,40,center", + "location": [ + "point", + "centroid" + ] + }, + { + "color": "#fcd862", + "width": 1 + } + ] +} \ No newline at end of file diff --git a/assets/layers/hospital/hospital.svg b/assets/layers/hospital/hospital.svg new file mode 100644 index 0000000000..5ef1a4b638 --- /dev/null +++ b/assets/layers/hospital/hospital.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/assets/layers/hospital/license_info.json b/assets/layers/hospital/license_info.json new file mode 100644 index 0000000000..8a37d59ece --- /dev/null +++ b/assets/layers/hospital/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "hospital.svg", + "license": "CC-0", + "authors": [ + "osmcarto" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Hospital-14.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/hotel/hotel.json b/assets/layers/hotel/hotel.json new file mode 100644 index 0000000000..d6a504e5cd --- /dev/null +++ b/assets/layers/hotel/hotel.json @@ -0,0 +1,89 @@ +{ + "id": "hotel", + "name": { + "en": "Hotels", + "nl": "Hotels", + "de": "Hotels" + }, + "description": { + "en": "Layer showing all hotels", + "nl": "Laag die alle hotels toont", + "de": "Eine Ebene mit Hotels" + }, + "source": { + "osmTags": "tourism=hotel" + }, + "minzoom": 13, + "title": { + "render": { + "en": "Hotel", + "nl": "Hotel", + "de": "Hotel" + }, + "mappings": [ + { + "if": "name~*", + "then": { + "en": "Hotel {name}", + "nl": "Hotel {name}", + "de": "Hotel {name}" + } + } + ] + }, + "presets": [ + { + "title": { + "en": "a hotel", + "nl": "een hotel", + "de": "ein Hotel" + }, + "tags": [ + "tourism=hotel" + ] + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "circle:white;./assets/layers/hotel/hotel.svg", + "iconSize": "40,40,center" + } + ], + "tagRenderings": [ + "images", + "reviews", + { + "id": "name", + "freeform": { + "key": "name", + "placeholder": { + "en": "Name of the hotel", + "nl": "Naam van het hotel", + "de": "Name des Hotels" + } + }, + "question": { + "en": "What is the name of this hotel?", + "nl": "Wat is de naam van dit hotel?", + "de": "Wie lautet der Name des Hotels?" + }, + "render": { + "en": "This hotel is called {name}", + "nl": "Dit hotel heet {name}", + "de": "Der Name des Hotels lautet {name}" + } + }, + "phone", + "email", + "website", + "wheelchair-access" + ], + "allowMove": { + "enableImproveAccuracy": true, + "enableRelocation": true + } +} \ No newline at end of file diff --git a/assets/layers/hotel/hotel.svg b/assets/layers/hotel/hotel.svg new file mode 100644 index 0000000000..879d08301a --- /dev/null +++ b/assets/layers/hotel/hotel.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/layers/hotel/license_info.json b/assets/layers/hotel/license_info.json new file mode 100644 index 0000000000..38f47cac6b --- /dev/null +++ b/assets/layers/hotel/license_info.json @@ -0,0 +1,15 @@ +[ + { + "path": "hotel.svg", + "license": "", + "authors": [ + "Andy Allan", + "Michael Glanznig", + "Adamant36", + "Paul Dicker" + ], + "sources": [ + "https://github.com/gravitystorm/openstreetmap-carto/blob/master/symbols/tourism/hotel.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/hydrant/barcelona.jpg b/assets/layers/hydrant/barcelona.jpg new file mode 100644 index 0000000000..404248ff4d Binary files /dev/null and b/assets/layers/hydrant/barcelona.jpg differ diff --git a/assets/layers/hydrant/hydrant.json b/assets/layers/hydrant/hydrant.json index 7d1c6a8948..f1176762a0 100644 --- a/assets/layers/hydrant/hydrant.json +++ b/assets/layers/hydrant/hydrant.json @@ -7,9 +7,10 @@ "nb_NO": "Kart over brannhydranter", "ru": "Карта пожарных гидрантов", "fr": "Carte des bornes incendie", - "de": "Hydranten anzeigen", + "de": "Hydranten", "it": "Mappa degli idranti", - "nl": "Kaart van brandkranen" + "nl": "Kaart van brandkranen", + "es": "Mapa de bocas de incendios" }, "minzoom": 14, "source": { @@ -29,7 +30,8 @@ "de": "Hydrant", "it": "Idrante", "nl": "Brandkraan", - "ca": "Hidrant" + "ca": "Hidrant", + "es": "Boca de incendios" } }, "description": { @@ -41,7 +43,8 @@ "fr": "Couche des bornes incendie.", "de": "Kartenebene zur Anzeige von Hydranten.", "it": "Livello della mappa che mostra gli idranti antincendio.", - "nl": "Kaartlaag met brandkranen." + "nl": "Kaartlaag met brandkranen.", + "es": "Un mapa que muestra bocas de incendios." }, "tagRenderings": [ { @@ -54,7 +57,8 @@ "fr": "Quelle est la couleur de la borne ?", "de": "Welche Farbe hat der Hydrant?", "it": "Qual è il colore dell’idrante?", - "nl": "Welke kleur heeft de brandkraan?" + "nl": "Welke kleur heeft de brandkraan?", + "es": "¿De que color es la boca de incendios?" }, "render": { "en": "The hydrant color is {colour}", @@ -64,7 +68,8 @@ "fr": "La borne est {colour}", "de": "Der Hydrant hat die Farbe {colour}", "it": "Il colore dell’idrante è {colour}", - "nl": "De brandkraan is {colour}" + "nl": "De brandkraan is {colour}", + "es": "La boca de incendios es de color {colour}" }, "freeform": { "key": "colour" @@ -83,7 +88,8 @@ "fr": "La borne est de couleur inconnue.", "de": "Die Farbe des Hydranten ist unbekannt.", "it": "Il colore dell’idrante è sconosciuto.", - "nl": "De kleur van de brandkraan is onbekend." + "nl": "De kleur van de brandkraan is onbekend.", + "es": "Se desconoce el color de la boca de incendios." }, "hideInAnswer": true }, @@ -100,7 +106,8 @@ "fr": "La borne est jaune.", "de": "Die Farbe des Hydranten ist gelb.", "it": "Il colore dell’idrante è giallo.", - "nl": "De brandkraan is geel." + "nl": "De brandkraan is geel.", + "es": "La boca de incendios es amarilla." } }, { @@ -116,7 +123,9 @@ "ru": "Гидрант красного цвета.", "fr": "La borne est rouge.", "de": "Die Farbe des Hydranten ist rot.", - "nl": "De brandkraan is rood." + "nl": "De brandkraan is rood.", + "ca": "El color de l'hidrant és roig.", + "es": "La boca de incendios es roja." } } ] @@ -129,8 +138,9 @@ "it": "Di che tipo è questo idrante?", "ru": "К какому типу относится этот гидрант?", "fr": "De quel type de borne s’agit-il ?", - "de": "Um welche Art von Hydrant handelt es sich?", - "nl": "Wat voor soort brandkraan is dit?" + "de": "Welche Bauform hat der Hydrant?", + "nl": "Wat voor soort brandkraan is dit?", + "es": "¿De qué tipo es esta boca de incendios?" }, "freeform": { "key": "fire_hydrant:type" @@ -142,7 +152,8 @@ "it": " Tipo di idrante: {fire_hydrant:type}", "fr": " Type de borne : {fire_hydrant:type}", "de": " Hydranten-Typ: {fire_hydrant:type}", - "nl": " Het type brandkraan is {fire_hydrant:type}" + "nl": " Het type brandkraan is {fire_hydrant:type}", + "es": " Tipo de boca de incendios: {fire_hydrant:type}" }, "mappings": [ { @@ -158,7 +169,8 @@ "ru": "Тип гидранта не определён.", "fr": "La borne est de type inconnu.", "de": "Der Typ des Hydranten ist unbekannt.", - "nl": "Het type brandkraan is onbekend." + "nl": "Het type brandkraan is onbekend.", + "es": "Se desconoce el tipo de la boca de incendios" }, "hideInAnswer": true }, @@ -172,9 +184,10 @@ "en": "Pillar type.", "ja": "ピラー型。", "fr": "Pilier.", - "de": "Säulenart.", + "de": "Überflurhydrant.", "it": "Soprasuolo.", - "nl": "Pillaar type." + "nl": "Pillaar type.", + "es": "De pilar." }, "icon": { "path": "./assets/themes/hailhydrant/hydrant_pillar.svg", @@ -191,9 +204,10 @@ "en": "Pipe type.", "ja": "パイプ型。", "fr": "Tuyau.", - "de": "Rohrtyp.", + "de": "Druckloses Rohr.", "it": "Tubo.", - "nl": "Buis type." + "nl": "Buis type.", + "es": "De tubería." }, "icon": { "path": "./assets/themes/hailhydrant/hydrant_unknown.svg", @@ -212,9 +226,10 @@ "ru": "Тип стены.", "ja": "壁型。", "fr": "Mural.", - "de": "Wandtyp.", + "de": "Wandhydrant.", "it": "A muro.", - "nl": "Muur type." + "nl": "Muur type.", + "es": "De pared." }, "icon": { "path": "./assets/themes/hailhydrant/hydrant_unknown.svg", @@ -231,9 +246,11 @@ "en": "Underground type.", "ja": "地下式。", "fr": "Enterré.", - "de": "Untergrundtyp.", + "de": "Unterflurhydrant.", "it": "Sottosuolo.", - "nl": "Ondergronds type." + "nl": "Ondergronds type.", + "ca": "L'hidrant està soterrat.", + "es": "Bajo tierra." }, "icon": { "path": "./assets/themes/hailhydrant/hydrant_underground.svg", @@ -247,10 +264,11 @@ "question": { "en": "Is this hydrant still working?", "ja": "消火栓のライフサイクルステータスを更新します。", - "fr": "Mettre à jour l’état de la borne.", + "fr": "Cette borne incendie est-elle toujours en bon état de fonctionnement ?", "de": "Ist dieser Hydrant noch in Betrieb?", "it": "Aggiorna lo stato di funzionamento dell’idrante.", - "nl": "Werkt deze brandkraan nog?" + "nl": "Werkt deze brandkraan nog?", + "es": "¿Todavía funciona esta boca de incendios?" }, "mappings": [ { @@ -263,10 +281,11 @@ "en": "The hydrant is (fully or partially) working", "ja": "消火栓は(完全にまたは部分的に)機能しています。", "ru": "Гидрант (полностью или частично) в рабочем состоянии", - "fr": "La borne est en état, ou partiellement en état, de fonctionner.", + "fr": "La borne est en état (ou partiellement en état) de fonctionner", "de": "Der Hydrant ist (ganz oder teilweise) in Betrieb", "it": "L’idrante è (parzialmente o completamente) funzionante.", - "nl": "De brandkraan werkt (minstens gedeeltelijk)" + "nl": "De brandkraan werkt (minstens gedeeltelijk)", + "es": "La boca de incendios funciona (total o parcialmente)" } }, { @@ -279,10 +298,11 @@ "then": { "en": "The hydrant is unavailable", "ja": "消火栓は使用できません。", - "fr": "La borne est hors-service.", - "de": "Der Hydrant ist nicht verfügbar", + "fr": "La borne est hors-service", + "de": "Der Hydrant ist nicht mehr in Betrieb", "it": "L’idrante è fuori servizio.", - "nl": "De brandkraan is niet beschikbaar" + "nl": "De brandkraan is niet beschikbaar", + "es": "La boca de incendios no está disponible" } }, { @@ -296,14 +316,91 @@ "en": "The hydrant has been removed", "ja": "消火栓が撤去されました。", "ru": "Гидрант демонтирован", - "fr": "La borne a été retirée.", + "fr": "La borne a été retirée", "de": "Der Hydrant wurde entfernt", "it": "L’idrante è stato rimosso.", - "nl": "Deze brandkraan is verwijderd" + "nl": "Deze brandkraan is verwijderd", + "es": "La boca de incendios se ha retirado" } } ] }, + { + "id": "hydrant-diameter", + "question": { + "en": "What is the pipe diameter of this hydrant?" + }, + "freeform": { + "key": "fire_hydrant:diameter", + "placeholder": { + "en": "Pipe diameter" + }, + "type": "int" + }, + "render": { + "en": "Pipe diameter: {canonical(fire_hydrant:diameter)}" + } + }, + { + "id": "hydrant-couplings", + "question": { + "en": "What kind of couplings does this hydrant have?" + }, + "freeform": { + "key": "couplings:type", + "placeholder": { + "en": "Coupling type" + }, + "type": "string" + }, + "mappings": [ + { + "if": "couplings:type=Storz", + "then": { + "en": "Storz coupling" + }, + "icon": { + "path": "./assets/layers/hydrant/storz.jpg", + "class": "large" + } + }, + { + "if": "couplings:type=UNI", + "then": { + "en": "UNI coupling" + } + }, + { + "if": "couplings:type=Barcelona", + "then": { + "en": "Barcelona coupling" + }, + "icon": { + "path": "./assets/layers/hydrant/barcelona.jpg", + "class": "large" + } + } + ], + "multiAnswer": true, + "render": { + "en": "Couplings: {couplings:type}" + } + }, + { + "id": "hydrant-couplings-diameters", + "question": { + "en": "What diameter are the couplings of this hydrant?" + }, + "freeform": { + "key": "couplings:diameters", + "placeholder": { + "en": "Coupling diameters" + } + }, + "render": { + "en": "Coupling diameters: {couplings:diameters}" + } + }, "images" ], "presets": [ @@ -317,9 +414,10 @@ "ja": "消火栓", "nb_NO": "en brannhydrant", "fr": "une borne incendie", - "de": "eine löschwasser-hydrant", + "de": "einen Hydranten", "it": "una idrante antincendio", - "nl": "een brandkraan" + "nl": "een brandkraan", + "es": "una boca de incendios" }, "description": { "en": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", @@ -327,7 +425,8 @@ "fr": "Une borne incendie est un point où les pompiers peuvent s’alimenter en eau. Elle peut être enterrée.", "de": "Ein Hydrant ist ein Anschlusspunkt, an dem die Feuerwehr Wasser zapfen kann. Er kann sich unterirdisch befinden.", "it": "Un idrante è un punto di collegamento dove i pompieri possono estrarre acqua. Potrebbe trovarsi sottoterra.", - "nl": "Een brandkraan is een kraan waar brandweerlieden een brandslang kunnen aansluiten. Soms zit deze ondergronds." + "nl": "Een brandkraan is een kraan waar brandweerlieden een brandslang kunnen aansluiten. Soms zit deze ondergronds.", + "es": "Una boca de incendios es un punto de conexión en el que los bomberos pueden conseguir agua. Puede situarse bajo tierra." } } ], @@ -352,5 +451,31 @@ "render": "8" } } + ], + "units": [ + { + "applicableUnits": [ + { + "default": true, + "canonicalDenomination": "", + "alternativeDenomination": [ + "mm", + "millimeter", + "millimeters" + ], + "human": { + "en": "millimeters", + "nl": "millimeter" + }, + "humanSingular": { + "en": "millimeter", + "nl": "millimeter" + } + } + ], + "appliesToKey": [ + "fire_hydrant:diameter" + ] + } ] } \ No newline at end of file diff --git a/assets/layers/hydrant/license_info.json b/assets/layers/hydrant/license_info.json new file mode 100644 index 0000000000..7b01ebaa22 --- /dev/null +++ b/assets/layers/hydrant/license_info.json @@ -0,0 +1,22 @@ +[ + { + "path": "barcelona.jpg", + "license": "CC-BY-SA", + "authors": [ + "CLIGNER" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Gama_racores_UNE23400_ligatura.JPG" + ] + }, + { + "path": "storz.jpg", + "license": "CC-BY-SA", + "authors": [ + "Karl Gruber" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Festkupplung.jpg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/hydrant/storz.jpg b/assets/layers/hydrant/storz.jpg new file mode 100644 index 0000000000..55dc2a5dbe Binary files /dev/null and b/assets/layers/hydrant/storz.jpg differ diff --git a/assets/layers/id_presets/ID.svg b/assets/layers/id_presets/ID.svg new file mode 100644 index 0000000000..d63a2c03bb --- /dev/null +++ b/assets/layers/id_presets/ID.svg @@ -0,0 +1,394 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/id_presets/fas-baby-carriage.svg b/assets/layers/id_presets/fas-baby-carriage.svg new file mode 100644 index 0000000000..352697de3f --- /dev/null +++ b/assets/layers/id_presets/fas-baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-bath.svg b/assets/layers/id_presets/fas-bath.svg new file mode 100644 index 0000000000..d1b2769258 --- /dev/null +++ b/assets/layers/id_presets/fas-bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-blender.svg b/assets/layers/id_presets/fas-blender.svg new file mode 100644 index 0000000000..c54901cc1c --- /dev/null +++ b/assets/layers/id_presets/fas-blender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-book.svg b/assets/layers/id_presets/fas-book.svg new file mode 100644 index 0000000000..00aba53085 --- /dev/null +++ b/assets/layers/id_presets/fas-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-camera-retro.svg b/assets/layers/id_presets/fas-camera-retro.svg new file mode 100644 index 0000000000..cd79450cb3 --- /dev/null +++ b/assets/layers/id_presets/fas-camera-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-cannabis.svg b/assets/layers/id_presets/fas-cannabis.svg new file mode 100644 index 0000000000..ebdfe37686 --- /dev/null +++ b/assets/layers/id_presets/fas-cannabis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-car-battery.svg b/assets/layers/id_presets/fas-car-battery.svg new file mode 100644 index 0000000000..5dbd0f0c8d --- /dev/null +++ b/assets/layers/id_presets/fas-car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-carrot.svg b/assets/layers/id_presets/fas-carrot.svg new file mode 100644 index 0000000000..ad8b0aac64 --- /dev/null +++ b/assets/layers/id_presets/fas-carrot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-cat.svg b/assets/layers/id_presets/fas-cat.svg new file mode 100644 index 0000000000..8ac2844ad7 --- /dev/null +++ b/assets/layers/id_presets/fas-cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-cheese.svg b/assets/layers/id_presets/fas-cheese.svg new file mode 100644 index 0000000000..fd997db2f4 --- /dev/null +++ b/assets/layers/id_presets/fas-cheese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-compact-disc.svg b/assets/layers/id_presets/fas-compact-disc.svg new file mode 100644 index 0000000000..c21b0d1464 --- /dev/null +++ b/assets/layers/id_presets/fas-compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-couch.svg b/assets/layers/id_presets/fas-couch.svg new file mode 100644 index 0000000000..8023e91418 --- /dev/null +++ b/assets/layers/id_presets/fas-couch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-crutch.svg b/assets/layers/id_presets/fas-crutch.svg new file mode 100644 index 0000000000..5b1548efb2 --- /dev/null +++ b/assets/layers/id_presets/fas-crutch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-dice.svg b/assets/layers/id_presets/fas-dice.svg new file mode 100644 index 0000000000..5e4aa3846e --- /dev/null +++ b/assets/layers/id_presets/fas-dice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-dolly.svg b/assets/layers/id_presets/fas-dolly.svg new file mode 100644 index 0000000000..62fb15f2d1 --- /dev/null +++ b/assets/layers/id_presets/fas-dolly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-door-open.svg b/assets/layers/id_presets/fas-door-open.svg new file mode 100644 index 0000000000..ecace1844e --- /dev/null +++ b/assets/layers/id_presets/fas-door-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-dragon.svg b/assets/layers/id_presets/fas-dragon.svg new file mode 100644 index 0000000000..895aaf5a9f --- /dev/null +++ b/assets/layers/id_presets/fas-dragon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-futbol.svg b/assets/layers/id_presets/fas-futbol.svg new file mode 100644 index 0000000000..3551470417 --- /dev/null +++ b/assets/layers/id_presets/fas-futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-guitar.svg b/assets/layers/id_presets/fas-guitar.svg new file mode 100644 index 0000000000..053f81855c --- /dev/null +++ b/assets/layers/id_presets/fas-guitar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-hat-cowboy-side.svg b/assets/layers/id_presets/fas-hat-cowboy-side.svg new file mode 100644 index 0000000000..95fb21e891 --- /dev/null +++ b/assets/layers/id_presets/fas-hat-cowboy-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-key.svg b/assets/layers/id_presets/fas-key.svg new file mode 100644 index 0000000000..0b20bfe4a3 --- /dev/null +++ b/assets/layers/id_presets/fas-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-laptop.svg b/assets/layers/id_presets/fas-laptop.svg new file mode 100644 index 0000000000..44df912432 --- /dev/null +++ b/assets/layers/id_presets/fas-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-leaf.svg b/assets/layers/id_presets/fas-leaf.svg new file mode 100644 index 0000000000..22c1f65fdd --- /dev/null +++ b/assets/layers/id_presets/fas-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-microchip.svg b/assets/layers/id_presets/fas-microchip.svg new file mode 100644 index 0000000000..4fcb4a47cc --- /dev/null +++ b/assets/layers/id_presets/fas-microchip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-motorcycle.svg b/assets/layers/id_presets/fas-motorcycle.svg new file mode 100644 index 0000000000..6c9563c78e --- /dev/null +++ b/assets/layers/id_presets/fas-motorcycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-newspaper.svg b/assets/layers/id_presets/fas-newspaper.svg new file mode 100644 index 0000000000..6cc6f533a9 --- /dev/null +++ b/assets/layers/id_presets/fas-newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-paint-roller.svg b/assets/layers/id_presets/fas-paint-roller.svg new file mode 100644 index 0000000000..49cd3771ba --- /dev/null +++ b/assets/layers/id_presets/fas-paint-roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-paperclip.svg b/assets/layers/id_presets/fas-paperclip.svg new file mode 100644 index 0000000000..bb6249044c --- /dev/null +++ b/assets/layers/id_presets/fas-paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-pills.svg b/assets/layers/id_presets/fas-pills.svg new file mode 100644 index 0000000000..9a03e9a2e4 --- /dev/null +++ b/assets/layers/id_presets/fas-pills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-plug.svg b/assets/layers/id_presets/fas-plug.svg new file mode 100644 index 0000000000..bffee059a1 --- /dev/null +++ b/assets/layers/id_presets/fas-plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-print.svg b/assets/layers/id_presets/fas-print.svg new file mode 100644 index 0000000000..730ffaedcb --- /dev/null +++ b/assets/layers/id_presets/fas-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-rocket.svg b/assets/layers/id_presets/fas-rocket.svg new file mode 100644 index 0000000000..b7a68083a7 --- /dev/null +++ b/assets/layers/id_presets/fas-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-store.svg b/assets/layers/id_presets/fas-store.svg new file mode 100644 index 0000000000..820434d0c1 --- /dev/null +++ b/assets/layers/id_presets/fas-store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-suitcase-rolling.svg b/assets/layers/id_presets/fas-suitcase-rolling.svg new file mode 100644 index 0000000000..917185efa0 --- /dev/null +++ b/assets/layers/id_presets/fas-suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-suitcase.svg b/assets/layers/id_presets/fas-suitcase.svg new file mode 100644 index 0000000000..e54fef8dd9 --- /dev/null +++ b/assets/layers/id_presets/fas-suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-tape.svg b/assets/layers/id_presets/fas-tape.svg new file mode 100644 index 0000000000..e55c3806c2 --- /dev/null +++ b/assets/layers/id_presets/fas-tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-tractor.svg b/assets/layers/id_presets/fas-tractor.svg new file mode 100644 index 0000000000..75dc311d83 --- /dev/null +++ b/assets/layers/id_presets/fas-tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-trophy.svg b/assets/layers/id_presets/fas-trophy.svg new file mode 100644 index 0000000000..d511c8c3ff --- /dev/null +++ b/assets/layers/id_presets/fas-trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-vector-square.svg b/assets/layers/id_presets/fas-vector-square.svg new file mode 100644 index 0000000000..b12ce25b20 --- /dev/null +++ b/assets/layers/id_presets/fas-vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/fas-wine-bottle.svg b/assets/layers/id_presets/fas-wine-bottle.svg new file mode 100644 index 0000000000..8aaf74fa4b --- /dev/null +++ b/assets/layers/id_presets/fas-wine-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/layers/id_presets/id_presets.json b/assets/layers/id_presets/id_presets.json new file mode 100644 index 0000000000..caf39d97a0 --- /dev/null +++ b/assets/layers/id_presets/id_presets.json @@ -0,0 +1,20220 @@ +{ + "id": "id_presets", + "description": { + "en": "Layer containing various presets and questions generated by ID. These are meant to be reused in other layers by importing the tagRenderings with `id_preset." + }, + "#dont-translate": "*", + "source": { + "osmTags": "id~*" + }, + "title": null, + "mapRendering": null, + "tagRenderings": [ + { + "id": "shop_types", + "mappings": [ + { + "if": "shop=agrarian", + "then": { + "en": "Farm Supply Shop", + "ca": "Agrobotiga", + "da": "Grovvareforretning", + "de": "Agrarmarkt", + "eo": "Terkultur-investaĵa vendejo", + "es": "Tienda de suministros agrícolas", + "fi": "Maataloustarvikeliike", + "fr": "Magasin d'agriculture", + "gl": "Tenda de subministracións agrícolas", + "hu": "Gazdabolt", + "it": "Negozio di attrezzatura agricola", + "ja": "農業用品店", + "nl": "Landbouwbenodigdhedenwinkel", + "pl": "Sklep rolniczy", + "pt": "Loja de produtos agrícolas", + "ru": "Сельскохозяйственный магазин", + "sv": "Jordbruksaffär" + }, + "searchTerms": { + "en": [ + "agricultural inputs", + "agricultural machines", + "seeds", + "pesticides", + "fertilizer", + "agricultural tools" + ], + "da": [ + "korn", + "landbrug", + "afgrøde", + "gødning", + "maskiner", + "ukrudtsmiddel" + ], + "de": [ + "agrarmarkt", + "landwirtschaftsbedarfsgeschäft" + ], + "eo": [ + "terkulturo", + "agrokulturo", + "agrikulturo", + "semoj", + "kripoj", + "furaĝoj", + "pesticidoj", + "kemiaĵoj", + "ĥemiaĵoj" + ], + "es": [ + "tienda de suministros agrícolas", + "insumos agrícolas", + "máquinas agrícolas", + "semillas", + "pesticidas", + "fertilizantes", + "herramientas agrícolas", + "agrícola", + "agricola" + ], + "fi": [ + "maatila", + "maatalous", + "maa", + "myymälä", + "liike", + "kauppa", + "putiikki" + ], + "fr": [ + "magasin de produit de la ferme", + "machines", + "pesticides", + "graines", + "engins agricoles" + ], + "hu": [ + "mezőgazdasági szaküzlet" + ], + "it": [ + "attrezzi agricoli", + "macchinai agricoli", + "fertilizzanti", + "pesticidi", + "semina" + ], + "ja": [ + "農業用品店", + "農協", + "種苗店", + "農業", + "農薬", + "飼料", + "肥料", + "駆除剤", + "農機具", + "除草剤" + ], + "nl": [ + "landbouwwinkel", + "landbouwzaak", + "landbouwerswinkel", + "landbouwerszaak", + "pesticidenwinkel", + "meststoffenwinkel", + "zadenwinkel", + "tractorwinkel", + "voerwinkel", + "veevoerwinkel", + "landbouwgereedschapswinkel", + "landbouwwerktuigenwinkel" + ], + "pl": [ + "rolniczy", + "produkcja rolna", + "pasze", + "nasiona", + "sprzęt rolniczy", + "pestycydy", + "części do maszyn rolniczych" + ], + "pt": [ + "agrícola", + "produtos", + "agrícolas", + "pesticidas", + "fertilizantes", + "sementes", + "ferramentas", + "agricultura", + "agricultor", + "árvores" + ], + "ru": [ + "семена", + "сельхозтехника", + "удобрения", + "пестициды" + ], + "sv": [ + "jordbruksaffär", + "jordbruk", + "jordbruksmaskiner", + "frön", + "utsäde", + "bekämpningsmedel", + "gödningsmedel", + "gödsel", + "jordbruksverktyg", + "djurmat", + "jordbruksutrustning", + "lantmannaföreningen" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-tractor.svg", + "class": "medium" + } + }, + { + "if": "shop=alcohol", + "then": { + "en": "Liquor Store", + "ca": "Botiga de licors", + "da": "Vinforhandler", + "de": "Spirituosenladen", + "eo": "Alkohola vendejo", + "es": "Licorería", + "fi": "Alkoholimyymälä", + "fr": "Magasin de vente d'alcool", + "gl": "Licoraría", + "hu": "Alkoholüzlet", + "id": "Toko Minuman", + "it": "Negozio di liquori", + "ja": "酒店", + "nl": "Slijterij", + "pl": "Sklep monopolowy", + "pt": "Loja de bebidas alcoólicas", + "ru": "Алкогольный магазин", + "sl": "Trgovina z alkoholnimi pijačami", + "sv": "Vin-och-spritaffär" + }, + "searchTerms": { + "en": [ + "alcohol", + "beer", + "booze", + "wine" + ], + "ca": [ + "licoreria", + "botiga de licors" + ], + "da": [ + "vinforhandler", + "vinbutik", + "vinforretning" + ], + "de": [ + "alkoholika", + "alkohol", + "spirituosengeschäft", + "wein- und spirituosengeschäft" + ], + "eo": [ + "alkoholejo", + "vino", + "brando", + "trinkaĵo", + "drinkaĵo" + ], + "es": [ + "licor", + "trago", + "bebida", + "alcohol", + "licorería", + "tienda de licores", + "almacén de licores" + ], + "fi": [ + "viina", + "olut", + "viini", + "viinikellari", + "juoma" + ], + "fr": [ + "cave", + "caviste", + "magasin de vin", + "vins & spiritueux" + ], + "hu": [ + "unikum", + "pálinka", + "konyak", + "vodka", + "whiskey", + "likőr" + ], + "ja": [ + "酒店", + "酒屋", + "アルコール", + "嗜好品" + ], + "nl": [ + "alcoholwinkel" + ], + "pl": [ + "sklep monopolowy", + "sklep z alkoholem", + "alkohol", + "wódka", + "piwo", + "wino" + ], + "pt": [ + "alcool", + "álcool", + "vinho", + "cerveja", + "whisky", + "uísque", + "destiladas", + "destilados", + "bebidas espirituosas", + "vodca", + "vodka", + "cachaça", + "rum" + ], + "ru": [ + "вино-водочный магазин", + "горилка", + "пиво", + "пивной" + ], + "sl": [ + "alkoholne pijače" + ], + "sv": [ + "vinaffär", + "spritaffär", + "vin- och sprit", + "vin- och spritaffär", + "systemet", + "systembolaget", + "bolaget", + "alkohol", + "öl", + "vin", + "sprit" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-wine-bottle.svg", + "class": "medium" + } + }, + { + "if": "shop=anime", + "then": { + "en": "Anime / Manga Shop", + "ca": "Botiga de manga / anime", + "de": "Anime- / Manga-Geschäft", + "eo": "Anime-/manga-vendejo", + "es": "Tienda de anime / manga", + "fi": "Anime-/mangaliike", + "fr": "Boutique de manga et anime", + "gl": "Tenda de anime / manga", + "hu": "Anime képregényekkel kapcsolatos bolt", + "it": "Negozio di Anime / Manga", + "ja": "アニメショップ", + "nl": "Anime-/Mangawinkel", + "pl": "Sklep z mangą i anime", + "pt": "Loja de animé", + "ru": "Магазин аниме / манги", + "sv": "Anime/Manga-affär" + }, + "searchTerms": { + "en": [ + "manga", + "japan", + "cosplay", + "figurine", + "dakimakura" + ], + "de": [ + "anime", + "manga", + "comic", + "japan", + "zeichentrick" + ], + "eo": [ + "animeo", + "mangao", + "rolkostumado", + "kosplejo", + "cosplay" + ], + "es": [ + "manga", + "japón", + "cosplay", + "figurilla", + "dakimakura" + ], + "fr": [ + "manga", + "bd", + "figurine" + ], + "hu": [ + "képregénybolt" + ], + "ja": [ + "アニメショップ", + "娯楽", + "アニメ", + "コスプレ", + "マンガ", + "まんが", + "アニメ店" + ], + "nl": [ + "anime", + "manga" + ], + "pl": [ + "anime", + "manga", + "cosplay" + ], + "pt": [ + "manga", + "anime", + "mangá", + "bd", + "japão" + ], + "sv": [ + "anime/manga-affär", + "anime", + "manga", + "japan", + "cosplay", + "figurer", + "dakimakura" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-dragon.svg", + "class": "medium" + } + }, + { + "if": "shop=antiques", + "then": { + "en": "Antiques Shop", + "ca": "Botiga d'antiguitats", + "da": "Antikvitetsforretning", + "de": "Antiquitätenhändler", + "eo": "Antikvaĵa vendejo", + "es": "Tienda de antigüedades", + "fi": "Antiikkiliike", + "fr": "Antiquaire", + "gl": "Tenda de antigüidades", + "hu": "Régiségkereskedés", + "id": "Toko Barang Antik", + "it": "Antiquario", + "ja": "古美術品店", + "nl": "Antiquair", + "pl": "Antykwariat", + "pt": "Loja de antiguidades", + "ru": "Магазин антиквариата", + "sl": "Starinarnica", + "sv": "Antikaffär" + }, + "searchTerms": { + "da": [ + "antikvitetsforretning", + "antikvitetsbutik" + ], + "de": [ + "antiquitätengeschäft", + "antiquitätenhändler", + "antiquitätenhandel", + "antiquitätenladen" + ], + "eo": [ + "antikvaĵejo", + "antikvajhejo", + "antikvajxejo" + ], + "es": [ + "antigüedades", + "anticuario", + "colecciones", + "muebles antiguos", + "objetos antiguos", + "cuadros", + "pinturas", + "subastas" + ], + "fr": [ + "brocante" + ], + "hu": [ + "antikvitás", + "antikvárium", + "ószeres" + ], + "it": [ + "antichità", + "mobili antichi" + ], + "ja": [ + "古美術品店", + "アンティークショップ", + "美術", + "アート", + "古美術", + "骨董品店" + ], + "nl": [ + "antiekwinkel" + ], + "pl": [ + "sklep z antykami", + "antyki" + ], + "pt": [ + "antiques shop", + "antiguidade", + "antiguidades", + "antigo", + "relíquia", + "relíquias" + ], + "ru": [ + "атниквариат" + ], + "sl": [ + "starinarnica", + "antikvariat" + ], + "sv": [ + "antikaffär", + "antikshop", + "antikt", + "antikvitetsaffär", + "antikvariat" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-furniture.svg", + "class": "medium" + } + }, + { + "if": "shop=appliance", + "then": { + "en": "Appliance Store", + "da": "Hvidevareforretning", + "de": "Haushaltselektrogerätegeschäft", + "eo": "Elektronikaĵega vendejo", + "es": "Tienda de electrodomésticos", + "fi": "Kodinkonemyymälä", + "fr": "Magasin d'électroménager", + "gl": "Tenda de electrodomésticos", + "hu": "Háztartásigép-bolt", + "it": "Negozio di elettrodomestici", + "ja": "白物家電販売店(大型製品)", + "nl": "Huishoudelijkeapparatuurwinkel", + "pl": "Sklep z AGD", + "pt": "Loja de eletrodomésticos \"brancos\"", + "ru": "Магазин бытовой техники", + "sl": "Splošna tehnična trgovina", + "sv": "Vitvaror" + }, + "searchTerms": { + "en": [ + "air conditioner", + "appliance", + "dishwasher", + "dryer", + "freezer", + "fridge", + "grill", + "kitchen", + "oven", + "refrigerator", + "stove", + "washer", + "washing machine" + ], + "da": [ + "hvidevare", + "køleskab", + "ovn", + "vaskemaskine" + ], + "de": [ + "haushaltselektrogerätegeschäft", + "elektrogeschäft", + "weißware", + "waschmaschine", + "kühlschrank", + "kühltruhe", + "spülmaschine", + "trockner", + "backofen", + "herd", + "küchengeräte", + "elektrogeräte" + ], + "eo": [ + "elektronikoj", + "lavmaŝinoj", + "lavmashinoj", + "lavmasxinoj", + "frostujoj", + "fridujoj", + "polvosuĉiloj", + "senpolvigiloj", + "kuiriloj", + "forneloj", + "kuirejo" + ], + "es": [ + "electrodomésticos", + "aire acondicionado", + "acondicionador de aire", + "aparatos", + "lavavajillas", + "secadora", + "heladera", + "freezer", + "congelador", + "nevera", + "parrilla", + "cocina", + "horno", + "frigorífico", + "estufa", + "lavarropas", + "lavadora" + ], + "fi": [ + "jääkaappi", + "pesukone", + "keittiö", + "liesi", + "pakastin", + "kuivausrumpu", + "kodinkone", + "kodinkoneet", + "myymälä", + "kauppa", + "liike" + ], + "fr": [ + "magasin d'électroménager", + "électroménager", + "appareil électroménager", + "petit électroménager", + "gros électroménager", + "shop appliance", + "appliances", + "bouilloire", + "centrifugeuse", + "cuiseur", + "cuit vapeur", + "fouet électrique", + "grille-pain", + "machine à pain", + "mixeur", + "pierrade", + "presse-agrumes", + "robot de cuisine", + "robot multifonctions", + "pèse-personne", + "épilateur", + "rasoir électrique", + "cafetière", + "moulin à café", + "aspirateur", + "cireuse", + "nettoyeur à vapeur", + "tondeuse", + "repassage", + "centrale vapeur", + "fer à repasser", + "cuisinière", + "four micro-ondes", + "four traditionnel", + "four à vapeur", + "cuisinière à gaz", + "hotte aspirante", + "plaque de cuisson", + "lave-linge", + "lave-vaisselle", + "sèche-linge", + "cave à vin", + "congélateur", + "réfrigérateur", + "climatiseur" + ], + "hu": [ + "háztartási", + "gép", + "készülék", + "nagygép", + "kisgép" + ], + "it": [ + "condizionatori", + "apparecchi", + "lavatrici", + "asciugatori", + "freezer", + "frigo", + "congelatori" + ], + "ja": [ + "家電販売店", + "家電量販店", + "電器屋", + "買い物", + "ショッピング", + "白物家電", + "白物", + "生活家電", + "冷蔵庫", + "洗濯機", + "電機屋" + ], + "nl": [ + "huisraadwinkel", + "huishoudelijke apparatuur" + ], + "pl": [ + "sklep z agd", + "agd", + "artykuły gospodarstwa domowego", + "klimatyzatory", + "kuchenki", + "lodówki", + "mikrofalówki", + "miksery", + "odkurzacze", + "pralki", + "roboty kuchenne", + "suszarki", + "wentylatory", + "zamrażarki", + "zmywarki" + ], + "pt": [ + "eletrodoméstico", + "electrodoméstico", + "frigorífico", + "máquinas", + "fogão", + "fogões", + "ar condicionado", + "aparelhos" + ], + "sl": [ + "pomivalec", + "sušilec", + "pomivalni stroj", + "sušilni stroj", + "klima", + "radio", + "televizija", + "naprave", + "elektrika", + "kuhinja", + "tehnika", + "avdio", + "video", + "fotoaparati", + "kamere", + "telefoni", + "kuhalniki", + "računalniki" + ], + "sv": [ + "vitvaror", + "vitvaruaffär", + "vitvarukedja", + "vitvara", + "hushållsmaskiner", + "hushållsmaskin", + "tvättmaskin", + "diskmaskin", + "frys", + "kylskåp", + "spis", + "ugn", + "mikrovågsugn", + "köksfläkt" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-laundry.svg", + "class": "medium" + } + }, + { + "if": "shop=art", + "then": { + "en": "Art Store", + "ca": "Botiga d'art", + "da": "Kunstbutik", + "de": "Kunsthandlung", + "eo": "Artaĵa vendejo", + "es": "Tienda de arte", + "fi": "Taideliike", + "fr": "Marchand d'art", + "gl": "Tenda de arte", + "hu": "Művészeti bolt", + "it": "Negozio di opere d'arte", + "ja": "美術品販売店", + "nl": "Kunstwinkel", + "pl": "Sklep z dziełami sztuki", + "pt": "Loja de artigos de arte", + "ru": "Магазин произведений искусства", + "sl": "Trgovina z umetninami", + "sv": "Konstaffär" + }, + "searchTerms": { + "en": [ + "art*", + "exhibit*", + "gallery" + ], + "da": [ + "kunstbutik", + "galleributik" + ], + "de": [ + "kunsthandlung", + "kunstgeschäft" + ], + "eo": [ + "artaĵejo", + "antikvaĵejo", + "artajxvendejo", + "artajhvendejo" + ], + "es": [ + "arte", + "exhibición", + "galería", + "tienda", + "almacén", + "negocio" + ], + "fr": [ + "galeriste", + "gallerie d'art", + "marchand d'art", + "magasin d'art", + "art", + "artiste", + "exposition" + ], + "hu": [ + "művészbolt", + "művészellátó" + ], + "it": [ + "opere d'arte", + "quadri", + "sculture", + "galleria", + "arte", + "esibizione", + "mostra" + ], + "ja": [ + "現代美術の商店", + "アート" + ], + "nl": [ + "galerij", + "kunstgalerij", + "galerie", + "kunstgalerie", + "tentoonstelling" + ], + "pl": [ + "sklep z dziełami sztuki", + "dzieła sztuki", + "obrazy", + "rzeźby", + "porcelana", + "wyroby artystyczne", + "rzemiosło artystyczne", + "antykwariat", + "desa", + "galeria" + ], + "pt": [ + "artesanato", + "decoração", + "objetos artísticos", + "objetos decorativos", + "quadros", + "pintura", + "arte" + ], + "ru": [ + "арт", + "арт-галерея", + "магазин картин" + ], + "sv": [ + "konstaffär", + "konst", + "konsthandlare", + "konstgalleri", + "galleri", + "konstverk", + "tavlor", + "statyer", + "kulturer", + "konstutställning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=baby_goods", + "then": { + "en": "Baby Goods Store", + "ca": "Botiga per a nadons", + "da": "Babyudstyrsbutik", + "de": "Babysachengeschäft", + "eo": "Bebaĵa vendejo", + "es": "Tienda de productos para bebé", + "fi": "Vauvatarvikeliike", + "fr": "Magasin de produits pour bébés", + "gl": "Tenda de produtos para meniños", + "hu": "Bababolt", + "id": "Toko Perlengkapan Bayi", + "it": "Negozio di prodotti per l'infanzia", + "ja": "赤ちゃん用品店", + "nl": "Babyartikelenwinkel", + "pl": "Sklep z artykułami dla dzieci i niemowląt", + "pt": "Loja de acessórios para bebés", + "ru": "Магазин детских товаров", + "sl": "Trgovina za otroke", + "sv": "Babyprodukter" + }, + "searchTerms": { + "da": [ + "babyudstyrsbutik", + "babyudstyrsforretning" + ], + "de": [ + "babysachengeschäft", + "babybekleidungsgeschäft", + "babygeschäft", + "babyfachmarkt" + ], + "eo": [ + "bebo", + "suĉinfano" + ], + "es": [ + "bebe", + "niño", + "niña", + "infantil", + "criatura", + "cariño", + "guagua" + ], + "fi": [ + "vauva", + "lapsi", + "vastasyntynyt", + "vauvatalo", + "lastenhoito", + "lapset", + "vauvat", + "vauvanhoito", + "hoito", + "lapsenhoito" + ], + "fr": [ + "magasin de puériculture" + ], + "gl": [ + "meniños", + "bebés" + ], + "hu": [ + "babaruha", + "babakocsi", + "babaágy", + "babajáték" + ], + "it": [ + "negozio di articoli per l'infanzia" + ], + "ja": [ + "赤ちゃん用品店", + "ベビー用品店" + ], + "nl": [ + "kledijwinkel", + "fopspeenwinkel", + "tutters", + "knuffels", + "babyspullenwinkel", + "babykledijwinkel" + ], + "pl": [ + "akcesoria dla dzieci i niemowląt", + "sklep dziecięcy", + "artykuły dziecięce", + "wózki dziecięce", + "dzieci" + ], + "pt": [ + "baby goods store", + "loja de roupa", + "carrinho", + "brinquedos", + "bébé", + "bébe", + "bebe", + "bébés" + ], + "ru": [ + "товары для детей", + "детский мир", + "игрушки" + ], + "sl": [ + "babycenter", + "dojenčki", + "otroci", + "igrače" + ], + "sv": [ + "bäbis", + "baby", + "småbarn", + "barnkläder", + "babykläder", + "bäbiskläder", + "blöjor", + "nappflaskor", + "nappar", + "barnvagnar", + "spjälsängar", + "babyprodukter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-baby-carriage.svg", + "class": "medium" + } + }, + { + "if": "shop=bag", + "then": { + "en": "Bag/Luggage Store", + "ca": "Botiga d'equipatges", + "da": "Taske/Kuffertbutik", + "de": "Taschenladen", + "eo": "Saka/valiza vendejo", + "es": "Tienda de bolsos / equipaje", + "fi": "Matkalaukkumyymälä", + "fr": "Bagagerie", + "gl": "Tenda de maletas", + "hu": "Táska- és bőröndbolt", + "id": "Toko Tas/Koper", + "it": "Negozio di borse e valigie", + "ja": "バッグ/カバン店", + "nl": "Zak-/Reiskofferwinkel", + "pl": "Sklep z torebkami/walizkami", + "pt": "Loja de malas / bagagem", + "ru": "Магазин сумок и саквояжа", + "sl": "Trgovina za prtljago", + "sv": "Väskaffär" + }, + "searchTerms": { + "en": [ + "handbag", + "purse" + ], + "da": [ + "taskebutik", + "kuffertbutik", + "lædervareforretning" + ], + "de": [ + "taschengeschäft", + "taschen/koffer-geschäft", + "reisegepäckgeschäft" + ], + "eo": [ + "sakoj", + "valizoj", + "mansaketoj" + ], + "es": [ + "cartera", + "billetera", + "monedero", + "equipaje", + "maleta", + "valija", + "mochila", + "equipajes", + "maletas", + "bolsos" + ], + "fi": [ + "matkalaukku", + "matkatavara", + "laukku", + "kassi", + "säkki", + "kapsäkki", + "laukut", + "kassit", + "säkit", + "kapsäkit" + ], + "fr": [ + "vente de bagages" + ], + "hu": [ + "bőrdíszmű és táskabolt", + "koffer", + "utazótáska" + ], + "it": [ + "borsetta", + "borsa", + "valigia" + ], + "ja": [ + "バッグ", + "カバン", + "鞄" + ], + "nl": [ + "zakken", + "bagage", + "kofferwinkel", + "zakwinkel", + "reiskofferwinkel" + ], + "pl": [ + "torebki", + "torby", + "walizki", + "galanteria" + ], + "pt": [ + "bag", + "luggage", + "mala", + "malas", + "bolsa", + "bolsas" + ], + "ru": [ + "сумка", + "саквояж", + "багаж", + "тележка" + ], + "sv": [ + "väskaffär", + "väskor", + "resväskor", + "bagage", + "bagageväskor", + "handväskor", + "handväska", + "plånbok" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-suitcase-rolling.svg", + "class": "medium" + } + }, + { + "if": "shop=bakery", + "then": { + "en": "Bakery", + "ca": "Fleca", + "da": "Bager", + "de": "Bäckerei", + "eo": "Panejo", + "es": "Panadería", + "fi": "Leipomo", + "fr": "Boulangerie", + "gl": "Panadaría", + "hu": "Pékség", + "id": "Toko Roti", + "it": "Panificio", + "ja": "パン屋", + "nl": "Bakkerij", + "pl": "Piekarnia", + "pt": "Padaria", + "ru": "Булочная", + "sl": "Pekarna", + "sv": "Bageri" + }, + "searchTerms": { + "en": [ + "bread", + "cakes", + "rolls" + ], + "ca": [ + "forn de pa", + "panaderia", + "pastisseria", + "forn" + ], + "da": [ + "bager", + "bageri" + ], + "de": [ + "bäckerei" + ], + "eo": [ + "panvendejo", + "bakejo", + "kukejo", + "panoj", + "bulkoj" + ], + "es": [ + "panadería", + "horno", + "tahona", + "pastelería", + "confitería", + "pastel", + "pan", + "bollería", + "bollo" + ], + "fr": [ + "boulangerie" + ], + "hu": [ + "pogácsa", + "kifli", + "kenyér", + "pékség", + "péksütemény" + ], + "it": [ + "panificio", + "forno", + "panetteria", + "pane", + "fornaio" + ], + "ja": [ + "パン屋", + "ベーカリー", + "食品", + "食べ物", + "食料品", + "小売", + "ショッピング", + "店舗", + "お店" + ], + "nl": [ + "banketbakkerij", + "patisserie" + ], + "pl": [ + "piekarnia", + "pieczywo", + "chleb", + "bułki" + ], + "pt": [ + "bakery", + "pão", + "pães", + "padeiro", + "padeira" + ], + "ru": [ + "булочная", + "хлебный магазин", + "пекарня" + ], + "sl": [ + "pekarija", + "pek" + ], + "sv": [ + "bageri", + "bröd", + "baka", + "bullar", + "bagare" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-bakery.svg", + "class": "medium" + } + }, + { + "if": "shop=bathroom_furnishing", + "then": { + "en": "Bathroom Furnishing Store", + "ca": "Botiga de mobles de bany", + "da": "Badeværelseindretningsbutik", + "de": "Badeinrichtungsgeschäft", + "eo": "Lavĉambr-akcesoraĵa vendejo", + "es": "Tienda de muebles de baño", + "fi": "Kylpyhuoneliike", + "fr": "Fournitures pour salles de bain", + "gl": "Tenda de mobles de baño", + "hu": "Fürdőszobafelszerelés-bolt", + "id": "Toko Perlengkapan Kamar Mandi", + "it": "Negozio di prodotti per il bagno", + "ja": "浴室用品店", + "nl": "Badkamermeubelwinkel", + "pl": "Sklep z wyposażeniem łazienek", + "pt": "Loja de assessórios para casas de banho", + "ru": "Магазин продающий мебель для ванных комнат", + "sl": "Trgovina s kopalniško opremo", + "sv": "Badrumsinredning" + }, + "searchTerms": { + "da": [ + "badeværelseindretningsbutik" + ], + "de": [ + "badezimmereinrichtungsgeschäft", + "badeinrichtungsgeschäft" + ], + "eo": [ + "lavĉambro", + "lavchambro", + "lavcxambro", + "banejo" + ], + "es": [ + "baño", + "lavabo", + "equipamiento", + "muebles" + ], + "fi": [ + "kylpyhuone", + "kylpy", + "suihku", + "amme", + "sisustus", + "sisustaminen", + "pesuhuone", + "sauna" + ], + "fr": [ + "fournitures pour salles de bain" + ], + "hu": [ + "szaniter", + "csaptelep", + "fürdőszoba-felszerelés" + ], + "it": [ + "negozio di sanitari", + "sanitari" + ], + "ja": [ + "浴室用品店", + "バス用品" + ], + "nl": [ + "sanitairwinkel" + ], + "pl": [ + "łazienki", + "wyposażenie łazienek", + "meble łazienkowe", + "akcesoria łazienkowe", + "armatura sanitarna", + "wanny", + "prysznice", + "baterie", + "brodziki", + "zlewy", + "zlewozmywaki", + "umywalki" + ], + "pt": [ + "bathroom furnishing store", + "casa de banho", + "casas de banho", + "wc", + "w.c.", + "banheiro", + "lavabos" + ], + "ru": [ + "ванная", + "мебель", + "сантехника" + ], + "sv": [ + "badrumsinredning", + "badrum" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-bath.svg", + "class": "medium" + } + }, + { + "if": "shop=beauty", + "then": { + "en": "Beauty Shop", + "ca": "Botiga de cosmètics", + "da": "Skønhedsforhandler", + "de": "Schönheitssalon", + "eo": "Salono de beligado", + "es": "Salón de belleza", + "fi": "Kauneushoitola", + "fr": "Salon de beauté", + "gl": "Salón de beleza", + "hu": "Szépségszalon", + "id": "Salon Kecantikan", + "it": "Salone di bellezza", + "ja": "美容サービス", + "nl": "Schoonheidssalon", + "pl": "Salon urody", + "pt": "Centro de estética", + "ru": "Салон красоты", + "sl": "Lepotilni salon", + "sv": "Skönhetssalong" + }, + "searchTerms": { + "en": [ + "spa", + "salon", + "tanning" + ], + "da": [ + "parfume", + "skønhed", + "negle", + "fødder", + "spa", + "solcenter" + ], + "de": [ + "schönheits-salon", + "nagelstudio" + ], + "eo": [ + "frizejo", + "sunbrunigejo", + "beligejo", + "banloko" + ], + "es": [ + "salón de belleza", + "estética", + "belleza", + "cuidado personal", + "embellecimiento", + "spa", + "bronceado", + "cama solar" + ], + "fr": [ + "salon de beauté", + "institut de beauté" + ], + "hu": [ + "kozmetikus" + ], + "it": [ + "salone", + "bellezza", + "spa", + "abbronzatura", + "solare", + "unghie", + "smalto", + "sopracciglia", + "ciglia", + "shiatsu", + "trattamento", + "viso", + "corpo", + "depilazione", + "epilazione", + "laser", + "tatoo", + "peeling", + "tatuaggio" + ], + "ja": [ + "美容サービス", + "エステサロン", + "ネイルサロン" + ], + "nl": [ + "schoonheidswinkel", + "schoonheidsspeciaalzaak" + ], + "pl": [ + "salon piękności", + "salon urody", + "salon kosmetyczny", + "gabinet kosmetyczny", + "zakład kosmetyczny", + "kosmetyka", + "kosmetyczka", + "makijażystka", + "wizażystka", + "depilacja", + "medycyna estetyczna", + "laseroterapia", + "spa" + ], + "pt": [ + "beauty shop", + "loja de beleza", + "loja de produtos de beleza", + "salão de beleza" + ], + "ru": [ + "салон красоты", + "маникюрный салон", + "солярий", + "массаж", + "спа" + ], + "sl": [ + "salon lepote", + "lepotilnica", + "nega rok in nohtov", + "manikura", + "pedikura", + "wellness center" + ], + "sv": [ + "skönhetssalong", + "skönhet", + "skönhetsbehandlingar", + "nagelsalong", + "solarium", + "shiatsu", + "massage", + "spa", + "hälsoanläggning", + "kuranstalt", + "kurort", + "kosmetik", + "smink", + "naglar", + "salong" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-lipstick.svg", + "class": "medium" + } + }, + { + "if": "shop=bed", + "then": { + "en": "Bedding/Mattress Store", + "ca": "Botiga de matalassos", + "da": "Sengetøj / Madras forhandler", + "de": "Betten/Matratzengeschäft", + "eo": "Lita/matraca vendejo", + "es": "Tienda de ropa de cama / Colchonería", + "fi": "Vuodetarvikeliike", + "fr": "Magasin de literie", + "gl": "Tenda de colchóns/roupa de cama", + "hu": "Ágy- és matracbolt", + "id": "Toko Selimut/Matras", + "it": "Negozio di letti/materassi", + "ja": "寝具店", + "nl": "Bed-/Matrassenwinkel", + "pl": "Sklep z łóżkami/materacami", + "pt": "Loja de camas / colchões", + "ru": "Магазин матрасов и постельных принадлежностей", + "sl": "Trgovina s posteljnino in žimnicami", + "sv": "Sängaffär" + }, + "searchTerms": { + "da": [ + "sengetøj / madras forhandler" + ], + "de": [ + "matratzengeschäft", + "schlafzimmerbedarf", + "bettengeschäft", + "schlafzimmereinrichtungsgeschäft", + "matratzenladen" + ], + "eo": [ + "matracoj", + "litoj", + "litkusenoj" + ], + "es": [ + "almohada", + "sábanas", + "cama", + "colchón", + "ropa de cama" + ], + "fi": [ + "uni", + "peti", + "sänky", + "sängyn", + "sängyt", + "pedin", + "petivaatteet", + "lakana", + "peitto", + "tyyny", + "patja", + "nukkuminen", + "täkki", + "vuode", + "vuoteen", + "myymälä", + "kauppa", + "liike", + "puoti" + ], + "fr": [ + "vente de literie", + "vente de matelas" + ], + "hu": [ + "hálószobabútor", + "ágy", + "párna", + "paplan", + "takaró", + "lepedő", + "ágynemű" + ], + "id": [ + "tempat tidur", + "sprei", + "seprai", + "ranjang", + "kamar tidur" + ], + "it": [ + "negozio di materassi" + ], + "ja": [ + "ベッド店", + "マットレス店", + "寝具店", + "家具", + "枕", + "ふとん", + "布団", + "ふとん店", + "ベッド" + ], + "nl": [ + "beddenzaak", + "matrassenzaak", + "beddenwinkel", + "bedwinkel", + "matrassenwinkel" + ], + "pl": [ + "łóżka", + "materace", + "pościel", + "poduszki", + "sypialnia", + "sypialnie" + ], + "pt": [ + "bedding/mattress store", + "cama", + "camas", + "colchão", + "colchões" + ], + "ru": [ + "матрас", + "спальные принадлежности", + "постельное бельё" + ], + "sv": [ + "sängaffär", + "sängar", + "madrasser", + "kuddar", + "täcken", + "påslakan", + "lakan" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-lodging.svg", + "class": "medium" + } + }, + { + "if": "shop=beverages", + "then": { + "en": "Beverage Store", + "ca": "Botiga de begudes", + "da": "Vinforhandler", + "de": "Getränkehandel", + "eo": "Trinkaĵa vendejo", + "es": "Tienda de bebidas", + "fi": "Viinakauppa", + "fr": "Magasin de boissons", + "gl": "Tenda de bebidas", + "hu": "Italbolt", + "id": "Toko Minuman", + "it": "Negozio di bevande", + "ja": "飲料店", + "nl": "Drankenwinkel", + "pl": "Sklep z napojami", + "pt": "Loja de bebidas", + "ru": "Магазин по продаже алкогольных и безалкогольных напитков", + "sl": "Trgovina s pijačami", + "sv": "Dryckaffär" + }, + "searchTerms": { + "en": [ + "drinks" + ], + "ca": [ + "licoreria" + ], + "da": [ + "vinforhandler", + "vinforretning" + ], + "de": [ + "getränkehandlung", + "getränkeladen", + "getränkemarkt" + ], + "eo": [ + "trinkaĵoj", + "trinkajhoj", + "trinkajxoj", + "sukoj", + "drinkaĵoj" + ], + "es": [ + "bebida", + "brebaje", + "almacén de bebidas" + ], + "fr": [ + "magasin de vins et spiritueux" + ], + "hu": [ + "pálinka", + "whiskey", + "vodka", + "bor", + "konyak" + ], + "it": [ + "negozio di bevande" + ], + "ja": [ + "飲料店", + "食品" + ], + "nl": [ + "drankenhandel", + "bierhuis", + "drankenhuis", + "drankhandel", + "wijnhandel", + "drankenwinkel", + "slijterij" + ], + "pl": [ + "sklep z napojami", + "napoje", + "soki", + "picie" + ], + "pt": [ + "beverage store", + "bebida", + "bebidas", + "refrigerantes" + ], + "ru": [ + "магазин напитков", + "продажа напитков" + ], + "sl": [ + "pijače" + ], + "sv": [ + "dryck", + "alkohol", + "läsk", + "dricka", + "läskedryck" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-bottles.svg", + "class": "medium" + } + }, + { + "if": "shop=bicycle", + "then": { + "en": "Bicycle Shop", + "ca": "Botiga de bicicletes", + "da": "Cykelbutik", + "de": "Fahrradladen", + "eo": "Bicikla vendejo", + "es": "Tienda de bicicletas", + "fi": "Pyöräliike", + "fr": "Magasin de vélos", + "gl": "Tenda de bicicletas", + "hu": "Kerékpárbolt", + "id": "Toko Sepeda", + "it": "Negozio di biciclette", + "ja": "自転車店", + "nl": "Fietswinkel", + "pl": "Sklep rowerowy", + "pt": "Loja de bicicletas", + "ru": "Веломагазин", + "sl": "Kolesarska trgovina", + "sv": "Cykelaffär" + }, + "searchTerms": { + "en": [ + "bicycle store", + "bike", + "bike store", + "repair", + "tricycle", + "unicycle" + ], + "ca": [ + "botiga de bicicletes" + ], + "da": [ + "cykelforretning", + "cykelbutik", + "cykelsmed" + ], + "de": [ + "fahrradladen", + "fahrradgeschäft", + "fahrrad-geschäft", + "fahrrad-handlung" + ], + "eo": [ + "bicikloj" + ], + "es": [ + "tienda", + "taller", + "reparación", + "alquiler", + "préstamo", + "bici", + "bicicleta", + "ciclismo", + "bicimontaña" + ], + "fi": [ + "pyöräkauppa", + "pyöräliike", + "pyörän varaosa", + "pyörämyymälä", + "polkupyöräkauppa", + "polkupyöräliike", + "polkupyörän varaosa", + "polkupyörämyymälä", + "polkupyörä", + "pyörä" + ], + "fr": [ + "magasin de vélo" + ], + "hu": [ + "bicaj", + "bringa", + "bicikli" + ], + "it": [ + "negozio bici", + "riparazione", + "bici", + "biciclette", + "velocipedi", + "tricicli", + "monocicli" + ], + "ja": [ + "自転車店", + "自転車", + "自転車屋", + "二輪" + ], + "nl": [ + "fietsenwinkel", + "fietsenzaak", + "fietsverkoop" + ], + "pl": [ + "sklep rowerowy", + "serwis rowerowy", + "rowery" + ], + "pt": [ + "bicycle", + "bicicletas", + "bicicleta", + "triciclo", + "uniciclo", + "ciclismo", + "ciclistas", + "btt" + ], + "ru": [ + "веломагазин" + ], + "sl": [ + "kolesa", + "kolesarjenje" + ], + "sv": [ + "cykelaffär", + "cykel", + "cykelreparatör", + "cykelförsäljning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-bicycle.svg", + "class": "medium" + } + }, + { + "if": "shop=boat", + "then": { + "en": "Boat Store", + "ca": "Botiga de nàutica", + "da": "Bådforhandler", + "de": "Bootsgeschäft", + "eo": "Boat‑vendejo", + "es": "Tienda de barcos", + "fi": "Venekauppa", + "fr": "Magasin de bateaux", + "gl": "Tenda de embarcacións", + "hu": "Hajósbolt", + "it": "Negozio di barche", + "ja": "ボート店", + "nl": "Bootwinkel", + "pl": "Sklep żeglarski", + "pt": "Loja de barcos", + "ru": "Магазин лодок", + "sv": "Båtaffär" + }, + "searchTerms": { + "en": [ + "fishing boat", + "jetski", + "motorboat", + "rowboat", + "sailboat", + "vessel", + "watercraft" + ], + "da": [ + "fiskebåd", + "kutter", + "jetski", + "motorbåd", + "sejlbåd", + "robåd" + ], + "de": [ + "bootshändler", + "fischerboot", + "jetski", + "motorboot", + "segelboot", + "ruderboot", + "wasserfahrzeug" + ], + "eo": [ + "boatoj", + "ŝipoj", + "motorboatoj", + "kanotoj", + "motorkanotoj" + ], + "es": [ + "barco", + "bote", + "lancha", + "barco de pesca", + "jetski", + "bote de remos", + "velero", + "embarcaciones" + ], + "fr": [ + "magasin de bateau", + "bateau de pêche", + "jetski", + "hors-bord" + ], + "gl": [ + "barco", + "bote", + "lancha", + "barco de pesca", + "jetski", + "bote de remos", + "veleiro", + "embarcacion", + "barcos" + ], + "ja": [ + "ボート店", + "お店", + "店舗", + "ショッピング", + "小売" + ], + "nl": [ + "visboot", + "boot", + "jetski", + "zijlboot", + "roeiboot" + ], + "pl": [ + "sklep żeglarski", + "sklep motorowodny", + "sklep żeglarsko-motorowodny", + "sklep z łodziami", + "łódź", + "łodzie", + "jachty", + "skutery wodne", + "sprzedaż łodzi", + "motorówek", + "jachtów", + "żeglarstwo", + "żeglarski" + ], + "pt": [ + "boat store", + "loja de barcos", + "vendedor de barcos", + "venda de barcos", + "barco", + "embarcação", + "loja de embarcações", + "vendedor de embarcações", + "venda de embarcações", + "jetski", + "mota de água", + "barco à vela" + ], + "sv": [ + "båtaffär", + "fiskebåt", + "jetski", + "jet-ski", + "vattenskoter", + "motorboat", + "eka", + "roddbåt", + "segelbåt", + "segel", + "båt", + "båttillbehör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-boat.svg", + "class": "medium" + } + }, + { + "if": "shop=bookmaker", + "then": { + "en": "Bookmaker", + "ca": "Cusidor de llibres", + "da": "Bookmaker", + "de": "Wettbüro", + "eo": "Vetperistejo", + "es": "Corredor de apuestas", + "fi": "Kirjapaino", + "fr": "Bookmaker", + "gl": "Corredor de apostas", + "hu": "Fogadóiroda", + "id": "Juru Taruh", + "it": "Agenzia di scommesse", + "ja": "公営競技投票券売り場", + "nl": "Bookmaker (gokkantoor)", + "pl": "Zakład bukmacherski", + "pt": "Casa de apostas", + "ru": "Букмекерская контора", + "sl": "Stavnica", + "sv": "Vadslagning" + }, + "searchTerms": { + "en": [ + "betting", + "bookie", + "gamble", + "gambling", + "turf accountant" + ], + "da": [ + "bookmaker" + ], + "de": [ + "wettbüro" + ], + "eo": [ + "vetperisto", + "bukmekro" + ], + "es": [ + "apuesta", + "dinero", + "apostador" + ], + "fr": [ + "preneur de paris", + "bookmaker" + ], + "gl": [ + "casa de apostas", + "casino", + "codere", + "luckia", + "apostas" + ], + "hu": [ + "bukméker" + ], + "id": [ + "tukang taruh", + "taruhan", + "judi" + ], + "it": [ + "scommesse", + "puntate", + "allibratore" + ], + "ja": [ + "公営競技投票券売り場", + "馬券売り場", + "車券売り場", + "舟券売り場", + "ギャンブル", + "アダルト" + ], + "nl": [ + "bookmaker" + ], + "pl": [ + "zakład bukmacherski", + "bukmacher", + "zakłady sportowe", + "hazard" + ], + "pt": [ + "bookmaker", + "bolsa de apostas", + "lotaria", + "totoloto", + "totobola", + "euromilhões", + "sorte", + "apostas desportivas" + ], + "ru": [ + "букмекер", + "ставки", + "лототрон", + "пари", + "лотерея" + ], + "sl": [ + "pobiralec stav" + ], + "sv": [ + "vadslagning", + "vadhållning", + "dobbel", + "spel", + "trav", + "stryktipset", + "måltipset" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-money_hand.svg", + "class": "medium" + } + }, + { + "if": "shop=books", + "then": { + "en": "Book Store", + "ca": "Llibreria", + "da": "Boghandler", + "de": "Buchladen", + "eo": "Libra vendejo", + "es": "Librería (venta de libros)", + "fi": "Kirjakauppa", + "fr": "Librairie", + "gl": "Libraría", + "hu": "Könyvesbolt", + "id": "Toko Buku", + "it": "Libreria", + "ja": "本屋", + "nl": "Boekwinkel", + "pl": "Księgarnia", + "pt": "Livraria", + "ru": "Книжный магазин", + "sl": "Knjigarna", + "sv": "Bokhandel" + }, + "searchTerms": { + "da": [ + "boghandler" + ], + "de": [ + "buchhandlung", + "buchhändler" + ], + "eo": [ + "librejo", + "librovendejo" + ], + "es": [ + "libro", + "obra", + "novela", + "cuento", + "revista", + "tienda", + "venta" + ], + "fr": [ + "bouquiniste", + "livres d'occasion" + ], + "gl": [ + "libraría", + "venda de libros" + ], + "hu": [ + "antikvárium" + ], + "it": [ + "negozio di libri" + ], + "ja": [ + "本屋", + "ブックストア", + "古書店", + "古書", + "書籍販売", + "書店", + "本" + ], + "nl": [ + "boek", + "bibliotheek", + "boekenwinkel", + "boekhandel" + ], + "pl": [ + "księgarnia", + "książki", + "komiksy", + "antykwariat" + ], + "pt": [ + "book store", + "loja de livros", + "livro", + "livros", + "livreiro" + ], + "ru": [ + "магазин книг", + "книжный магазин", + "книги" + ], + "sl": [ + "knjigarna", + "trgovina s knjigami", + "založba" + ], + "sv": [ + "bokhandel", + "bokförsäljning", + "antikvariat" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-book.svg", + "class": "medium" + } + }, + { + "if": "shop=brewing_supplies", + "then": { + "en": "Brewing Supply Store", + "da": "Bryggeudstyrsbutik", + "de": "Brauzubehörgeschäft", + "eo": "Bier-/vin-farendaĵa vendejo", + "es": "Tienda de suministros de cerveza", + "fr": "Magasin de matériel de brasserie", + "gl": "Tenda de cervexaría artesanal", + "hu": "Borászati, sör- és párlafőzési felszereléseket árusító üzlet", + "it": "Negozio di forniture per la produzione di birra", + "ja": "醸造用品店", + "nl": "Winkel voor brouwbenodigdheden", + "pl": "Sklep dla piwowarów domowych", + "pt": "Loja de material de fermentação", + "sv": "Affär för hembryggningstillbehör" + }, + "searchTerms": { + "en": [ + "brew shop", + "homebrew supply store" + ], + "da": [ + "brygning", + "øl", + "hjemmebryg", + "gæring" + ], + "de": [ + "brauerei", + "heimbrauereizubehör" + ], + "eo": [ + "bierfarado", + "vinfarado", + "fermentado", + "biergistoj", + "gistoj", + "fermentiloj", + "malto", + "bierhordeo", + "lupolo" + ], + "es": [ + "tienda de cerveza", + "tienda de suministros homebrew", + "homebrew" + ], + "fr": [ + "brasserie", + "brasseur" + ], + "ja": [ + "醸造用品店", + "醸造", + "酒", + "酒造", + "diy", + "ホームブリュー" + ], + "nl": [ + "brouwerijbenodigdheden" + ], + "pl": [ + "piwowarstwo domowe", + "browar domowy", + "domowy browar", + "akcesoria piwowarskie", + "akcesoria winiarskie", + "słód", + "słody", + "chmiele" + ], + "pt": [ + "estabelecimento", + "cerveja", + "cervejaria", + "caseira", + "produção" + ], + "sv": [ + "affär för hembryggningstillbehör", + "hembryggning", + "bryggning", + "vin", + "öl", + "vinbryggning", + "vintillverkning", + "ölbryggning", + "öltillverkning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-storage_fermenter.svg", + "class": "medium" + } + }, + { + "if": "shop=butcher", + "then": { + "en": "Butcher", + "ca": "Carnisseria", + "da": "Slagter", + "de": "Metzgerei", + "eo": "Vianda vendejo", + "es": "Carnicería", + "fi": "Lihakauppa", + "fr": "Boucher", + "gl": "Carnizaría", + "hu": "Hentes", + "id": "Penjagalan", + "it": "Macellaio", + "ja": "精肉店", + "nl": "Slagerij", + "pl": "Sklep mięsny", + "pt": "Talho", + "ru": "Мясной", + "sl": "Mesar", + "sv": "Slaktare" + }, + "searchTerms": { + "en": [ + "chicken", + "beef", + "lamb", + "meat", + "pork" + ], + "da": [ + "slagter", + "slagterbutik", + "slagterforretning" + ], + "de": [ + "metzgerei", + "fleischerei", + "fleischhackerei", + "schlachterei", + "fleischer", + "metzger", + "schlachter" + ], + "eo": [ + "viandejo", + "viandobutiko", + "viandovendejo" + ], + "es": [ + "carnicería", + "carnicero", + "carne" + ], + "fr": [ + "boucherie", + "charcuterie", + "charcutier", + "boucher" + ], + "hu": [ + "mészáros", + "húsbolt" + ], + "it": [ + "macellaio", + "macelleria", + "salumiere" + ], + "ja": [ + "精肉店", + "肉屋", + "食品", + "食べ物", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "slagerij", + "beenhouwerij" + ], + "pl": [ + "sklep mięsny", + "rzeźnik", + "mięso", + "wędliny" + ], + "pt": [ + "butcher", + "carne", + "talhante", + "açougue", + "porco", + "vaca", + "galinha", + "borrego", + "ovelha", + "vitela", + "enchidos" + ], + "ru": [ + "мясной", + "мясная лавка", + "мясник", + "колбасы", + "фарш", + "вырезка", + "стейки" + ], + "sl": [ + "mesarija", + "mesarstvo" + ], + "sv": [ + "slaktare", + "kött", + "köttaffär", + "köttstyckare", + "charkuterist", + "charkuterihandlare", + "styckare", + "chark" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-cleaver.svg", + "class": "medium" + } + }, + { + "if": "shop=camera", + "then": { + "en": "Camera Equipment Store", + "da": "Fotoforhandler", + "de": "Fotofachgeschäft", + "eo": "Vendejo kun fotiloj kaj lensoj", + "es": "Tienda de equipos de fotografía", + "fi": "Kameraliike", + "fr": "Boutique de matériel photographique", + "gl": "Tenda de fotografía", + "hu": "Fényképezőgép-üzlet", + "it": "Negozio di materiale fotografico", + "ja": "カメラ店", + "nl": "Winkel voor camerabenodigdheden", + "pl": "Sklep z kamerami i aparatami", + "pt": "Loja de equipamento fotográfico", + "sv": "Affär för kameratillbehör" + }, + "searchTerms": { + "en": [ + "camera", + "film", + "lens", + "photo" + ], + "da": [ + "foto", + "kamera", + "linse", + "film" + ], + "de": [ + "kamera", + "film", + "linse", + "foto" + ], + "eo": [ + "fotiloj", + "lensoj", + "aparatoj", + "objektivoj", + "kameraoj" + ], + "es": [ + "cámara", + "película", + "lente", + "foto", + "fotografía" + ], + "fr": [ + "appareil photo", + "caméra", + "camera", + "film" + ], + "gl": [ + "fotografía", + "cámara", + "vídeo" + ], + "hu": [ + "fotósbolt" + ], + "ja": [ + "カメラ店", + "カメラ用品", + "レンズ", + "写真" + ], + "nl": [ + "camera", + "lens", + "foto" + ], + "pl": [ + "sklep z kamerami i aparatami fotograficznymi", + "sprzęt fotograficzny", + "kamery", + "aparaty fotograficzne", + "obiektywy fotograficzne" + ], + "pt": [ + "câmara", + "lentes", + "fotografia", + "fotográfica", + "filme", + "revelação", + "fotos", + "foto" + ], + "sv": [ + "affär för kameratillbehör", + "kameratillbehör. kamera", + "kameratillbehöraffär", + "film", + "objektiv", + "linser", + "foto", + "fotografering" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-camera-retro.svg", + "class": "medium" + } + }, + { + "if": "shop=candles", + "then": { + "en": "Candle Shop", + "ca": "Botiga d'espelmes", + "da": "Stearinlysforhandler", + "de": "Kerzengeschäft", + "eo": "Kandela vendejo", + "es": "Tienda de velas", + "fi": "Kynttiläkauppa", + "fr": "Magasin de bougies", + "gl": "Tenda de velas", + "hu": "Gyertyabolt", + "id": "Toko Lilin", + "it": "Negozio di candele", + "ja": "キャンドル専門店", + "nl": "Kaarsenwinkel", + "pl": "Sklep ze świecami", + "pt": "Loja de velas", + "ru": "Свечной магазин", + "sl": "Svečarstvo", + "sv": "Ljusaffär" + }, + "searchTerms": { + "en": [ + "wax" + ], + "da": [ + "stearinlysforhandler", + "stearinlysbutik", + "lysstøberi" + ], + "de": [ + "kerzenhandlung" + ], + "eo": [ + "kandeloj" + ], + "es": [ + "velas", + "vela", + "cirio", + "candela" + ], + "fr": [ + "vente de bougies et d'accessoires" + ], + "hu": [ + "mécsesbolt", + "viasz" + ], + "it": [ + "negozio di candele" + ], + "ja": [ + "キャンドル", + "ロウソク", + "蝋燭", + "蠟燭", + "インテリア" + ], + "nl": [ + "kaarsen", + "parafine", + "was", + "gezelligheid", + "lont" + ], + "pl": [ + "świece" + ], + "pt": [ + "candle shop", + "velas", + "vela", + "pavios", + "cera" + ], + "ru": [ + "свечи", + "подсвечники", + "канделябры" + ], + "sl": [ + "sveče", + "vosek", + "svečarna" + ], + "sv": [ + "ljusaffär", + "ljus", + "värmeljus", + "mysljus", + "stearinljus", + "ljusstakar" + ] + } + }, + { + "if": "shop=cannabis", + "then": { + "en": "Cannabis Shop", + "ca": "Botiga cannàbica", + "de": "Cannabisgeschäft", + "eo": "Mariĥuana vendejo", + "es": "Tienda de cannabis", + "fi": "Kannabiskauppa", + "fr": "Magasin de canabis", + "gl": "Tenda de cannabis", + "hu": "Marihuánabolt", + "it": "Negozio di cannabis", + "ja": "Cannabis Shop(illegal in Japan)", + "nl": "Cannabiswinkel", + "pl": "Sklep z produktami z konopi", + "pt": "Loja de canábis", + "sv": "Cannabisaffär" + }, + "searchTerms": { + "en": [ + "420", + "marijuana", + "pot", + "reefer", + "weed" + ], + "de": [ + "cannabis", + "marihuana", + "pot", + "weed", + "420" + ], + "eo": [ + "marihhuano", + "marihxuano", + "kanabo", + "haŝiŝo" + ], + "es": [ + "420", + "marihuana", + "mariguana", + "marijuana", + "hierba" + ], + "fr": [ + "canabis", + "marijuana", + "herbe" + ], + "hu": [ + "kannabisz", + "vadkender", + "joint", + "fű" + ], + "ja": [ + "cannabis shop(illegal in japan)" + ], + "nl": [ + "coffeeshop" + ], + "pl": [ + "sklep z produktami z konopi", + "coffee shop", + "konopie", + "marihuana", + "cannabis", + "kanabis" + ], + "pt": [ + "cannabis", + "canábis", + "cânabis", + "canabis", + "liamba", + "marijuana", + "suruma", + "maconha", + "ganja", + "ganza" + ], + "sv": [ + "cannabisaffär", + "cannabis", + "420", + "marijuana", + "pot", + "reefer", + "weed" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-cannabis.svg", + "class": "medium" + } + }, + { + "if": "shop=car", + "then": { + "en": "Car Dealership", + "ca": "Concessionari de cotxes", + "da": "Bilforhandler", + "de": "Autohändler", + "eo": "Aŭtomobila vendejo", + "es": "Concesionario de automóviles", + "fi": "Autokauppa", + "fr": "Concessionnaire automobile", + "gl": "Concesionario de automóbiles", + "hu": "Autókereskedés", + "id": "Dealer Mobil", + "it": "Concessionario", + "ja": "カーディーラー", + "nl": "Autoshowroom", + "pl": "Sprzedaż samochodów", + "pt": "Loja de automóveis", + "ru": "Автодилер", + "sl": "Avtomobilski salon", + "sv": "Bilhandlare" + }, + "searchTerms": { + "en": [ + "automobile", + "automotive" + ], + "da": [ + "bilforhandler", + "autoforhandler", + "bil", + "køretøj" + ], + "de": [ + "autohändler", + "autohaus" + ], + "eo": [ + "aŭtomobiloj", + "aŭtoj", + "autoj", + "auxtoj", + "salono de aŭtoj" + ], + "es": [ + "coche", + "carro", + "auto", + "automóvil", + "concesionario", + "concesionario de automóviles", + "concesionario de coches", + "concesionario de autos" + ], + "fr": [ + "concessionnaire", + "garage", + "garagiste" + ], + "hu": [ + "autószalon", + "márkakereskedés" + ], + "it": [ + "concessionaria auto" + ], + "ja": [ + "自動車販売店", + "カーディーラー", + "中古車販売店" + ], + "nl": [ + "autodealer", + "autowinkel", + "toonzaal", + "autotoonzaal", + "garage", + "autogarage" + ], + "pl": [ + "sprzedawca samochodów", + "dealer samochodowy", + "salon samochodowy", + "sprzedaż samochodów", + "sprzedaż aut", + "samochody", + "auta" + ], + "pt": [ + "concessonária de automomóveis", + "stande", + "setande", + "cetande", + "stand", + "automóveis", + "automóvel", + "auto", + "carros", + "carro", + "concessionário" + ], + "ru": [ + "автомобильный салон", + "диллерский автоцентр" + ], + "sl": [ + "avtohiša" + ], + "sv": [ + "bilhandlare", + "bilsäljare", + "bilförsäljning", + "bilfirma", + "bilverkstad", + "bilreparatör", + "biltillbehör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-car.svg", + "class": "medium" + } + }, + { + "if": "shop=car_parts", + "then": { + "en": "Car Parts Store", + "ca": "Botiga de recanvis de cotxe", + "da": "Bilreservedelsforhandler", + "de": "Autoteilehandel", + "eo": "Aŭtomobil-parta vendejo", + "es": "Tienda de componentes de automóvil", + "fi": "Varaosamyymälä", + "fr": "Magasin de pièces automobiles", + "gl": "Tenda de recambios de automóbiles", + "hu": "Autóalkatrész-üzlet", + "id": "Toko Peralatan Mobil", + "it": "Negozio di autoricambi", + "ja": "カー用品店", + "nl": "Auto-onderdelenwinkel", + "pl": "Sklep z częściami do samochodów", + "pt": "Loja de peças para automóveis", + "ru": "Автозапчасти", + "sl": "Avtomobilski deli", + "sv": "Biltillbehör" + }, + "searchTerms": { + "en": [ + "automobile", + "automotive" + ], + "da": [ + "autoudstyrsbutik", + "biludstyrsbutik", + "bil", + "auto", + "reservedele" + ], + "de": [ + "kfz-teile-handlung", + "autoteile-geschäft", + "auto-zubehör-handlung", + "autoersatzteilverkauf" + ], + "eo": [ + "partoj aŭtomobilaj", + "pecoj aŭtomobilaj" + ], + "es": [ + "coche", + "carro", + "auto", + "automóvil", + "vehículo", + "repuestos", + "piezas", + "partes", + "tienda de partes", + "autopartes" + ], + "fi": [ + "varaosa", + "korjaamo", + "auto", + "autot", + "autonkorjaus", + "autoliike" + ], + "fr": [ + "magasin de pièces automobiles" + ], + "hu": [ + "gépkocsi", + "gépjármű", + "alkatrész" + ], + "it": [ + "negozio autoricambi" + ], + "ja": [ + "自動車部品店", + "カーパーツショップ", + "カー用品", + "自動車用品" + ], + "nl": [ + "automaterialenwinkel", + "automaterialenhandel", + "auto-onderdelenhandel" + ], + "pl": [ + "sklep z częściami samochodowymi", + "części samochodowe", + "sklep motoryzacyjny", + "samochody", + "akumulatory" + ], + "pt": [ + "loja de peças automóveis", + "peça", + "peças", + "automóvel", + "automóveis", + "acessórios", + "aftermarket", + "origem", + "carros", + "veículos", + "camiões", + "camião" + ], + "ru": [ + "автозапчасти" + ], + "sl": [ + "prodaja avtomobilskih delov" + ], + "sv": [ + "bildelar", + "biltillbehör", + "reservdelar", + "bilreservdelar", + "motor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-car-battery.svg", + "class": "medium" + } + }, + { + "if": "shop=car_repair", + "then": { + "en": "Car Repair Shop", + "ca": "Taller d'automòbils", + "da": "Bilværksted", + "de": "Autowerkstatt", + "eo": "Aŭtomobil-riparejo", + "es": "Taller de reparación de automóviles", + "fi": "Autokorjaamo", + "fr": "Garage de réparation automobile", + "gl": "Taller de arranxo de automóbiles", + "hu": "Autószerelő", + "id": "Bengkel Mobil", + "it": "Autofficina", + "ja": "自動車修理工場", + "nl": "Autogarage", + "pl": "Warsztat samochodowy", + "pt": "Oficina de automóveis", + "ru": "Автомастерская", + "sl": "Avtoservis", + "sv": "Bilverkstad" + }, + "searchTerms": { + "en": [ + "auto mechanic", + "automechanic", + "automobile", + "automotive", + "garage", + "inspection", + "oil change", + "service" + ], + "da": [ + "autoværksted", + "bilværksted", + "automekaniker", + "mekaniker", + "værksted" + ], + "de": [ + "autowerkstatt", + "kfz-werkstatt", + "autoreparatur", + "kfz-service", + "automobil-mechatroniker" + ], + "eo": [ + "aŭtoriparejo", + "riparejo", + "aŭtoservejo", + "aŭtejo", + "autoriparejo", + "auxtoriparejo", + "meĥanisto", + "mekanisto", + "meĥanikisto", + "mekanikisto" + ], + "es": [ + "coche", + "carro", + "auto", + "automóvil", + "vehículo", + "taller", + "mecánico", + "chapero", + "reparación", + "reparación de vehículos", + "reparación de automóviles", + "reparación del automóvil", + "taller de reparación", + "taller de reparaciones", + "tienda de reparación", + "gomería", + "gomeria", + "neumáticos" + ], + "fi": [ + "autokorjaamo", + "korjaamo", + "autohuolto", + "huolto", + "katsastus", + "autokatsastus", + "auto", + "autot", + "autoliike" + ], + "fr": [ + "garage", + "atelier de mécanique automobile", + "atelier de réparation automobile" + ], + "gl": [ + "taller", + "taller de vehículos", + "taller de automóbiles", + "taller de coches", + "taller de reparación" + ], + "hu": [ + "autószerviz", + "autójavító" + ], + "it": [ + "officina" + ], + "ja": [ + "自動車修理工場" + ], + "nl": [ + "garage", + "autohersteller" + ], + "pl": [ + "warsztat samochodowy", + "auto serwis", + "autoserwis", + "auto-serwis", + "mechanik", + "naprawa", + "naprawy", + "serwis", + "garaż", + "samochód", + "auto", + "samochodowy" + ], + "pt": [ + "car repair shop", + "oficina", + "reparação", + "reparações", + "automóvel", + "automóveis" + ], + "ru": [ + "автомастерская", + "ремонт авто", + "станция техобслуживания", + "автосервис" + ], + "sl": [ + "servis avtomobilov", + "avtomobilski servis", + "avtomehanik" + ], + "sv": [ + "bilverkstad", + "verkstad", + "bilreparatör", + "motor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-car-repair.svg", + "class": "medium" + } + }, + { + "if": "shop=caravan", + "then": { + "en": "RV Dealership", + "de": "Wohnwagengeschäft", + "eo": "Vendejo de kampad-veturiloj", + "es": "Concesionario de autocaravanas", + "fi": "Asuntovaunukauppa", + "fr": "Concessionnaire de véhicules de tourisme", + "gl": "Concesionario de autocaravanas", + "hu": "Lakókocsi kereskedés", + "it": "Concessionario caravan", + "ja": "キャラバンカー販売店", + "nl": "Caravan-dealer", + "pl": "Sklep z kamperami i przyczepami", + "pt": "Vendedor de caravanas", + "ru": "Продажа домов на колёсах", + "sv": "Husvagnsförsäljare" + }, + "searchTerms": { + "en": [ + "auto", + "camper", + "recreational vehicle" + ], + "de": [ + "wohnwagengeschäft", + "caravangeschäft" + ], + "eo": [ + "kampadveturiloj", + "kampveturiloj", + "domveturiloj", + "loĝaŭtoj" + ], + "es": [ + "caravana", + "remolque", + "autocaravana", + "roulotte", + "camper", + "cámper", + "vehículo recreacional", + "casa rodante" + ], + "fr": [ + "concessionnaire", + "automobile", + "caravane", + "camping-car" + ], + "it": [ + "auto", + "camper" + ], + "ja": [ + "キャラバンカー販売店", + "キャラバン", + "トレーラー", + "移動式住宅", + "自動車", + "カー", + "自動車販売店" + ], + "nl": [ + "auto", + "camper", + "caravan" + ], + "pl": [ + "kamper", + "camper", + "karawan", + "caravan", + "przyczepa", + "przyczepa kempingowa", + "kemping", + "kamping", + "camping" + ], + "pt": [ + "trailer", + "motocasa", + "caravana", + "auto-caravana", + "autocaravana", + "caravanismo", + "rulote", + "rolote", + "motorhome", + "concessionário", + "concessionária" + ], + "sv": [ + "husvagnsförsäljare", + "husbilsförsäljare", + "husvagn", + "husbil", + "tältvagn" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-camper_trailer.svg", + "class": "medium" + } + }, + { + "if": "shop=carpet", + "then": { + "en": "Carpet Store", + "ca": "Botiga de catifes", + "da": "Tæppeforhandler", + "de": "Teppichgeschäft", + "eo": "Tapiŝa vendejo", + "es": "Tienda de alfombras", + "fi": "Mattokauppa", + "fr": "Magasin de tapis", + "gl": "Tenda de alfombras", + "hu": "Szőnyegbolt", + "id": "Toko Karpet", + "it": "Negozio di tappeti", + "ja": "カーペット専門店", + "nl": "Tapijtwinkel", + "pl": "Sklep z dywanami", + "pt": "Loja de tapetes", + "ru": "Магазин ковров", + "sl": "Trgovina s preprogrami", + "sv": "Mattaffär" + }, + "searchTerms": { + "en": [ + "rug" + ], + "da": [ + "tæppeforhandler", + "tæppeforretning" + ], + "de": [ + "teppichhändler", + "teppichhaus" + ], + "eo": [ + "tapiŝoj", + "tapishoj", + "tapisxoj", + "plankoj" + ], + "es": [ + "alfombra", + "moqueta", + "tapiz" + ], + "fr": [ + "magasin de tapis" + ], + "hu": [ + "szőnyegház", + "padlószőnyeg áruház", + "falikárpit" + ], + "it": [ + "tappeti", + "persiani" + ], + "ja": [ + "カーペット", + "敷物", + "表具店", + "表具", + "インテリア" + ], + "nl": [ + "vloerbedekkingswinkel", + "vloerbedekkingsspeciaalzaak" + ], + "pl": [ + "sklep z dywanami", + "dywany", + "wykładziny" + ], + "pt": [ + "carpet store", + "tapete", + "tapetes", + "passadeira", + "passadeiras", + "paçadeira", + "paçadeiras" + ], + "ru": [ + "ковры" + ], + "sv": [ + "mattaffär", + "mattor", + "matta" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-tape.svg", + "class": "medium" + } + }, + { + "if": "shop=catalogue", + "then": { + "en": "Catalog Shop", + "de": "Versandhandel", + "eo": "Ricevejo de aĉetaĵoj (per katalogo)", + "es": "Tienda de catálogo", + "fr": "Magasin à catalogue", + "gl": "Tenda de catálogo", + "hu": "Katalógus-áruház", + "it": "Produzione di Cataloghi", + "ja": "カタログショップ", + "nl": "Cataloguswinkel", + "pl": "Catalog Shop", + "pt": "Loja de catálogo", + "sv": "Katalogaffär" + }, + "searchTerms": { + "de": [ + "versandhandel" + ], + "eo": [ + "kataloga vendejo", + "ricevo de aĉetoj" + ], + "es": [ + "catálogo", + "catalogo" + ], + "fr": [ + "catalogue" + ], + "hu": [ + "webshop" + ], + "ja": [ + "カタログショップ", + "カタログ店", + "店舗", + "お店", + "ショッピング", + "小売" + ], + "nl": [ + "cataloguswinkel" + ], + "pl": [ + "catalog shop", + "katalog", + "argos" + ], + "pt": [ + "catálogo" + ], + "sv": [ + "katalogaffär", + "katalog" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=charity", + "then": { + "en": "Charity Store", + "ca": "Botiga de Caritat", + "da": "Velgørenhedsbutik", + "de": "Sozialkaufhaus", + "eo": "Almoza vendejo", + "es": "Tienda de caridad", + "fi": "Hyväntekeväisyyskauppa", + "fr": "Magasin d'organisme caritatif", + "gl": "Tenda solidaria", + "hu": "Adománybolt", + "it": "Mercatino dell'usato", + "ja": "チャリティーショップ", + "nl": "Winkel van goed doel", + "pl": "Sklep charytatywny", + "pt": "Loja solidária", + "ru": "Благотворительный магазин", + "sv": "Second hand-butik" + }, + "searchTerms": { + "en": [ + "thrift", + "op shop", + "nonprofit" + ], + "da": [ + "genbrugsbutik", + "velgørenhedsbutik" + ], + "de": [ + "gebrauchtwarenladen" + ], + "eo": [ + "almozo" + ], + "es": [ + "caridad", + "segunda mano", + "sin fines de lucro" + ], + "fr": [ + "boutique caritative" + ], + "hu": [ + "jótékonysági bolt" + ], + "it": [ + "mercatino dell'usato", + "robivecchi" + ], + "ja": [ + "スリフトショップ", + "チャリティ店", + "チャリティ販売店", + "慈善販売店", + "慈善活動", + "寄贈", + "寄付" + ], + "nl": [ + "kringloopwinkel", + "kringloopcentrum", + "kringwinkel", + "meerwinkel", + "vzw", + "goede doel", + "charitatieve instelling", + "charitatieve winkel" + ], + "pl": [ + "sklep charytatywny", + "charytatywne", + "rzeczy używane" + ], + "pt": [ + "loja de caridade", + "charity store", + "caridade" + ], + "ru": [ + "черитишоп" + ], + "sv": [ + "second hand", + "secondhand", + "begagnat", + "secondhandbutik", + "second handbutik", + "second hand-butik", + "bättre begagnat", + "begagnade varor", + "vintage", + "välgörenhet", + "välgörenhetsbutik", + "myrorna", + "andrahandsbutik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=cheese", + "then": { + "en": "Cheese Store", + "ca": "Botiga de formatge", + "da": "Ostehandler", + "de": "Käseladen", + "eo": "Fromaĝa vendejo", + "es": "Tienda de quesos", + "fi": "Juustopuoti", + "fr": "Fromager", + "gl": "Queixaría", + "hu": "Sajtbolt", + "id": "Toko Keju", + "it": "Negozio di formaggi", + "ja": "チーズ店", + "nl": "Kaaswinkel", + "pl": "Sklep z serami", + "pt": "Loja de queijos", + "ru": "Магазин сыров", + "sl": "Trgovina s siri", + "sv": "Ostaffär" + }, + "searchTerms": { + "da": [ + "ostehandler", + "ostebutik", + "osteforretning" + ], + "de": [ + "käseladen" + ], + "eo": [ + "fromaĝoj", + "fromaghoj", + "fromagxoj" + ], + "es": [ + "quesería", + "quesos", + "lácteos" + ], + "fr": [ + "vente de fromages" + ], + "gl": [ + "tenda de queixos", + "queixería", + "queixo" + ], + "hu": [ + "kecskesajtbolt", + "francia sajtok boltja" + ], + "it": [ + "formaggeria" + ], + "ja": [ + "チーズ店", + "食品", + "食べ物", + "食料品", + "店舗", + "お店", + "乳製品" + ], + "nl": [ + "kaashandel" + ], + "pl": [ + "sery" + ], + "pt": [ + "cheese store", + "queijo", + "queijos" + ], + "ru": [ + "магазин сыра", + "магазин сыров", + "сыр", + "сыры", + "сырный магазин" + ], + "sl": [ + "sir", + "ementaler", + "gauda", + "kozji", + "ovčji", + "gorgonzola", + "plesni" + ], + "sv": [ + "ostaffär", + "ost", + "ostar", + "ostbutik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-cheese.svg", + "class": "medium" + } + }, + { + "if": "shop=chemist", + "then": { + "en": "Drugstore", + "ca": "Farmàcia", + "da": "Materialist", + "de": "Drogerie", + "eo": "Kosmetikaĵa (ankaŭ purigaĵoj) vendejo", + "es": "Tienda de artículos de limpieza y cosméticos", + "fi": "Apteekki-luontaistuotemyymälä", + "fr": "Parapharmacie", + "gl": "Drogaría", + "hu": "Drogéria", + "it": "Drogheria", + "ja": "ドラッグストア・化粧品・薬品店(薬剤師がいない店)", + "nl": "Drogisterij", + "pl": "Drogeria", + "pt": "Drogaria", + "ru": "Бытовая химия", + "sl": "Lekarna", + "sv": "Kemiaffär (hygien, kosmetika & städ)" + }, + "searchTerms": { + "en": [ + "apothecary", + "beauty", + "drug store", + "gift", + "hair", + "med*", + "pharmacy", + "prescription", + "tooth" + ], + "da": [ + "materialist" + ], + "de": [ + "apotheke", + "drogerie" + ], + "eo": [ + "drogejo", + "kosmetikaĵoj", + "beligaĵoj", + "drogerio" + ], + "es": [ + "boticario", + "belleza", + "farmacia", + "regalos", + "cabello", + "medic*", + "venta libre", + "sin prescripción", + "dientes", + "pasta dental", + "artículos de limpieza", + "articulos de limpieza", + "limpieza", + "cosméticos", + "higiene personal", + "artículos de higiene personal", + "articulos de higiene personal" + ], + "fi": [ + "lääke", + "luontaislääkintä", + "terveys" + ], + "fr": [ + "droguerie", + "pharmacie" + ], + "gl": [ + "botica" + ], + "hu": [ + "illatszer", + "kozmetikum", + "testápolás" + ], + "it": [ + "articoli di pulizia e bellezza" + ], + "ja": [ + "薬品", + "化粧品店", + "薬局", + "薬屋", + "ドラッグストア", + "薬品店", + "医療", + "薬", + "くすり屋", + "健康", + "薬店" + ], + "nl": [ + "apotheek", + "apoteek", + "geneesmiddelen", + "geneesmiddelenwinkel zonder apotheker" + ], + "pl": [ + "drogeria", + "kosmetyki", + "chemia gospodarcza", + "artykuły higieniczne", + "rossmann", + "super-pharm", + "hebe" + ], + "pt": [ + "drugstore", + "parafarmácia", + "cosmética", + "boticário", + "higiene" + ], + "ru": [ + "предметы личной гигиены", + "косметика" + ], + "sl": [ + "modna trgovina" + ], + "sv": [ + "kemiaffär", + "kemi", + "hygien", + "hygienartiklar", + "kosmetik", + "smink", + "kosmetika", + "städ", + "städmaterial", + "rengöring", + "rengöringsmedel" + ] + } + }, + { + "if": "shop=chocolate", + "then": { + "en": "Chocolate Store", + "ca": "Botiga de xocolata", + "da": "Chokoladeforretning", + "de": "Schokoladenladen", + "eo": "Ĉokolada vendejo", + "es": "Chocolatería", + "fi": "Suklaapuoti", + "fr": "Chocolatier", + "gl": "Chocolataría", + "hu": "Csokoládébolt", + "id": "Toko Cokelat", + "it": "Cioccolateria", + "ja": "チョコレート店", + "nl": "Chocoladewinkel", + "pl": "Sklep z czekoladą", + "pt": "Loja de chocolates", + "ru": "Магазин шоколада", + "sl": "Trgovina s čokolado", + "sv": "Chokladaffär" + }, + "searchTerms": { + "en": [ + "cocoa" + ], + "da": [ + "chokoladeforretning", + "chokoladebutik" + ], + "de": [ + "schokoladenladen", + "schokoladengeschäft" + ], + "eo": [ + "ĉokoladoj", + "chokoladoj", + "cxokoladoj" + ], + "es": [ + "chocolate", + "bombón" + ], + "fr": [ + "chocolats", + "confiserie" + ], + "gl": [ + "chocolate", + "bombón", + "chocolatería", + "chocolateria", + "chocolataría", + "chocolataria", + "chocolatada", + "chocolateiro" + ], + "hu": [ + "kézműves csokoládébolt", + "csokibolt", + "édesség" + ], + "it": [ + "cioccolateria", + "cacao" + ], + "ja": [ + "チョコレート店", + "食品", + "食べ物", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "chocolatier", + "chocola", + "chocla", + "chokolade", + "zoetigheid", + "snoep" + ], + "pl": [ + "sklep z czekoladą", + "czekolada", + "czekolady", + "czekoladki", + "czekoladziarnia" + ], + "pt": [ + "chocolate", + "cacau" + ], + "ru": [ + "шоколад" + ], + "sv": [ + "chokladaffär", + "choklad", + "pralin", + "praliner", + "konfekt" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-confectionery.svg", + "class": "medium" + } + }, + { + "if": "shop=clothes", + "then": { + "en": "Clothing Store", + "ca": "Botiga de roba", + "da": "Tøjbutik", + "de": "Bekleidungsgeschäft", + "eo": "Vesta vendejo", + "es": "Tienda de ropa", + "fi": "Vaatekauppa", + "fr": "Magasin de vêtements", + "gl": "Tenda de roupa", + "hu": "Ruházati bolt", + "id": "Toko Baju", + "it": "Negozio di abbigliamento", + "ja": "衣料品店", + "nl": "Kledingzaak", + "pl": "Sklep odzieżowy", + "pt": "Loja de roupa", + "ru": "Магазин одежды", + "sl": "Trgovina z oblekami", + "sv": "Klädaffär" + }, + "searchTerms": { + "en": [ + "blouses", + "boutique", + "bras", + "clothes", + "dresses", + "fashion", + "pants", + "shirts", + "shorts", + "skirts", + "slacks", + "socks", + "suits", + "underwear" + ], + "ca": [ + "botiga de roba" + ], + "da": [ + "tøjbutik", + "herretøjsbutik", + "dametøjsbutik", + "børnetøjsbutik", + "ekvipage", + "herreekvipering" + ], + "de": [ + "bekleidungs-geschäft", + "klamottenladen", + "kleiderladen", + "modegeschäft", + "modehaus" + ], + "eo": [ + "vestovendejo", + "vestoj", + "vestaĵoj" + ], + "es": [ + "tienda de ropa", + "local de ropa", + "ropa", + "vestido", + "traje", + "vestimenta", + "textil", + "ropaje", + "sastrería" + ], + "fi": [ + "vaate", + "muoti", + "vaatetus", + "vaatteet", + "pukeutuminen", + "pukea", + "pukeutua", + "hm", + "h&m", + "hennes", + "mauritz", + "dressmann", + "lindex", + "kappahl", + "carlings", + "bikbok", + "bik bok", + "seppälä", + "aleksi13", + "aleksi 13", + "cubus", + "ginatricot", + "gina", + "tricot", + "halonen", + "mango", + "zara", + "kauppa", + "liike", + "yritys", + "putiikki", + "myymälä", + "vaateliike", + "vaateyritys", + "vaatemyymälä" + ], + "fr": [ + "magasin de vêtements" + ], + "hu": [ + "fehérneműbolt", + "öltönyáruház", + "ruhabolt" + ], + "it": [ + "negozio vestiti", + "negozio di vestiti", + "abbigliamento" + ], + "ja": [ + "衣料品店", + "洋服店", + "呉服店", + "衣類", + "服", + "スーツ", + "和服", + "着物", + "古着" + ], + "nl": [ + "kledingwinkel", + "kledinghandel", + "kledij" + ], + "pl": [ + "odzież", + "ubrania", + "ciuchy", + "butik", + "suknie ślubne", + "garnitury", + "odzież robocza", + "odzież ochronna", + "odzież służbowa", + "odzież medyczna" + ], + "pt": [ + "clothing", + "roupa", + "roupas", + "vestuário", + "calças", + "casacos", + "fatos", + "roupa interior", + "vestidos", + "blusas", + "calções", + "sutiãs", + "moda", + "camisas", + "camisolas", + "meias" + ], + "ru": [ + "одежда" + ], + "sl": [ + "oblačila", + "tekstilna" + ], + "sv": [ + "klädaffär", + "kläder", + "klädbutik", + "ekipering" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-clothing-store.svg", + "class": "medium" + } + }, + { + "if": "shop=coffee", + "then": { + "en": "Coffee Store", + "ca": "Botiga de cafè", + "da": "Kaffebutik", + "de": "Kaffeegeschäft", + "eo": "Kafa vendejo", + "es": "Tienda de café", + "fi": "Kahvikauppa", + "fr": "Boutique de vente de cafés", + "gl": "Tenda de café", + "hu": "Kávébolt", + "it": "Negozio di caffè", + "ja": "コーヒー豆販売店", + "nl": "Koffiewinkel", + "pl": "Sklep z kawą", + "pt": "Loja de café", + "ru": "Магазин кофе", + "sl": "Trgovina s kavo", + "sv": "Kaffeaffär" + }, + "searchTerms": { + "da": [ + "kaffebutik", + "kaffeforretning" + ], + "de": [ + "kaffeegeschäft", + "kaffeeverkauf", + "kaffeeladen" + ], + "eo": [ + "kafejo", + "kafo", + "kafovendejo" + ], + "es": [ + "café", + "expresso", + "grano", + "molido", + "tienda", + "almacén", + "negocio" + ], + "fr": [ + "magasin de café" + ], + "hu": [ + "kávébolt", + "kávéüzlet", + "kávékereskedés" + ], + "it": [ + "bottega del caffè", + "caffetteria" + ], + "ja": [ + "コーヒー豆専門店", + "嗜好品", + "食品", + "珈琲", + "飲み物", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "koffiebonen", + "koffiemolen" + ], + "pl": [ + "sklep z kawą", + "sklep kawowy", + "kawa", + "ekspresy do kawy" + ], + "pt": [ + "coffee store", + "café", + "grão", + "pó" + ], + "ru": [ + "кофе", + "кофейные аксессуары", + "кофейная техника", + "кофейное оборудование" + ], + "sv": [ + "kaffeaffär", + "kaffeböner", + "kaffebönor", + "kaffepulver", + "bryggkaffe", + "kaffe" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-coffee.svg", + "class": "medium" + } + }, + { + "if": "shop=collector", + "then": { + "en": "Collectibles Shop", + "de": "Sammlergeschäft", + "eo": "Kolektaĵa vendejo", + "es": "Tienda de coleccionables", + "fr": "Magasin d'objets de collection", + "gl": "Tenda de colecionismo", + "hu": "Gyűjthető tárgyak boltja", + "it": "Negozio di articoli da collezione", + "ja": "コレクター店", + "nl": "Winkel voor verzamelobjecten", + "pl": "Sklep kolekcjonerski", + "pt": "Loja de colecionismo", + "sv": "Affär med samlarobjekt" + }, + "searchTerms": { + "en": [ + "antiques", + "coins", + "collection", + "collectors", + "comics", + "dolls", + "figurines", + "numismatics", + "philately", + "stamps", + "thrift" + ], + "de": [ + "antiquitäten", + "münzen", + "sammlungen", + "sammler", + "comics", + "puppen", + "numismatik", + "philatelie", + "briefmarken", + "sparsamkeit" + ], + "eo": [ + "kolektaĵoj", + "kolektajhoj", + "kolektajxoj", + "poŝtmarkoj", + "poshtmarkoj", + "posxtmarkoj", + "filatelo", + "filatelio", + "numismatiko", + "moneroj", + "komiksoj", + "bildstrioj", + "poŝtkartoj", + "figuretoj", + "fosilioj" + ], + "es": [ + "antigüedades", + "monedas", + "colección", + "coleccionistas", + "cómics", + "muñecas", + "figuritas", + "numismática", + "filatelia", + "sellos" + ], + "fr": [ + "magasin", + "collection", + "collectionneur", + "timbres", + "philatélie", + "pièces de monnaie", + "numismatique", + "poupées", + "figurines", + "cartes postales", + "fossiles", + "bd", + "manga", + "pin's" + ], + "ja": [ + "コレクター店", + "コレクターズショップ", + "コレクター", + "収集", + "蒐集", + "店舗", + "お店", + "玩具", + "ホビー", + "ショッピング", + "小売", + "趣味" + ], + "nl": [ + "verzameling" + ], + "pl": [ + "sklep kolekcjonerski", + "sklep numizmatyczny", + "sklep filatelistyczny", + "numizmatyka", + "filatelistyka", + "monety", + "znaczki", + "przedmioty kolekcjonerskie", + "figurki" + ], + "pt": [ + "antiguidades", + "moedas", + "selos", + "coleção", + "coleções", + "colecção", + "colecções", + "revistas", + "bd", + "bonecas", + "bonecos", + "brinquedos", + "numismática", + "calendários", + "filatelia", + "filatelismo", + "coleccionismo" + ], + "sv": [ + "affär med samlarobjekt", + "antikviteter", + "mynt", + "samling", + "samlare", + "serier", + "dockor", + "figurer", + "numismatik", + "medaljer", + "filateli", + "frimärken'" + ] + } + }, + { + "if": "shop=computer", + "then": { + "en": "Computer Store", + "ca": "Botiga d'informàtica", + "da": "Computerforhandler", + "de": "Computerfachhandel", + "eo": "Komputila vendejo", + "es": "Tienda de informática", + "fi": "Tietokoneliike", + "fr": "Magasin d'informatique", + "gl": "Tenda de informática", + "hu": "Számítógépbolt", + "id": "Toko Komputer", + "it": "Negozio di informatica", + "ja": "コンピューター店", + "nl": "Computerwinkel", + "pl": "Sklep komputerowy", + "pt": "Loja de informática", + "ru": "Компьютерный магазин", + "sl": "Računalniška trgovina", + "sv": "Datorbutik" + }, + "searchTerms": { + "en": [ + "desktop", + "laptop", + "hardware", + "operating system", + "software" + ], + "ca": [ + "botiga d'informàtica", + "botiga d'ordinadors" + ], + "da": [ + "computerbutik", + "pc-butik", + "computerforretning" + ], + "de": [ + "computergeschäft", + "computerladen" + ], + "eo": [ + "komputiloj", + "komputoroj" + ], + "es": [ + "informática", + "ordenador", + "computador", + "hardware", + "software", + "tienda de informática", + "computación", + "casa de computación", + "casa de informática", + "local de computación", + "local de informática" + ], + "fr": [ + "magasin d'informatique" + ], + "hu": [ + "számítástechnikai üzlet", + "notebook bolt", + "laptop bolt", + "apple bolt" + ], + "it": [ + "negozio di computer" + ], + "ja": [ + "コンピューター店", + "パソコン店", + "コンピュータ", + "pc" + ], + "nl": [ + "it", + "ict", + "hardware", + "software", + "electronica", + "laptop" + ], + "pl": [ + "sklep komputerowy", + "serwis komputerowy", + "naprawa komputerów", + "komputery" + ], + "pt": [ + "computer", + "computador", + "informática", + "software", + "programa", + "hardware", + "programação" + ], + "ru": [ + "компьютерный магазин" + ], + "sl": [ + "računalniki", + "komponente" + ], + "sv": [ + "datorbutik", + "datoraffär", + "data", + "dator", + "datorer", + "datorhårdvara", + "datorprogram", + "datorförsäljning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-laptop.svg", + "class": "medium" + } + }, + { + "if": "shop=confectionery", + "then": { + "en": "Candy Store", + "ca": "Botiga de llaminadures", + "da": "Slikbutik", + "de": "Süßwarenladen", + "eo": "Sukeraĵa vendejo", + "es": "Tienda de dulces", + "fi": "Karkkipuoti", + "fr": "Confiserie", + "gl": "Tenda de larpeiradas", + "hu": "Édességbolt", + "id": "Toko Permen", + "it": "Negozio di dolciumi", + "ja": "菓子屋(販売)", + "nl": "Snoepwinkel", + "pl": "Sklep ze słodyczami", + "pt": "Doçaria", + "ru": "Кондитерская", + "sl": "Trgovina s slaščicami", + "sv": "Godisaffär" + }, + "searchTerms": { + "en": [ + "sweet" + ], + "ca": [ + "botiga de dolços", + "botiga de caramels", + "botiga de llepolies", + "dolços", + "llaminadures", + "caramels", + "llepolies" + ], + "da": [ + "slikbutik", + "slikforretning" + ], + "de": [ + "süßigkeitenladen", + "süßigkeitengeschäft", + "süßwarengeschäft" + ], + "eo": [ + "sukeraĵejoj", + "sukerajhejo", + "sukerajxejo", + "dolĉaĵoj", + "frandaĵoj" + ], + "es": [ + "dulce", + "caramelo", + "dulcería", + "confitería", + "bombonería", + "bombones", + "tienda de dulces", + "chucherías", + "tienda de chucherías" + ], + "fr": [ + "confiserie", + "confiseur", + "bonbons", + "fabricant de bonbons", + "biscuits", + "biscuiterie" + ], + "gl": [ + "larpeira", + "larpeirada", + "doce", + "caramelo", + "docería", + "dozaría", + "confeitería", + "confeitaría", + "bombonaría", + "bombóns", + "tenda de doces", + "larpeiradas", + "gominolas", + "tenda de larpeiradas" + ], + "hu": [ + "süteménybolt", + "tortaszaküzlet", + "cukrászüzlet", + "cukrászat", + "cukorka", + "nyalóka", + "csokoládé" + ], + "it": [ + "dolciumi", + "caramelle", + "dolci" + ], + "ja": [ + "菓子店", + "駄菓子屋", + "食品", + "お菓子", + "スナック", + "チョコレート", + "飴", + "キャンディ", + "食べ物", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "confectionery", + "zoetwaren" + ], + "pl": [ + "słodycze", + "cukierki", + "czekoladki", + "żelki" + ], + "pt": [ + "candy store", + "loja de gomas", + "doces", + "rebuçados", + "balas", + "pastilhas elásticas", + "chicletes" + ], + "ru": [ + "кондитерская", + "пирожные", + "торты", + "конфеты" + ], + "sv": [ + "konfektbutik", + "godisaffär", + "godisbutik", + "godis", + "konfektyr", + "karameller", + "choklad", + "sötsaker" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-confectionery.svg", + "class": "medium" + } + }, + { + "if": "shop=convenience", + "then": { + "en": "Convenience Store", + "ca": "Botiga d'ultramarins", + "da": "Minimarked", + "de": "Minimarkt", + "eo": "Butiko oportuna", + "es": "Tienda multiservicio", + "fi": "Lähikauppa", + "fr": "Épicerie / Supérette", + "gl": "Tenda de ultramarinos", + "hu": "Kis élelmiszerbolt", + "id": "Toko Kelontong", + "it": "Minimarket", + "ja": "コンビニエンスストア", + "nl": "Gemakswinkel", + "pl": "Sklep ogólnospożywczy", + "pt": "Minimercado / loja de conveniência", + "ru": "Магазин у дома", + "sl": "Minimarket", + "sv": "Närbutik" + }, + "searchTerms": { + "ca": [ + "botiga de queviures", + "ultramarins", + "queviures", + "colmado" + ], + "da": [ + "minimarked", + "minikøbmand" + ], + "de": [ + "minimarkt", + "spätkauf", + "spätverkauf", + "tankstellenverkauf", + "kleines lebensmittelgeschäft", + "tante-emma-laden", + "greißler", + "nachbarschaftsladen" + ], + "eo": [ + "manĝovendejo", + "manghovendejo", + "mangxovendejo", + "vendejo", + "aĉetejo", + "oportuna butiko" + ], + "es": [ + "abarrote", + "alimentos", + "colmado", + "tienda", + "almacén", + "tienda de alimentación", + "maxikiosco", + "maxi kiosco" + ], + "fr": [ + "supérette", + "petite épicerie du coin" + ], + "hu": [ + "abc", + "sarki élelmiszer", + "kisbolt", + "közért", + "vegyesbolt", + "szatócs" + ], + "it": [ + "drogheria" + ], + "ja": [ + "コンビニエンスストア", + "コンビニ", + "買い物" + ], + "nl": [ + "buurtsupermarkt", + "buurtsuper", + "kruidenier", + "buurtwinkel", + "tankstationwinkel" + ], + "pl": [ + "sklep ogólnospożywczy", + "sklep spożywczy", + "sklep osiedlowy", + "mały sklep", + "sklepik osiedlowy", + "spożywczak", + "delikatesy", + "żywność", + "żabka", + "freshmarket" + ], + "pt": [ + "pequena loja", + "loja de esquina", + "compras", + "loja", + "alimentar", + "alimentos", + "loja de posto de combustível", + "mini-mercado", + "mini mercado", + "chinês" + ], + "ru": [ + "продуктовый магазин", + "магазин шаговой доступности", + "небольшой магазин", + "продукты" + ], + "sl": [ + "mini-market", + "trgovinica" + ], + "sv": [ + "närbutik", + "kvartersbutik", + "livsmedelsbutik", + "livsmedel", + "mataffär" + ] + } + }, + { + "if": "shop=copyshop", + "then": { + "en": "Copy Store", + "ca": "Copisteria", + "da": "Fotokopishop", + "de": "Kopierladen", + "eo": "Fotokopiilejo", + "es": "Centro de copiado", + "fi": "Kopiointiliike", + "fr": "Photocopie et impression", + "gl": "Copistaría", + "hu": "Fénymásoló", + "id": "Tempat Fotokopi", + "it": "Copisteria", + "ja": "コピー店", + "nl": "Copyshop", + "pl": "Punkt ksero i druku", + "pt": "Loja de fotocópias", + "ru": "Магазин копирования, печати", + "sl": "Fotokopirnica", + "sv": "Tryckeri" + }, + "searchTerms": { + "en": [ + "print", + "scan" + ], + "ca": [ + "botiga", + "fotocòpies", + "fulls", + "impressora" + ], + "da": [ + "fotokopishop" + ], + "de": [ + "kopieranstalt", + "copy-shop" + ], + "eo": [ + "fotokopiilo", + "lumkopiilo", + "kopiilo", + "ksero", + "xero" + ], + "es": [ + "copiado", + "fotocopiado", + "fotocopiadora", + "fotocopia", + "tienda de copiado" + ], + "fi": [ + "kopiokone", + "kopio", + "kopiointi", + "kopioida" + ], + "fr": [ + "photocopies", + "impression" + ], + "hu": [ + "nyomtatás", + "diplomakötés", + "spirálozás", + "másolás" + ], + "it": [ + "fotocopie", + "scansioni", + "stamperia", + "stampa" + ], + "ja": [ + "コピー店" + ], + "nl": [ + "kopieshop", + "kopieerwinkel" + ], + "pl": [ + "punkt ksero", + "kopiowanie", + "skanowanie", + "drukowanie", + "drukarnia", + "wydruki" + ], + "pt": [ + "copy store", + "fotocópias", + "fotocopiadora", + "cópia", + "máquina de fotocopiar", + "fotocopiar", + "reprografia", + "encadernação", + "encadernações" + ], + "ru": [ + "копирование", + "распечатка текстов" + ], + "sv": [ + "copyshop", + "tryckeri", + "kopiering" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-print.svg", + "class": "medium" + } + }, + { + "if": "shop=cosmetics", + "then": { + "en": "Cosmetics Store", + "ca": "Botiga de cosmètics", + "da": "Kosmetikbutik", + "de": "Kosmetikladen", + "eo": "Kosmetikaĵa (persona higieno) vendejo", + "es": "Tienda de cosméticos", + "fi": "Kosmetiikkamyymälä", + "fr": "Magasin de cosmétiques", + "gl": "Tenda de cosméticos", + "hu": "Kozmetikai bolt", + "id": "Toko Kosmetik", + "it": "Negozio di cosmetici", + "ja": "化粧品店", + "nl": "Cosmeticawinkel", + "pl": "Sklep z kosmetykami", + "pt": "Loja de cosmética", + "ru": "Магазин косметики", + "sl": "Kozmetična trgovina", + "sv": "Sminkaffär" + }, + "searchTerms": { + "en": [ + "make-up", + "makeup" + ], + "ca": [ + "botiga de perfums", + "cosmètics", + "cosmètica", + "perfums", + "perfumeria" + ], + "da": [ + "kosmetikbutik", + "kosmetikforretning" + ], + "de": [ + "drogerie", + "kosmetikladen", + "kosmetikgeschäft" + ], + "eo": [ + "kosmetikaĵoj", + "kosmetikajhoj", + "kosmetikajxoj", + "drogejo", + "beligaĵoj", + "kosmetikoj", + "drogerio" + ], + "es": [ + "cosmético", + "cosméticos", + "cosmética", + "belleza", + "estética", + "cuidado personal", + "perfumería" + ], + "fr": [ + "vente de cosmétiques", + "parfumerie" + ], + "hu": [ + "szépségápolási szaküzlet", + "sminkbolt", + "parfüm", + "illatszerbolt" + ], + "it": [ + "cosmetica", + "negozio di cosmetica", + "profumeria" + ], + "ja": [ + "化粧品", + "美容", + "コスメ" + ], + "nl": [ + "parfumerie" + ], + "pl": [ + "kosmetyki", + "makijaż", + "make-up", + "sephora", + "inglot", + "ziaja" + ], + "pt": [ + "cosmetics", + "cosmética", + "cosméticos", + "produtos de beleza", + "beleza", + "belesa" + ], + "ru": [ + "косметика", + "бижутерия" + ], + "sv": [ + "sminkaffär", + "smink", + "kosmetika", + "kosmetikaffär" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-lipstick.svg", + "class": "medium" + } + }, + { + "if": "shop=country_store", + "then": { + "en": "Country Store", + "de": "Ländlicher Laden", + "eo": "Ĝenerala vendejo en vilaĝo", + "es": "Tienda de campo", + "fr": "Magasin de campagne", + "gl": "Tenda do agro ou campo", + "hu": "Vidéki élet kellékeinek boltja", + "it": "Negozio locale di articoli vari", + "ja": "よろずや", + "nl": "Outdoorzaak", + "pl": "Country Store", + "pt": "Loja para proprietários rurais", + "sv": "Lanthandel" + }, + "searchTerms": { + "de": [ + "ländlicher laden", + "dorfladen" + ], + "eo": [ + "ĝenerala vendejo", + "vilaĝa vendejo", + "ghenerala vendejo", + "gxenerala vendejo", + "vilagha vendejo", + "vilagxa vendejo", + "butiko oportuna" + ], + "es": [ + "campo", + "tienda", + "rural" + ], + "fr": [ + "campagne", + "chasse", + "pêche", + "équitation", + "cheval", + "chevaux" + ], + "ja": [ + "よろずや", + "万屋", + "店舗", + "お店", + "ショッピング", + "小売" + ], + "nl": [ + "kampeerzaak", + "landelijk", + "scoutingwinkel", + "jacht", + "ruiter", + "paardrijden", + "tuinmachines" + ], + "pl": [ + "country store" + ], + "pt": [ + "campo", + "caça", + "pesca", + "cavalo", + "cavalos", + "jardinagem", + "hipismo", + "equestre", + "horta", + "maquinaria" + ], + "sv": [ + "lanthandel", + "landet" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-hat-cowboy-side.svg", + "class": "medium" + } + }, + { + "if": "shop=craft", + "then": { + "en": "Arts & Crafts Store", + "ca": "Botiga d'art i artesania", + "da": "Kunst & hobbybutik", + "de": "Geschäft für Künstlerbedarf", + "eo": "Vendejo de materialoj por metio", + "es": "Tienda de artesanías", + "fi": "Käsityöliike", + "fr": "Magasin d'arts et loisirs créatifs", + "gl": "Tenda de artes e oficios", + "hu": "Kézműves bolt", + "it": "Negozio di arti e mestieri", + "ja": "美術・工芸用品店", + "nl": "Winkel voor schilder- en tekengereedschap", + "pl": "Sklep z artykułami dla artystów", + "pt": "Loja de acessórios para artes manuais", + "sv": "Konst- & hantverksbutik" + }, + "searchTerms": { + "en": [ + "art*", + "paint*", + "frame", + "hobby" + ], + "da": [ + "hobby", + "kunst", + "værktøj", + "forsyning", + "maling", + "lærred" + ], + "de": [ + "kunsthandwerkgeschäft", + "bastelbedarf", + "kunstbedarf", + "handwerk", + "modellbau", + "papier", + "leinwand", + "farbe", + "stift", + "rahmen" + ], + "eo": [ + "metio", + "metiado", + "manmetio", + "artisto", + "plastikisto", + "artaĵo" + ], + "es": [ + "arte", + "artista", + "artesanía", + "pinturas", + "cuadro" + ], + "fi": [ + "askartelu" + ], + "fr": [ + "art", + "loisir", + "peinture" + ], + "hu": [ + "hobbi", + "kreatív hobbi" + ], + "ja": [ + "アートショップ", + "工芸用品", + "画材", + "絵の具", + "美術用品", + "クラフト" + ], + "nl": [ + "kunst*", + "verf*", + "kader", + "hobby", + "borstel" + ], + "pl": [ + "sklep z artykułami dla artystów", + "artykuły dla artystów", + "artykuły dla plastyków", + "farby", + "sztalugi", + "papiery", + "kartony", + "tektury", + "płótna", + "pastele", + "pędzle", + "ramy", + "ramki", + "drewno", + "narzędzia", + "papierniczy", + "sklep papierniczy" + ], + "pt": [ + "artesanato", + "artezanato", + "artigos locais", + "pintura", + "desenho", + "carpintaria", + "olaria" + ], + "sv": [ + "konst", + "konsthantverk", + "konstverk", + "hantverk", + "slöjd" + ] + } + }, + { + "if": "shop=curtain", + "then": { + "en": "Curtain Store", + "ca": "Botiga de cortines", + "da": "Gardinbutik", + "de": "Vorhanggeschäft", + "eo": "Kurtena vendejo", + "es": "Tienda de cortinas", + "fi": "Verhomyymälä", + "fr": "Magasin de rideaux", + "gl": "Tenda de cortinas", + "hu": "Függönybolt", + "id": "Toko Gorden", + "it": "Negozio di tende", + "ja": "カーテン店", + "nl": "Gordijnenwinkel", + "pl": "Sklep z zasłonami", + "pt": "Loja de cortinas", + "ru": "Магазин штор и драпировок", + "sl": "Trgovina z zavesami", + "sv": "Gardinaffär" + }, + "searchTerms": { + "en": [ + "drape*", + "window" + ], + "ca": [ + "botiga de roba de la llar", + "cortines", + "coixins" + ], + "da": [ + "gardinbutik", + "gardinforretning" + ], + "de": [ + "gardinenladen", + "vorhanggeschäft" + ], + "eo": [ + "kurtenoj", + "fenestroj" + ], + "es": [ + "cortina", + "cortinajes" + ], + "fi": [ + "verho", + "kaihdin", + "verhot", + "kaihtimet", + "rullaverho", + "liukuverho", + "verhokauppa", + "verholiike" + ], + "fr": [ + "magasin de rideaux" + ], + "hu": [ + "karnis", + "függöny", + "kárpit", + "drapéria" + ], + "id": [ + "toko tirai" + ], + "it": [ + "tende", + "tendaggi", + "finestre" + ], + "ja": [ + "カーテン店", + "家具" + ], + "nl": [ + "gordijnenwinkel", + "gordijnenzaak" + ], + "pl": [ + "zasłony", + "zasłonki", + "firany", + "firanki" + ], + "pt": [ + "curtain store", + "cortina", + "cortinas", + "cortinado", + "cortinados" + ], + "ru": [ + "шторы", + "драпировки" + ], + "sl": [ + "zavese", + "senčila" + ], + "sv": [ + "gardinaffär", + "gardiner", + "draperier", + "drapera", + "fönster" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-curtains.svg", + "class": "medium" + } + }, + { + "if": "shop=dairy", + "then": { + "en": "Dairy Store", + "ca": "Botiga de productes làctics", + "da": "Ismejeri", + "de": "Milchgeschäft", + "eo": "Laktaĵa vendejo", + "es": "Tienda de lácteos", + "fi": "Maitotuotemyymälä", + "fr": "Crèmerie", + "gl": "Tenda de produtos frescos", + "hu": "Tejtermékbolt", + "id": "Toko Susu", + "it": "Negozio di latticini", + "ja": "乳製品店", + "nl": "Zuivelhandel", + "pl": "Sklep z nabiałem", + "pt": "Loja de laticínios", + "ru": "Магазин молочных продуктов", + "sl": "Mlekarna", + "sv": "Mejeriaffär" + }, + "searchTerms": { + "en": [ + "milk", + "egg", + "cheese" + ], + "da": [ + "ismejeri", + "mejeri", + "ostemejeri" + ], + "de": [ + "milchladen", + "milchproduktegeschäft" + ], + "eo": [ + "laktaĵoj", + "laktajhoj", + "laktajxoj", + "fromaĝoj", + "laktoproduktoj" + ], + "es": [ + "leche", + "lácteos", + "lechería", + "quesería", + "central lechera" + ], + "fi": [ + "maito", + "meijeri", + "maitotuote", + "maitoa", + "juusto", + "jogurtti", + "viili", + "piimä", + "jäätelö", + "lehmä" + ], + "fr": [ + "crèmerie" + ], + "gl": [ + "produtos frescos", + "frescos", + "produtos", + "leite", + "lácteos", + "leitária", + "queixaría", + "central leiteira" + ], + "hu": [ + "tejtermék", + "kecsketej", + "kézműves tejtermékek boltja", + "tehéntej", + "juhtej", + "sajt", + "joghurt", + "kefir", + "tejföl" + ], + "it": [ + "latte", + "uova", + "formaggio", + "cacio" + ], + "ja": [ + "乳製品店", + "食品", + "食べ物", + "牛乳", + "チーズ", + "バター", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "zuivelwinkel" + ], + "pl": [ + "nabiał" + ], + "pt": [ + "dairy", + "produtos lácteos", + "leite", + "queijo", + "manteiga", + "requeijão" + ], + "ru": [ + "молочные продукты" + ], + "sv": [ + "mejeriaffär", + "mejeri", + "mjölk", + "mjölkaffär", + "ägg", + "ost" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-cheese.svg", + "class": "medium" + } + }, + { + "if": "shop=deli", + "then": { + "en": "Deli", + "ca": "Botiga de comestibles", + "da": "Deli", + "de": "Feinkostladen", + "eo": "Delikataĵa vendejo", + "es": "Delicatessen", + "fi": "Deli", + "fr": "Épicerie de luxe", + "gl": "Delicatessen", + "hu": "Csemegebolt", + "id": "Delikatesen", + "it": "Gastronomia", + "ja": "惣菜屋", + "nl": "Delicatessenwinkel", + "pl": "Ekskluzywne delikatesy", + "pt": "Loja gourmet", + "ru": "Магазин деликатесов", + "sl": "Delikatesa", + "sv": "Delikatessaffär" + }, + "searchTerms": { + "en": [ + "lunch", + "meat", + "sandwich" + ], + "da": [ + "deli", + "delikatesse" + ], + "de": [ + "feinkost-geschäft", + "delikatessen-laden" + ], + "eo": [ + "delikataĵoj", + "delikatajhoj", + "delikatajxoj", + "frandaĵoj", + "bongustaĵoj" + ], + "es": [ + "delicatessen", + "gourmet", + "exquisiteces", + "charcutería" + ], + "fr": [ + "epicerie fine", + "traiteur" + ], + "hu": [ + "delikát", + "csemege" + ], + "it": [ + "cibi e bevande pregiate" + ], + "ja": [ + "惣菜屋", + "弁当屋", + "デリカ", + "食品", + "食べ物", + "おかず", + "豆腐", + "蒟蒻", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "delicatesse", + "speciaalzaak", + "delicatessenwinkel", + "delicatessen", + "winkel" + ], + "pl": [ + "wyroby delikatesowe", + "wykwintne artykuły spożywcze", + "specjały", + "rarytasy" + ], + "pt": [ + "deli", + "gourmet", + "comida", + "mercearia", + "dop", + "produtos de qualidade", + "origem protegida" + ], + "ru": [ + "деликатесы" + ], + "sl": [ + "špecerija", + "delikatesna trgovina" + ], + "sv": [ + "delikatessaffär", + "delikatess", + "delikatesser", + "finmat", + "lunch", + "kött", + "smörgås" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-meat.svg", + "class": "medium" + } + }, + { + "if": "shop=department_store", + "then": { + "en": "Department Store", + "ca": "Grans magatzems", + "da": "Stormagasin", + "de": "Kaufhaus", + "eo": "Ĉiovendejo", + "es": "Grandes almacenes / Tienda departamental", + "fi": "Tavaratalo", + "fr": "Grand magasin", + "gl": "Grandes almacéns", + "hu": "Nagyáruház", + "id": "Pasar Swalayan", + "it": "Grande magazzino", + "ja": "百貨店", + "nl": "Warenhuis", + "pl": "Dom towarowy", + "pt": "Grande armazém", + "ru": "Универсальный магазин (с отделами)", + "sl": "Veleblagovnica", + "sv": "Varuhus" + }, + "searchTerms": { + "da": [ + "stormagasin" + ], + "de": [ + "kaufhaus" + ], + "eo": [ + "chiovendejo", + "cxiovendejo", + "butikego", + "grandmagazeno", + "superbazaro", + "vendejego" + ], + "es": [ + "grandes almacenes", + "almacén", + "gran almacén", + "centro comercial", + "emporio", + "tienda de departamentos", + "tienda por departamentos", + "tienda departamental" + ], + "fr": [ + "magasin à rayon", + "grand magasin", + "magasin par départements" + ], + "hu": [ + "áruház", + "városi áruház", + "belvárosi áruház" + ], + "it": [ + "grande magazzino" + ], + "ja": [ + "百貨店", + "デパート", + "買い物", + "ショッピング" + ], + "nl": [ + "grootwarenhuis", + "winkelcentrum", + "shopping center" + ], + "pl": [ + "dom towarowy", + "dom handlowy", + "zakupy" + ], + "pt": [ + "department store", + "loja", + "comércio", + "vestuário", + "mobiliário", + "decoração", + "produtos eletrónicos", + "cosméticos", + "brinquedos", + "el corte inglés" + ], + "ru": [ + "дом быта", + "универсальный магазин", + "универсам" + ], + "sl": [ + "velika blagovnica", + "velika trgovina" + ], + "sv": [ + "varuhus", + "affärshus" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=doityourself", + "then": { + "en": "DIY Store", + "ca": "Botiga de bricolatge", + "da": "Byggemarked", + "de": "Heimwerkerladen", + "eo": "Memfaradila vendejo", + "es": "Tienda de bricolaje / Hágalo usted mismo", + "fi": "Askartelukauppa", + "fr": "Magasin de bricolage", + "gl": "Tenda de bricolaxe", + "hu": "Barkácsáruház", + "id": "Toko Swakriya", + "it": "Negozio per il fai-da-te", + "ja": "ホームセンター", + "nl": "Bouwmarkt, doe-het-zelfwinkel", + "pl": "Market budowlany / sklep dla majsterkowiczów", + "pt": "Loja de bricolagem", + "ru": "Строительный магазин", + "sl": "Orodjarna", + "sv": "Byggmarknad" + }, + "searchTerms": { + "en": [ + "craft", + "diy", + "do it yourself", + "hardware", + "home improvement", + "tools" + ], + "ca": [ + "botiga de bricolatge" + ], + "da": [ + "værktøj", + "materiale", + "bygge", + "byggeri", + "gør-det-selv", + "privat", + "byggemateriale" + ], + "de": [ + "baumarkt", + "heimwerker-markt" + ], + "eo": [ + "memfarulo", + "iloj" + ], + "es": [ + "bricolaje", + "por ti mismo", + "diy", + "hágalo usted mismo" + ], + "fr": [ + "magasin de bricolage" + ], + "gl": [ + "bricolaxe", + "diy" + ], + "hu": [ + "ezermester", + "barkácsbolt", + "felújítás", + "szerszám" + ], + "id": [ + "lakukan sendiri", + "diy" + ], + "it": [ + "fai da te", + "utensileria", + "attrezzi", + "utensili" + ], + "ja": [ + "日曜大工用品店", + "工具店", + "diy", + "ホームセンター", + "雑貨", + "買い物", + "ショッピング", + "園芸", + "工芸用品", + "家庭菜園", + "植木" + ], + "nl": [ + "dhz-winkel", + "diy-winkel", + "kluswinkel" + ], + "pl": [ + "market budowlany", + "sklep dla majsterkowiczów", + "diy", + "materiały budowlane", + "obi", + "praktiker", + "leroy merlin", + "castorama", + "psb mrówka", + "bricoman", + "bricomarché", + "jula", + "merkury market" + ], + "pt": [ + "diy", + "obras", + "bricolage", + "aki" + ], + "ru": [ + "строительный", + "ремонт", + "строймаркет", + "стройматериалы", + "леруа-мерлен" + ], + "sl": [ + "orodje" + ], + "sv": [ + "byggmarknad", + "bygghandel", + "gör-det-själv", + "gördetsjälv", + "gör det själv", + "byggvaruhus", + "indie", + "byggsatser", + "byggsats", + "verktyg", + "järnaffär", + "handverktyg", + "elverktyg", + "heminredning", + "inredning", + "byggmaterial" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tools.svg", + "class": "medium" + } + }, + { + "if": "shop=doors", + "then": { + "en": "Door Shop", + "ca": "Botiga de portes", + "da": "Dørforhandler", + "de": "Türgeschäft", + "eo": "Vendejo de pordoj", + "es": "Tienda de puertas (aberturas)", + "fi": "Oviliike", + "fr": "Magasin de portes", + "gl": "Tenda de portas", + "hu": "Ajtószaküzlet", + "it": "Negozio di porte", + "ja": "ドア販売店", + "nl": "Deurenwinkel", + "pl": "Sklep z drzwiami", + "pt": "Loja de portas", + "ru": "Магазин дверей", + "sv": "Affär med dörrar" + }, + "searchTerms": { + "da": [ + "dør", + "karm", + "håndtag" + ], + "de": [ + "tür", + "tor", + "eingang", + "ausgang" + ], + "eo": [ + "pordoj", + "pordovendejo", + "porda vendejo" + ], + "es": [ + "puertas", + "aberturas", + "tienda" + ], + "fr": [ + "porte", + "porte-fenêtre", + "porte-fenetre" + ], + "it": [ + "porte" + ], + "ja": [ + "ドア販売店", + "ドア", + "扉" + ], + "nl": [ + "deurbeslag", + "deurklink" + ], + "pl": [ + "sklep z drzwiami", + "drzwi" + ], + "pt": [ + "portões", + "portão", + "porta", + "portada" + ], + "ru": [ + "двери на заказ" + ], + "sv": [ + "affär med dörrar", + "dörrar", + "dörr", + "dörrförsäljning", + "dörreparation", + "dörrepatör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-door-open.svg", + "class": "medium" + } + }, + { + "if": "shop=dry_cleaning", + "then": { + "en": "Dry Cleaner", + "ca": "Bugaderia", + "da": "Renseri", + "de": "Chemische Reinigung", + "eo": "Vest-lavejo (nepolara solvilo)", + "es": "Tintorería", + "fi": "Kuivapesula", + "fr": "Pressing", + "gl": "Tinturaría", + "hu": "Vegytisztitó", + "id": "Jasa Cuci Kering", + "it": "Lavanderia", + "ja": "クリーニング店", + "nl": "Stomerij", + "pl": "Pralnia chemiczna", + "pt": "Limpeza a seco", + "ru": "Химчистка", + "sl": "Čistilnica", + "sv": "Kemtvätt" + }, + "searchTerms": { + "ca": [ + "tintoreria", + "centre de neteja", + "neteja", + "neteja en sec" + ], + "da": [ + "renseri" + ], + "de": [ + "reinigung", + "putzerei" + ], + "eo": [ + "blankigejo", + "lavejo", + "lavbutiko" + ], + "es": [ + "tintorería" + ], + "fr": [ + "teinturerie", + "blanchisserie" + ], + "hu": [ + "száraztisztító", + "patyolat", + "ruhatisztítás" + ], + "id": [ + "dry clean" + ], + "it": [ + "lavanderia" + ], + "ja": [ + "クリーニング", + "ドライクリーニング店", + "洗濯屋" + ], + "nl": [ + "droogkuis", + "nieuwkuis" + ], + "pl": [ + "pralnia chemiczna" + ], + "pt": [ + "dry cleaner", + "lavagem", + "lavar a seco", + "lavar-a-seco", + "seco", + "roupa", + "vestuário", + "limpeza a seco" + ], + "ru": [ + "химчистка" + ], + "sv": [ + "kemtvättar", + "kemisk tvätt" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-clothes_hanger.svg", + "class": "medium" + } + }, + { + "if": "shop=e-cigarette", + "then": { + "en": "E-Cigarette Shop", + "ca": "Botiga de cigars electrònics", + "da": "E-cigaretbutik", + "de": "E-Zigarettengeschäft", + "eo": "Elektronik-cigareda vendejo", + "es": "Tienda de cigarrillo electrónico", + "fi": "Sähkösavukemyymälä", + "fr": "Magasin de cigarettes électroniques", + "gl": "Tenda de cigarros electrónicos", + "hu": "E-cigaretta bolt", + "it": "Negozio di sigarette elettroniche", + "ja": "電子タバコ店", + "nl": "E-sigarettenwinkel", + "pl": "Sklep z e-papierosami", + "pt": "Loja de cigarros eletrónicos", + "ru": "Магазин электронных сигарет", + "sv": "Affär för elektroniska cigaretter" + }, + "searchTerms": { + "en": [ + "electronic", + "vape", + "vaping", + "vapor" + ], + "da": [ + "e-cigaretbutik", + "e-cigaretforretning" + ], + "de": [ + "e-zigarettenhändler" + ], + "eo": [ + "e-cigaredoj", + "ecigaredoj" + ], + "es": [ + "tabaco", + "cigarrillo", + "electrónico" + ], + "fi": [ + "sähkötupakka", + "sähkötupakointi", + "etupakka", + "sähkörööki", + "kauppa", + "liike", + "myymälä", + "puoti", + "putiikki" + ], + "fr": [ + "boutique de cigarettes électroniques" + ], + "hu": [ + "e-cigaretta", + "elektromos cigaretta" + ], + "it": [ + "elettronica", + "vapore", + "sigarette", + "e-cigarette" + ], + "ja": [ + "電子タバコ店", + "嗜好品", + "タバコ", + "たばこ", + "煙草" + ], + "nl": [ + "e-cigarettewinkel" + ], + "pl": [ + "e-papierosy" + ], + "pt": [ + "e-cigarette", + "e-cigarro", + "e-cig", + "cigarro eletrónico", + "cigarro eletrônico", + "nicotina" + ], + "ru": [ + "электронные сигареты", + "вейп", + "электронные кальяны" + ], + "sv": [ + "affär för elektroniska cigaretter", + "e-cigarett", + "elektrisk cigarett", + "elcigarett" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=electrical", + "then": { + "en": "Electrical Equipment Store", + "de": "Elektrofachgeschaft", + "eo": "Elektraĵa vendejo", + "es": "Tienda de equipos eléctricos", + "fi": "Sähkötarvikekauppa", + "fr": "Magasin d'équipements électriques", + "gl": "Tenda de material eléctrico", + "hu": "Villamossági szaküzlet", + "it": "Negozio di materiale elettrico", + "ja": "電気店", + "nl": "Winkel voor elektriciteitsbenodigdheden", + "pl": "Sklep elektryczny", + "pt": "Loja de material elétrico", + "ru": "Магазин электротоваров", + "sv": "Affär med elutrustning" + }, + "searchTerms": { + "en": [ + "cable", + "electric", + "fan", + "led", + "lighting", + "power", + "wire" + ], + "de": [ + "kabel", + "elektrik", + "ventilator", + "led", + "beleuchtung", + "strom", + "draht" + ], + "eo": [ + "elektrajha vendejo", + "elektrajxa vendejo", + "kabloj", + "kontaktingoj", + "ŝtopiloj", + "kontaktiloj", + "elektraj sekurigiloj" + ], + "es": [ + "cable", + "eléctrico", + "ventilador", + "led", + "iluminación", + "electricidad", + "cables" + ], + "fr": [ + "équipements électriques", + "cables", + "câbles", + "électricité", + "ventilateurs", + "led", + "fils", + "éclairage", + "lampes" + ], + "it": [ + "cavi", + "prese", + "spine", + "interruttori", + "portalampada", + "plafoniere", + "lampadine" + ], + "ja": [ + "電気店", + "電気工具", + "電子部品", + "検査機器" + ], + "nl": [ + "kabel", + "draad", + "lamp", + "verdeekstekker" + ], + "pl": [ + "sklep elektryczny", + "kable", + "przewody", + "przedłużacze", + "liczniki elektryczne", + "gniazdka elektryczne", + "skrzynki bezpiecznikowe", + "domofony", + "dzwonki", + "wentylatory", + "wentylacja", + "klimatyzacja", + "ogrzewanie", + "oświetlenie" + ], + "pt": [ + "cabos", + "eletricidade", + "eléctrico", + "led", + "luz", + "lâmpadas" + ], + "sv": [ + "affär med elutrustning", + "elutrustning", + "el", + "kabel", + "kablage", + "kablar", + "elektronik", + "fläkt", + "led", + "belysning", + "amatur", + "kraft" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-power.svg", + "class": "medium" + } + }, + { + "if": "shop=electronics", + "then": { + "en": "Electronics Store", + "ca": "Botiga d'electrònica", + "da": "Elektronikbutik", + "de": "Elektronikfachgeschäft", + "eo": "Elektronika vendejo", + "es": "Tienda de electrónica y electrodomésticos", + "fi": "Elektroniikkamyymälä", + "fr": "Magasin d'électronique et d'électroménager", + "gl": "Tenda de electrodomésticos", + "hu": "Szórakoztató elektronikai bolt", + "id": "Toko Elektronik", + "it": "Negozio di elettronica", + "ja": "家電販売店(小型製品)", + "nl": "Huishoudtoestellen-/Witgoedwinkel", + "pl": "Sklep z elektroniką/RTV/AGD", + "pt": "Loja de eletrodomésticos", + "ru": "Магазин бытовой электроники", + "sl": "Elektronska trgovina", + "sv": "Elektronikbutik" + }, + "searchTerms": { + "en": [ + "appliance", + "audio", + "blueray", + "camera", + "computer", + "dvd", + "home theater", + "radio", + "speaker", + "tv", + "video" + ], + "ca": [ + "botiga d'electrònica", + "botiga de components electrònics" + ], + "da": [ + "elektronikbutik" + ], + "de": [ + "elektrogeschäft", + "elektronikgeschäft" + ], + "eo": [ + "elektroniko", + "mastrumaparatoj", + "televidiloj" + ], + "es": [ + "electrónica", + "electrónicos", + "electrodoméstico", + "aparatos", + "equipos", + "línea blanca" + ], + "fr": [ + "magasin d'électronique et d'électroménager" + ], + "hu": [ + "háztartási gép", + "tévé", + "rádió", + "hűtőszekrény", + "számítógép" + ], + "it": [ + "negozio di elettronica" + ], + "ja": [ + "家電販売店", + "家電量販店", + "買い物", + "ショッピング", + "小型家電", + "電器屋", + "電気屋" + ], + "nl": [ + "huishoudelektro", + "witgoed", + "elektro", + "electro", + "wasmachine", + "keuken", + "vaatwasmachine", + "afwasmachine" + ], + "pl": [ + "rtv", + "agd", + "artykuły gospodarstwa domowego", + "elektronika", + "telewizory", + "radio", + "radia", + "pralka", + "pralki", + "lodówka", + "lodówki", + "suszarka", + "suszarki", + "kuchenka", + "kuchenki", + "zmywarka", + "zmywarki", + "odkurzacze", + "komputery", + "monitory", + "drukarka", + "drukarki", + "wieże", + "odtwarzacze", + "kino domowe", + "dvd", + "głośniki", + "kamery", + "tablety", + "konsole do gier", + "nawigacje", + "mediamarkt", + "saturn", + "eurortvagd", + "mediaexpert" + ], + "pt": [ + "eletrónica de consumo", + "aspirador", + "televisão", + "máquina de lavar", + "frigorífico", + "eletrodoméstico", + "eletro-doméstico" + ], + "ru": [ + "магазин бытовой электроники", + "телевизор", + "тв", + "радио", + "холодильник", + "электроника", + "кабели", + "духовка", + "печь", + "бытовая техника" + ], + "sl": [ + "elektronika", + "hifi" + ], + "sv": [ + "elektronikbutik", + "hemelektronik", + "tv", + "radio", + "dator", + "datorer", + "kylskåp", + "spisar", + "vitvaror", + "tvättmaskin", + "torktumlare", + "hushållsapparater", + "kablar", + "batterier", + "apparater", + "ljud" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-plug.svg", + "class": "medium" + } + }, + { + "if": "shop=erotic", + "then": { + "en": "Erotic Store", + "ca": "Botiga d'articles eròtics", + "da": "Erotikbutik", + "de": "Erotikgeschäft", + "eo": "Seksumila vendejo", + "es": "Tienda erótica", + "fi": "Erotiikkamyymälä", + "fr": "Sex-shop", + "gl": "Tenda erótica", + "hu": "Szexbolt", + "it": "Sexy shop", + "ja": "アダルトショップ", + "nl": "Seksshop", + "pl": "Sex shop", + "pt": "Sex shop", + "ru": "Секс-шоп", + "sl": "Erotična trgovina", + "sv": "Sexshop" + }, + "searchTerms": { + "en": [ + "sex", + "porn" + ], + "ca": [ + "sex", + "shop", + "sexshop" + ], + "da": [ + "erotikbutik", + "sexlegetøjsbutik", + "erotiklegetøjsforretning" + ], + "de": [ + "erotikladen", + "sexshop" + ], + "eo": [ + "seksumiloj", + "pornografiaĵoj", + "seksvendejo" + ], + "es": [ + "erótica", + "erótico", + "erotica", + "erotico", + "sexual", + "sex shop" + ], + "fi": [ + "seksi", + "seksilelu", + "lelu", + "aikuinen", + "aikuisten", + "k18", + "porno", + "erotiikka", + "eroottinen", + "kauppa", + "liike", + "myymälä", + "putiikki" + ], + "fr": [ + "sex-shop" + ], + "hu": [ + "erotikus bolt", + "szexuális segédeszköz" + ], + "it": [ + "sesso", + "porno", + "vibratori" + ], + "ja": [ + "アダルトショップ", + "ポルノショップ", + "ポルノ", + "大人のおもちゃ", + "成人向け" + ], + "nl": [ + "erotiek", + "sex shop" + ], + "pl": [ + "sex shop", + "sex-shop", + "sklep erotyczny" + ], + "pt": [ + "artigos eróticos", + "erótico", + "eróticos", + "sexo", + "pornografia", + "bondage" + ], + "ru": [ + "секс-игрушки", + "эротическое", + "нижнее бельё", + "контрацептивы", + "презервативы", + "латексные салфетки", + "эротические игры", + "порнографические фильмы", + "порнографические журналы" + ], + "sv": [ + "sex", + "sexshop", + "sexaffär", + "erotik", + "erotikaffär", + "erotisk", + "sexfilmer", + "porr", + "porrfilmer", + "sexleksaker", + "underkläder", + "kondomer", + "pornografi", + "porrtidningar" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=fabric", + "then": { + "en": "Fabric Store", + "ca": "Botiga de teles", + "da": "Stofforretning", + "de": "Stoffgeschäft", + "eo": "Teksaĵa vendejo", + "es": "Tienda textil", + "fi": "Kangaskauppa", + "fr": "Magasin de tissus", + "gl": "Tenda de teas", + "hu": "Méteráru-bolt", + "id": "Toko Kain", + "it": "Negozio di tessuti", + "ja": "生地屋", + "nl": "Stofwinkel", + "pl": "Sklep z tkaninami", + "pt": "Loja de tecidos", + "ru": "Магазин тканей", + "sl": "Trgovina z metrskim blagom", + "sv": "Tygaffär" + }, + "searchTerms": { + "en": [ + "sew" + ], + "ca": [ + "botiga de robes", + "teles", + "robes" + ], + "da": [ + "stofforretning" + ], + "de": [ + "stoffgeschäft", + "textilgeschäft" + ], + "eo": [ + "teksaĵoj", + "teksajhoj", + "teksajxoj", + "ŝtofoj" + ], + "es": [ + "tela", + "tejido", + "género", + "textilería", + "tejidos" + ], + "fr": [ + "mercerie" + ], + "hu": [ + "röltex", + "lakástextil", + "rőfös" + ], + "it": [ + "merceria", + "negozio di stoffe", + "stoffe e tessuti" + ], + "ja": [ + "布地", + "織物", + "反物", + "ファブリック店", + "生地", + "裏地", + "衣料", + "服", + "裁縫", + "衣類", + "生地店", + "布地店", + "お店", + "ショッピング", + "小売", + "アパレル" + ], + "nl": [ + "kledij", + "naaien" + ], + "pl": [ + "tkaniny" + ], + "pt": [ + "tecido", + "tecidos" + ], + "ru": [ + "ткани", + "материалы для штор", + "тюль" + ], + "sv": [ + "tygaffär", + "tyger", + "tyg", + "sömnad", + "sy" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-tape.svg", + "class": "medium" + } + }, + { + "if": "shop=farm", + "then": { + "en": "Produce Stand", + "ca": "Estand productiu", + "da": "Gårdbutik", + "de": "Hofladen", + "eo": "Terfrukta vendotablo", + "es": "Tienda de productos agrícolas", + "fi": "Maatilan suoramyynti", + "fr": "Magasin de producteurs", + "gl": "Tenda de produtos agrícolas", + "hu": "Termelői bolt", + "it": "Bancarella agricola", + "ja": "農産物直売所", + "nl": "Boerderijwinkel voor groente en fruit", + "pl": "Stragan świeżych produktów", + "pt": "Loja de produtos agrícolas locais", + "ru": "Магазин свежих продуктов", + "sl": "Prodaja domačih pridelkov", + "sv": "Gårdsbutik" + }, + "searchTerms": { + "en": [ + "baked goods", + "fresh food", + "fruits", + "greengrocer", + "orchard", + "organics", + "vegetables" + ], + "ca": [ + "grades" + ], + "da": [ + "fødevarestand", + "frugtstand", + "gårdbutik", + "stalddørssalg" + ], + "de": [ + "obst- und gemüsestand", + "hofladen" + ], + "eo": [ + "terfruktoj", + "farmbutiko", + "farmobutiko", + "stando", + "vendbudo", + "legomejo", + "legombutiko", + "legomvendejo" + ], + "es": [ + "granja", + "agrícola", + "productos", + "puesto", + "caseta" + ], + "fi": [ + "tuotestandi", + "standi", + "ständi", + "esittely", + "tuote-esittely", + "tuote", + "tavara", + "esittelypiste", + "esittelyständi", + "esittelystandi" + ], + "fr": [ + "étal de fruits et légumes", + "vente à la ferme", + "vente producteurs" + ], + "hu": [ + "farm bolt", + "árus", + "kofa", + "tanyasi termék", + "őstermelő" + ], + "it": [ + "frutta", + "verdura", + "freschi", + "orofrutta" + ], + "ja": [ + "農産物直売所", + "直販", + "食品", + "食べ物", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "groentekraam", + "fruitkraam", + "groente- en fruitkraam" + ], + "pl": [ + "stragan świeżych produktów", + "sklep wiejski", + "świeże płody rolne", + "świeża żywność", + "warzywa", + "owoce", + "jajka" + ], + "pt": [ + "barraca de fruta", + "barraca de legumes", + "barraca de hortaliças", + "barraca de batatas", + "fruta", + "frutas", + "verdura", + "verduras", + "frutaria", + "banca", + "vegetais", + "orgânicos", + "biológicos", + "produtos regionais" + ], + "ru": [ + "продуктовый ларёк", + "арбузы", + "дыни", + "овощной", + "фруктовый" + ], + "sl": [ + "lokalna tržnica" + ], + "sv": [ + "gårdsbutik", + "närproducerat", + "egenproducerat" + ] + } + }, + { + "if": "shop=fashion_accessories", + "then": { + "en": "Fashion Accessories Store", + "ca": "Botiga d'accessoris de moda", + "de": "Geschäft für Modeaccessoires", + "eo": "Galanteria (vestaj akcesoraĵoj) vendejo", + "es": "Tienda de accesorios de moda", + "fi": "Muotitarvikekauppa", + "fr": "Boutique d'accessoires de mode", + "gl": "Tenda de accesorios de moda", + "hu": "Divat kiegészítők boltja", + "it": "Negozio di accessori di moda", + "ja": "ファッション小物店", + "nl": "Modeaccessoirewinkel", + "pl": "Sklep z galanterią", + "pt": "Loja de acessórios de moda", + "ru": "Магазин модных аксессуаров", + "sv": "Affär för modeaccessoarer" + }, + "searchTerms": { + "en": [ + "bag", + "cologne", + "fragrance", + "hat", + "jewellery", + "purfume", + "purse", + "scarf", + "sunglasses", + "umbrella", + "wallet", + "watch" + ], + "de": [ + "tasche", + "parfum", + "cologne", + "juwelen", + "geldbörse", + "schal", + "sonnenbrillen", + "schirm" + ], + "eo": [ + "galanterio", + "galanteriejo", + "akcesoraĵoj", + "saketoj", + "mansakoj", + "ombreloj" + ], + "es": [ + "bolso", + "colonia", + "fragancia", + "sombrero", + "joyería", + "perfume", + "monedero", + "bufanda", + "gafas de sol lentes de sol", + "paraguas", + "billetera", + "reloj" + ], + "fr": [ + "sac à main", + "cologne", + "parfum", + "chapeau", + "bijoux", + "porte-monnaie", + "écharpe", + "lunettes de soleil", + "parapluie", + "montres" + ], + "ja": [ + "アクセサリー店", + "アクセサリーショップ", + "ファッション", + "小物", + "装飾品", + "服飾小物", + "ファッションアクセサリー店", + "店舗", + "お店", + "おしゃれ", + "ファッション小物店", + "ショッピング", + "小売" + ], + "nl": [ + "handtas", + "hoed", + "juwelen", + "sjaal", + "uurwerk", + "paraplu", + "zonnebril", + "portefeuille" + ], + "pl": [ + "sklep z galanterią", + "galanteria", + "akcesoria modowe", + "dodatki do ubrania", + "dodatki do odzieży", + "paski", + "kapelusze", + "czapki", + "torebki", + "rękawiczki", + "szaliki", + "szale", + "chusty", + "parasole", + "portfele", + "biżuteria" + ], + "pt": [ + "fashion accessories store", + "loja de acessórios de moda", + "acessórios de moda", + "acessórios", + "bijuteria", + "mala", + "bolsa", + "chapéu", + "joalharia", + "joalheria", + "óculos de sol", + "carteira", + "moda", + "perfumes" + ], + "sv": [ + "affär för modeaccessoarer", + "väskor", + "parfym", + "doft", + "hattar", + "smycken", + "handväskor", + "halsdukar", + "solglasögon", + "paraply", + "plånböcker", + "klockor", + "modeaccessoarer", + "accessoarer" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-fashion_accessories.svg", + "class": "medium" + } + }, + { + "if": "shop=fireplace", + "then": { + "en": "Fireplace Store", + "ca": "Botiga de llars de foc", + "de": "Kachelofenladen", + "eo": "Kamen-vendejo", + "es": "Tienda de chimeneas", + "fi": "Takkamyymälä", + "fr": "Magasin de cheminées", + "gl": "Tenda de chemineas", + "hu": "Cserépkályha- és kandalló-szaküzlet", + "it": "Negozio di caminetti", + "ja": "暖房具店", + "nl": "Haardwinkel", + "pl": "Sklep z kominkami", + "pt": "Loja de lareiras", + "ru": "Продажа каминов", + "sv": "Kaminbutik" + }, + "searchTerms": { + "en": [ + "fireplace", + "stove", + "masonry heater" + ], + "de": [ + "kachelofenladen", + "kamin", + "ofen" + ], + "eo": [ + "kamenoj", + "hejtiloj" + ], + "es": [ + "chimenea", + "estufa", + "calentador de mampostería" + ], + "fr": [ + "cheminées" + ], + "gl": [ + "chaminea", + "lareira", + "lume", + "fumeira" + ], + "it": [ + "camino", + "caminetto", + "stufa", + "riscaldamento", + "fuoco", + "bivacco" + ], + "ja": [ + "暖房具店", + "店舗", + "お店", + "暖房器具", + "ストーブ", + "暖炉", + "ヒーター", + "ショッピング", + "小売" + ], + "nl": [ + "kachelwinkel" + ], + "pl": [ + "kominek", + "kominki", + "piece", + "grzejniki" + ], + "pt": [ + "lareira", + "fogo", + "lenha", + "aquecimento", + "fogões", + "fogão", + "salamandra", + "calor" + ], + "sv": [ + "eldstad", + "eldstäder", + "kamin", + "kakelugn", + "gaskamin" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-fireplace.svg", + "class": "medium" + } + }, + { + "if": "shop=fishing", + "then": { + "en": "Fishing Shop", + "ca": "Botiga de pesca", + "de": "Angelgeschäft", + "eo": "Fiŝkaptil-vendejo", + "es": "Tienda de pesca", + "fi": "Kalastuskauppa", + "fr": "Magasin de pêche", + "gl": "Tenda de pesca", + "hu": "Horgászbolt", + "it": "Negozio di pesca", + "ja": "釣具店", + "nl": "Hengelsportwinkel", + "pl": "Sklep wędkarski", + "pt": "Loja de artigos de pesca", + "ru": "Рыболовный магазин", + "sv": "Fiskeaffär" + }, + "searchTerms": { + "en": [ + "bait", + "fishing line", + "flies", + "fly", + "lure", + "reel", + "rod", + "tackle" + ], + "de": [ + "angelgeschäft", + "angelsportzentrum" + ], + "eo": [ + "fiŝhokado", + "fiŝkaptado", + "hokfiŝado" + ], + "es": [ + "cebo", + "hilo de pescar", + "moscas", + "señuelo", + "carrete", + "varilla", + "aparejos", + "artículos de pesca", + "artículos para pescar", + "pescar", + "pescador" + ], + "fr": [ + "pêche" + ], + "it": [ + "pesca", + "pescatori", + "esca", + "esche vive", + "lenze", + "lenza", + "mosche", + "canne da pesca", + "canna da pesca", + "rocchetto", + "mulinello" + ], + "ja": [ + "釣具店", + "釣り", + "魚釣り", + "フィッシング", + "釣り道具", + "スポーツ", + "ホビー" + ], + "nl": [ + "visserswinkel", + "visserijwinkel", + "visgereiwinkel", + "netten", + "vislijnen" + ], + "pl": [ + "wędki", + "przynęty", + "ryby", + "łowienie" + ], + "pt": [ + "artigos de pesca", + "artigos para pescar", + "pesca", + "peixe", + "pescar", + "anzol", + "anzóis", + "ansol", + "ansóis", + "engodo", + "linha de pesca", + "sediela", + "cana", + "carreto" + ], + "sv": [ + "fiskeaffär", + "fiskeutrustning", + "sommarfiske", + "vinterfiske", + "levande bete", + "bete", + "fiske", + "fiska", + "fisk", + "fiskare" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-ice_fishing.svg", + "class": "medium" + } + }, + { + "if": "shop=flooring", + "then": { + "en": "Flooring Supply Shop", + "de": "Fußbodengeschäft", + "eo": "Plank-vendejo", + "es": "Tienda de suministros para pisos", + "fr": "Magasin de revêtements de sol", + "gl": "Tenda de chans", + "hu": "Burkoló bolt", + "it": "Negozio di articoli per pavimentazioni", + "ja": "床用品店", + "nl": "Vloerwinkel", + "pl": "Sklep z posadzkami", + "pt": "Loja de material de pavimentação", + "sv": "Affär för golv" + }, + "searchTerms": { + "en": [ + "tile" + ], + "de": [ + "fliese" + ], + "eo": [ + "plankoj", + "kaheloj", + "pargetoj" + ], + "es": [ + "baldosa" + ], + "fr": [ + "magasin", + "boutique", + "revêtements de sol", + "carrelage", + "parquet", + "lattes", + "moquette", + "tapis", + "lino", + "vinyle", + "pvc" + ], + "it": [ + "pavimenti", + "piastrelle" + ], + "ja": [ + "床用品店", + "フロア", + "フローリング" + ], + "nl": [ + "tegel" + ], + "pl": [ + "sklep z posadzkami", + "posadzki", + "podłogi", + "parkiety" + ], + "pt": [ + "revestimento", + "pavimento", + "ladrilho", + "soalho", + "piso", + "soalhar", + "madeira", + "ripas", + "verniz" + ], + "sv": [ + "golv", + "parkett", + "klinkergolv", + "golvläggning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tools.svg", + "class": "medium" + } + }, + { + "if": "shop=florist", + "then": { + "en": "Florist", + "ca": "Floristeria", + "da": "Blomsterbutik", + "de": "Blumenhändler", + "eo": "Florvendejo", + "es": "Floristería", + "fi": "Kukkakauppa", + "fr": "Fleuriste", + "gl": "Floraría", + "hu": "Virágbolt", + "id": "Toko Bunga", + "it": "Fioraio", + "ja": "生花店", + "nl": "Bloemenwinkel", + "pl": "Kwiaciarnia", + "pt": "Florista", + "ru": "Цветочный магазин", + "sl": "Cvetličarna", + "sv": "Florist" + }, + "searchTerms": { + "en": [ + "flower" + ], + "ca": [ + "floristeria", + "botiga de plantes", + "botiga de jardineria" + ], + "da": [ + "blomsterbutik", + "blomsterforretning" + ], + "de": [ + "florist", + "blumenladen", + "blumengeschäft" + ], + "eo": [ + "florovendejo", + "florejo" + ], + "es": [ + "floristería", + "florista", + "flores", + "ramos", + "plantas", + "floricultor" + ], + "fr": [ + "fleuriste" + ], + "hu": [ + "virágos", + "virágárus", + "szobanövény", + "dísznövény", + "bonsai" + ], + "it": [ + "fiori" + ], + "ja": [ + "生花店", + "花屋" + ], + "nl": [ + "bloemist", + "bloemenzaak" + ], + "pl": [ + "kwiaciarnia", + "kwiaty" + ], + "pt": [ + "florista", + "flor", + "flores", + "rosas", + "buquê", + "bouquet", + "ramalhete" + ], + "ru": [ + "цветочный магазин", + "цветы", + "букет" + ], + "sl": [ + "cvetlice", + "cvetličarstvo" + ], + "sv": [ + "florist", + "blommor", + "blomförsäljning", + "bukett", + "blomsterbindare", + "blomsterhandlare" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-florist.svg", + "class": "medium" + } + }, + { + "if": "shop=frame", + "then": { + "en": "Framing Shop", + "ca": "Botiga de marcs", + "da": "Rammebutik", + "de": "Bilderrahmengeschäft", + "eo": "Bild-kadra vendejo", + "es": "Tienda de enmarcación", + "fi": "Kehystämö", + "fr": "Magasin d'encadrements", + "gl": "Tenda de enmarcado", + "hu": "Képkeret-bolt", + "id": "Toko Bingkai", + "it": "Negozio di cornici", + "ja": "額縁店", + "nl": "Kaderwinkel", + "pl": "Sklep z ramami", + "pt": "Loja de molduras", + "ru": "Магазин рамок для фотографий и картин", + "sv": "Ramaffär" + }, + "searchTerms": { + "en": [ + "art*", + "paint*", + "photo*", + "frame" + ], + "da": [ + "rammebutik", + "billedrammer" + ], + "de": [ + "bilderrahmengeschäft" + ], + "eo": [ + "kadroj", + "kadraĵoj", + "pentraĵkadroj", + "bildkadroj" + ], + "es": [ + "enmarcado", + "enmarcaciones", + "encuadrado", + "encuadre", + "marcos", + "cuadro" + ], + "fi": [ + "kehys", + "kehykset", + "taulunkehys", + "taulunkehykset" + ], + "fr": [ + "vente de cadres" + ], + "gl": [ + "enmarcado", + "marco", + "enmarcar", + "cadro" + ], + "hu": [ + "képkeretező" + ], + "it": [ + "corniceria" + ], + "ja": [ + "額縁店" + ], + "nl": [ + "schilderijen", + "kunst", + "kadrering" + ], + "pl": [ + "ramy", + "oprawa obrazów", + "oprawy obrazów", + "obrazy", + "fotografie" + ], + "pt": [ + "framing", + "moldura", + "quadro", + "pinturas", + "fotografias" + ], + "ru": [ + "рамки", + "картины" + ], + "sv": [ + "ramaffär", + "ramar", + "inramning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-vector-square.svg", + "class": "medium" + } + }, + { + "if": "shop=frozen_food", + "then": { + "en": "Frozen Food Store", + "ca": "Botiga de menjars congelats", + "de": "Geschäft für Tiefkühlprodukte", + "eo": "Frostigit-manĝaĵa vendejo", + "es": "Tienda de alimentos congelados", + "fr": "Magasin de produits surgelés", + "gl": "Tenda de conxelados", + "hu": "Fagyasztottélelmiszer-bolt", + "it": "Negozio di cibo surgelato", + "ja": "冷凍食品店", + "nl": "Winkel voor bevroren voedsel", + "pl": "Sklep z mrożonkami", + "pt": "Loja de comida congelada", + "ru": "Магазин замороженных продуктов", + "sv": "Affär för fryst mat" + }, + "searchTerms": { + "de": [ + "tiefkühllebensmittel", + "tiefkühlkost", + "gefrier", + "gefroren", + "tiefgefroren" + ], + "eo": [ + "frostigita manĝaĵo", + "fridigita manĝaĵo", + "glaciigita manĝaĵo" + ], + "es": [ + "alimentos", + "comidas", + "congeladas", + "congelados" + ], + "fr": [ + "surgelés", + "surgeles", + "glaces" + ], + "hu": [ + "mirelit" + ], + "it": [ + "surgelati" + ], + "ja": [ + "冷凍食品店", + "店舗", + "お店", + "食品", + "買い物", + "食べ物", + "冷凍食品", + "冷凍パック", + "ショッピング", + "小売", + "食料品" + ], + "nl": [ + "diepvriesvoedsel" + ], + "pl": [ + "mrożonki" + ], + "pt": [ + "comida congelada", + "congelados", + "congelada", + "comida", + "alimentos" + ], + "sv": [ + "fryst mat", + "frysmat", + "snabbmat", + "matlådor", + "fryst", + "frys", + "färdigmat", + "färdigrätt", + "färdigrätter", + "mat", + "lunch" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=fuel", + "then": { + "en": "Fuel Shop", + "de": "Tankstelle", + "eo": "Brulaĵ-vendejo", + "es": "Tienda de combustible", + "fi": "Polttoainemyymälä", + "fr": "Revendeur de carburant", + "gl": "Tenda de combustíbel", + "hu": "Üzemanyag-szaküzlet", + "it": "Negozio di carburanti", + "ja": "燃料店", + "nl": "Brandstofwinkel", + "pl": "Sklep z paliwami", + "pt": "Loja de combustíveis", + "sv": "Bränsleaffär" + }, + "searchTerms": { + "de": [ + "treibstoffverkaufsstelle" + ], + "eo": [ + "brulaĵo", + "benzino", + "fuelo", + "gaso", + "gasboteloj", + "gasujoj", + "boteloj" + ], + "es": [ + "tienda", + "gasolina", + "combustible", + "carburante" + ], + "fi": [ + "polttoainekauppa", + "polttoaineliike" + ], + "fr": [ + "magasin", + "essence", + "station-service", + "pétrole", + "fuel", + "carburant", + "diesel" + ], + "gl": [ + "tenda", + "gasolina", + "combustíbel. combustible", + "carburante", + "gasoil", + "gasofa", + "gas", + "petróleo", + "queroseno", + "butano", + "propano" + ], + "it": [ + "benzina", + "diesel", + "gasolio", + "carburante" + ], + "ja": [ + "燃料店", + "燃料", + "ガソリン", + "炭", + "木炭", + "石炭", + "お店", + "店舗", + "暖房用油", + "油", + "ショッピング", + "小売" + ], + "nl": [ + "motorolie", + "steenkool", + "houtskool", + "briketten", + "brandhout", + "stookolie", + "motorbrandstof", + "propaan", + "kerosine" + ], + "pl": [ + "paliwo", + "paliwa", + "skład opału", + "skład węgla", + "węgiel", + "koks", + "groszek", + "ekogroszek", + "węgiel drzewny", + "drewno", + "olej opałowy", + "benzyna", + "pelet", + "pellet", + "brykiety", + "gaz w butlach", + "butle gazowe" + ], + "pt": [ + "combustível", + "querosene", + "butano", + "propano", + "gás", + "petróleo" + ], + "ru": [ + "азс", + "бензин", + "дизель", + "автозаправка", + "газ", + "пропан", + "бутан", + "агзс", + "автогаз", + "заправка", + "солярка", + "топливо" + ], + "sv": [ + "bränsleaffär", + "bränslebutik", + "bränsle", + "motorbränsle", + "kol", + "träkol", + "eldningsolja", + "propan", + "lpg", + "fotogen" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-propane_tank.svg", + "class": "medium" + } + }, + { + "if": "shop=funeral_directors", + "then": { + "en": "Funeral Home", + "ca": "Tanatori", + "da": "Bedemandsforretning", + "de": "Beerdigungsinstitut", + "eo": "Tombistejo", + "es": "Funeraria", + "fi": "Hautaustoimisto", + "fr": "Pompes funèbres", + "gl": "Funeraria", + "hu": "Temetkezési iroda", + "id": "Rumah Pemakaman", + "it": "Casa funeraria", + "ja": "葬儀社", + "nl": "Begrafenisondernemer", + "pl": "Zakład pogrzebowy", + "pt": "Agência funerária", + "ru": "Бюро похоронных услуг", + "sl": "Pogrebne storitve", + "sv": "Begravningsbyrå" + }, + "searchTerms": { + "en": [ + "undertaker", + "memorial home" + ], + "da": [ + "bedemandsforretning", + "begravelsesbutik", + "begravelsesforretning" + ], + "de": [ + "bestattungswesen", + "beerdigungsinstitut", + "bestattungsinstitut", + "bestattungsunternehmen", + "bestatter", + "pompfüneberer" + ], + "eo": [ + "tombisto", + "enterigisto", + "entombigisto", + "sepultisto" + ], + "es": [ + "funeraria", + "funeral", + "entierro", + "sepelio", + "funerario", + "fúnebre" + ], + "fi": [ + "hautajaiset", + "hautajaistoimisto", + "toimisto", + "vainaja" + ], + "fr": [ + "services d’arrangements funéraires" + ], + "gl": [ + "funeraria", + "tanatorio", + "velorio", + "abellón" + ], + "hu": [ + "temetkezési ügyintézés", + "temetkezési intézet", + "temetkezési és hamvasztási ügyintézés" + ], + "it": [ + "funerale", + "cimitero", + "becchino", + "defunto", + "urna", + "onoranze", + "funebre" + ], + "ja": [ + "葬儀屋", + "葬儀業", + "葬祭業者" + ], + "nl": [ + "rouwcentrum" + ], + "pl": [ + "pochówek", + "pogrzeb" + ], + "pt": [ + "funeral", + "casa funerária", + "agência mortuária", + "casa mortuária", + "cangalheiro" + ], + "ru": [ + "бюро похоронных услуг", + "кремация", + "ритуальные услуги" + ], + "sl": [ + "pogrebni zavod" + ], + "sv": [ + "begravningsbyrå", + "begravningsceremoni", + "begravning", + "bodelning", + "jordfästning", + "gravsättning", + "kremering", + "begravningsentreprenör", + "gravsten", + "gravstenar" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-cemetery.svg", + "class": "medium" + } + }, + { + "if": "shop=furniture", + "then": { + "en": "Furniture Store", + "ca": "Botiga de mobles", + "da": "Møbelforhandler", + "de": "Möbelhaus", + "eo": "Mebla vendejo", + "es": "Mueblería", + "fi": "Huonekaluliike", + "fr": "Magasin de meubles", + "gl": "Moblaría", + "hu": "Bútorbolt", + "id": "Toko Furnitur", + "it": "Negozio di mobili", + "ja": "家具店", + "nl": "Meubelzaak", + "pl": "Sklep meblowy", + "pt": "Loja de mobiliário", + "ru": "Мебельный магазин", + "sl": "Trgovina s pohištvom", + "sv": "Möbelaffär" + }, + "searchTerms": { + "en": [ + "chair", + "sofa", + "table" + ], + "ca": [ + "botiga de mobles", + "moblista" + ], + "da": [ + "møbelbutik", + "møbelhandler", + "møbelforretning", + "stol", + "sofa", + "bord" + ], + "de": [ + "möbelladen", + "möbelgeschäft", + "einrichtungsgeschäft", + "einrichtungshaus" + ], + "eo": [ + "mebloj", + "meblovendejo", + "meblaĵoj" + ], + "es": [ + "mueble", + "mobiliario", + "armario", + "mesa", + "silla", + "cocina", + "muebles", + "tienda de muebles" + ], + "fr": [ + "magasin de meubles" + ], + "hu": [ + "bútor", + "lakberendezés" + ], + "it": [ + "mobili", + "mobilificio", + "sedie", + "divani", + "tavoli" + ], + "ja": [ + "家具店", + "インテリア用品店" + ], + "nl": [ + "woonwarenhuis", + "meubelwinkel" + ], + "pl": [ + "sklep meblowy", + "meble" + ], + "pt": [ + "loja de móveis", + "mobiliário", + "mobiliários", + "mobílias", + "mobília", + "móvel", + "móveis", + "sofá", + "cama" + ], + "ru": [ + "мебельный магазин" + ], + "sl": [ + "pohištvo", + "notranja oprema" + ], + "sv": [ + "möbelaffär", + "möbelgrossist", + "möbelvaruhus", + "inredning", + "stolar", + "soffor", + "soffa", + "stol", + "bord", + "hylla" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-couch.svg", + "class": "medium" + } + }, + { + "if": "shop=games", + "then": { + "en": "Tabletop Game Store", + "de": "Brettspielgeschäft", + "eo": "Tabullud‑vendejo", + "es": "Tienda de juegos de mesa", + "fi": "Lautapeliliike", + "fr": "Magasin de jeux de plateau", + "gl": "Tenda de xogos de mesa", + "hu": "Társasjáték-bolt", + "it": "Negozio di giochi da tavolo", + "ja": "ボードゲーム販売店", + "nl": "Bordspellenwinkel", + "pl": "Sklep z grami", + "pt": "Loja de jogos de tabuleiro", + "ru": "Магазин настольных игр", + "sv": "Affär för brädspel" + }, + "searchTerms": { + "en": [ + "board game", + "card game", + "dice game", + "game shop", + "live action role-playing game", + "miniatures wargame", + "strategy game" + ], + "de": [ + "brettspielgeschäft" + ], + "eo": [ + "tabulludoj", + "kartludoj", + "rolludoj", + "rpg" + ], + "es": [ + "juego de mesa", + "juego de cartas", + "juego de dados", + "tienda de juegos", + "juego de rol", + "miniaturas de guerra", + "juego de estrategia" + ], + "fi": [ + "lautapeli", + "korttipeli", + "noppapeli", + "pelikauppa", + "live-roolipelaaminen", + "larp", + "sotapeli", + "strategiapeli" + ], + "fr": [ + "jeux de plateau", + "jeu de plateau", + "jeu de cartes", + "jeux de cartes", + "game shop", + "jeu de rôle", + "miniature", + "stratégie", + "plateau", + "cartes", + "figurines" + ], + "it": [ + "giochi da tavolo", + "carte da gioco", + "dadi", + "ludoteca" + ], + "ja": [ + "ボードゲーム販売店", + "ボードゲーム", + "カードゲーム", + "ロールプレイングゲーム", + "トレーディングカード", + "ゲーム", + "店舗", + "お店", + "娯楽", + "ショッピング", + "小売", + "趣味", + "ホビー" + ], + "nl": [ + "gezelschapsspellen" + ], + "pl": [ + "sklep z grami", + "planszowymi", + "karcianymi", + "bez prądu", + "gry", + "gry planszowe", + "gry karciane", + "gry bitewne", + "planszówki", + "karcianki" + ], + "pt": [ + "tabletop game store", + "tabletop", + "loja de jogos de mesa", + "loja de jogos de tabuleiro", + "loja de jogos", + "jogos de mesa", + "jogos de tabuleiro", + "jogo de mesa", + "jogo de tabuleiro" + ], + "sv": [ + "affär för brädspel", + "brädspel", + "kortspel", + "tärningsspel", + "spelbutik", + "live action-rollspel", + "miniatyrer krigsspel", + "strategispel", + "spel" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-dice.svg", + "class": "medium" + } + }, + { + "if": "shop=garden_centre", + "then": { + "en": "Garden Center", + "ca": "Centre de jardineria", + "da": "Havecenter", + "de": "Gartenzentrum", + "eo": "Ĝarden-vendejo", + "es": "Centro de jardinería / Vivero", + "fi": "Puutarhamyymälä", + "fr": "Jardinerie", + "gl": "Centro de xardinaría", + "hu": "Kertészet", + "id": "Toko Tanaman", + "it": "Vivaio", + "ja": "園芸用品店", + "nl": "Tuincentrum", + "pl": "Centrum ogrodnicze", + "pt": "Loja de jardinagem", + "ru": "Садовые принадлежности", + "sl": "Vrtni center", + "sv": "Trädgårdscenter" + }, + "searchTerms": { + "en": [ + "landscape", + "mulch", + "shrub", + "tree" + ], + "da": [ + "havecenter", + "plantecenter" + ], + "de": [ + "gartenzentrum", + "gartencenter", + "gartenmarkt" + ], + "eo": [ + "ĝardenvendejo", + "ghardenvendejo", + "gxardenvendejo", + "potfloroj" + ], + "es": [ + "centro de jardinería", + "tienda de jardinería", + "vivero" + ], + "fr": [ + "jardinerie", + "magasin de jardinage" + ], + "id": [ + "bunga", + "tanaman hias", + "kebun", + "taman" + ], + "it": [ + "centro per il giardinaggio" + ], + "ja": [ + "園芸用品店", + "ガーデンセンター", + "diy", + "家庭菜園", + "植木", + "樹木", + "植物" + ], + "nl": [ + "tuincentrum", + "bloemist", + "kas", + "kassen" + ], + "pl": [ + "centrum ogrodnicze", + "sklep ogrodniczy", + "ogród" + ], + "pt": [ + "garden", + "flores", + "artigos para jardinagem", + "jardinagem", + "jardim", + "paisagismo", + "horta", + "árvores" + ], + "ru": [ + "садовый центр", + "саженцы", + "инструменты", + "удобрения" + ], + "sl": [ + "vse za vrt", + "vrtnarija" + ], + "sv": [ + "trädgårdscenter", + "plantskola", + "blommor", + "blomkrukor", + "krukväxter", + "buskar", + "träd", + "trädgårdsväxter", + "trädgård", + "trädgårdsverktyg", + "planteringsjord", + "jord", + "landskap", + "kompost" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-garden-centre.svg", + "class": "medium" + } + }, + { + "if": "shop=gas", + "then": { + "en": "Bottled Gas Shop", + "da": "Gasflaskebutik", + "de": "Gasflaschenverkauf", + "eo": "Gasuja vendejo", + "es": "Tienda de gas embotellado", + "fi": "Kaasupulloliike", + "fr": "Magasin de bouteilles de gaz", + "gl": "Tenda de bombonas de gas", + "hu": "Palackozottgáz-bolt", + "it": "Negozio di bombole", + "ja": "ガスボンベ店", + "nl": "Gasflessenwinkel", + "pl": "Sklep z butlami gazowymi", + "pt": "Loja de botijas de gás", + "ru": "Магазин газовых баллонов", + "sl": "Trgovina s plinskimi jeklenkami", + "sv": "Gasbutik" + }, + "searchTerms": { + "en": [ + "cng", + "lpg", + "natural gas", + "propane", + "refill", + "tank" + ], + "da": [ + "gasflaskebutik" + ], + "de": [ + "gasflaschenshop", + "gasflaschengeschäft" + ], + "eo": [ + "gasujoj", + "gasoj", + "lpg" + ], + "es": [ + "recarga", + "bombona", + "garrafa", + "tanque", + "balón", + "cilindro", + "gas", + "gpl", + "gnv", + "gas natural", + "propano" + ], + "fi": [ + "kaasu", + "grilli", + "grillaus", + "kaasupullo", + "kauppa", + "myymälä", + "liike", + "jälleenmyynti", + "jälleenmyyjä", + "täyttö", + "kaasupullontäyttö" + ], + "fr": [ + "bouteille", + "gaz", + "butane", + "propane" + ], + "hu": [ + "gáztöltő", + "pb gáz", + "gázpalack", + "palckozott gáz", + "cseppfolyós gáz", + "gázcseretelep" + ], + "it": [ + "gas", + "bombole", + "bombola", + "gpl", + "metano", + "lpg", + "cng", + "gas naturale", + "propano", + "ricarica bombole", + "ricarica" + ], + "ja": [ + "ガスボンベ店" + ], + "nl": [ + "methaan", + "ethaan", + "propaan", + "butaan", + "gaswinkel", + "gastank", + "aardgas", + "lpg" + ], + "pl": [ + "butle gazowe", + "gaz płynny", + "propan", + "lpg", + "cng" + ], + "pt": [ + "gás", + "botija", + "propano", + "gpl", + "bilha", + "redutor", + "garrafa", + "recarga", + "fogão" + ], + "ru": [ + "газ", + "газовый баллон" + ], + "sv": [ + "gas", + "cng", + "lpg", + "naturgas", + "propan", + "återfyllning", + "gasbehållare", + "fordonsgas", + "metangas", + "gasol", + "gasflaskor", + "gasolflaskor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-propane_tank.svg", + "class": "medium" + } + }, + { + "if": "shop=general", + "then": { + "en": "General Store", + "ca": "Botiga generalista", + "de": "Gemischtwarenhandlung", + "eo": "Ĝenerala vendejo", + "es": "Tienda general", + "fi": "Sekatavarakauppa", + "fr": "Magasin général", + "gl": "Tenda xeral", + "hu": "Vegyesbolt", + "id": "Warung", + "it": "Emporio", + "ja": "よろず屋", + "nl": "Algemene winkel", + "pl": "Sklep wielobranżowy", + "pt": "Mercearia", + "sv": "Generell affär" + }, + "searchTerms": { + "en": [ + "village shop" + ], + "de": [ + "gemischtwarenhandlung", + "dorfladen", + "tante-emma-laden", + "greißler" + ], + "eo": [ + "ghenerala vendejo", + "gxenerala vendejo", + "ĉiovendejo", + "butiko oportuna", + "vilaĝa vendejo" + ], + "es": [ + "almacén", + "almacen", + "tienda de pueblo" + ], + "fi": [ + "kyläkauppa" + ], + "fr": [ + "magasin général", + "magasin de village" + ], + "hu": [ + "szatócs" + ], + "it": [ + "negozietto", + "negozio di paese" + ], + "ja": [ + "よろずや", + "よろず屋", + "万屋" + ], + "nl": [ + "winkeltje" + ], + "pl": [ + "sklep wielobranżowy" + ], + "pt": [ + "loja", + "rural", + "venda", + "compras" + ], + "sv": [ + "generell affär", + "byaffär" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=gift", + "then": { + "en": "Gift Shop", + "ca": "Botiga de regals", + "da": "Gavebutik", + "de": "Geschenkeladen", + "eo": "Suvenira vendejo", + "es": "Tienda de regalos", + "fi": "Lahjamyymälä", + "fr": "Boutique de cadeaux", + "gl": "Tenda de agasallos", + "hu": "Ajándékbolt", + "id": "Toko Hadiah", + "it": "Negozio souvenir", + "ja": "ギフト店", + "nl": "Cadeauwinkel", + "pl": "Sklep z pamiątkami", + "pt": "Loja de lembranças", + "ru": "Магазин сувениров", + "sl": "Prodajalna daril", + "sv": "Presentbutik" + }, + "searchTerms": { + "en": [ + "souvenir" + ], + "ca": [ + "botiga de regals", + "botiga d'objectes de regal" + ], + "da": [ + "gavebutik", + "gaveforretning", + "souvenirbutik" + ], + "de": [ + "geschenkeladen", + "geschenkehandlung", + "geschenkartikelladen", + "souvenirladen", + "souvenirgeschäft" + ], + "eo": [ + "suveniroj", + "memoraĵoj", + "vojaĝmemoraĵoj", + "donacoj", + "donaĵoj" + ], + "es": [ + "regalo", + "obsequio", + "presentes", + "recuerdo", + "souvenir", + "regaleria", + "regionales" + ], + "fr": [ + "boutique de souvenirs" + ], + "hu": [ + "meglepetés", + "ajándéktárgy", + "szuvenír" + ], + "id": [ + "suvenir", + "cenderamata", + "cinderamata" + ], + "it": [ + "negozio di articoli da regalo" + ], + "ja": [ + "ギフト店", + "ギフト用品店", + "土産店", + "お土産", + "贈答品" + ], + "nl": [ + "cadeauzaak", + "geschenkwinkel" + ], + "pl": [ + "sklep z pamiątkami", + "sklep z prezentami", + "pamiątki", + "prezenty", + "gadżety", + "pocztówki", + "magnesy", + "figurki" + ], + "pt": [ + "gift", + "souvenir", + "recordações", + "souvenirs", + "lembranças", + "bugigangas", + "suvenir", + "suvenirs", + "suvenires", + "souvenires", + "memorabilia", + "lembrancinha" + ], + "ru": [ + "подарки", + "поздравительные открытки", + "сувениры" + ], + "sl": [ + "darila" + ], + "sv": [ + "presentbutik", + "presenter", + "gratulationskort", + "grattiskort", + "gåvor", + "gåva", + "present", + "souvenirbutik", + "souvenir", + "souvenirer" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-gift.svg", + "class": "medium" + } + }, + { + "if": "shop=greengrocer", + "then": { + "en": "Greengrocer", + "ca": "Fruiteria", + "da": "Grønthandler", + "de": "Obst- und Gemüseladen", + "eo": "Legom-butiko", + "es": "Verdulería / Frutería", + "fi": "Kasviskauppa", + "fr": "Marchand de fruits et légumes", + "gl": "Froitaría", + "hu": "Zöldséges", + "id": "Toko Buah dan Sayuran", + "it": "Fruttivendolo", + "ja": "八百屋・果物屋", + "nl": "Groenteboer", + "pl": "Warzywniak", + "pt": "Loja de frutas e verduras", + "ru": "Магазин овощей и фруктов", + "sl": "Sadje in zelenjava", + "sv": "Grönsakshandlare" + }, + "searchTerms": { + "en": [ + "fruit", + "produce", + "vegetable" + ], + "da": [ + "grønthandler", + "frugtbutik" + ], + "de": [ + "obsthandlung", + "gemüsehändler", + "gemüsehandlung", + "obst- und gemüsehandlung" + ], + "eo": [ + "terfruktoj", + "legombutiko", + "legomobutiko", + "legomejo" + ], + "es": [ + "hortaliza", + "verdura", + "fruta", + "verdulería", + "frutería", + "legumbre", + "vegetal", + "verdulero", + "frutero" + ], + "fi": [ + "vihanneskauppias", + "vihannes", + "vihannekset", + "juures", + "juurekset", + "hedelmä", + "hedelmät", + "marja", + "marjat", + "kasvis", + "kasvikset" + ], + "fr": [ + "fruiterie", + "marchand de fruits et légumes", + "maraicher", + "maraîcher", + "primeur" + ], + "gl": [ + "hortaliza", + "verdura", + "froita", + "verdulería", + "fruteria", + "legume", + "vexetal", + "verduleiro", + "froiteiro", + "fruteiro", + "legumbre", + "fruta", + "froiteria", + "froitaria", + "froitaría", + "froitería", + "verduleria", + "verdularia" + ], + "hu": [ + "zöldség", + "gyümölcs" + ], + "it": [ + "fruttivendolo" + ], + "ja": [ + "八百屋", + "青果店", + "食品", + "食べ物", + "野菜", + "フルーツ", + "果物", + "くだもの", + "ベジタブル", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "groenten en fruit", + "groentezaak", + "groentewinkel", + "fruitzaak", + "fruitwinkel", + "versmarkt" + ], + "pl": [ + "warzywniak", + "zieleniak", + "sklep warzywny", + "sklep z warzywami", + "stoisko z warzywami", + "stragan z warzywami", + "owoce", + "owocami" + ], + "pt": [ + "greengrocer", + "frutaria", + "frutas", + "fruta", + "verduras", + "hortícolas", + "vegetais", + "frutos" + ], + "ru": [ + "овощи-фрукты" + ], + "sl": [ + "sadjar", + "zelenjavar" + ], + "sv": [ + "grönsakshandlare", + "grönsaker", + "frukt", + "frukthandlare", + "frukthandel", + "vegetabiliskt" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-carrot.svg", + "class": "medium" + } + }, + { + "if": "shop=hairdresser", + "then": { + "en": "Hairdresser", + "ca": "Perruqueria", + "da": "Frisør", + "de": "Friseur", + "eo": "Frizejo", + "es": "Peluquería", + "fi": "Parturi-kampaamo", + "fr": "Salon de coiffure", + "gl": "Perrucaría", + "hu": "Fodrász", + "id": "Salon", + "it": "Parrucchiere", + "ja": "理美容店", + "nl": "Kapper", + "pl": "Fryzjer", + "pt": "Cabeleireiro(a)", + "ru": "Парикмахерская", + "sl": "Frizer", + "sv": "Hårfrisör" + }, + "searchTerms": { + "en": [ + "barber" + ], + "da": [ + "frisør", + "herrefrisør", + "damefrisør" + ], + "de": [ + "friseur", + "barbier", + "frisör" + ], + "eo": [ + "frizisto", + "haristo", + "hararisto", + "barbisto", + "hartondisto", + "tondisto", + "razisto" + ], + "es": [ + "peluquería", + "peluquero", + "peluquera", + "barbería", + "barbero", + "pelo", + "corte", + "salón" + ], + "fi": [ + "parturi", + "kampaaja", + "kampaamo", + "parturi-kampaamo", + "hiustenleikkuu", + "hiukset", + "hiusliike", + "hiusmyymälä", + "hiustenvärjäys", + "parranajo", + "parta" + ], + "fr": [ + "coiffeur" + ], + "hu": [ + "hajvágás" + ], + "it": [ + "parrucchiere", + "barbiere" + ], + "ja": [ + "理容店", + "床屋", + "美容室", + "美容院", + "散髪屋", + "理髪店", + "ヘアー", + "ヘアーサロン", + "カット", + "パーマ" + ], + "nl": [ + "kapper" + ], + "pl": [ + "fryzjer", + "fryzjernia", + "salon fryzjerski", + "zakład fryzjerski" + ], + "pt": [ + "hairdresser", + "cabeleireira", + "cabeleireiro", + "salão", + "barbeiro", + "barbearia", + "cabelo", + "corte", + "barba", + "bigode" + ], + "ru": [ + "парикмахерская", + "парикмахер", + "парикмахерский салон", + "стилист", + "барбершоп" + ], + "sl": [ + "frizerski salon", + "frizer", + "česalnica", + "striženje", + "britje" + ], + "sv": [ + "hårfrisör", + "frisör", + "hår", + "hårklippning", + "hårtvätt", + "rakning", + "hårfärgning", + "skägg", + "hårförlängning", + "skönhet", + "skönhetssalong", + "salong", + "barberare", + "stylist", + "hårkreatör", + "hårkonstnär" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-beauty_salon.svg", + "class": "medium" + } + }, + { + "if": "shop=hairdresser_supply", + "then": { + "en": "Hairdresser Supply Store", + "da": "Butik med udstyr til frisører", + "de": "Friseurbedarf", + "eo": "Frizist-ilara vendejo", + "es": "Tienda de suministros para peluquería", + "fi": "Hiustarvikemyymälä", + "fr": "Magasin de matériel de coiffure", + "gl": "Tenda de accesorios de salón de peiteado", + "hu": "Fodrászkellék-bolt", + "it": "Negozio di prodotti per parrucchiere", + "ja": "理容用品店", + "nl": "Haarbenodigdhedenwinkel", + "pl": "Sklep z artykułami fryzjerskimi", + "pt": "Loja de acessórios de cabeleireiro", + "sv": "Affär för hårprodukter" + }, + "searchTerms": { + "en": [ + "barber", + "shampoo", + "conditioner" + ], + "de": [ + "friseurbedarf", + "frisörbedarf" + ], + "eo": [ + "hartondisto", + "tondisto" + ], + "es": [ + "barbero", + "barbería", + "peluquería", + "champu", + "shampoo", + "acondicionador" + ], + "fi": [ + "parturi", + "kampaaja", + "kampaamo", + "parturi-kampaamo", + "hiustenleikkuu", + "hiukset", + "hiusliike", + "hiusmyymälä", + "hiustenvärjäys", + "parranajo", + "parta" + ], + "fr": [ + "coiffeur", + "shampoings", + "barbier" + ], + "hu": [ + "fodrászcikk" + ], + "it": [ + "shampoo", + "balsamo", + "barbiere" + ], + "ja": [ + "理容用品店", + "シャンプー", + "リンス", + "コンディショナー", + "店舗", + "お店", + "ショッピング", + "小売" + ], + "nl": [ + "kapperswinkel" + ], + "pl": [ + "artykuły fryzjerskie", + "szampony", + "odżywki", + "nożyczki", + "maszynki do włosów", + "suszarki do włosów", + "prostownice", + "lokówki", + "szczotki", + "farby do włosów", + "fryzjer" + ], + "pt": [ + "suprimentos de cabeleireiro", + "material de cabeleireiro", + "material de cabeleireira" + ], + "sv": [ + "frisörtillbehör", + "frisör", + "frisyr", + "hårförlängningar", + "hårspray", + "schampo", + "balsam", + "skönhetsmedel", + "konstgjorda naglar" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-hair_care.svg", + "class": "medium" + } + }, + { + "if": "shop=hardware", + "then": { + "en": "Hardware Store", + "ca": "Ferreteria", + "da": "Håndværkerbutik", + "de": "Eisenwarenhandel", + "eo": "Laborila vendejo", + "es": "Ferretería", + "fi": "Rautakauppa", + "fr": "Quincaillerie", + "gl": "Ferraxaría", + "hu": "Vas-műszaki bolt", + "id": "Toko Perkakas", + "it": "Ferramenta", + "ja": "金物屋", + "nl": "Bouwmarkt", + "pl": "Sklep z narzędziami", + "pt": "Loja de ferragens", + "ru": "Хозяйственный магазин", + "sl": "Železnina", + "sv": "Järnaffär" + }, + "searchTerms": { + "en": [ + "craft", + "diy", + "do it yourself", + "hardware", + "home improvement", + "tools" + ], + "da": [ + "værktøj", + "håndværker", + "materiale", + "bygge", + "byggeri", + "byggemarked", + "gør-det-selv", + "professionel" + ], + "de": [ + "eisenwarenhandlung", + "eisenwarengeschäft", + "eisenwarenladen" + ], + "eo": [ + "iloj", + "ilovendejo", + "il-vendejo", + "memfaradiloj", + "faru vin mem" + ], + "es": [ + "ferretería", + "herramientas", + "herrajes" + ], + "fr": [ + "quincaillerie" + ], + "hu": [ + "csavarbolt", + "villanyszerelés", + "vasbolt", + "vaskereskedés" + ], + "it": [ + "negozio di ferramenta" + ], + "ja": [ + "金物屋", + "金物店" + ], + "nl": [ + "bouwcentrum", + "bouwmaterialenspeciaalzaak" + ], + "pl": [ + "sklep narzędziowy", + "narzędzia", + "elektronarzędzia", + "gwoździe", + "śruby", + "uszczelki", + "kable" + ], + "pt": [ + "hardware", + "ferragens", + "pregos", + "martelos", + "chaves", + "parafusos", + "anilhas", + "berbequins" + ], + "ru": [ + "винты", + "шурупы", + "гвозди", + "крючки", + "крепёж", + "инструмент", + "материалы", + "хозяйственный", + "строительный" + ], + "sl": [ + "izdelki iz kovin" + ], + "sv": [ + "järnaffär", + "järnhandlare", + "skruv", + "skruvar", + "bult", + "bultar", + "spik", + "krokar", + "järnbeslag", + "järntillbehör", + "metallverktyg", + "verktyg", + "bygg", + "el", + "vvs", + "trädgårdsredskap", + "redskap", + "handverktyg", + "elverktyg", + "köksutrustning", + "badrum", + "kök", + "hushållsprodukter", + "lås", + "nycklar", + "nyckeltillverkning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tools.svg", + "class": "medium" + } + }, + { + "if": "shop=health_food", + "then": { + "en": "Health Food Shop", + "de": "Reformhaus", + "eo": "Sanig-manĝaĵa vendejo", + "es": "Tienda de comida saludable", + "fi": "Terveysravinnemyymälä", + "fr": "Magasin d'alimentation de santé", + "gl": "Tenda de produtos saudábeis", + "hu": "Egészséges élelmiszerek boltja", + "it": "Prodotti per il benessere", + "ja": "健康食品店", + "nl": "Gezondheidswinkel", + "pl": "Sklep ze zdrową żywnością", + "pt": "Loja de comida saudável", + "ru": "Магазин здорового питания", + "sv": "Hälsokostbutik" + }, + "searchTerms": { + "en": [ + "wholefood", + "vitamins", + "vegetarian", + "vegan" + ], + "de": [ + "reformhaus" + ], + "eo": [ + "saniga manĝaĵo", + "sana manĝaĵo", + "ekologia manĝaĵo", + "vegetarisma manĝaĵo" + ], + "es": [ + "tienda de comida saludable", + "alimentos integrales", + "vitaminas", + "vegetariano", + "vegano", + "dietética", + "dietetica" + ], + "fr": [ + "magasin d'alimentation de santé", + "vitamines" + ], + "it": [ + "prodotti genuini", + "benessere", + "negozio di prodotti biologici", + "negozio di prodotti per la salute", + "prodotti per la salute" + ], + "ja": [ + "健康食品店", + "健康", + "食品", + "食べ物", + "サプリ", + "ビタミン", + "栄養剤", + "店舗", + "お店" + ], + "nl": [ + "supervoedselwinkel", + "superfoodwinkel" + ], + "pl": [ + "zdrowa żywność", + "żywność ekologiczna", + "żywność regionalna", + "produkty regionalne" + ], + "pt": [ + "alimentos naturais", + "comida saudável", + "vitaminas", + "suplementos alimentares", + "vegetariano", + "vegetariana", + "vegan", + "celeiro", + "orgânicos", + "orgânica", + "biológica", + "biológico", + "vegano" + ], + "ru": [ + "здоровая еда", + "здоровая пища", + "органические продукты", + "чистая продукция" + ], + "sv": [ + "hälsokostbutik", + "hälsokost", + "hälsomat", + "organisk", + "organist", + "vitaminer", + "vegetarian", + "vegan", + "naturligt", + "kosttillskott", + "köttersättning", + "mjölkersättning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=hearing_aids", + "then": { + "en": "Hearing Aids Store", + "ca": "Centre d'audició", + "da": "Høreapparatbutik", + "de": "Hörgerätegeschäft", + "eo": "Aŭd-helpila vendejo", + "es": "Tienda de audífonos", + "fi": "Kuuloapumyymälä", + "fr": "Audioprothésiste", + "gl": "Tenda de audífonos", + "hu": "Hallókészülékbolt", + "id": "Toko Alat Bantu Dengar", + "it": "Negozio di apparecchi acustici", + "ja": "補聴器店", + "nl": "Hoorapparatenwinkel", + "pl": "Sklep z aparatami słuchowymi", + "pt": "Loja de aparelhos auditivos", + "ru": "Магазин по продаже слуховых аппаратов", + "sl": "Trgovina s slušnimi pripomočki", + "sv": "Hörapparater" + }, + "searchTerms": { + "da": [ + "høreapparatbutik", + "audiolog", + "høreapparater" + ], + "de": [ + "hörgeräteakustiker", + "hörakustiker", + "hörhilfengeschäft", + "akustiker", + "hörgeräte", + "gehörgeräte" + ], + "eo": [ + "aŭdhelpiloj", + "audhelpiloj", + "auxdhelpiloj", + "aŭdiloj", + "aŭskultiloj", + "orelhelpiloj" + ], + "es": [ + "audífono", + "oído", + "sordo", + "prótesis auditivas", + "aparatos auditivos", + "ayudas auditivas", + "centro auditivo" + ], + "fi": [ + "kuulo", + "kuuleminen", + "kuulovamma", + "kuulovammaisuus", + "vamma", + "vammaisuus", + "kuulokoje", + "huono kuulo" + ], + "fr": [ + "vente de prothèses auditives" + ], + "hu": [ + "hallókészülékek" + ], + "id": [ + "bantuan pendengaran" + ], + "it": [ + "apparecchi acustici", + "negozio di apparecchi acustici" + ], + "ja": [ + "補聴器店" + ], + "nl": [ + "doof", + "slechthorend", + "oor", + "oren", + "hoorhulp" + ], + "pl": [ + "aparaty słuchowe" + ], + "pt": [ + "hearing", + "auditivos", + "audição", + "ouvidos" + ], + "ru": [ + "слуховые аппараты" + ], + "sv": [ + "hörapparater", + "hörselskada", + "hörselskadade", + "hörhjälpmedel", + "hörsel" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-hearing_aid.svg", + "class": "medium" + } + }, + { + "if": "shop=herbalist", + "then": { + "en": "Herbalist", + "ca": "Herbolari", + "da": "Helseforretning", + "de": "Kräuterladen", + "eo": "Herba vendejo", + "es": "Herbolario", + "fi": "Luontaistuotemyymälä", + "fr": "Herboristerie", + "gl": "Herboristaría", + "hu": "Gyógynövénybolt", + "it": "Erboristeria", + "ja": "薬草店", + "nl": "Herbalist", + "pl": "Sklep zielarski", + "pt": "Ervanária", + "ru": "Магазин трав и лекарственных растений", + "sl": "Zeliščarstvo", + "sv": "Medicinalväxter" + }, + "searchTerms": { + "da": [ + "helseforretning" + ], + "de": [ + "naturheilkundiger arzt", + "kräuterarzt", + "kräuterhändler" + ], + "eo": [ + "herboj", + "herbisto", + "herbovendejo", + "drogherboj", + "kuracherboj" + ], + "es": [ + "herbolario", + "yerbatero", + "naturópata", + "herbalista" + ], + "fr": [ + "herboristerie" + ], + "gl": [ + "herboristería", + "herbas", + "menciñas", + "remedio", + "fármaco", + "parafarmacia" + ], + "hu": [ + "gyógynövény", + "tea", + "étrendkiegészítő", + "biobolt" + ], + "it": [ + "erborista", + "erboristeria", + "erbe" + ], + "ja": [ + "ハーブ店", + "薬草店" + ], + "nl": [ + "homeopathie" + ], + "pl": [ + "sklep zielarski", + "sklep zielarsko-medyczny", + "zielarz", + "zioła" + ], + "pt": [ + "herbalist", + "herbalista", + "ervas", + "chás", + "medicinal", + "medicinais" + ], + "ru": [ + "травник", + "гербалист", + "знахарь", + "собиратель трав", + "лечебные травы", + "ботаник", + "ботаника" + ], + "sv": [ + "medicinalväxter", + "örter", + "läkande örter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-leaf.svg", + "class": "medium" + } + }, + { + "if": "shop=hifi", + "then": { + "en": "Hifi Store", + "ca": "Botiga d'alta fidelitat", + "da": "Radioforhandler", + "de": "HiFi-Laden", + "eo": "Aldfidela-sona vendejo", + "es": "Tienda de equipos de sonido", + "fi": "Hifimyymälä", + "fr": "Magasin de matériel hi-fi", + "gl": "Tenda de equipamento de son", + "hu": "HiFi-szaküzlet", + "id": "Toko Hifi", + "it": "Negozio Hifi", + "ja": "音響機器店", + "nl": "Hifi-/Bruingoedwinkel", + "pl": "Sklep ze sprzętem hi-fi", + "pt": "Loja de alta fidelidade", + "ru": "Магазин по продаже Hi-Fi", + "sl": "Trgovina z avdio opremo", + "sv": "HiFi-butik" + }, + "searchTerms": { + "en": [ + "audio", + "hi-fi", + "high fidelity", + "stereo", + "video" + ], + "da": [ + "radioforhandler", + "hifi-butik" + ], + "de": [ + "hifi-geschäft", + "hifi-shop" + ], + "eo": [ + "hifi", + "altfidela", + "hi-fi", + "stereo", + "video" + ], + "es": [ + "sonido", + "hifi", + "alta fidelidad", + "altavoz", + "amplificador", + "equipos hifi" + ], + "fr": [ + "magasin d'appareils audio-visuel" + ], + "hu": [ + "akusztika", + "extreme audio", + "hifi", + "hi-fi", + "audio", + "audiophyl", + "high end", + "házimozi", + "erősítő", + "hangfal" + ], + "it": [ + "negozio hi-fi" + ], + "ja": [ + "音響機器店", + "オーディオ店", + "音楽" + ], + "nl": [ + "audio", + "bruingoed", + "hifi", + "stereoinstallatie" + ], + "pl": [ + "hi-fi", + "hifi", + "audio", + "stereo", + "wieże", + "głośniki", + "wzmacniacze", + "amplitunery" + ], + "pt": [ + "hifi", + "som", + "stereo", + "estéreo", + "áudio", + "altifalantes", + "amplificadores", + "hi-fi" + ], + "ru": [ + "техника hi-fi", + "акустика hi-fi", + "домашний кинотеатр" + ], + "sl": [ + "hifi" + ], + "sv": [ + "hifi-butik", + "hifi", + "ljud", + "ljudåtergivning", + "förstärkare", + "högtalare", + "ljudanläggning", + "audio", + "stereo", + "stereoanläggning", + "video" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-speaker.svg", + "class": "medium" + } + }, + { + "if": "shop=hobby", + "then": { + "en": "Hobby Shop", + "da": "Hobbybutik", + "de": "Bastelgeschäft", + "eo": "Hobia vendejo", + "es": "Tienda de pasatiempos", + "fi": "Harrastuskauppa", + "fr": "Magasin pour hobby (non spécifié)", + "gl": "Tenda de pasatempos", + "hu": "Hobbibolt", + "it": "Negozio di hobbystica", + "ja": "ホビーショップ", + "nl": "Hobbywinkel", + "pl": "Sklep hobbystyczny", + "pt": "Loja de modelismo", + "sv": "Hobbyaffär" + }, + "searchTerms": { + "en": [ + "manga", + "figurine", + "model" + ], + "de": [ + "bastelgeschäft", + "hobbyshop" + ], + "eo": [ + "hobio", + "ŝatokupo", + "modelfarado", + "figuroj", + "animeo" + ], + "es": [ + "manga", + "figuras", + "modelo" + ], + "fi": [ + "harrastus", + "harrastukset", + "harrastaa", + "kauppa", + "liike", + "myymälä", + "putiikki", + "puoti" + ], + "fr": [ + "manga", + "figurine", + "modèle", + "modélisme" + ], + "it": [ + "manga", + "figurine", + "modellini", + "hobby" + ], + "ja": [ + "ホビーショップ", + "ホビー店", + "プラモデル", + "フィギュア", + "マンガ", + "ミリタリー", + "模型" + ], + "nl": [ + "hobbywinkel" + ], + "pl": [ + "sklep hobbystyczny" + ], + "pt": [ + "modelos", + "passatempo", + "hobby", + "aviões", + "carros", + "comboios", + "helicópteros" + ], + "ru": [ + "хобби" + ], + "sv": [ + "hobbyaffär", + "hobby", + "manga", + "model", + "modellbygge", + "modellflyg", + "modelljärnväg" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-dragon.svg", + "class": "medium" + } + }, + { + "if": "shop=household_linen", + "then": { + "en": "Household Linen Shop", + "de": "Haushaltswäschegeschäft", + "eo": "Tuka vendejo", + "es": "Tienda de ropa de hogar", + "fr": "Magasin de linge de maison", + "gl": "Tenda de roupa de fogar", + "hu": "Lakástextil-szaküzlet", + "it": "Negozio di biancheria per la casa", + "ja": "家庭用布製品店", + "nl": "Winkel voor huishoudelijk linnen", + "pl": "Sklep z pościelą/ręcznikami", + "pt": "Loja de têxteis para o lar", + "sv": "Affär för hushållstextilier" + }, + "searchTerms": { + "en": [ + "bedspreads", + "blankets", + "domestic cloths", + "curtains", + "handkerchieves", + "napkins", + "pillow cases", + "robes", + "sheets", + "towels" + ], + "de": [ + "leintücher", + "bettwäsche", + "decken", + "hauskleidung", + "vorhänge", + "stofftaschentücher", + "stoffservietten", + "tagesdecken", + "haushaltswaren", + "taschentücher", + "servietten", + "kissenbezüge", + "bademäntel", + "handtücher" + ], + "eo": [ + "tukoj", + "littolaĵo", + "viŝtukoj", + "manviŝiloj", + "viŝiloj", + "litaĵo", + "sternaĵo", + "tablotukoj" + ], + "es": [ + "colchas", + "mantas", + "paños domésticos", + "cortinas", + "pañuelos", + "servilletas", + "fundas de almohadas", + "batas", + "sábanas", + "toallas", + "ropa blanca", + "ropa de hogar" + ], + "fr": [ + "magasin de linge de maison", + "linge", + "lit", + "toilette", + "ménage", + "table", + "rideaux", + "voilage", + "mouchoir", + "drap", + "couverture", + "taie", + "gants", + "serviette", + "torchon", + "nappe" + ], + "it": [ + "lenzuola", + "coperte", + "tende" + ], + "ja": [ + "家庭用布製品店", + "布製品", + "リネン", + "タオル", + "ハンカチ", + "店舗", + "お店", + "寝具", + "シーツ", + "ナプキン", + "カーテン", + "ローブ", + "パジャマ", + "ショッピング", + "小売" + ], + "nl": [ + "lakens", + "dekens", + "vaatdoeken", + "handdoeken", + "washandjes", + "tafelkleden", + "bedovertrekken", + "gordijnen", + "kussenslopen" + ], + "pl": [ + "sklep z pościelą", + "pościel", + "prześcieradła", + "kołdry", + "poduszki", + "poszewki", + "koce", + "ręczniki", + "szlafroki", + "fartuchy", + "ścierki", + "ściereczki", + "obrusy", + "serwety", + "serwetki", + "firany", + "firanki", + "zasłony", + "artykuły gospodarstwa domowego", + "agd" + ], + "pt": [ + "casa", + "mesa", + "banho", + "toalhas", + "lençóis", + "cobertas", + "cobertores", + "cortinas", + "fronhas", + "roupa", + "atoalhados" + ], + "sv": [ + "affär för hushållstextilier", + "textilier", + "linne", + "påslakan", + "bäddning", + "överkast", + "filtar", + "dukar", + "gardiner", + "näsdukar", + "servetter", + "örngott", + "kläder", + "lakan", + "handdukar", + "sängtextilier", + "hushållstextilier" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-cloth.svg", + "class": "medium" + } + }, + { + "if": "shop=houseware", + "then": { + "en": "Houseware Store", + "ca": "Botiga de la llar", + "da": "Køkkenudstyr", + "de": "Haushaltswarengeschäft", + "eo": "Mastrum-aparata vendejo", + "es": "Tienda de artículos del hogar", + "fi": "Kotitarvikekauppa", + "fr": "Magasin d’articles ménagers", + "gl": "Tenda de artigos do fogar", + "hu": "Háztartási bolt", + "it": "Casalinghi", + "ja": "家庭用品店", + "nl": "Huisraadwinkel", + "pl": "Sklep z małymi artykułami gospodarstwa domowego", + "pt": "Loja de artigos para o lar", + "ru": "Магазин товаров для дома", + "sv": "Husgeråd" + }, + "searchTerms": { + "en": [ + "home", + "household", + "kitchenware" + ], + "da": [ + "køkkenudstyr" + ], + "de": [ + "haushaltswarengeschäft", + "haushaltswarenladen" + ], + "eo": [ + "mastrumado", + "mastrumaparatoj", + "mastrumaj aparatoj", + "potoj", + "manĝ iloj", + "kuirejo" + ], + "es": [ + "artículos del hogar", + "enseres del hogar", + "hogar", + "houseware" + ], + "fr": [ + "vente d'articles de cuisine" + ], + "hu": [ + "edények", + "evőeszközök", + "konyha", + "háztartási kisgépek", + "kerti eszközök" + ], + "it": [ + "casalinghi", + "negozio di casalinghi", + "pentole" + ], + "ja": [ + "雑貨屋", + "家庭用品", + "日用雑貨", + "バス用品", + "お風呂用品", + "台所用品", + "キッチン用品", + "生活雑貨", + "料理道具", + "調理器具", + "食器", + "クッション", + "茶碗", + "皿", + "包丁", + "ナイフ", + "フォーク", + "箸" + ], + "nl": [ + "huiswaar", + "elektronica", + "meubilair", + "meubels", + "huishoudelijke elektronica", + "gebruiksvoorwerpen" + ], + "pl": [ + "małe agd", + "artykuły kuchenne", + "przybory kuchenne", + "naczynia", + "garnki", + "patelnie", + "talerze", + "sztućce" + ], + "pt": [ + "houseware", + "utensílios domésticos", + "artigos para o lar", + "artigos para casa", + "utensílios", + "cozinha", + "decoração" + ], + "ru": [ + "посуда", + "утварь", + "обиход", + "предметы интерьера", + "декоративные вещи" + ], + "sv": [ + "husgeråd", + "köksredskap", + "bestick", + "porslin", + "prydnadsföremål", + "hem", + "hushåll" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-blender.svg", + "class": "medium" + } + }, + { + "if": "shop=hunting", + "then": { + "en": "Hunting Shop", + "ca": "Botiga de caça", + "da": "Jagtbutik", + "de": "Jagdgeschäft", + "eo": "Ĉasil-vendejo", + "es": "Tienda de caza", + "fi": "Metsästyskauppa", + "fr": "Magasin de chasse", + "gl": "Tenda de caza", + "hu": "Vadászati bolt", + "it": "Negozio di caccia", + "ja": "狩猟用品店", + "nl": "Jachtwinkel", + "pl": "Sklep myśliwski", + "pt": "Loja de artigos de caça", + "ru": "Охотничий магазин", + "sv": "Jaktbutik" + }, + "searchTerms": { + "en": [ + "arrows", + "bows", + "bullets", + "crossbows", + "rifles", + "traps" + ], + "de": [ + "geschäft für jagdausrüstung", + "jagdgeschäft" + ], + "eo": [ + "ĉasado", + "kaptado", + "bestoĉasado", + "armiloj", + "pafiloj", + "fusiloj" + ], + "es": [ + "caza", + "cacería" + ], + "fr": [ + "chasse" + ], + "it": [ + "caccia", + "frecce", + "arco", + "archi", + "proiettili", + "bossoli", + "balestra", + "balestre", + "fucili", + "fucile", + "trappola", + "trappole", + "faretra", + "cartucciera" + ], + "ja": [ + "狩猟用品店", + "狩猟", + "ハンティング", + "スポーツ", + "レジャー", + "鳥獣", + "お店", + "店舗", + "ショッピング", + "小売", + "銃", + "趣味", + "ホビー" + ], + "nl": [ + "pijlen", + "bogen", + "kogels", + "kruisbogen", + "geweren", + "vallen" + ], + "pl": [ + "myśliwy", + "polowanie", + "strzały", + "łuki", + "kule", + "kusze", + "naboje", + "karabiny", + "pułapki" + ], + "pt": [ + "armamento", + "artigos de caça", + "caça", + "caçar", + "espingarda", + "espingardas", + "caça grossa", + "caçador", + "caçadores", + "arcos", + "bestas", + "armadilhas", + "flechas", + "caçadeiras" + ], + "sv": [ + "jaktaffär", + "jaktbutik", + "jakt", + "jaktutrustning", + "jaktvapen", + "jaktgevär" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-bow_and_arrow.svg", + "class": "medium" + } + }, + { + "if": "shop=interior_decoration", + "then": { + "en": "Interior Decoration Store", + "ca": "Botiga d'Interiorisme", + "da": "Brugskunstbutik", + "de": "Innenausstattungsgeschäft", + "eo": "Ensembla (meblara) vendejo", + "es": "Tienda de decoración de interiores", + "fi": "Sisustusmyymälä", + "fr": "Magasin de décoration d'intérieur", + "gl": "Tenda de decoración de interiores", + "hu": "Lakberendezési bolt", + "id": "Toko Dekorasi Interior", + "it": "Negozio di decorazioni per interni", + "ja": "インテリアショップ", + "nl": "Binnenhuisdecoratiewinkel", + "pl": "Sklep z dekoracją wnętrz", + "pt": "Loja de decoração de interiores", + "ru": "Магазин предметов интерьера", + "sv": "Inredningsaffär" + }, + "searchTerms": { + "da": [ + "indendørsudsmykningsbutik", + "indendørsudsmykning", + "brugskunst", + "kunst", + "indendørs", + "bolig" + ], + "de": [ + "inneneinrichter", + "inneneinrichtung", + "innenausstatter", + "innendekorateur", + "innenraumgestalter", + "wohnung", + "dekoration", + "einrichtung", + "accessoires", + "ausstattung" + ], + "eo": [ + "ensembloj", + "ornamoj", + "ornamaĵoj", + "dekoracioj", + "mebloj", + "meblaro" + ], + "es": [ + "diseño", + "decoración", + "decoración interior", + "decoración de interiores" + ], + "fi": [ + "huonekalu", + "kalustus", + "kaluste", + "koriste", + "esine", + "kauppa", + "liike" + ], + "fr": [ + "magasin de décoration d'intérieur" + ], + "hu": [ + "lakástextil", + "díszek", + "bútor" + ], + "id": [ + "hiasan", + "rumah" + ], + "it": [ + "decorazioni", + "interni", + "casalinghi" + ], + "ja": [ + "インテリアショップ", + "家具", + "室内装飾用品店", + "内装用品店", + "インテリア店", + "住宅", + "インテリア", + "内装" + ], + "nl": [ + "versiering", + "decoratie", + "huis", + "interieur", + "stijl" + ], + "pl": [ + "wyposażenie wnętrz", + "dekoracja wnętrz", + "dekoracje wnętrz", + "meble" + ], + "pt": [ + "interior", + "decoração", + "interiores" + ], + "ru": [ + "интерьер" + ], + "sv": [ + "inredningsaffär", + "inredning", + "dekoration" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=jewelry", + "then": { + "en": "Jewelry Store", + "ca": "Joieria", + "da": "Guldsmed", + "de": "Juwelier", + "eo": "Juvelista vendejo", + "es": "Joyería", + "fi": "Jalokiviliike", + "fr": "Bijouterie", + "gl": "Xoiaría", + "hu": "Ékszerüzlet", + "id": "Toko Perhiasan", + "it": "Gioielleria", + "ja": "宝飾店", + "nl": "Juwelierszaak", + "pl": "Sklep jubilerski", + "pt": "Ourivesaria", + "ru": "Ювелирный магазин", + "sv": "Juvelerare" + }, + "searchTerms": { + "en": [ + "bracelet", + "diamond", + "earrings", + "gem", + "gold", + "jeweler", + "jewellery", + "jeweller", + "necklace", + "pins", + "ring", + "silver" + ], + "ca": [ + "joier" + ], + "da": [ + "smykke", + "ædelsten", + "ring", + "guld", + "sølv" + ], + "de": [ + "juweliergeschäft", + "juwelenverkauf", + "goldschmied", + "bijoutier" + ], + "eo": [ + "juveloj", + "juvelaĵoj", + "juvelartoj", + "oraĵoj", + "diamantoj", + "ringoj" + ], + "es": [ + "pulsera", + "diamante", + "pendientes", + "gema", + "oro", + "joyero", + "joyería", + "joya", + "collar", + "anillo", + "alianza", + "plata", + "acero" + ], + "fr": [ + "magasin de bijoux", + "bijouterie", + "bijoux", + "bracelets", + "diamants", + "boucles d'oreilles", + "boucle d'oreille", + "or", + "joyau", + "gemme", + "pierre précieuse", + "collier", + "argent", + "joaillier" + ], + "gl": [ + "xoiaría", + "xoiería", + "xoiaria", + "xoieria", + "pulseira", + "diamante", + "pendentes", + "xema", + "ouro", + "xoieiro", + "xoia", + "colar", + "anel", + "alianza", + "prata", + "aceiro", + "ferro" + ], + "it": [ + "gioielli", + "braccialetti", + "orecchini", + "gemme", + "oro" + ], + "ja": [ + "宝石店", + "宝飾店", + "貴金属", + "アクセサリー", + "店舗", + "買い物", + "お店", + "ショッピング", + "小売", + "装飾品" + ], + "nl": [ + "juwelen", + "goud", + "diamanten", + "ringen", + "oorbellen", + "sierraden" + ], + "pl": [ + "jubiler", + "złotnik", + "złoto", + "srebro", + "skup złota", + "skup srebra", + "biżuteria", + "kolczyki", + "pierścionki", + "naszyjniki", + "rzemiosło", + "rzemieślnik", + "rzemieślnicy" + ], + "pt": [ + "joalharia", + "joalheria", + "jóias", + "joias", + "bijuteria", + "joalheiro", + "joalheira" + ], + "sv": [ + "juvelerare", + "smycken", + "halsband", + "ring", + "ringar", + "örhänge", + "örhängen", + "klocka", + "klockor", + "guld", + "silver", + "diamant", + "pärla", + "pärlor", + "armband" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-jewelry-store.svg", + "class": "medium" + } + }, + { + "if": "shop=kiosk", + "then": { + "en": "Kiosk", + "ca": "Quiosc", + "da": "Kiosk", + "de": "Kiosk", + "eo": "Gazetbudo", + "es": "Quiosco", + "fi": "Kioski", + "fr": "Kiosque", + "gl": "Quiosco", + "hu": "Trafik (önálló épület)", + "id": "Warung", + "it": "Chiosco", + "ja": "キオスク", + "nl": "Winkelkiosk", + "pl": "Kiosk", + "pt": "Quiosque", + "ru": "Магазин в виде киоска", + "sl": "Kiosk", + "sv": "Kiosk" + }, + "searchTerms": { + "de": [ + "kiosk", + "zeitungsstand", + "zeitungskiosk" + ], + "eo": [ + "gazetejo", + "kiosko", + "budo", + "stratkiosko" + ], + "es": [ + "kiosko", + "kiosco", + "puesto", + "negocio", + "periódico", + "revista", + "encendedor", + "mapas", + "cigarrillo", + "dulces", + "golosinas", + "refrescos", + "jugos", + "flores" + ], + "fr": [ + "kiosque" + ], + "hu": [ + "újságos" + ], + "it": [ + "chiosco", + "edicola", + "tabacchi", + "dolciumi", + "snack" + ], + "ja": [ + "キオスク", + "売店" + ], + "nl": [ + "kiosk", + "nieuwskiosk", + "krantenwinkel", + "krantenkiosk" + ], + "pl": [ + "kiosk", + "papierosy", + "gazety", + "słodycze", + "napoje" + ], + "pt": [ + "kiosk", + "kiosque", + "kiosqe", + "quiosque", + "quiosqe", + "quioske", + "qiosque", + "qiosqe", + "qioske", + "jornal", + "jornais", + "revista", + "revistas" + ], + "ru": [ + "киоск", + "павильон" + ], + "sv": [ + "kiosk", + "gatukök", + "tidningar", + "godis", + "cigaretter", + "tobak", + "snus", + "dryck", + "läsk", + "butik", + "snabbmat", + "glass", + "korv" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-store.svg", + "class": "medium" + } + }, + { + "if": "shop=kitchen", + "then": { + "en": "Kitchen Design Store", + "ca": "Botiga de disseny de cuines", + "da": "Køkkenforhandler", + "de": "Küchenfachmarkt", + "eo": "Kuirej-mebla vendejo", + "es": "Tienda de diseño de cocinas", + "fi": "Keittiöliike", + "fr": "Cuisiniste", + "gl": "Tenda de deseño de cociñas", + "hu": "Konyhabútorbolt", + "id": "Toko Desain Interior Dapur", + "it": "Negozio di cucine", + "ja": "キッチンデザイン店", + "nl": "Keukenontwerpwinkel", + "pl": "Sklep z wyposażeniem i meblami kuchennymi", + "pt": "Loja de cozinhas", + "ru": "Магазин кухонь", + "sv": "Köksinredning" + }, + "searchTerms": { + "en": [ + "cabinets", + "countertops", + "sinks" + ], + "da": [ + "køkkenbutik" + ], + "de": [ + "kücheneinrichter", + "kücheneinrichtungsgeschäft", + "küchenhaus" + ], + "eo": [ + "kuirejo" + ], + "es": [ + "cocina", + "cocinas", + "diseño de cocinas" + ], + "fr": [ + "vente de mobilier et accessoires de cuisine" + ], + "hu": [ + "konyhabútor", + "konyhatervezés", + "konyhadesign" + ], + "it": [ + "cucine", + "arredamento" + ], + "ja": [ + "台所", + "キッチン", + "デザイン", + "design", + "kitchen", + "台所用品", + "水回り" + ], + "nl": [ + "keukendesignwinkel", + "keukendesignzaak", + "keukenwinkel", + "keukenzaak" + ], + "pl": [ + "wyposażenie kuchni", + "kuchnie", + "meble kuchenne" + ], + "pt": [ + "kitchen design store", + "cozinhas", + "cozinha", + "à medida" + ], + "ru": [ + "кухонная фурнитура", + "установка кухонь", + "кухни на заказ", + "планировка кухни", + "кухни", + "кухонная студия" + ], + "sv": [ + "köksinredning", + "kök", + "bänkskivor", + "köksskåp", + "skåpluckor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-kitchen_sink.svg", + "class": "medium" + } + }, + { + "if": "shop=laundry", + "then": { + "en": "Laundry", + "ca": "Bugaderia", + "da": "Vaskeri", + "de": "Wäscherei", + "eo": "Vest-lavejo (akvo)", + "es": "Lavandería", + "fi": "Pesula", + "fr": "Laverie", + "gl": "Lavandaría", + "hu": "Mosoda", + "id": "Penatu", + "it": "Lavanderia", + "ja": "洗濯屋・ランドリー(非セルフ)", + "nl": "Wasserette", + "pl": "Pralnia", + "pt": "Lavandaria", + "ru": "Прачечная", + "sl": "Pralnica", + "sv": "Tvättinrättning" + }, + "searchTerms": { + "da": [ + "vaskeri", + "møntvaskeri" + ], + "de": [ + "wäscherei", + "textilreinigung" + ], + "eo": [ + "lavejo", + "vestlavejo", + "vestolavejo", + "purigejo" + ], + "es": [ + "lavandería", + "lavadero", + "colada", + "tintorería", + "limpieza", + "lavado", + "ropa sucia" + ], + "fr": [ + "laverie" + ], + "hu": [ + "ruhatisztító", + "vegytisztító", + "patyolat" + ], + "id": [ + "binatu", + "laundry", + "cuci baju" + ], + "it": [ + "lavanderia" + ], + "ja": [ + "洗濯屋", + "コインランドリー", + "ランドリー", + "洗濯屋・ランドリー(非セルフ)" + ], + "nl": [ + "wassalon" + ], + "pl": [ + "pralnia" + ], + "pt": [ + "laundry", + "roupa", + "secagem", + "lavagem", + "tecidos", + "limpeza", + "vestuário" + ], + "ru": [ + "прачечная" + ], + "sl": [ + "samopostrežna pralnica perila" + ], + "sv": [ + "tvättinrättning", + "tvätteri", + "tvättemat", + "tvättomat", + "tvättstuga", + "tvättautomat", + "tvätt" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-laundry.svg", + "class": "medium" + } + }, + { + "if": "shop=leather", + "then": { + "en": "Leather Store", + "ca": "Botiga de cuirs", + "da": "Læderbutik", + "de": "Lederwarengeschäft", + "eo": "Ledaĵa vendejo", + "es": "Talabartería", + "fi": "Nahkaliike", + "fr": "Maroquinier", + "gl": "Tenda de peles", + "hu": "Bőrdíszműbolt", + "id": "Toko Kulit", + "it": "Pelletteria", + "ja": "皮革用品店", + "nl": "Lederwinkel", + "pl": "Sklep z odzieżą skórzaną", + "pt": "Loja de couro", + "ru": "Магазин кожаных изделий", + "sl": "Usnjarna", + "sv": "Läderaffär" + }, + "searchTerms": { + "da": [ + "læderbutik", + "skinbutik", + "lædervareforretning" + ], + "de": [ + "lederwarengeschäft", + "lederbekleidungsgeschäft", + "lederwarenhändler" + ], + "eo": [ + "galanterio", + "ledo", + "ledaĵoj", + "ledajhoj", + "ledajxoj" + ], + "es": [ + "cuero", + "piel", + "gamuza", + "tienda de cuero", + "talabartería" + ], + "fr": [ + "boutique de vêtements en cuir" + ], + "hu": [ + "bőrdíszműves", + "bőrös", + "bőrruházat", + "bőrékszer" + ], + "it": [ + "cuoio", + "curame" + ], + "ja": [ + "皮革洋品店", + "レザーショップ", + "皮革", + "レザー" + ], + "nl": [ + "handtassen", + "leerwinkel", + "schoenen" + ], + "pl": [ + "sklep z odzieżą skórzaną", + "sklep z galanterią skórzaną", + "odzież skórzana", + "galanteria skórzana", + "kurtki skórzane", + "paski" + ], + "pt": [ + "leather", + "cabedais", + "cabedal", + "peles" + ], + "ru": [ + "кожа", + "кожаные куртки", + "кожаные", + "кожаная" + ], + "sv": [ + "läderaffär", + "läder", + "läderjackor", + "läderkläder" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-handbag.svg", + "class": "medium" + } + }, + { + "if": "shop=lighting", + "then": { + "en": "Lighting Store", + "de": "Leuchten- und Lampengeschäft", + "eo": "Prilumigad‑aparata vendejo", + "es": "Tienda de iluminación", + "fi": "Valaisinkauppa", + "fr": "Magasin de lampes", + "gl": "Tenda de iluminación", + "hu": "Világítástechnikai szaküzlet", + "it": "Negozio di illuminazione", + "ja": "照明器具店", + "nl": "Verlichtingswinkel", + "pl": "Sklep z oświetleniem", + "pt": "Loja de iluminação", + "ru": "Магазин светильников", + "sv": "Belysningsbutik" + }, + "searchTerms": { + "en": [ + "fluorescent lighting", + "lamps", + "leds", + "light fixtures", + "lightbulbs" + ], + "de": [ + "leuchten", + "lampen", + "beleuchtung", + "licht", + "led", + "halogen", + "glühbirnen", + "kunstlicht" + ], + "eo": [ + "prilimigado", + "lampoj", + "bulboj" + ], + "es": [ + "iluminación fluorescente", + "lámparas", + "leds", + "luminarias", + "bombillas" + ], + "fr": [ + "lampes", + "fluorescent", + "compact", + "led", + "del", + "ampoule" + ], + "gl": [ + "iluminación fluorescente", + "lámpadas", + "leds", + "luminarias" + ], + "hu": [ + "lámpa" + ], + "it": [ + "lampade", + "lampadari", + "plafoniere" + ], + "ja": [ + "照明器具店", + "灯り", + "蛍光灯", + "店舗", + "お店", + "ショッピング", + "小売", + "インテリア", + "電器" + ], + "nl": [ + "tl-lampen", + "spaarlampen", + "halogeenlampen", + "led-lampen", + "armaturen", + "lampen" + ], + "pl": [ + "oświetlenie", + "lampy", + "lampki", + "żarówki", + "świetlówki", + "led", + "klosze", + "abażury", + "żyrandole" + ], + "pt": [ + "lighting", + "loja de candeeiros", + "candeeiro", + "candeiro", + "iluminação", + "luminária", + "abajour", + "lustre", + "candelabro", + "lampadário", + "lâmpadas", + "led" + ], + "sv": [ + "belysningsbutik", + "belysning", + "lampor", + "led", + "glödlampor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-desk_lamp.svg", + "class": "medium" + } + }, + { + "if": "shop=locksmith", + "then": { + "en": "Locksmith", + "ca": "Copisteria de claus", + "da": "Låsesmed", + "de": "Schlüsseldienst", + "eo": "Laborejo de seruristo", + "es": "Cerrajería", + "fi": "Lukkoliike", + "fr": "Serrurier", + "gl": "Cerralleiro", + "hu": "Lakatos", + "id": "Ahli Kunci", + "it": "Fabbro", + "ja": "鍵屋(専門店)", + "nl": "Slotenmaker", + "pl": "Dorabianie kluczy / Ślusarz", + "pt": "Chaveiro", + "ru": "Изготовление ключей", + "sl": "Ključavničar", + "sv": "Låssmed" + }, + "searchTerms": { + "en": [ + "key", + "lockpick" + ], + "da": [ + "låsesmed" + ], + "de": [ + "schlosser", + "schlüsseldienst" + ], + "eo": [ + "seruristo", + "serurejo", + "ŝlosilkopiado" + ], + "es": [ + "cerrajero", + "cerradura", + "cerrajería" + ], + "fi": [ + "lukkoseppä", + "lukko", + "lukot", + "hälytys", + "valvonta", + "hälytin", + "hälyttimet", + "lukonavaus" + ], + "fr": [ + "serrurier" + ], + "gl": [ + "cerralleiro", + "zarralleiro", + "cerraxeiro", + "chaves", + "duplicado de chaves", + "copia de chaves", + "cerrallería", + "cerrallaría", + "cerrallaria", + "cerralleria", + "cerrajeria" + ], + "hu": [ + "kulcsmásoló", + "záras", + "zárszerelő" + ], + "it": [ + "fabbro", + "ferraio", + "serrature", + "chiavi", + "ferro battuto" + ], + "ja": [ + "錠前屋", + "鍵屋", + "カギ", + "合鍵" + ], + "nl": [ + "sleutels", + "slotenmaker", + "slot" + ], + "pl": [ + "dorabianie kluczy", + "ślusarz", + "klucze", + "zamki", + "kłódki", + "rzemiosło", + "rzemieślnik", + "rzemieślnicy" + ], + "pt": [ + "locksmith", + "fechaduras", + "fechadura", + "chaves", + "chave" + ], + "ru": [ + "ключи", + "изготовление ключей" + ], + "sl": [ + "ključavničarstvo", + "ključar" + ], + "sv": [ + "låssmed", + "nyckeltillverkning", + "nyckelkopiering", + "nyckel", + "lås", + "låsinstallation", + "dyrkning", + "låsdyrkning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-key.svg", + "class": "medium" + } + }, + { + "if": "shop=lottery", + "then": { + "en": "Lottery Shop", + "ca": "Administració de loteria", + "da": "Lotteributik", + "de": "Lottoannahmestelle", + "eo": "Loterbileta vendejo", + "es": "Lotería", + "fi": "Veikkauspiste", + "fr": "Loterie", + "gl": "Tenda de lotaría", + "hu": "Lottózó", + "id": "Toko Lotre", + "it": "Ricevitoria", + "ja": "宝くじ売り場", + "nl": "Loterij", + "pl": "Kolektura", + "pt": "Loja de lotaria", + "ru": "Продажа лотерейных билетов", + "sl": "Loterijska prodajalna", + "sv": "Lotteri" + }, + "searchTerms": { + "en": [ + "lotto tickets", + "gamble", + "gambling", + "scratch-offs" + ], + "da": [ + "lotteributik", + "lotteriforretning" + ], + "de": [ + "lottoannahmestelle" + ], + "eo": [ + "loterbiletejo" + ], + "es": [ + "lotería", + "juego", + "sorteo", + "quiniela" + ], + "fi": [ + "lotto", + "veikkaus", + "vedonlyönti", + "lyödä vetoa", + "jokeri" + ], + "fr": [ + "vente de billets de loterie" + ], + "hu": [ + "szerencsejáték", + "fogadóiroda", + "totó" + ], + "it": [ + "lotto", + "lotteria" + ], + "ja": [ + "宝くじ売り場", + "くじ", + "ギャンブル" + ], + "nl": [ + "krasloten", + "loterij", + "lotto", + "gokken" + ], + "pl": [ + "kolektura", + "loteria", + "lotto", + "hazard" + ], + "pt": [ + "lottery shop", + "jogos santa casa", + "euromilhões", + "totoloto", + "totobola", + "joker", + "raspadinha", + "pé-de-meia", + "loja da sorte", + "lotaria", + "sorte grande", + "lotérica", + "sorte" + ], + "ru": [ + "лотерея", + "билеты", + "бинго", + "лото" + ], + "sl": [ + "loterija" + ], + "sv": [ + "lotteri", + "lottdragning", + "bingospel", + "hasardspel", + "hasard", + "tombola", + "lottförsäljningen", + "lottstånd" + ] + } + }, + { + "if": "shop=mall", + "then": { + "en": "Mall", + "ca": "Centre comercial", + "da": "Indkøbscenter", + "de": "Einkaufszentrum", + "eo": "Vendejaro", + "es": "Centro comercial", + "fi": "Kauppakeskus", + "fr": "Centre commercial", + "gl": "Centro comercial", + "hu": "Bevásárlóközpont", + "id": "Mal", + "it": "Centro commerciale", + "ja": "ショッピングセンター", + "nl": "Winkelcentrum", + "pl": "Centrum handlowe", + "pt": "Centro comercial", + "ru": "Торговый центр", + "sl": "Trgovski center", + "sv": "Köpcenter" + }, + "searchTerms": { + "en": [ + "shopping" + ], + "da": [ + "indkøbscenter" + ], + "de": [ + "einkaufszentrum", + "mall", + "einkaufspassage" + ], + "eo": [ + "superbazaro", + "butikumcentro" + ], + "es": [ + "mall", + "centro comercial", + "plaza comercial", + "galería comercial" + ], + "fi": [ + "kauppakeskus", + "ostoskeskus", + "kauppakeskittymä", + "ostari" + ], + "fr": [ + "galerie marchande", + "centre d'achat" + ], + "hu": [ + "pláza" + ], + "it": [ + "centro commerciale" + ], + "ja": [ + "ショッピングセンター", + "ショッピングモール", + "複合商業施設", + "買い物", + "ショッピング" + ], + "nl": [ + "shopping center", + "grootwarenhuis", + "warenhuis" + ], + "pl": [ + "centrum handlowe", + "galeria handlowa", + "pasaż handlowy", + "zakupy" + ], + "pt": [ + "mall", + "shopping", + "comércio", + "comercial", + "lojas", + "compras" + ], + "ru": [ + "торговый центр", + "торговый дом" + ], + "sl": [ + "nakupovalni center", + "trgovski center" + ], + "sv": [ + "varuhus", + "shoppingcenter", + "affärshus", + "shoppingcentrum", + "köpcentrum", + "köpcenter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=massage", + "then": { + "en": "Massage Shop", + "ca": "Centre de massatges", + "da": "Massagebutik", + "de": "Massagesalon", + "eo": "Salono de masaĝo", + "es": "Salón de masajes", + "fi": "Hierontayritys", + "fr": "Salon de massage", + "gl": "Tenda de masaxes", + "hu": "Masszázsszalon", + "id": "Panti Pijat", + "it": "Centro massaggi", + "ja": "マッサージ店", + "nl": "Massagewinkel", + "pl": "Salon masażu", + "pt": "Centro de massagens", + "ru": "Массажный салон", + "sv": "Massage" + }, + "searchTerms": { + "da": [ + "massagebutik" + ], + "de": [ + "massagesalon", + "masseur", + "massagepraxis", + "massagestudio" + ], + "eo": [ + "masaĝo", + "masagho", + "masagxo" + ], + "es": [ + "masaje", + "salón de masajes", + "salon de masajes", + "spa", + "tienda de masajes" + ], + "fr": [ + "salon de massage" + ], + "hu": [ + "masszőr", + "masszázs", + "gyógymasszázs", + "svédmasszázs", + "thai masszázs", + "keleti masszázs", + "gyúrás" + ], + "it": [ + "massaggi", + "estetica" + ], + "ja": [ + "マッサージ店", + "マッサージ", + "あんま", + "指圧", + "健康" + ], + "nl": [ + "olie" + ], + "pl": [ + "salon masażu", + "masażysta" + ], + "pt": [ + "massage", + "massagista", + "massagens", + "massagem", + "spa" + ], + "ru": [ + "массаж", + "массажный" + ], + "sv": [ + "massage", + "massagebehandling", + "thaimassage" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-spa.svg", + "class": "medium" + } + }, + { + "if": "shop=medical_supply", + "then": { + "en": "Medical Supply Store", + "ca": "Farmàcia", + "da": "Håndkøbsmedicinforhandler", + "de": "Sanitätshaus", + "eo": "Medicin-aparata vendejo", + "es": "Tienda de aparatos ortopédicos", + "fi": "Lääketarvikemyymälä", + "fr": "Magasin de matériel médical", + "gl": "Tenda de subministracións médicas", + "hu": "Gyógyászati segédeszközök boltja", + "id": "Toko Peralatan Medis", + "it": "Negozio di forniture mediche", + "ja": "健康・医療器具店", + "nl": "Winkel voor medische hulpmiddelen", + "pl": "Sklep ze sprzętem medycznym", + "pt": "Loja de material médico", + "ru": "Медицинские принадлежности", + "sl": "Trgovina z medicinskimi primpomočki", + "sv": "Medicinsk utrustning" + }, + "searchTerms": { + "da": [ + "håndkøbsmedicinforhandler" + ], + "de": [ + "drogerie", + "medizinbedarf", + "medizinbedarfgeschäft" + ], + "eo": [ + "medicinaĵoj" + ], + "es": [ + "suministros médicos", + "bolas del ejercicio", + "vendajes", + "muletas", + "sujeción del arco", + "ortesis", + "esfigmomanómetros", + "glucómetro", + "aparatos ortopédicos", + "ortopedia" + ], + "fr": [ + "magasin de matériel médical" + ], + "hu": [ + "gyógybolt", + "egészségbolt", + "gyógyászati eszközök boltja" + ], + "it": [ + "sanitaria", + "forniture mediche" + ], + "ja": [ + "医療器具店", + "医療用品店", + "健康器具店", + "ヘルスケア", + "健康", + "医療" + ], + "nl": [ + "medische benodigdheden", + "medische toestellen", + "hulpmiddelen" + ], + "pl": [ + "sklep ze sprzętem medycznym", + "sklep medyczny", + "sprzęt medyczny", + "akcesoria medyczne", + "artykuły medyczne", + "sprzęt rehabilitacyjny", + "sprzęt ortopedyczny", + "wózki inwalidzkie", + "chodziki", + "kule", + "protezy", + "ortezy", + "ciśnieniomierze", + "glukometry" + ], + "pt": [ + "artigos hospitalares", + "ortopedia", + "ortopédico", + "fisioterapia" + ], + "ru": [ + "магазин", + "медицина", + "техника", + "оборудование", + "препараты", + "медицинские принадлежности" + ], + "sv": [ + "medicinsk utrustning", + "träningsbollar", + "bandage", + "kryckor", + "ledstöd", + "ortopedteknik", + "blodtrycksmätare", + "glucometer", + "glukometer", + "hjälpmedel", + "rullstol" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-crutch.svg", + "class": "medium" + } + }, + { + "if": "shop=military_surplus", + "then": { + "en": "Military Surplus Store", + "ca": "Botiga d'excedents militars", + "de": "Militärkleidungsabverkauf", + "eo": "Ne-plu-necesa-armea-ekipaĵo vendejo", + "es": "Tienda de excedentes militares", + "fi": "Armeijan ylijäämämyymälä", + "fr": "Surplus militaire", + "gl": "Tenda de accesorios militares", + "hu": "Használt katonai felszerelések boltja", + "it": "Negozio di eccedenze militari", + "ja": "軍払い下げ品店", + "nl": "Legerdump", + "pl": "Sklep ze sprzętem wojskowym", + "pt": "Loja de excedentes militares", + "ru": "Армейский магазин", + "sv": "Affär med militäröverskott" + }, + "searchTerms": { + "en": [ + "armor", + "army-navy store", + "army surplus", + "navy surplus", + "tactical gear", + "war surplus shop", + "weapons" + ], + "de": [ + "waffen", + "armee", + "marine", + "abverkauf" + ], + "eo": [ + "armea ekipaĵo", + "uniformoj", + "armiloj" + ], + "es": [ + "armadura", + "tienda de la armada y la marina", + "excedente del ejército", + "excedente de la marina", + "equipo táctico", + "tienda de excedentes de guerra", + "armas" + ], + "fr": [ + "armée", + "armure", + "navy", + "magasin militaire", + "surplus", + "tactique", + "équipement militaire", + "guerre", + "équipement de guerre" + ], + "hu": [ + "military" + ], + "ja": [ + "軍払い下げ品店", + "軍払下げ品店", + "軍余剰物資店", + "店舗", + "ミリタリー", + "ミリタリーグッズ", + "お店", + "ショッピング", + "小売", + "趣味", + "ホビー" + ], + "nl": [ + "winkel", + "legerdump", + "amerikaans stockhuis", + "dump", + "leger", + "uitrusting", + "oorlog", + "wapens" + ], + "pl": [ + "sklep ze sprzętem wojskowym", + "sklep z militariami", + "militaria", + "sprzęt wojskowy", + "broń", + "zbroje", + "hełmy", + "paintball" + ], + "pt": [ + "military surplus", + "loja de excedentes militares", + "loja de material militar excedente", + "loja de material militar fora de uso" + ], + "sv": [ + "affär med militäröverskott", + "militäröverskott", + "militärt överskott", + "överskottslagret", + "armé", + "militär", + "arméöverskott", + "marinöverskott", + "krigsöverskott", + "vapen", + "militärkläder", + "militärutrustning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-military.svg", + "class": "medium" + } + }, + { + "if": "shop=mobile_phone", + "then": { + "en": "Mobile Phone Store", + "ca": "Botiga de telefonia mòbil", + "da": "Mobiltelefonforhandler", + "de": "Mobiltelefonladen", + "eo": "Poŝtelefona vendejo", + "es": "Tienda de telefonía móvil", + "fi": "Matkapuhelinmyymälä", + "fr": "Magasin de téléphonie mobile", + "gl": "Tenda de telefonía móbil", + "hu": "Mobiltelefon-szaküzlet", + "id": "Toko Handphone", + "it": "Negozio di telefonia mobile", + "ja": "携帯電話店", + "nl": "Mobieletelefoonwinkel", + "pl": "Sklep z telefonami komórkowymi", + "pt": "Loja de telemóveis", + "ru": "Магазин мобильных телефонов и аксессуаров", + "sl": "Trgovina z mobilnimi telefoni", + "sv": "Mobiltelefoner" + }, + "searchTerms": { + "da": [ + "mobiltelefonforhandler" + ], + "de": [ + "handygeschäft", + "handyladen" + ], + "eo": [ + "poŝtelefonoj", + "poshtelefonoj", + "posxtelefonoj", + "gsm", + "telefonoj", + "fonoj" + ], + "es": [ + "teléfono", + "celular", + "móvil", + "movil", + "smartphone", + "teléfono móvil", + "teléfono celular", + "telefonía móvil", + "telefonía celular" + ], + "fr": [ + "vente de téléphone portable", + "magasin de téléphones portables", + "cellulaires" + ], + "hu": [ + "android", + "iphone", + "mobiltelefon", + "okostelefon" + ], + "id": [ + "hp", + "smartphone", + "ponsel" + ], + "it": [ + "negozio di cellulari" + ], + "ja": [ + "携帯電話店", + "ケータイショップ" + ], + "nl": [ + "gsm-winkel", + "telefoonwinkel", + "telefoonzaak", + "gsm-zaak", + "mobieltjeswinkel", + "mobieltjeszaak" + ], + "pl": [ + "telefony", + "telefony komórkowe", + "komórki", + "gsm" + ], + "pt": [ + "mobile phone", + "celular", + "telemóveis", + "telemóvel", + "smartphone" + ], + "ru": [ + "салон сотовой связи", + "продажа сотовых телефонов" + ], + "sl": [ + "mobi trgovina" + ], + "sv": [ + "mobiltelefoner", + "mobiltelefon", + "mobiltelefoni", + "telefon", + "telefonbutik", + "mobiltelefonbutik" + ] + } + }, + { + "if": "shop=model", + "then": { + "en": "Model Shop", + "de": "Modellbaugeschäft", + "eo": "Vendejo de modelfarado", + "es": "Tienda de modelismo", + "fr": "Magasin de modélisme", + "gl": "Tenda de modelismo", + "hu": "Modellező bolt", + "it": "Negozio di modellistica", + "ja": "模型店", + "nl": "Modelwinkel", + "pl": "Sklep modelarski", + "pt": "Loja de modelismo", + "ru": "Магазин для моделирования", + "sv": "Affär för byggmodeller" + }, + "searchTerms": { + "en": [ + "hobby", + "model building", + "model figures", + "model kits", + "model store", + "scale models" + ], + "de": [ + "spielzeug", + "spiele", + "handwerk" + ], + "eo": [ + "modelfarado", + "modeloj", + "kartonmodeloj", + "hobia vendejo", + "aerplanoj", + "aeroplanoj", + "aviadiloj", + "telestirataj aŭtetoj" + ], + "es": [ + "modelismo", + "modelos a escala", + "escala", + "juguetes", + "juegos", + "manualidades" + ], + "fr": [ + "modélisme", + "maquettes", + "modèles réduits" + ], + "hu": [ + "makett" + ], + "ja": [ + "模型店", + "プラモデル", + "プラモ", + "店舗", + "お店", + "ショッピング", + "小売", + "趣味", + "ホビー" + ], + "nl": [ + "hobby", + "schaalmodellen", + "rc", + "model", + "modelbouw" + ], + "pl": [ + "sklep modelarski", + "sklep z modelami", + "modelarstwo", + "modele", + "hobby", + "gry", + "zabawki" + ], + "pt": [ + "modelos", + "barcos", + "comboios", + "aviões", + "tanques", + "escala", + "kits", + "hobby", + "passatempo" + ], + "sv": [ + "hobby", + "modellbyggnad", + "modellfigurer", + "modellpaket", + "modellbutik", + "skalmodeller", + "modellflyg", + "modellbåtar", + "modellbygge" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=money_lender", + "then": { + "en": "Money Lender", + "ca": "Prestamista", + "da": "Pengeudlåner", + "de": "Geldverleih", + "eo": "Mon-pruntejo", + "es": "Prestamista de dinero", + "fi": "Rahanlainausliike", + "fr": "Prêteur", + "gl": "Prestamista de cartos", + "hu": "Pénzkölcsönző", + "id": "Peminjaman Uang", + "it": "Agenzia di prestiti", + "ja": "消費者金融", + "nl": "Particuliere Gelduitleendienst", + "pl": "Firma pożyczkowa", + "pt": "Loja de empréstimos", + "ru": "Ростовщик", + "sl": "Posojilnica", + "sv": "Långivare" + }, + "searchTerms": { + "da": [ + "pengeudlåner" + ], + "de": [ + "geldleiher" + ], + "eo": [ + "pruntedonatejo", + "pruntedonado", + "pruntdonado", + "kreditoj", + "lombardejo", + "monpruntejo" + ], + "es": [ + "prestamista", + "prestador", + "prestadora" + ], + "fr": [ + "prêteur" + ], + "gl": [ + "prestamista", + "usureiro", + "logreiro", + "cartos", + "diñeiro" + ], + "hu": [ + "gyorskölcsön pénzkölcsönző", + "hitel centrum", + "gyorshitelező", + "személyi kölcsönző" + ], + "id": [ + "lintah darat" + ], + "it": [ + "finanziaria" + ], + "ja": [ + "消費者金融", + "高利貸", + "サラ金", + "マチ金", + "貸金", + "お金", + "金融", + "借金" + ], + "nl": [ + "pandhuis", + "lommerd", + "lombard", + "kredietinstelling", + "lenen", + "geld", + "bank van lening" + ], + "pl": [ + "pożyczki", + "kredyty" + ], + "pt": [ + "money lender", + "agiota", + "empréstimo", + "juros", + "crédito", + "prestamista" + ], + "ru": [ + "деньги", + "быстроденьги" + ], + "sv": [ + "långivare", + "utlåning", + "utlåningsinstitution", + "mikrolån", + "telefonlån", + "pantbank" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-money_hand.svg", + "class": "medium" + } + }, + { + "if": "shop=motorcycle", + "then": { + "en": "Motorcycle Dealership", + "ca": "Botiga de motocicletes", + "da": "Motorcykelforhandler", + "de": "Motorradhändler", + "eo": "Motorcikla vendejo", + "es": "Concesionario de motos", + "fi": "Moottoripyöräliike", + "fr": "Vendeur de motos", + "gl": "Concesionario de motocicletas", + "hu": "Motorkerékpár-kereskedés", + "id": "Dealer Motor", + "it": "Concessionario di motociclette", + "ja": "バイク店", + "nl": "Motorwinkel", + "pl": "Sklep motocyklowy", + "pt": "Loja de motas", + "ru": "Магазин мотоциклов", + "sl": "Trgovina z motorji", + "sv": "Återförsäljare av motorcyklar" + }, + "searchTerms": { + "en": [ + "bike" + ], + "da": [ + "motorcykelforhandler", + "mc", + "forretning", + "motorcykel" + ], + "de": [ + "motorrad-handlung", + "motorradladen" + ], + "eo": [ + "motorcikloj", + "motocikloj" + ], + "es": [ + "motocicleta", + "ciclomotor", + "ciclomoto", + "moto" + ], + "fr": [ + "vendeur de motocyclettes" + ], + "hu": [ + "motorbicikli", + "robogó", + "motor" + ], + "it": [ + "motoconcessionaria" + ], + "ja": [ + "バイク店", + "オートバイ店" + ], + "nl": [ + "motorfiets", + "moto", + "brommer" + ], + "pl": [ + "sklep motocyklowy", + "dealer motocyklowy", + "sprzedaż motocykli", + "motocykle", + "motory", + "części motocyklowe", + "akcesoria motocyklowe", + "odzież motocyklowa", + "serwis motocyklowy", + "warsztat motocyklowy", + "naprawa motocykli", + "wypożyczalnia motocykli", + "wynajem motocykli" + ], + "pt": [ + "motos", + "moto", + "mota", + "motocicleta", + "motorizada", + "concessionário", + "concessionária", + "motociclos" + ], + "ru": [ + "магазин мотоциклов", + "мотодиллер" + ], + "sl": [ + "moto trgovina" + ], + "sv": [ + "motorcykel", + "motorcyklar", + "motorcykelåterförsäljare", + "motorcykelbutik", + "motorcykeltillbehör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-motorcycle.svg", + "class": "medium" + } + }, + { + "if": "shop=motorcycle_repair", + "then": { + "en": "Motorcycle Repair Shop", + "ca": "Taller de reparació de motos", + "da": "Motorcykelværksted", + "de": "Motorradwerkstatt", + "eo": "Motorcikl-riparejo", + "es": "Taller de reparación de motos", + "fi": "Moottoripyöräkorjaamo", + "fr": "Réparateur de motos", + "gl": "Taller de arranxo de motocicletas", + "hu": "Motorkerékpáralkatrész-bolt", + "it": "Officina riparazione motocicli", + "ja": "バイク修理店", + "nl": "Motorreparatie", + "pl": "Warsztat motocyklowy", + "pt": "Oficina de motas", + "ru": "Мотомастерская", + "sv": "Motorcykelverkstad" + }, + "searchTerms": { + "en": [ + "auto", + "bike", + "garage", + "motorcycle", + "repair", + "service" + ], + "da": [ + "mekaniker", + "mc", + "værksted", + "mc værksted", + "motorcykel" + ], + "de": [ + "motorrad reparaturwerkstatt", + "motorrad reparaturbetrieb" + ], + "eo": [ + "motocikloj", + "motorcikloj", + "riparejo" + ], + "es": [ + "taller", + "moto", + "garaje", + "motocicleta", + "reparación", + "servicio" + ], + "fr": [ + "réparateur de motos" + ], + "hu": [ + "motorbicikli", + "robogó", + "motor" + ], + "it": [ + "auto", + "veicolo", + "moto", + "bici", + "garage", + "motocicletta", + "motorino", + "scooter", + "riparazione", + "riparatore", + "officina", + "servizio" + ], + "ja": [ + "バイク修理店", + "オートバイ修理", + "バイク", + "オートバイ" + ], + "nl": [ + "motorfietsreparatie" + ], + "pl": [ + "warsztat motocyklowy", + "mechanik", + "naprawa", + "naprawy", + "serwis", + "garaż", + "motocykl", + "motor" + ], + "pt": [ + "loja de conserto de motocicletas", + "garagem de motas", + "oficina de motas", + "reparação de motas", + "reparação", + "reparar", + "consertar", + "conserto", + "mota", + "motas", + "moticicleta", + "motorizada", + "moto", + "oficina de motociclos" + ], + "ru": [ + "мотосервис", + "ремонт", + "мотоцикл", + "байк", + "техобслуживание" + ], + "sv": [ + "motorcykelverkstad", + "motorcykel", + "motorcyklar", + "verkstad", + "reparation", + "service", + "motorcykelservice", + "cykel", + "moped", + "mopedverkstad", + "reparatör", + "motorcykelreparatör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-motorcycle_repair.svg", + "class": "medium" + } + }, + { + "if": "shop=music", + "then": { + "en": "Music Store", + "ca": "Botiga de música", + "da": "Musikbutik", + "de": "Musikgeschäft", + "eo": "Muzika vendejo", + "es": "Tienda de música", + "fi": "Musiikkiliike", + "fr": "Magasin de musique", + "gl": "Tenda de música", + "hu": "Hanglemezbolt", + "id": "Toko Musik", + "it": "Negozio di musica", + "ja": "CD/レコード店", + "nl": "Muziekwinkel", + "pl": "Sklep muzyczny", + "pt": "Loja de música", + "ru": "Музыкальный магазин", + "sl": "Trgovina z glasbo", + "sv": "Musikaffär" + }, + "searchTerms": { + "en": [ + "tape cassettes", + "cds", + "compact discs", + "vinyl records", + "cd store", + "casette", + "casette store" + ], + "da": [ + "musikbutik", + "musikforretning" + ], + "de": [ + "musikladen", + "musikgeschäft", + "plattenladen", + "cd", + "lp", + "schallplatten", + "kassetten", + "vinyl" + ], + "eo": [ + "muzikvendejo", + "lumdiskoj", + "cd", + "laserdiskoj" + ], + "es": [ + "música", + "audio", + "discos", + "discográfica", + "tienda de discos" + ], + "fr": [ + "magasin de musique" + ], + "hu": [ + "zenebolt", + "cd és dvd bolt", + "zeneműbolt", + "muzsikabolt", + "kotta és hanglemezbolt" + ], + "it": [ + "musica", + "cassette", + "nastri", + "cd", + "dischi", + "vinile", + "vinili" + ], + "ja": [ + "cd店", + "レコード店", + "音楽", + "音楽店" + ], + "nl": [ + "muziekwinkel" + ], + "pl": [ + "sklep muzyczny", + "nagrania muzyczne", + "płyty kompaktowe", + "płyty cd", + "dvd", + "płyty winylowe", + "winyle", + "kasety magnetofonowe" + ], + "pt": [ + "music", + "música", + "disco", + "discos", + "vinil", + "vinis", + "cd", + "cds", + "cassetes" + ], + "ru": [ + "музыкальный магазин", + "аудио салон", + "винил", + "компакт диски", + "аудио диски", + "постеры", + "журналы" + ], + "sl": [ + "muzikalije" + ], + "sv": [ + "musikaffär", + "musikbutik", + "cd-affär", + "cd", + "kassett", + "vinyl", + "lp", + "skivaffär", + "skivbutik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-compact-disc.svg", + "class": "medium" + } + }, + { + "if": "shop=musical_instrument", + "then": { + "en": "Musical Instrument Store", + "ca": "Botiga d'instruments musicals", + "da": "Musikinstrumentbutik", + "de": "Musikinstrumentegeschäft", + "eo": "Muzikinstrumenta vendejo", + "es": "Tienda de instrumentos musicales", + "fi": "Instrumenttimyymälä", + "fr": "Magasin d'instruments de musique", + "gl": "Tenda de instrumentos musicais", + "hu": "Hangszerbolt", + "id": "Toko Alat Musik", + "it": "Negozio di strumenti musicali", + "ja": "楽器店", + "nl": "Muziekinstrumentenwinkel", + "pl": "Sklep z instrumentami muzycznymi", + "pt": "Loja de instrumentos musicais", + "ru": "Магазин музыкальных инструментов", + "sl": "Trgovina z glasbenimi inštrumenti", + "sv": "Musikinstrument" + }, + "searchTerms": { + "en": [ + "guitar" + ], + "da": [ + "musikinstrumentbutik", + "musikinstrumentforretning" + ], + "de": [ + "musikinstrumentengeschäft", + "instrumentenladen", + "noten", + "gitarre", + "schlagzeug", + "partitur" + ], + "eo": [ + "muzikinstrumentoj", + "muzikiloj", + "instrumentoj", + "gitaroj" + ], + "es": [ + "música", + "audio", + "instrumento", + "instrumento musical", + "instrumento de música" + ], + "fi": [ + "musiikki", + "soitin", + "soittimet", + "instrumentti", + "soittaminen", + "soitto" + ], + "fr": [ + "magasin d'instruments de musique" + ], + "hu": [ + "hangszer", + "kotta", + "hangszerdiszkont" + ], + "it": [ + "strumenti musicali" + ], + "ja": [ + "楽器店", + "音楽" + ], + "nl": [ + "musiceren", + "muziekschool", + "pianowinkel", + "gitaarwinkel", + "vioolwinkel", + "partituren", + "pianokruk" + ], + "pl": [ + "instrumenty muzyczne", + "sklep muzyczny" + ], + "pt": [ + "guitarra", + "piano", + "violino", + "bateria", + "som", + "música", + "instrumento", + "baixo" + ], + "ru": [ + "гитары", + "барабаны", + "пианино", + "ноты", + "струны", + "песенники" + ], + "sv": [ + "musikinstrument", + "instrument", + "noter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-guitar.svg", + "class": "medium" + } + }, + { + "if": "shop=newsagent", + "then": { + "en": "Newspaper/Magazine Shop", + "ca": "Botiga de diaris i revistes", + "da": "Avis/Bladforhandler", + "de": "Zeitschriftenhandel", + "eo": "Gazeta vendejo", + "es": "Puesto de periódicos / revistas", + "fi": "Lehtikoju", + "fr": "Magasin de journaux", + "gl": "Tenda de xornais/revistas", + "hu": "Újságárus", + "id": "Toko Majalah/Koran", + "it": "Edicola", + "ja": "新聞・雑誌店", + "nl": "Kranten-/Tijdschriftwinkel", + "pl": "Sklep z prasą", + "pt": "Loja de jornais / revistas", + "ru": "Газеты/пресса/журналы", + "sl": "Trgovina s časopisi/revijami", + "sv": "Tidningsaffär" + }, + "searchTerms": { + "da": [ + "avis/bladforhandler" + ], + "de": [ + "zeitschiftenhandel", + "zeitungsladen", + "zeitschriftenladen", + "zeitschriftenhändler", + "zeitungsgeschäft", + "zeitungshändler", + "zeitschriftengeschäft", + "magazine" + ], + "eo": [ + "gazetvendejo", + "gazetejo", + "magazinoj" + ], + "es": [ + "periódico", + "diario", + "semanario", + "revista", + "puesto de diarios", + "puesto de periódicos", + "vendedor de diarios", + "vendedor de periódicos", + "tienda", + "negocio" + ], + "fr": [ + "vente de journaux", + "de magazines", + "maison de la presse" + ], + "hu": [ + "újságos", + "hírlapárus", + "trafik" + ], + "it": [ + "edicola" + ], + "ja": [ + "新聞", + "雑誌", + "マガジン", + "ニュース", + "スタンド" + ], + "nl": [ + "nieuws", + "kranten", + "tijdschriften", + "magazines" + ], + "pl": [ + "salonik prasowy", + "kiosk", + "prasa", + "gazety", + "czasopisma", + "lotto", + "kolporter", + "inmedio", + "ruch" + ], + "pt": [ + "newspaper", + "magazine", + "jornal", + "revista" + ], + "ru": [ + "газеты", + "журналы", + "пресса", + "сопутствующие товары", + "киоск", + "лоток", + "стенд" + ], + "sv": [ + "tidningsaffär", + "pressbyrå", + "pressbyrån", + "kiosk", + "tidningskiosk", + "tidningsställ", + "tidningar", + "magasin", + "tidskrifter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-newspaper.svg", + "class": "medium" + } + }, + { + "if": "shop=nutrition_supplements", + "then": { + "en": "Nutrition Supplements Store", + "ca": "Botiga de suplements nutricionals", + "da": "Helsekostbutik", + "de": "Nahrungsergänzungsmittelgeschäft", + "eo": "Diet-suplementa vendejo", + "es": "Tienda de suplementos nutricionales", + "fi": "Lisäravinnemyymälä", + "fr": "Boutique de compléments alimentaires", + "gl": "Tenda de suplementos nutricionais", + "hu": "Étrendkiegészítő-bolt", + "it": "Negozio di integratori alimentari", + "ja": "栄養サプリ販売店", + "nl": "Voedingssupplementenwinkel", + "pl": "Sklep z suplementami diety", + "pt": "Loja de suplementos alimentares", + "ru": "Магазин пищевых добавок", + "sl": "Trgovina s prehrambenimi dodatki", + "sv": "Hälsokost" + }, + "searchTerms": { + "en": [ + "health", + "supplement", + "vitamin" + ], + "da": [ + "helsekostbutik", + "helsekostforretning" + ], + "de": [ + "nahrungsergänzungsmittelgeschäft", + "vitaminpräparategeschäft", + "gewichtsreduktionspräparategeschäft" + ], + "eo": [ + "dietsuplementoj", + "nutraĵoj", + "suplementoj" + ], + "es": [ + "nutrición", + "suplementos", + "complementos", + "vitaminas", + "minerales", + "tienda", + "almacén", + "negocio" + ], + "fr": [ + "compléments alimentaires;compléments nutritionnels" + ], + "hu": [ + "étrend-kiegészítő", + "táplálékkiegészítő" + ], + "it": [ + "negozio di integratori" + ], + "ja": [ + "栄養サプリメント販売店", + "サプリ専門店", + "サプリメント専門店", + "健康" + ], + "nl": [ + "supplementen", + "vitaminen", + "mineralen", + "kruiden", + "eiwitten" + ], + "pl": [ + "suplementy diety", + "odżywki dla sportowców" + ], + "pt": [ + "nutrição", + "vitaminas", + "proteínas", + "minerais", + "fitness", + "musculação", + "peso", + "saúde" + ], + "sv": [ + "hälsokost", + "hälsa", + "viktminskning", + "hälsoprodukter", + "vitaminer", + "mineraler", + "hälsoörter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-pills.svg", + "class": "medium" + } + }, + { + "if": "shop=optician", + "then": { + "en": "Optician", + "ca": "Òptica", + "da": "Optiker", + "de": "Optiker", + "eo": "Optikbutiko", + "es": "Óptica", + "fi": "Optikko", + "fr": "Opticien", + "gl": "Óptica", + "hu": "Látszerész", + "id": "Optik", + "it": "Ottico", + "ja": "メガネ店", + "nl": "Opticien", + "pl": "Optyk", + "pt": "Ótica", + "ru": "Оптика", + "sl": "Optik", + "sv": "Optiker" + }, + "searchTerms": { + "en": [ + "eye", + "glasses" + ], + "da": [ + "optiker", + "optikerforretning" + ], + "de": [ + "brillengeschäft", + "optiker", + "augenoptiker" + ], + "eo": [ + "okulvitristejo", + "okulvitroj", + "vitrokuloj", + "optikisto" + ], + "es": [ + "óptica", + "optica", + "gafas", + "lentillas" + ], + "fi": [ + "optikko", + "optiikko", + "optometristi", + "optometri", + "optometria", + "silmälasi", + "silmälasit", + "aurinkolasi", + "aurinkolasit", + "silmälasiliike" + ], + "fr": [ + "opticien", + "marchand de lunettes" + ], + "hu": [ + "szemüveg", + "kontaktlencse", + "optikus" + ], + "id": [ + "mata" + ], + "it": [ + "ottico" + ], + "ja": [ + "メガネ", + "眼鏡", + "メガネ屋", + "眼鏡屋", + "めがね" + ], + "nl": [ + "brillenwinkel", + "lenzen", + "bril", + "zonnebril", + "oogarts" + ], + "pl": [ + "optyk", + "salon optyczny", + "zakład optyczny", + "sklep optyczny", + "okulary", + "soczewki kontaktowe", + "szkła kontaktowe", + "rzemiosło", + "rzemieślnik", + "rzemieślnicy" + ], + "pt": [ + "optician", + "óptica", + "óptico", + "óculos de sol", + "graduados", + "armação", + "lentes", + "olhos", + "óculos", + "oculista", + "ótico" + ], + "ru": [ + "оптика", + "очки", + "линзы", + "окулист" + ], + "sl": [ + "optika", + "očala" + ], + "sv": [ + "optiker", + "synundersökning", + "glasögon", + "linser", + "ögon" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-optician.svg", + "class": "medium" + } + }, + { + "if": "shop=outdoor", + "then": { + "en": "Outdoors Store", + "ca": "Botiga per a activitats a l'aire lliure", + "da": "Friluftsudstyrsbutik", + "de": "Outdoorgeschäft", + "eo": "Vojaĝila vendejo", + "es": "Tienda de actividades al aire libre", + "fi": "Ulkoilmamyymälä", + "fr": "Magasin de matériel de sports de plein air", + "gl": "Tenda de actividades ó ar libre", + "hu": "Túrafelszerelés-bolt", + "id": "Toko Perlengkapan Outdoor", + "it": "Negozio per sport all'aria aperta", + "ja": "アウトドアショップ", + "nl": "Buitensportwinkel", + "pl": "Sklep turystyczny", + "pt": "Loja de artigos para atividades ao ar livre", + "ru": "Магазин снаряжения для активного отдыха", + "sl": "Trgovina za dejavosti na prostem", + "sv": "Friluftsaffär" + }, + "searchTerms": { + "en": [ + "camping", + "climbing", + "hiking", + "outfitter", + "outdoor equipment", + "outdoor supplies" + ], + "da": [ + "friluftsudstyrsbutik", + "friluftsudstyrsforretning", + "eventyr", + "sport", + "udendørs" + ], + "de": [ + "bergsport- und camping", + "outdoorbekleidungsgeschäft" + ], + "eo": [ + "vojaĝiloj", + "vojaghiloj", + "vojagxiloj", + "ekipaĵo", + "tendoj" + ], + "es": [ + "al aire libre", + "fuera de casa", + "exterior", + "excursión", + "campamento" + ], + "fr": [ + "magasin de matériel de sports de plein air" + ], + "gl": [ + "alpinismo", + "montañismo", + "sendeirismo", + "acampada", + "escalada", + "excursión", + "gps" + ], + "hu": [ + "hegymászó felszerelés", + "outdoor", + "sportbolt", + "hegymászóbolt", + "túrabolt" + ], + "it": [ + "campeggio", + "scalata", + "escursionismo" + ], + "ja": [ + "アウトドアショップ" + ], + "nl": [ + "trekking", + "fietsen", + "hike", + "gps", + "kamperen", + "tent" + ], + "pl": [ + "sklep turystyczny", + "sklep górski", + "góry", + "wspinaczka", + "wspinaczkowy", + "trekking", + "outdoor", + "decathlon", + "skalnik" + ], + "pt": [ + "outdoors", + "caminhada", + "escalada", + "equipamento", + "trekking", + "acampar", + "campismo", + "decathlon", + "sport zone" + ], + "ru": [ + "палатки", + "gps", + "туризм", + "скалолазание" + ], + "sv": [ + "friluftsaffär", + "camping", + "campingutrustning", + "vandring", + "vandringsutrustning", + "tält", + "klätterutrustning", + "klättring", + "friluftsliv", + "uteliv" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-compass.svg", + "class": "medium" + } + }, + { + "if": "shop=outpost", + "then": { + "en": "Online Retailer Outpost", + "de": "Abholstelle eines Onlinehändlers", + "eo": "Ricevejo de aĉetaĵoj (per interreto)", + "es": "Puesto de venta minorista online", + "fi": "Verkkokaupan noutopiste", + "fr": "Magasin de produits vendus en ligne", + "gl": "Posto de venda minorista online", + "hu": "Internetes bolt", + "it": "Centro ritiro acquisti online", + "ja": "商品受け取り店", + "nl": "Voorpost van een online retailer", + "pl": "Placówka sklepu internetowego", + "pt": "Posto de retalhista online", + "ru": "Пункт выдачи интернет-магазина", + "sv": "Utlämning av online-beställningar" + }, + "searchTerms": { + "en": [ + "online", + "pick up", + "pickup" + ], + "de": [ + "online", + "abholung", + "pickup" + ], + "eo": [ + "enreta aĉeto", + "reta aĉeto", + "ricevo de aĉetaĵoj", + "poŝto", + "retbutiko" + ], + "es": [ + "en línea", + "recoger", + "retirar" + ], + "fr": [ + "vente en ligne", + "pickup", + "online", + "en ligne", + "commande" + ], + "hu": [ + "internetes bolt", + "áruátvétel", + "megrendelt termékek átvevőhelye", + "webshop" + ], + "ja": [ + "商品受け取り店", + "アウトポスト", + "配達", + "受取" + ], + "nl": [ + "online retailer" + ], + "pl": [ + "placówka sklepu internetowego", + "punkt odbioru zamówień", + "odbiór zamówień online" + ], + "pt": [ + "online", + "retalhista", + "venda online", + "vendas", + "local de entrega", + "recolha" + ], + "sv": [ + "utlämning av online-beställningar", + "online", + "internet", + "utlämning", + "paket", + "paketutlämning", + "posten" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=paint", + "then": { + "en": "Paint Store", + "ca": "Botiga de pintura", + "da": "Farvehandel", + "de": "Farbengeschäft", + "eo": "Farba vendejo", + "es": "Tienda de pinturas", + "fi": "Maalikauppa", + "fr": "Magasin de peintures", + "gl": "Tenda de pinturas", + "hu": "Festékbolt", + "id": "Toko Cat", + "it": "Negozio di vernici", + "ja": "塗料店", + "nl": "Verfwinkel", + "pl": "Sklep z farbami", + "pt": "Loja de tintas", + "ru": "Магазин красочных изделий", + "sl": "Trgovina z barvami", + "sv": "Färgbutik" + }, + "searchTerms": { + "da": [ + "farvehandel", + "malerforretning", + "malerbutik" + ], + "de": [ + "farbengeschäft", + "malerbedarf", + "anstreicherbedarf", + "farbenhandel" + ], + "eo": [ + "farboj", + "kolorigiloj", + "lakoj", + "pentriloj" + ], + "es": [ + "pintura", + "pinturas", + "pinturería" + ], + "fi": [ + "maalaaminen", + "maali", + "maalit", + "maalaus", + "rautakauppa", + "maalimyymälä", + "maaliliike" + ], + "fr": [ + "vente de peintures" + ], + "hu": [ + "falfesték", + "színkeverés", + "festék", + "vegyiáru" + ], + "it": [ + "colorificio" + ], + "ja": [ + "塗料店" + ], + "nl": [ + "verfhandel", + "verfzaak" + ], + "pl": [ + "farby", + "malowanie" + ], + "pt": [ + "paint", + "tintas", + "tinta", + "vernizes", + "verniz", + "pincéis", + "pincel", + "pintar", + "pintura" + ], + "ru": [ + "лаки", + "краски" + ], + "sv": [ + "färgbutik", + "färg", + "målarfärg", + "målning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-paint-roller.svg", + "class": "medium" + } + }, + { + "if": "shop=party", + "then": { + "en": "Party Supply Store", + "de": "Partyzubehör", + "eo": "Vendejo de okazaĵaj provizoj", + "es": "Tienda de artículos para fiestas", + "fr": "Magasin de matériel de fête", + "gl": "Tenda de artigos para festas", + "hu": "Partykellékbolt", + "it": "Negozio di articoli per le feste", + "ja": "パーティ用品店", + "nl": "Feestwinkel", + "pl": "Sklep z artykułami imprezowymi", + "pt": "Loja de acessórios para festas", + "ru": "Магазин для вечеринок", + "sv": "Partybutik" + }, + "searchTerms": { + "en": [ + "balloons", + "costumes", + "decorations", + "invitations" + ], + "de": [ + "partyzubehör" + ], + "eo": [ + "okazaĵoj", + "eventoj", + "balonoj", + "kostumoj" + ], + "es": [ + "globos", + "disfraces", + "decoraciones", + "invitaciones", + "fiestas" + ], + "fr": [ + "ballons", + "costumes", + "décorations", + "invitations", + "fête" + ], + "gl": [ + "globos", + "disfraces", + "decoracións", + "invitacións", + "festas", + "convites", + "esmorga", + "algueirada", + "carallada", + "chola", + "folía", + "foliada", + "gandaina", + "pándega", + "rexouba", + "riola", + "ruada", + "troula", + "trouleo", + "xolda", + "rua", + "garulada", + "festividade" + ], + "ja": [ + "パーティ用品店", + "パーティグッズ", + "パーティ", + "コスチューム", + "店舗", + "お店", + "ショッピング", + "小売", + "趣味", + "ホビー" + ], + "nl": [ + "feestartikelen", + "carnavalswinkel", + "ballonnen", + "kostuums" + ], + "pl": [ + "artykuły imprezowe", + "balony", + "kostiumy", + "przebrania", + "dekoracje", + "zaproszenia" + ], + "pt": [ + "festas", + "balões", + "máscaras", + "decoração", + "trejes", + "fantasias", + "carnaval" + ], + "sv": [ + "partybutik", + "kallasutrustning", + "festutrustning", + "festivalutrustning", + "kallas", + "fest", + "festival", + "partyutrustning", + "party", + "kallasdekoration", + "dekoration", + "ballonger", + "serpentiner", + "engångstallrikar", + "engångsbestick", + "engångsglas", + "dräkter", + "utklädning", + "småpresenter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-balloon.svg", + "class": "medium" + } + }, + { + "if": "shop=pastry", + "then": { + "en": "Pastry Shop", + "ca": "Pastisseria", + "da": "Konditori", + "de": "Konditorei", + "eo": "Kukejo", + "es": "Pastelería", + "fi": "Leipomokonditoria", + "fr": "Pâtisserie", + "gl": "Confeitaría ou pastelaría", + "hu": "Cukrászda", + "it": "Pasticceria", + "ja": "焼菓子(ペイストリー)店", + "nl": "Patisserie", + "pl": "Cukiernia", + "pt": "Pastelaria", + "ru": "Пироги", + "sl": "Slaščičarna", + "sv": "Konditori" + }, + "searchTerms": { + "en": [ + "patisserie", + "cake shop", + "cakery" + ], + "da": [ + "konditori" + ], + "de": [ + "bäckerei", + "süßspeisengeschäft", + "konfiserie", + "patisserie" + ], + "eo": [ + "panejo", + "bakejo", + "sukeraĵejo" + ], + "es": [ + "pastelería", + "repostería", + "tarta", + "torta", + "pastel", + "masa" + ], + "fr": [ + "gaufre" + ], + "gl": [ + "confitaría", + "pastelaría", + "pasteis", + "tartas" + ], + "hu": [ + "sütemény", + "süti", + "torta", + "édesség" + ], + "it": [ + "patisserie", + "torteria", + "torte", + "paste", + "pasticcini" + ], + "ja": [ + "焼菓子店", + "ケーキ屋", + "食品", + "パイ", + "ビスケット", + "洋菓子", + "ペイストリー", + "ペストリー", + "お菓子", + "食べ物", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "patisserie", + "patissier", + "cake" + ], + "pl": [ + "cukiernia", + "pączkarnia", + "ciastkarnia", + "piekarnia", + "wypieki", + "ciasta", + "torty", + "pączki", + "precle" + ], + "pt": [ + "pastelaria", + "bolos", + "pastel", + "pastéis" + ], + "ru": [ + "выпечка", + "штрудели", + "бисквиты", + "пирожки", + "пироги" + ], + "sv": [ + "konditori", + "kondis", + "cafe", + "café", + "kafé", + "fik", + "kaffeservering", + "bageri", + "sockerbageri", + "finbageri", + "sockerbagare", + "servering" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-bakery.svg", + "class": "medium" + } + }, + { + "if": "shop=pawnbroker", + "then": { + "en": "Pawn Shop", + "ca": "Botiga d'empenyoraments", + "da": "Panteudlåner", + "de": "Pfandleihe", + "eo": "Mon-pruntejo (kontraŭ garantiaĵo)", + "es": "Casa de empeño", + "fi": "Panttilainaamo", + "fr": "Prêteur sur gages", + "gl": "Casa de empeños", + "hu": "Zálogház", + "id": "Pegadaian", + "it": "Banco dei pegni", + "ja": "質店", + "nl": "Pandjeshuis", + "pl": "Lombard", + "pt": "Casa de penhoras", + "ru": "Ломбард", + "sl": "Zastavljalnica", + "sv": "Pantbank" + }, + "searchTerms": { + "da": [ + "panteudlåner" + ], + "de": [ + "leihhaus", + "pfandleihhaus", + "pfandhaus", + "goldankauf" + ], + "eo": [ + "lombardo", + "monprunto", + "lombardejo", + "pruntejo", + "brokantejo" + ], + "es": [ + "casa de empeño", + "empeño", + "tienda de empeño", + "prenda" + ], + "fr": [ + "mont-de-piété", + "crédit municipal" + ], + "hu": [ + "zaci", + "záloghitel" + ], + "it": [ + "banco dei pegni", + "monte dei pegni" + ], + "ja": [ + "質屋", + "質店", + "お金", + "金融" + ], + "nl": [ + "pandhuis", + "lommerd", + "lombard", + "kredietinstelling", + "lenen", + "geld" + ], + "pl": [ + "lombard" + ], + "pt": [ + "pawn shop", + "penhores", + "penhoras", + "penhorar" + ], + "ru": [ + "ломбард" + ], + "sv": [ + "pantbank", + "pantbanken", + "pantbelåning", + "pantlånekontor", + "varubelåning", + "pant" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-money_hand.svg", + "class": "medium" + } + }, + { + "if": "shop=perfumery", + "then": { + "en": "Perfume Store", + "ca": "Botiga de perfums", + "da": "Parfumebutik", + "de": "Parfümerie", + "eo": "Parfuma vendejo", + "es": "Perfumería", + "fi": "Hajusteliike", + "fr": "Parfumerie", + "gl": "Perfumaría", + "hu": "Parfüméria", + "it": "Profumeria", + "ja": "香水店", + "nl": "Parfumwinkel", + "pl": "Perfumeria", + "pt": "Perfumaria", + "ru": "Парфюмерия", + "sl": "Parfumerija", + "sv": "Parfymbutik" + }, + "searchTerms": { + "en": [ + "cologne", + "fragrance", + "purfume" + ], + "ca": [ + "perfumeria", + "botiga de colònies" + ], + "da": [ + "parfumebutik", + "parfumeforretning", + "parfumeshop" + ], + "de": [ + "parfümerie", + "parfümgeschäft" + ], + "eo": [ + "parfumoj", + "parfumejo", + "bonodorejo" + ], + "es": [ + "perfume", + "colonia", + "fragancia", + "esencias aromáticas", + "cosméticos" + ], + "fi": [ + "tuoksu", + "hajuste", + "hajuvesi", + "kauppa", + "myymälä", + "liike" + ], + "fr": [ + "parfumerie" + ], + "hu": [ + "parfüm", + "illatszer" + ], + "it": [ + "profumi", + "profumo", + "profumeria" + ], + "ja": [ + "香水店", + "美容" + ], + "nl": [ + "parfumerie", + "geuren", + "eau de toilette", + "eau de parfum" + ], + "pl": [ + "sklep z perfumami", + "perfumy" + ], + "pt": [ + "loja de perfumes", + "perfumes", + "fragâncias", + "colónia", + "água de colónia", + "odores", + "odor", + "cheiro" + ], + "ru": [ + "духи", + "парфюм", + "парфюмерия" + ], + "sv": [ + "parfym", + "parfymaffär", + "parfymeri", + "kosmetika", + "smink" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-perfume.svg", + "class": "medium" + } + }, + { + "if": "shop=pet", + "then": { + "en": "Pet Store", + "ca": "Botiga d'animals", + "da": "Kæledyrsbutik", + "de": "Tierhandlung", + "eo": "Hejmbesta vendejo", + "es": "Tienda de mascotas", + "fi": "Lemmikkiliike", + "fr": "Animalerie", + "gl": "Tenda de mascotas", + "hu": "Kisállatkereskedés", + "id": "Toko Peliharaan", + "it": "Negozio per animali", + "ja": "ペットショップ", + "nl": "Dierenwinkel", + "pl": "Sklep zoologiczny", + "pt": "Loja de animais de estimação", + "ru": "Зоомагазин", + "sl": "Trgovina za domače živali", + "sv": "Djurbutik" + }, + "searchTerms": { + "en": [ + "animal", + "cat", + "dog", + "fish", + "kitten", + "puppy", + "reptile" + ], + "da": [ + "kæledyrsbutik", + "dyreforhandler", + "dyrehandler" + ], + "de": [ + "tierhandlung", + "zoohandlung", + "zoofachgeschäft" + ], + "eo": [ + "dombesta vendejo", + "dombestoj", + "hejmbestoj", + "bestoj", + "kobajo", + "kuniklo", + "papago" + ], + "es": [ + "mascota", + "animal", + "tienda de animales" + ], + "fr": [ + "animalerie" + ], + "hu": [ + "állat", + "kisállat", + "állateledel" + ], + "it": [ + "negozio di animali" + ], + "ja": [ + "ペット売り場", + "ペット", + "家禽", + "ペットショップ", + "動物", + "愛玩動物", + "ペット用品店" + ], + "nl": [ + "dierenzaak", + "dierenwinkel", + "huisdieren" + ], + "pl": [ + "sklep zoologiczny", + "karmy dla zwierząt", + "pokarm dla zwierząt domowych", + "zwierzęta" + ], + "pt": [ + "animais de companhia", + "animais", + "animal", + "cães", + "gatos", + "peixes", + "comida", + "répteis", + "aves", + "pássaros", + "papagaios", + "ração" + ], + "ru": [ + "зоомагазин", + "для животных" + ], + "sl": [ + "pripomočki za domače živali", + "hrana za domače žival" + ], + "sv": [ + "djuraffär", + "djur", + "husdjur", + "hund", + "hundar", + "katt", + "katter", + "djurmat", + "djurtillbehör", + "djurburar", + "akvarium", + "fisk" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-cat.svg", + "class": "medium" + } + }, + { + "if": "shop=pet_grooming", + "then": { + "en": "Pet Grooming Store", + "de": "Tierpflegedienst, Tierfriseur (meist Hundesalon)", + "eo": "Hejmbesta beligejo", + "es": "Tienda de aseo de mascotas", + "fi": "Lemmikkihoitola", + "fr": "Salon de toilettage", + "gl": "Tenda de coidado de animais", + "hu": "Állatkozmetika", + "it": "Toelettatura per animali", + "ja": "ペット美容室", + "nl": "Trimsalon", + "pl": "Salon fryzjerski dla zwierząt", + "pt": "Loja de banhos e tosquias", + "ru": "Парикмахерская для животных", + "sv": "Pälsvård för husdjur" + }, + "searchTerms": { + "en": [ + "cat", + "dog" + ], + "de": [ + "hundefriseur", + "hundesalon", + "tierfriseur", + "tierpflegedienst" + ], + "eo": [ + "frizejo", + "hartondisto", + "hundoj", + "katoj", + "hejmbestoj", + "dombestoj" + ], + "es": [ + "baño", + "aseo", + "peluquería", + "mascotas", + "perro", + "gato", + "peluquero canino", + "can" + ], + "fr": [ + "salon de toilettage" + ], + "hu": [ + "kutyakozmetika" + ], + "it": [ + "cane", + "gatto", + "cani", + "gatti", + "toilette", + "toletta", + "tolettatura", + "toelettatura", + "parrucchiere", + "unghie", + "shampoo" + ], + "ja": [ + "ペット美容室", + "動物美容", + "ペット", + "美容", + "犬の美容室", + "愛犬美容", + "犬", + "猫", + "動物" + ], + "nl": [ + "huisdierenverzorging", + "huisdierentrimsalon", + "hondenverzorging", + "hondentrimsalon", + "kattenverzorging", + "kattentrimsalon" + ], + "pl": [ + "psi fryzjer" + ], + "pt": [ + "loja de cuidados com animais de estimação", + "animais", + "animal", + "gato", + "gatos", + "cão", + "cães", + "pet", + "tratamento", + "limpeza", + "tosquia", + "cabeleireiro", + "companhia", + "estimação" + ], + "ru": [ + "зоосалон", + "салон красоты для животных", + "собак", + "кошек", + "стрижка", + "уход", + "мытьё" + ], + "sv": [ + "pälsvård för husdjur", + "pälsvård", + "husdjur", + "hund", + "trimning", + "hundvård" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-pet_grooming.svg", + "class": "medium" + } + }, + { + "if": "shop=photo", + "then": { + "en": "Photography Store", + "ca": "Botiga de fotografia", + "da": "Fotoforretning", + "de": "Fotofachgeschäft", + "eo": "Fotografia vendejo", + "es": "Tienda de fotografía", + "fi": "Valokuvausliike", + "fr": "Tirage de photos", + "gl": "Tenda de fotografía", + "hu": "Fotósbolt", + "id": "Toko Fotografi", + "it": "Fotografo", + "ja": "写真店", + "nl": "Fotowinkel", + "pl": "Sklep fotograficzny", + "pt": "Loja de fotografia", + "ru": "Фототовары", + "sl": "Foto trgovina", + "sv": "Fotoaffär" + }, + "searchTerms": { + "en": [ + "camera", + "film", + "lens", + "photo" + ], + "da": [ + "foto", + "kamera", + "linse", + "film", + "billede" + ], + "de": [ + "fotoladen", + "fotograf", + "fotogeschäft" + ], + "eo": [ + "fotografio", + "fotografarto" + ], + "es": [ + "fotografía", + "fotógrafo", + "cámara", + "retratista", + "revelado", + "film", + "rollo", + "impresión", + "fotos" + ], + "fr": [ + "photographe", + "tirage de photos" + ], + "hu": [ + "fényképész", + "fényképezés", + "filmkidolgozás", + "előhívás", + "igazolványkép" + ], + "it": [ + "fotografia", + "fotografico", + "fotografo", + "foto", + "diapositive", + "rullini", + "macchine fotografiche" + ], + "ja": [ + "写真屋", + "写真店", + "現像", + "ビデオ", + "デジカメ" + ], + "nl": [ + "camera", + "film" + ], + "pl": [ + "fotografia", + "filmy do aparatów", + "ramki na zdjęcia", + "aparaty fotograficzne", + "wywoływanie zdjęć" + ], + "pt": [ + "photography", + "fotógrafo", + "máquina fotográfica", + "material fotográfico", + "câmara", + "vídeo", + "fotografias", + "vhs", + "acessórios", + "revelação" + ], + "ru": [ + "фототовары", + "фототехника", + "фото на паспорт", + "паспорт", + "фото" + ], + "sl": [ + "foto delavnica", + "prodajalna fotografske opreme" + ], + "sv": [ + "fotoaffär", + "bild", + "foto", + "video", + "fotografi", + "fotoredigering", + "framkallning", + "ram", + "kameratillbehör", + "kamera", + "kameror", + "filmkamera", + "fotokamera", + "konvertering", + "film" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-camera-retro.svg", + "class": "medium" + } + }, + { + "if": "shop=pottery", + "then": { + "en": "Pottery Store", + "ca": "Botiga de ceràmica", + "de": "Keramikladen", + "eo": "Porcelan-vendejo", + "es": "Tienda de alfarería", + "fr": "Magasin de poterie", + "gl": "Tenda de cerámica", + "hu": "Fazekas bolt", + "it": "Negozio di ceramica", + "ja": "陶磁器店", + "nl": "Winkel voor aardewerk", + "pl": "Sklep garncarski", + "pt": "Loja de cerâmica", + "ru": "Магазин керамики", + "sv": "Keramikaffär" + }, + "searchTerms": { + "en": [ + "ceramic", + "pot", + "vase" + ], + "de": [ + "töpferwarenladen", + "töpferladen", + "keramik", + "topf", + "vase" + ], + "eo": [ + "porcelano", + "potoj", + "ceramikaĵo" + ], + "es": [ + "cerámica", + "florero", + "vasija", + "maceta" + ], + "fr": [ + "poterie", + "céramique", + "ceramique", + "potier", + "céramiste", + "ceramiste" + ], + "gl": [ + "olaría", + "olería" + ], + "ja": [ + "陶磁器店", + "陶器店", + "皿", + "茶碗", + "焼き物" + ], + "nl": [ + "winkel voor aardewerk" + ], + "pl": [ + "sklep garncarski", + "garncarstwo", + "porcelana", + "ceramika" + ], + "pt": [ + "vasos", + "potes", + "porcelana", + "cerâmica", + "louça" + ], + "sv": [ + "keramikaffär", + "keramik", + "krukor", + "vaser" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-vase.svg", + "class": "medium" + } + }, + { + "if": "shop=printer_ink", + "then": { + "en": "Printer Ink Store", + "ca": "Botiga de tinta d'impressores", + "de": "Druckertintengeschäft", + "eo": "Presil-inka vendejo", + "es": "Tienda de tinta para impresora", + "fi": "Tulostinmustemyymälä", + "fr": "Vendeur d'encre pour imprimante", + "gl": "Tenda de tinta de impresora", + "hu": "Nyomtatófesték bolt", + "it": "Negozio di cartucce per stampanti", + "ja": "プリンタ用インク店", + "nl": "Winkel voor printerinkt", + "pl": "Sklep z tuszami do drukarek", + "pt": "Loja de tinteiros de impressora", + "ru": "Магазин чернил для принтера", + "sv": "Butik för skrivarbläck" + }, + "searchTerms": { + "en": [ + "copier ink", + "fax ink", + "ink cartridges", + "toner" + ], + "de": [ + "kopierertinte", + "faxtinte", + "toner" + ], + "eo": [ + "presilinko", + "inko", + "kartoĉo", + "farbopulvoro" + ], + "es": [ + "tinta", + "cartuchos", + "toner", + "tóner", + "copiadora", + "fax", + "impresora", + "laser", + "chorro de tinta", + "insumos" + ], + "fr": [ + "imprimante", + "fax", + "encre", + "cartouche", + "impression" + ], + "ja": [ + "プリンタ用インク店", + "プリンタ", + "インクカートリッジ", + "トナー" + ], + "nl": [ + "printerinktwinkel" + ], + "pl": [ + "sklep z tuszami do drukarek", + "tusze", + "tonery", + "drukarki" + ], + "pt": [ + "printer", + "loja de tinteiros", + "tinteiro", + "tinteiro para impressora", + "impressão", + "impressora", + "toner", + "cartuchos", + "fotocopiadora", + "fax" + ], + "sv": [ + "butik för skrivarbläck", + "kopieringsbläck", + "skrivarbläck", + "faxbläck", + "bläck", + "skrivartoner", + "toner", + "skrivare", + "kopiator", + "fax" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-print.svg", + "class": "medium" + } + }, + { + "if": "shop=psychic", + "then": { + "en": "Psychic", + "de": "Astrologiker", + "eo": "Laborejo de mediumo", + "es": "Vidente", + "fi": "Psyykikko", + "fr": "Magasin ésotérique psi", + "gl": "Vidente", + "hu": "Jóslás", + "it": "Sensitivo", + "ja": "サイキック店", + "nl": "Medium (esoterie)", + "pl": "Medium", + "pt": "Vidente", + "ru": "Предсказатель", + "sv": "Medium / Psykisk" + }, + "searchTerms": { + "en": [ + "astrology", + "crystal ball", + "divination", + "fortune teller", + "seer", + "spirit" + ], + "de": [ + "astrologie", + "kristallkugel", + "wahrsager", + "seher", + "geist", + "wahrsagungen", + "hellsehen", + "prophezeiung", + "weissagung" + ], + "eo": [ + "mediumo", + "astrologo", + "astrologiisto", + "aŭguristo", + "fantomisto", + "spiritisto" + ], + "es": [ + "astrología", + "bola de cristal", + "adivinación", + "adivina", + "vidente", + "espíritu", + "parapsicológico", + "parasicológico", + "parapsicológo", + "parasicológo", + "parapsicológa", + "parasicológa", + "medium", + "médium" + ], + "fr": [ + "psi", + "esprit", + "astrologie", + "boule de cristal", + "diseur de bonne aventure", + "bonne aventure", + "parapsychologie", + "extrasensoriel", + "psychokinésie" + ], + "it": [ + "astrologia", + "cartomante", + "indovino", + "chiromante" + ], + "ja": [ + "サイキック店", + "超能力" + ], + "nl": [ + "medium", + "waarzegster", + "waarzegger", + "helderziende" + ], + "pl": [ + "medium", + "wróżka", + "wróżbita", + "wróżenie" + ], + "pt": [ + "astrologia", + "médium", + "medium", + "tarot", + "búzios", + "bruxa", + "paranormal", + "espírito", + "astróloga", + "astrólogo", + "mediúnico", + "psíquico" + ], + "ru": [ + "гадалка", + "астрология", + "предстказания" + ], + "sv": [ + "medium", + "synsk", + "spådam", + "spåkvinna", + "spåman", + "astrologi", + "kristallkula", + "spådom", + "seare", + "siare", + "sierska", + "ande", + "klärvoajant", + "klärvoajans", + "parapsykologi", + "tarot", + "tarotkort", + "ockult", + "spiritist" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-psychic.svg", + "class": "medium" + } + }, + { + "if": "shop=pyrotechnics", + "then": { + "en": "Fireworks Store", + "ca": "Botiga d'articles pirotècnics", + "da": "Fyrværkeributik", + "de": "Feuerwerksgeschäft", + "eo": "Art-fajraĵa vendejo", + "es": "Tienda de fuegos artificiales", + "fi": "Ilotulitemyymälä", + "fr": "Magasin de feux d'artifice", + "gl": "Tenda de fogos artificiais", + "hu": "Tűzijátékbolt", + "id": "Toko Kembang Api", + "it": "Negozio di fuochi d'artificio", + "ja": "花火店", + "nl": "Vuurwerkwinkel", + "pl": "Sklep ze sztucznymi ogniami", + "pt": "Loja de pirotecnia", + "ru": "Магазин фейерверков", + "sv": "Fyrverkerier" + }, + "searchTerms": { + "en": [ + "fireworks" + ], + "da": [ + "fyrværkeributik", + "fyrværkeriforretning", + "fyrværkeriudsalg" + ], + "de": [ + "feuerwerksartikelladen", + "feuerwerkskörpergeschäft" + ], + "eo": [ + "artfajraĵoj", + "artfajrajhoj", + "artfajrajxoj", + "fajraĵoj", + "piroteknikaĵoj", + "piroteĥnikaĵoj" + ], + "es": [ + "fuegos artificiales", + "pirotecnia" + ], + "fi": [ + "ilotulite", + "ilotulitus", + "raketti", + "kauppa", + "liike", + "myymälä", + "puoti", + "myyntipiste", + "uusi", + "vuosi", + "uusivuosi", + "raketin", + "raketinammunta" + ], + "fr": [ + "magasin de feux d'artifice" + ], + "gl": [ + "pirotecnia", + "fogos artificiais", + "fogos de artificio" + ], + "hu": [ + "robbanószer", + "tűzijáték", + "petárda", + "csillagszóró", + "pirotechnika" + ], + "it": [ + "botti", + "petardi", + "scoppi", + "magnum", + "raudi", + "miniciccioli", + "fuochi d'artificio", + "razzi" + ], + "ja": [ + "花火店" + ], + "nl": [ + "vuurpijlen", + "buskruit", + "nieuwjaar" + ], + "pl": [ + "sztuczne ognie", + "fajerwerki", + "petardy" + ], + "pt": [ + "fireworks store", + "fogo de artifício", + "pirotecnia", + "foguetes", + "festas" + ], + "ru": [ + "магазин фейерверков", + "фейерверки", + "магазин пиротехники", + "пиротехника", + "магазин петард", + "петарды", + "пиротехнический магазин" + ], + "sv": [ + "fyrverkerier", + "smällare", + "tomtebloss", + "raketer", + "nyårsraketer", + "pyroteknik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-rocket_firework.svg", + "class": "medium" + } + }, + { + "if": "shop=radiotechnics", + "then": { + "en": "Radio/Electronic Component Store", + "ca": "Botiga d'articles electrònics", + "da": "Radio/Elektronikbutik", + "de": "Radio/Elektronik-Geschäft", + "eo": "Radioteĥnika/elektronik-parta vendejo", + "es": "Tienda de componentes radio electrónicos", + "fi": "Elektroniikkakomponenttimyymälä", + "fr": "Magasin de composants électroniques et de radio", + "gl": "Tenda de compoñentes electrónicos", + "hu": "Rádiótechnikai bolt", + "id": "Toko Komponen Radio/Elektronik", + "it": "Negozio di componenti elettronici", + "ja": "電子部品店", + "nl": "Winkel voor radio- en elektronische componenten", + "pl": "Sklep z częściami elektronicznymi", + "pt": "Loja de componentes eletrónicos / rádio", + "ru": "Магазин радиодеталей", + "sl": "Trgovina z elektroniko", + "sv": "Radio/Elektronikbutik" + }, + "searchTerms": { + "en": [ + "antenna", + "transistor" + ], + "da": [ + "radio/elektronikbutik" + ], + "de": [ + "elektronikladen", + "radio/elektro-laden" + ], + "eo": [ + "radioteĥniko", + "radiotekniko", + "elektroniko" + ], + "es": [ + "electrónica", + "radio", + "componentes", + "radioelectrónica" + ], + "fi": [ + "radio", + "elektroniikka", + "komponentti", + "tekninen", + "tekniikka", + "osa", + "osat", + "varaosa" + ], + "fr": [ + "magasin de composants électroniques et de radio" + ], + "gl": [ + "compoñentes", + "electrónica", + "radio" + ], + "hu": [ + "elektronikai alkatrész", + "mérőműszer" + ], + "it": [ + "elettronica", + "componenti elettronici", + "radioamatori" + ], + "ja": [ + "電子部品店", + "ラジオ", + "電子部品", + "電子工作", + "電子パーツ" + ], + "nl": [ + "radiotechniek", + "satelliet-tv" + ], + "pl": [ + "części elektroniczne", + "elektronika", + "radiotechnika", + "mierniki", + "multimetry", + "programatory", + "moduły", + "oscyloskopy", + "zasilacze", + "narzędzia" + ], + "pt": [ + "eletrónica", + "eletrônica", + "electrónica", + "antenas", + "transístores", + "condensadores", + "capacitores", + "relés", + "resistências", + "circuitos integrados" + ], + "ru": [ + "радио", + "радиодетали" + ], + "sv": [ + "radio", + "radiobutik", + "elektronik", + "elektronikbutik", + "radiotillbehör", + "elektronikkomponenter" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-microchip.svg", + "class": "medium" + } + }, + { + "if": "shop=religion", + "then": { + "en": "Religious Store", + "ca": "Botiga d'articles religiosos", + "da": "Religøs forretning", + "de": "Devotionalienhandlung", + "eo": "Devotaĵa vendejo", + "es": "Tienda religiosa", + "fi": "Uskonnollinen myymälä", + "fr": "Magasin d'articles religieux", + "gl": "Tenda relixiosa", + "hu": "Kegytárgybolt", + "id": "Toko Agamawi", + "it": "Negozio di articoli religiosi", + "ja": "宗教用品店", + "nl": "Religieuze winkel", + "pl": "Sklep z dewocjonaliami", + "pt": "Loja de artigos religiosos", + "ru": "Религиозная лавка", + "sv": "Religiös butik" + }, + "searchTerms": { + "da": [ + "religøs forretning" + ], + "de": [ + "devotionalienhandlung", + "religionsbedarfsladen", + "klosterladen", + "kirchenladen" + ], + "eo": [ + "religiaĵoj", + "devotaĵoj", + "devotajhoj", + "devotajxoj", + "religio", + "kultobjektoj" + ], + "es": [ + "religión", + "religioso", + "santerio", + "santos" + ], + "fi": [ + "kristillinen", + "kauppa", + "hengellinen", + "henkinen" + ], + "fr": [ + "boutique d'une église", + "d'un monastère" + ], + "hu": [ + "vallás", + "imakönyv", + "rózsafüzér", + "feszület" + ], + "it": [ + "religione", + "religioso" + ], + "ja": [ + "宗教用品店", + "仏壇", + "仏具", + "祭祀用品", + "信仰" + ], + "nl": [ + "liturgisch centrum", + "kerk", + "godsdienstwinkel", + "kruisbeelden", + "souvenirwinkel" + ], + "pl": [ + "dewocjonalia" + ], + "pt": [ + "religião", + "estátuas", + "santos", + "terços", + "rosários", + "fátima", + "crucifixos" + ], + "ru": [ + "иконы", + "ларёк" + ], + "sv": [ + "religiös", + "religion", + "biblar", + "psalmböcker", + "kyrkobutik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=rental", + "then": { + "en": "Rental Shop", + "da": "Udlejningsforretning", + "de": "Verleih", + "eo": "Pruntejo", + "es": "Tienda de alquiler", + "fi": "Vuokraamo", + "fr": "Magasin de location", + "gl": "Tenda de alugueiro", + "hu": "Kölcsönző", + "it": "Negozio di noleggio", + "ja": "レンタルショップ", + "nl": "Verhuurwinkel", + "pl": "Wypożyczalnia", + "pt": "Loja de aluguer de material em geral", + "ru": "Аренда", + "sv": "Hyrbutik" + }, + "searchTerms": { + "da": [ + "udlejning", + "udleje", + "lån", + "maskine", + "lease" + ], + "de": [ + "verleih", + "ausleihe", + "vermietung von mobilien" + ], + "eo": [ + "pruntado", + "luigado", + "lupreni" + ], + "es": [ + "alquilar", + "alquiler", + "vehículos", + "equipos", + "renta", + "arriendo" + ], + "fr": [ + "magasin", + "boutique", + "location", + "temporaire" + ], + "gl": [ + "alugueiro", + "arrendamento", + "arrendo", + "locación", + "alugamento", + "alquilar", + "alquiler", + "vehículos", + "equipos" + ], + "ja": [ + "レンタルショップ", + "レンタル店", + "お店", + "店舗", + "レンタル用品店", + "ショッピング" + ], + "nl": [ + "verhuurder" + ], + "pl": [ + "wypożyczalnia", + "wynajem", + "wypożyczalnia pojazdów", + "wypożyczalnia sprzętu sportowego" + ], + "pt": [ + "aluguer", + "aluga" + ], + "sv": [ + "hyrbutik", + "hyra", + "uthyrning", + "låna" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-dolly.svg", + "class": "medium" + } + }, + { + "if": "shop=repair", + "then": { + "en": "Repair Shop", + "de": "Reparaturgeschäft", + "eo": "Riparejo", + "es": "Taller de reparaciones", + "fr": "Atelier de réparation", + "hu": "Javítóműhely", + "it": "Bottega di riparazioni", + "ja": "修理店", + "nl": "Reparatiewinkel", + "pl": "Naprawy", + "pt": "Loja de reparações", + "sv": "Reparatör" + }, + "searchTerms": { + "en": [ + "broken", + "fixit shop", + "mend", + "patch", + "refurbish", + "rehabilitate", + "tinker" + ], + "de": [ + "kaputt", + "reparieren", + "flicken", + "renovieren", + "rehabilitieren", + "basteln" + ], + "eo": [ + "riparo" + ], + "es": [ + "taller de reparaciones", + "taller de reparación", + "tienda de reparación", + "refaccionaría", + "roto", + "arreglar", + "reparar", + "restaurar", + "rehabilitar", + "remendar" + ], + "fr": [ + "réparation", + "réhabilitation", + "remise en état", + "rafistolage", + "retouche" + ], + "it": [ + "riparatutto" + ], + "ja": [ + "修理店", + "修理屋" + ], + "nl": [ + "reparatiewinkel" + ], + "pl": [ + "naprawy" + ], + "pt": [ + "consertos", + "restauros" + ], + "sv": [ + "reparatör", + "verkstad", + "trasig", + "laga", + "reparera", + "renovera" + ] + } + }, + { + "if": "shop=scuba_diving", + "then": { + "en": "Scuba Diving Shop", + "ca": "Botiga de submarinisme", + "da": "Dykkerudstyrsbutik", + "de": "Tauchwarengeschäft", + "eo": "Subakvad-aparata vendejo", + "es": "Tienda de buceo", + "fi": "Sukellusliike", + "fr": "Magasin de matériel de plongée sous-marine", + "gl": "Tenda de mergullo", + "hu": "Búvárfelszerelés-bolt", + "id": "Toko Perlengkapan Menyelam", + "it": "Negozio di attrezzatura per subacquei", + "ja": "スキューバダイビングショップ", + "nl": "Duikwinkel", + "pl": "Sklep nurkowy", + "pt": "Loja de equipamento de mergulho", + "ru": "Магазин подводного снаряжения", + "sl": "Trgovina s potapljaško opremo", + "sv": "Dykarbutik" + }, + "searchTerms": { + "en": [ + "diving", + "scuba", + "snorkel" + ], + "da": [ + "dykkerudstyrsbutik" + ], + "de": [ + "tauchladen", + "sporttauchladen" + ], + "eo": [ + "subakvadaparatoj", + "subakvadiloj", + "subakvado", + "plonĝado" + ], + "es": [ + "submarinismo", + "scuba", + "buceo", + "buceo submarino" + ], + "fi": [ + "laitesukellus", + "sukellus", + "sukeltaminen", + "laitesukeltaminen", + "sukelluskauppa", + "sukellusliike" + ], + "fr": [ + "magasin d'équipement et d'articles de plongée sous-marine" + ], + "gl": [ + "mergullo", + "submarinismo", + "scuba", + "buceo", + "mergullo submarino" + ], + "hu": [ + "búvárfelszerelések boltja", + "búvárbolt", + "búvárszakáruház" + ], + "it": [ + "sub", + "accessori sub" + ], + "ja": [ + "スキューバダイビングショップ", + "スキューバダイビング", + "スポーツ", + "運動" + ], + "nl": [ + "diepzeeduiken", + "duiken", + "duiksport", + "scuba" + ], + "pl": [ + "sprzęt do nurkowania", + "nurkowanie" + ], + "pt": [ + "scuba", + "mergulho", + "desporto", + "desportivo", + "água", + "garrafa", + "pesca submarina" + ], + "ru": [ + "маски", + "акваланги", + "кислород", + "подводное плаванье", + "снаряжение", + "оборудование" + ], + "sv": [ + "dykning", + "dykarbutik", + "dykutrustning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-scuba_diving.svg", + "class": "medium" + } + }, + { + "if": "shop=seafood", + "then": { + "en": "Seafood Shop", + "ca": "Marisqueria", + "da": "Fiskehandler", + "de": "Fischgeschäft", + "eo": "Marfrukta vendejo", + "es": "Tienda de pescados y mariscos", + "fi": "Meriruokakauppa", + "fr": "Poissonnerie / Vente de fruits de mer", + "gl": "Peixaría", + "hu": "Halbolt", + "id": "Toko HIdangan Laut", + "it": "Pescheria", + "ja": "魚屋", + "nl": "Viswinkel", + "pl": "Sklep z rybami i owocami morza", + "pt": "Peixaria", + "ru": "Магазин морепродуктов", + "sl": "Ribarnica", + "sv": "Fiskaffär" + }, + "searchTerms": { + "en": [ + "fishmonger" + ], + "da": [ + "fiskehandler", + "fiskebutik" + ], + "de": [ + "fischgeschäft", + "meeresfrüchtegeschäft" + ], + "eo": [ + "marfruktoj", + "fiŝoj", + "fishoj", + "fisxoj", + "fiŝvendejo" + ], + "es": [ + "pescado", + "marisco", + "comida de mar", + "frutos de mar", + "pescadería", + "marisquería" + ], + "fr": [ + "vendeur de poissons", + "fruits de mer", + "écailler", + "conserverie" + ], + "gl": [ + "peixaría", + "peixería", + "peixeiro", + "peixe", + "marisco" + ], + "hu": [ + "halkereskedés", + "halas" + ], + "it": [ + "pesce fresco", + "ittica" + ], + "ja": [ + "海鮮食品店", + "魚屋", + "魚市場", + "食品", + "魚介", + "食べ物", + "干物", + "昆布", + "イカ", + "タコ", + "海苔", + "食料品", + "店舗", + "お店" + ], + "nl": [ + "visverkoper" + ], + "pl": [ + "sklep rybny", + "ryby", + "owoce morza" + ], + "pt": [ + "peixe", + "seafood", + "camarão", + "lagosta", + "caranguejo", + "ameijoas", + "mexilhões", + "peixes", + "polvo", + "lulas", + "peixe fresco", + "congelados", + "sardinhas", + "carapau" + ], + "ru": [ + "морепродукты", + "рыба", + "рыбный" + ], + "sl": [ + "morska hrana", + "ribe", + "škampi", + "hitra hrana" + ], + "sv": [ + "fiskaffär", + "fisk", + "skaldjur", + "fiskhandlare", + "bläckfisk", + "räkor", + "hummer", + "krabba", + "ostron", + "musslor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-fish_cleaning.svg", + "class": "medium" + } + }, + { + "if": "shop=second_hand", + "then": { + "en": "Consignment/Thrift Store", + "ca": "Consigna", + "da": "Genbrugsbutik", + "de": "Second-Hand-Laden", + "eo": "Brokantejo", + "es": "Tienda de segunda mano", + "fi": "Käytetyn tavaran kauppa", + "fr": "Dépôt-vente/produits d'occasion", + "gl": "Tenda de segunda man", + "hu": "Használtáru-bolt", + "id": "Jual Titip/Pasar Loak", + "it": "Negozio di articoli usati", + "ja": "リサイクルショップ", + "nl": "Tweedehandswinkel", + "pl": "Sklep z rzeczami używanymi", + "pt": "Loja de produtos em segunda mão", + "ru": "Магазин секонд хенда", + "sv": "Second hand" + }, + "searchTerms": { + "en": [ + "secondhand", + "second hand", + "resale", + "thrift", + "used" + ], + "da": [ + "velgørenhedsbutik", + "velgørenhedsforretning", + "genbrugsbutik" + ], + "de": [ + "second-hand-laden", + "trödel", + "trödelladen", + "gebrauchtwarenladen", + "brockenhaus", + "brockenstube", + "brocki" + ], + "eo": [ + "lambardejo", + "eluzitaĵoj", + "uzitaĵoj", + "malnovaĵoj" + ], + "es": [ + "segunda mano", + "usado", + "productos usados", + "reventa" + ], + "fi": [ + "kirpputori", + "myymälä", + "liike", + "kauppa", + "second hand", + "käytetty", + "käytettyä", + "käytetyn", + "tavara", + "jälleenmyynti", + "vertaiskauppa", + "osto- ja myyntiliike" + ], + "fr": [ + "produits de seconde main" + ], + "hu": [ + "használtruha bolt", + "turkáló", + "turi", + "turkáló butik", + "bálás bolt", + "használtcikk" + ], + "id": [ + "konsinyasi/toko barang bekas" + ], + "it": [ + "seconda mano", + "rivendita", + "risparmio", + "usato", + "mercatino" + ], + "ja": [ + "古物商", + "リユースショップ", + "中古", + "リサイクルショップ", + "中古屋", + "リサイクル", + "リユース" + ], + "nl": [ + "hergebruik", + "doorverkoop" + ], + "pl": [ + "second hand", + "komis", + "używane rzeczy", + "rzeczy używane" + ], + "pt": [ + "consignment", + "thrift store", + "loja de consignação", + "2ª mão", + "usados", + "usado", + "segunda mão", + "consignação", + "roupa usada", + "2.ª mão" + ], + "ru": [ + "секондхенд", + "секонд хенд", + "секонд", + "комиссионный" + ], + "sv": [ + "second hand", + "loppis", + "loppmarknad", + "secondhand" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=sewing", + "then": { + "en": "Sewing Supply Shop", + "ca": "Merceria", + "da": "Syforretning", + "de": "Kurzwarenladen", + "eo": "Kudrilar-vendejo", + "es": "Tienda de suministros de costura", + "fi": "Ompelutarvikeliike", + "fr": "Magasin de couture", + "gl": "Tenda de artigos de costura", + "hu": "Varrásfelszerelés bolt", + "it": "Merceria", + "ja": "手芸用品店", + "nl": "Naaiwinkel", + "pl": "Pasmanteria", + "pt": "Retrosaria", + "ru": "Швейные принадлежности", + "sv": "Sybutik" + }, + "searchTerms": { + "en": [ + "haberdashery" + ], + "da": [ + "sy", + "syning", + "stof", + "garn", + "symaskine", + "nørkleri", + "kreativ" + ], + "de": [ + "nähzubehörgeschäft" + ], + "eo": [ + "pasamento", + "kudriloj", + "ŝtofo", + "teksaĵo", + "pingloj" + ], + "es": [ + "tienda de suministros de costura", + "costura", + "mercería" + ], + "fr": [ + "magasin de couture", + "magasin de matériel de couture" + ], + "gl": [ + "tenda de subministros de costura", + "costura", + "mercería", + "merzaría", + "artigos", + "obxectos", + "cosedura", + "confeccion", + "corte" + ], + "hu": [ + "varrógép", + "kézimunka" + ], + "it": [ + "prodotti per cucito", + "cucito" + ], + "ja": [ + "手芸用品店", + "裁縫用品店", + "手芸", + "裁縫", + "毛糸", + "縫い物", + "編み物", + "編物用品", + "店", + "針", + "糸" + ], + "nl": [ + "naaimachine", + "stofwinkel" + ], + "pl": [ + "pasmanteria", + "sklep krawiecki", + "maszyny do szycia", + "szycie", + "tkaniny", + "nici", + "guziki" + ], + "pt": [ + "loja de suplementos de costura", + "costura", + "retroseria", + "retrozeria", + "retrozaria", + "retrozeiro", + "retroseiro", + "retrozeira", + "retroseira", + "linhas", + "croché", + "agulhas", + "costurar" + ], + "ru": [ + "нитки", + "иголки", + "ткани", + "молние", + "фурнитура", + "полоски", + "напёрстки" + ], + "sv": [ + "sybutik. sömnadsbutik", + "sy", + "sömnad", + "nå", + "tråd", + "tyg", + "garn", + "symaskin" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-needle_and_spool.svg", + "class": "medium" + } + }, + { + "if": "shop=shoe_repair", + "then": { + "en": "Shoe Repair Shop", + "ca": "Sabater", + "de": "Schuhreparatur", + "eo": "Ŝu-riparejo", + "es": "Taller de reparación de calzado", + "fr": "Cordonnier", + "gl": "Tenda de arranxo de zapatos", + "hu": "Cipőjavítás", + "it": "Calzolaio", + "ja": "靴修理店", + "nl": "Schoenenreparatiewinkel", + "pl": "Szewc (naprawa obuwia)", + "pt": "Reparador de sapatos", + "ru": "Ремонт обуви", + "sv": "Skomakare" + }, + "searchTerms": { + "en": [ + "cobbler" + ], + "de": [ + "kopfsteinpflaster" + ], + "eo": [ + "ŝuriparejo", + "shuriparejo", + "sxuriparejo", + "ŝuisto", + "botisto" + ], + "es": [ + "zapatero", + "taller de reparación de calzado", + "tienda de reparación de calzado" + ], + "fr": [ + "cordonnerie", + "cordonnier réparation de chaussures" + ], + "gl": [ + "zapateiro", + "arranxo de zapatos", + "reparación de zapatos", + "arranxo de calzado", + "reparación de calzado" + ], + "hu": [ + "cipész" + ], + "ja": [ + "靴修理店", + "靴屋", + "靴" + ], + "nl": [ + "schoenenmaker" + ], + "pl": [ + "naprawa obuwia", + "szewc", + "obuwie", + "buty" + ], + "pt": [ + "reparação", + "sapateiro", + "sapatos", + "calçado" + ], + "sv": [ + "skomakare", + "skor", + "skoreparatör", + "skoreparation" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-hammer_shoe.svg", + "class": "medium" + } + }, + { + "if": "shop=shoes", + "then": { + "en": "Shoe Store", + "ca": "Sabateria", + "da": "Skobutik", + "de": "Schuhgeschäft", + "eo": "Ŝua vendejo", + "es": "Zapatería", + "fi": "Kenkäkauppa", + "fr": "Magasin de chaussures", + "gl": "Zapataría", + "hu": "Cipőbolt", + "id": "Toko Sepatu", + "it": "Negozio di scarpe", + "ja": "靴店", + "nl": "Schoenenwinkel", + "pl": "Sklep obuwniczy", + "pt": "Sapataria", + "ru": "Обувь", + "sl": "Trgovina s čevlji", + "sv": "Skoaffär" + }, + "searchTerms": { + "en": [ + "boots", + "cleats", + "clogs", + "heels", + "loafers", + "oxfords", + "sneakers" + ], + "ca": [ + "sabateria", + "botiga de sabates", + "sabater" + ], + "da": [ + "skobutik", + "skoforretning" + ], + "de": [ + "schuhgeschäft", + "schuhladen" + ], + "eo": [ + "ŝuoj", + "shuoj", + "sxuoj", + "botoj", + "ŝuovendejo", + "botvendejo" + ], + "es": [ + "zapato", + "zapatilla", + "calzado", + "sandalia", + "chancla", + "alpargata", + "zapatería" + ], + "fr": [ + "magasin de chaussures" + ], + "hu": [ + "cipő", + "papucs", + "csizma", + "lábbeli", + "bakancs" + ], + "it": [ + "negozio scarpe" + ], + "ja": [ + "靴店" + ], + "nl": [ + "schoenenzaak", + "schoenenhandel" + ], + "pl": [ + "obuwie", + "buty" + ], + "pt": [ + "loja de sapatos", + "sapatos", + "calçado", + "botas", + "chinelos", + "sapatilhas", + "ténis" + ], + "ru": [ + "обувь", + "обувной магазин" + ], + "sl": [ + "obutev", + "trgovina z obutvij" + ], + "sv": [ + "skoaffär", + "skor", + "skobutik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shoe.svg", + "class": "medium" + } + }, + { + "if": "shop=spices", + "then": { + "en": "Spice Shop", + "ca": "Botiga d'espècies", + "da": "Kryddeributik", + "de": "Gewürzladen", + "eo": "Spica vendejo", + "es": "Tienda de especias", + "fi": "Maustekauppa", + "fr": "Magasin d'épices", + "gl": "Tenda de especias", + "hu": "Fűszerbolt", + "it": "Negozio di spezie", + "ja": "スパイス店", + "nl": "Kruidenwinkel", + "pl": "Sklep z przyprawami", + "pt": "Loja de especiarias", + "ru": "Магазин специй", + "sv": "Affär för kryddor" + }, + "searchTerms": { + "en": [ + "chili", + "cinnamon", + "curry", + "ginger", + "herbs", + "pepper", + "saffron", + "salt", + "spice store", + "spices", + "turmeric", + "wasabi" + ], + "da": [ + "krydderi", + "urter", + "salt", + "peber", + "kanel", + "ingefær", + "saffron", + "gurkemeje" + ], + "de": [ + "gewürze", + "chili", + "zimt", + "curry", + "ingwer", + "kräuter", + "pfeffer", + "safran", + "salz", + "kurkuma", + "wasabi" + ], + "eo": [ + "spicovendejo", + "spicoj", + "kondimentoj", + "gustigaĵoj", + "papriko", + "cinamo", + "vasabio", + "nuksoj", + "sekigitaj fruktoj", + "aromherboj", + "herboj" + ], + "es": [ + "chile", + "canela", + "curry", + "jengibre", + "hierbas", + "pimienta", + "azafrán", + "sal", + "tienda de especias", + "especias", + "cúrcuma", + "wasabi" + ], + "fr": [ + "épices", + "chili", + "curry", + "cannelle", + "gingembre", + "poivre", + "safran", + "sel", + "wasabi" + ], + "hu": [ + "delikátesz" + ], + "ja": [ + "スパイス店", + "香辛料店", + "お店", + "ショッピング", + "小売", + "店舗", + "食品", + "食べ物", + "食料品" + ], + "nl": [ + "kruidenwinkel" + ], + "pl": [ + "przyprawy", + "zioła", + "suszone owoce", + "orzechy" + ], + "pt": [ + "especiarias", + "temperos", + "canela", + "curry", + "gengibre", + "açafrão", + "pimenta", + "sal", + "caril", + "frutos secos", + "ervas", + "chás" + ], + "ru": [ + "специи" + ], + "sv": [ + "affär för kryddor", + "kryddor", + "chili", + "kanel", + "curry", + "ingefära", + "örter", + "peppar", + "saffran", + "salt", + "kryddbutik", + "gurkmeja", + "wasabi" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-spice_bottle.svg", + "class": "medium" + } + }, + { + "if": "shop=sports", + "then": { + "en": "Sporting Goods Store", + "ca": "Botiga d'esports", + "da": "Sportsudstyrsbutik", + "de": "Sportgeschäft", + "eo": "Sporta vendejo", + "es": "Tienda de artículos deportivos", + "fi": "Urheiluliike", + "fr": "Magasin d'équipement sportif", + "gl": "Tenda de deportes", + "hu": "Sportbolt", + "id": "Toko Olahraga", + "it": "Negozio di articoli sportivi", + "ja": "スポーツ用品店", + "nl": "Sportzaak", + "pl": "Sklep sportowy", + "pt": "Loja de artigos desportivos", + "ru": "Спорттовары", + "sl": "Športna trgovina", + "sv": "Sportaffär" + }, + "searchTerms": { + "en": [ + "athletics" + ], + "da": [ + "sportsudstyrsbutik", + "sportsforretning" + ], + "de": [ + "sporthandlung" + ], + "eo": [ + "sportovendejo", + "vestovendejo" + ], + "es": [ + "deporte", + "deportivo" + ], + "fi": [ + "urheilu", + "kauppa", + "liike", + "putiikki", + "myymälä", + "urheilukauppa", + "urheilumyymälä", + "liikunta" + ], + "fr": [ + "magasin d'équipement sportif" + ], + "hu": [ + "sportfelszerelés", + "sportszer", + "sportruházat" + ], + "it": [ + "negozio di articoli sportivi" + ], + "ja": [ + "スポーツ用品店", + "運動", + "競技", + "トレーニング", + "訓練" + ], + "nl": [ + "sportwinkel", + "sportkledij", + "sportattributen", + "sporttoebehoren", + "sportgerief" + ], + "pl": [ + "sprzęt sportowy" + ], + "pt": [ + "loja de desporto", + "artigos", + "acessórios", + "desporto", + "ar livre", + "atletismo", + "futebol", + "voleibol", + "basquetbol", + "andebol", + "futsal", + "ténis", + "squash", + "trekking", + "caminhada", + "escalada", + "pugilismo", + "boxe", + "artes marciais", + "hóquei" + ], + "ru": [ + "магазин спорттоваров", + "спорттовары", + "спортивные товары" + ], + "sl": [ + "športni rekviziti" + ], + "sv": [ + "sportaffär", + "sportutrustning", + "sportkläder", + "träningskläder", + "träningsutrustning", + "träningsskor", + "löpskor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-futbol.svg", + "class": "medium" + } + }, + { + "if": "shop=stationery", + "then": { + "en": "Stationery Store", + "ca": "Papereria", + "da": "Papirforhandler", + "de": "Schreibwarengeschäft", + "eo": "Papervara vendejo", + "es": "Artículos de papelería y oficina", + "fi": "Toimistotarvikekauppa", + "fr": "Papeterie", + "gl": "Papelaría", + "hu": "Papírbolt", + "id": "Toko Alat Tulis", + "it": "Negozio di cancelleria", + "ja": "文具店", + "nl": "Kantoorboekhandel", + "pl": "Sklep papierniczy", + "pt": "Papelaria", + "ru": "Канцелярские товары", + "sl": "Papirnica", + "sv": "Pappershandel" + }, + "searchTerms": { + "en": [ + "card", + "paper" + ], + "da": [ + "papirforhandler", + "kontorforsyning" + ], + "de": [ + "schreibwarenladen", + "bürobedarfsladen", + "schreibwarenhandel", + "bürobedarf" + ], + "eo": [ + "papervarejo" + ], + "es": [ + "papel", + "papelería", + "escritorio", + "oficina", + "artículos de papelería", + "material de papelería", + "material de escritorio", + "papel de escribir", + "artículos de oficina", + "librería", + "libreria", + "artículos escolares", + "papelera" + ], + "fr": [ + "papeterie" + ], + "hu": [ + "papír", + "írószer", + "nyomtatvány", + "irodaszer" + ], + "it": [ + "cartoleria" + ], + "ja": [ + "文具店", + "文房具屋" + ], + "nl": [ + "kaart", + "papier", + "kantoorbenodigdheden", + "kantoorartikelen" + ], + "pl": [ + "papierniczy" + ], + "pt": [ + "stationery", + "loja de material de escritório", + "papel", + "artigos escolares", + "escola", + "postais", + "envelopes", + "canetas", + "lápis" + ], + "ru": [ + "канцелярский магазин", + "канцтовары" + ], + "sl": [ + "pisarniški material" + ], + "sv": [ + "pappersvaror", + "pappershandel", + "papper", + "anteckningsböcker", + "grattiskort", + "kuvert", + "pennor", + "kontorsmaterial", + "kort" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-paperclip.svg", + "class": "medium" + } + }, + { + "if": "shop=storage_rental", + "then": { + "en": "Storage Rental", + "ca": "Lloguer de magatzem", + "da": "Lagerhotel", + "de": "Lagerraumvermieter", + "eo": "Magazena spaco por lui", + "es": "Alquiler de espacios para almacenaje", + "fi": "Varastonvuokrauspalvelu", + "fr": "Location de stockage - Ne pas utiliser", + "gl": "Alugueiro de almacéns", + "hu": "Tárolóhely bérbeadása", + "it": "Box a noleggio", + "ja": "レンタル倉庫", + "nl": "Zelfopslag", + "pl": "Przechowalnia rzeczy (długoterminowa)", + "pt": "Aluguer de depósitos", + "ru": "Аренда складских помещений", + "sl": "Najem shrambnih prostorov", + "sv": "Hyrlager" + }, + "searchTerms": { + "en": [ + "device storage", + "garages", + "self storage", + "self-service storage", + "storage lockers", + "storage units" + ], + "da": [ + "lagerhotel", + "opbevaringshotel" + ], + "de": [ + "lagerraum-vermieter", + "einlagerplatz-vermieter", + "selfstorage", + "selbstlagerzentrum", + "mietlager" + ], + "eo": [ + "konservejo", + "magazeno privata" + ], + "es": [ + "almacenamiento", + "almacén", + "almacenaje", + "depósito", + "baulera", + "alquiler", + "renta", + "arrendamiento", + "arriendo", + "autoalmacenaje", + "trasteros", + "alquiler de trasteros", + "almacenamiento mini", + "mini", + "almacén de mini", + "guardamuebles", + "espacios de almacenamiento", + "almacenes", + "minialmacenes" + ], + "fr": [ + "location de stockage - ne pas utiliser" + ], + "gl": [ + "almacenamento", + "almacén", + "almacenaxe", + "depósito", + "baulera", + "aluguer", + "renta", + "arrendamento", + "locación", + "arrendo", + "alugamento" + ], + "hu": [ + "tárolás", + "raktárbérlés", + "parkolóhelybérlés" + ], + "it": [ + "affitto magazzino", + "deposito" + ], + "ja": [ + "貸し倉庫", + "レンタルボックス", + "貸しコンテナ", + "貸倉庫", + "倉庫", + "レンタル倉庫", + "レンタル収納", + "レンタル収納スペース", + "トランクルーム", + "コンテナ収納", + "荷物" + ], + "nl": [ + "selfstorage", + "opslagruimte" + ], + "pl": [ + "przechowalnia rzeczy", + "magazyny samoobsługowe", + "magazyn samoobsługowy", + "wynajem magazynów", + "komórki do wynajęcia", + "magazyny do wynajęcia" + ], + "pt": [ + "estoque", + "armazenamento", + "depósito", + "armazém", + "armazéns" + ], + "sv": [ + "hyrlager", + "långtidslager", + "vinterförvaring", + "förråd", + "magasinera", + "magasinering", + "förvaring", + "förrådsutrymme", + "båtförvaring", + "säsongsförvaring", + "möbelförvaring", + "bilförvaring", + "husvagnsförvaring" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-storage_rental.svg", + "class": "medium" + } + }, + { + "if": "shop=supermarket", + "then": { + "en": "Supermarket", + "ca": "Supermercat", + "da": "Supermarked", + "de": "Supermarkt", + "eo": "Superbazaro", + "es": "Supermercado", + "fi": "Supermarketti", + "fr": "Supermarché", + "gl": "Supermercado", + "hu": "Szupermarket", + "id": "Supermarket", + "it": "Supermercato", + "ja": "スーパーマーケット", + "nl": "Supermarkt", + "pl": "Supermarket", + "pt": "Supermercado / Hipermercado", + "ru": "Супермаркет", + "sl": "Supermarket", + "sv": "Mataffär" + }, + "searchTerms": { + "en": [ + "grocery", + "store", + "shop", + "grocery store", + "market", + "food market" + ], + "ca": [ + "supermercat", + "súper", + "hipermercat", + "híper" + ], + "da": [ + "supermarked", + "lavprisbutik", + "discountbutik" + ], + "de": [ + "supermarkt", + "lebensmittel" + ], + "eo": [ + "vendejaro", + "vendejego" + ], + "es": [ + "supermercado", + "supermercados", + "cadena de supermercados", + "hipermercado" + ], + "fr": [ + "supermarché" + ], + "hu": [ + "szupermarket", + "élelmiszerbolt", + "hipermarket", + "abc", + "cba", + "spar", + "aldi", + "lidl", + "penny", + "auchan", + "tesco" + ], + "id": [ + "pasar swalayan" + ], + "ja": [ + "スーパーマーケット", + "スーパー", + "買い物", + "ショッピング" + ], + "nl": [ + "supermarkt", + "grootwarenhuis" + ], + "pl": [ + "supermarket", + "hipermarket", + "market", + "sklep spożywczy", + "dyskont", + "żywność", + "aldi", + "auchan", + "biedronka", + "carrefour", + "chata polska", + "delikatesy centrum", + "dino", + "e.leclerc", + "intermarché", + "kaufland", + "lewiatan", + "lidl", + "netto", + "piotr i paweł", + "polomarket", + "stokrotka", + "tesco" + ], + "pt": [ + "hiper-mercado", + "hiper mercado", + "super-mercado", + "super mercado", + "compras", + "loja" + ], + "ru": [ + "гипермаркет", + "сумермаркет" + ], + "sl": [ + "supermarker", + "velika samopostrežna trgovina" + ], + "sv": [ + "självbetjäningsbutik", + "självköp", + "supermarket", + "snabbköp", + "dagligvarubutik", + "affär", + "mataffär", + "livsmedel", + "livsmedelsbutik", + "mat", + "stormarknad" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-grocery.svg", + "class": "medium" + } + }, + { + "if": "shop=swimming_pool", + "then": { + "en": "Pool Supply Store", + "de": "Swimmingpoolbedarf", + "eo": "Vendejo de naĝej-akcesoriaĵoj", + "es": "Tienda de suministros para piscinas", + "fi": "Uima-allasliike", + "fr": "Magasin de matériel de piscine", + "gl": "Tenda de subministracións para piscinas", + "hu": "Uszodatechnika-bolt", + "it": "Negozio per rifornimenti per piscina", + "ja": "プール用品店", + "nl": "Winkel voor zwembadbenodigdheden", + "pl": "Sklep z akcesoriami do basenów", + "pt": "Loja de acessórios para piscinas", + "sv": "Butik för pooltillbehör" + }, + "searchTerms": { + "en": [ + "hot tub equipment store", + "hot tub maintenance store", + "hot tub supply store", + "pool shop", + "pool store", + "swimming pool equipment store", + "swimming pool installation store", + "swimming pool maintenance store", + "swimming pool supply shop" + ], + "de": [ + "swimmingpoolbedarf" + ], + "eo": [ + "naĝejo", + "naĝbaseno" + ], + "es": [ + "equipos para jacuzzis", + "cuidado de jacuzzis", + "suministros para jacuzzis", + "tienda de piscinas", + "piscinas", + "instalación de piscinas", + "mantenimiento de piscinas", + "insumos de piscinas", + "jacuzzi", + "piscina", + "pileta", + "alberca" + ], + "fr": [ + "spa", + "cuve thermale", + "maintenance", + "piscine" + ], + "hu": [ + "medence" + ], + "ja": [ + "プール用品店", + "スポーツ", + "遊泳プール", + "店舗", + "お店", + "ショッピング", + "小売", + "運動" + ], + "nl": [ + "zwembadwinkel" + ], + "pl": [ + "sklep z akcesoriami do basenów", + "akcesoria do basenów", + "materiały do basenów", + "baseny" + ], + "pt": [ + "pool supply store", + "artigos para piscinas", + "piscina", + "picina", + "pissina", + "pisina", + "jacúzi" + ], + "sv": [ + "pooltillbehörsbutik", + "badtunna", + "poolbutik", + "poolutrustningsbutik", + "poolinstallationsbutik", + "poolunderhållsbutik", + "poolbutikleveransbutik´", + "poolinstallation", + "poolunderhåll", + "poolservice", + "pool", + "basäng", + "jacussy" + ] + } + }, + { + "if": "shop=tailor", + "then": { + "en": "Tailor", + "ca": "Sastreria", + "da": "Skrædder", + "de": "Schneider", + "eo": "Tajlora laborejo/vendejo", + "es": "Sastrería", + "fi": "Räätäliliike", + "fr": "Tailleur", + "gl": "Xastraría", + "hu": "Szabó", + "id": "Tukang Jahit", + "it": "Sartoria", + "ja": "仕立屋", + "nl": "Kleermaker", + "pl": "Krawiec / usługi krawieckie", + "pt": "Alfaiate", + "ru": "Портной", + "sl": "Krojač", + "sv": "Skräddare" + }, + "searchTerms": { + "en": [ + "clothes", + "suit" + ], + "da": [ + "skrædder" + ], + "de": [ + "schneider", + "herrenschneider", + "änderungsschneiderei", + "änderungsservice" + ], + "eo": [ + "tajloro" + ], + "es": [ + "sastre", + "taller de costura", + "costura", + "taller de sastrería", + "sastrería" + ], + "fr": [ + "habilleur", + "giletier" + ], + "gl": [ + "xastre", + "sastre", + "obradoiro de cosedura", + "cosedura", + "confección", + "taller de costura", + "costura", + "xastrería", + "xastraría", + "xastraria", + "xastreria", + "obradoiro de costura", + "taller de sastrería", + "sastrería" + ], + "hu": [ + "szabóság", + "mértékutáni", + "ruhakészítő" + ], + "it": [ + "sarto", + "vestiti", + "abiti" + ], + "ja": [ + "仕立屋", + "テイラー", + "洋裁店", + "衣類", + "衣料", + "仕立て屋", + "縫製", + "服", + "スーツ" + ], + "nl": [ + "maatwerk", + "kleren", + "kledij", + "kostuum" + ], + "pl": [ + "krawiec", + "krawcowa", + "szycie na miarę", + "odzież na miarę", + "rzemiosło", + "rzemieślnik", + "rzemieślnicy" + ], + "pt": [ + "tailor", + "vestido", + "fato", + "roupa", + "vestuário", + "traje" + ], + "ru": [ + "ателье", + "одежда", + "костюм", + "платье", + "заказ" + ], + "sl": [ + "krojač", + "oblačila" + ], + "sv": [ + "skräddare", + "kläder", + "kostym", + "klänning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-needle_and_spool.svg", + "class": "medium" + } + }, + { + "if": "shop=tattoo", + "then": { + "en": "Tattoo Parlor", + "ca": "Centre de tatuatges", + "da": "Tatovør", + "de": "Tätowierer", + "eo": "Salono de tatuado", + "es": "Salón de tatuajes", + "fi": "Tatuointisalonki", + "fr": "Salon de tatouage", + "gl": "Salón de tatuaxes", + "hu": "Tetováló szalon", + "id": "Jasa Pembuatan Tato", + "it": "Tatuatore", + "ja": "タトゥースタジオ", + "nl": "Tattoozetter", + "pl": "Studio tatuażu", + "pt": "Estúdio de tatuagens", + "ru": "Тату салон", + "sl": "Salon za tetovažo", + "sv": "Tatueringsstudio" + }, + "searchTerms": { + "en": [ + "ink" + ], + "da": [ + "tatovør", + "tatovørforretning" + ], + "de": [ + "tätowierungsladen", + "peckerlstube", + "tattoostudio", + "tätowierer" + ], + "eo": [ + "tatuoj", + "tatuejo", + "tatuado" + ], + "es": [ + "tatuaje", + "tatuar", + "tattoo" + ], + "fr": [ + "salon de tatouage" + ], + "hu": [ + "tetoválás", + "piercing", + "tatoo" + ], + "it": [ + "tatuaggi" + ], + "ja": [ + "刺青屋", + "美容" + ], + "nl": [ + "tattooshop", + "tattoeëerder", + "tattoeagezetter", + "tattooartist" + ], + "pl": [ + "studio tatuażu", + "salon tatuażu", + "tatuażysta", + "tatuaże" + ], + "pt": [ + "tattoo parlor", + "tatuagens", + "tatuagem", + "tatuador", + "tatuar" + ], + "ru": [ + "тату", + "татуировки" + ], + "sv": [ + "tatueringsstudio", + "tatueringssalong", + "tatuera", + "tatuerare", + "tatuering" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tattoo_machine.svg", + "class": "medium" + } + }, + { + "if": "shop=tea", + "then": { + "en": "Tea Store", + "ca": "Botiga de te", + "da": "Tebutik", + "de": "Teegeschäft", + "eo": "Tea vendejo", + "es": "Tienda de té", + "fi": "Teekauppa", + "fr": "Magasin de thés", + "gl": "Tenda de té", + "hu": "Teaüzlet", + "id": "Toko Teh", + "it": "Negozio di tè", + "ja": "茶舗", + "nl": "Theewinkel", + "pl": "Sklep z herbatą", + "pt": "Loja de chás", + "ru": "Чайный магазин", + "sl": "Čajnica", + "sv": "Te-butik" + }, + "searchTerms": { + "da": [ + "tebutik", + "teforhandler", + "tehandler" + ], + "de": [ + "teegeschäft", + "teeladen" + ], + "eo": [ + "teo", + "teejo" + ], + "es": [ + "te", + "infusión", + "té", + "tienda de té" + ], + "fr": [ + "magasin de thés" + ], + "hu": [ + "teabolt", + "teázó" + ], + "it": [ + "te", + "té", + "tè", + "teieria" + ], + "ja": [ + "茶舗", + "茶店", + "食品", + "お茶", + "緑茶", + "飲み物", + "店舗", + "小売", + "嗜好品" + ], + "nl": [ + "theehuis" + ], + "pl": [ + "sklep z herbatami", + "herbaty" + ], + "pt": [ + "tea store", + "chá", + "ervas", + "medicinal", + "medicinais" + ], + "ru": [ + "магазин чая", + "чайный магазин", + "чайная лавка", + "лавка чая" + ], + "sl": [ + "čaj" + ], + "sv": [ + "te", + "the", + "påste", + "örtte", + "thé", + "teblad" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-teahouse.svg", + "class": "medium" + } + }, + { + "if": "shop=telecommunication", + "then": { + "en": "Telecom Retail Store", + "de": "Telekommunikationsfachgeschäft", + "eo": "Oficejo de telekomunikada firmao (vendo)", + "es": "Tienda minorista de telecomunicaciones", + "fi": "Teleoperaattorin myymälä", + "fr": "Magasin de compagnie de télécommunication", + "gl": "Tenda de subministracións de telecomunicación", + "hu": "Telekommunikációs üzlet", + "it": "Negozio al dettaglio di Telefonia", + "ja": "通信サービス店", + "nl": "Telecomwinkel", + "pl": "Dostawca Internetu/telefonu/TV", + "pt": "Loja de telecomunicações", + "sv": "Telekombutik" + }, + "searchTerms": { + "en": [ + "communication", + "internet service provider", + "isp", + "network", + "telephone", + "voice" + ], + "de": [ + "kommunikation", + "internet service provider", + "isp", + "netzwerk", + "telefon", + "stimme" + ], + "eo": [ + "interretprovizanto", + "televidprovizanto", + "provizanto de retkonekto", + "retkonekto", + "isp", + "telefono" + ], + "es": [ + "comunicación", + "proveedor de servicios de internet", + "isp", + "red", + "teléfono", + "voz" + ], + "fr": [ + "communication", + "télécommunication", + "internet", + "fai", + "fournisseur d'accès internet", + "isp", + "téléphone", + "voip", + "voix sur ip", + "portable" + ], + "hu": [ + "mobiltelefon" + ], + "ja": [ + "通信サービス店", + "isp", + "インターネット", + "接続サービス", + "プロバイダ" + ], + "nl": [ + "telefoonwinkel" + ], + "pl": [ + "dostawca internetu", + "dostawca usług internetowych", + "usługodawca internetowy", + "isp", + "telewizja kablowa", + "kablówka", + "telefon", + "telekomunikacja" + ], + "pt": [ + "comunicações", + "internet", + "isp", + "telefones", + "celulares" + ], + "sv": [ + "telekombutik", + "kommunikation", + "internetleverantör", + "isp", + "nätverk", + "telefon", + "röst", + "talkommunikation", + "tele", + "internet" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-telephone.svg", + "class": "medium" + } + }, + { + "if": "shop=ticket", + "then": { + "en": "Ticket Seller", + "ca": "Venedor de tiquets", + "da": "Billetsælger", + "de": "Eintrittskartenverkäufer", + "eo": "Biletejo", + "es": "Venta de boletos", + "fi": "Lipunmyyntipiste", + "fr": "Boutique de vente de billets", + "gl": "Venda de entradas", + "hu": "Jegypénztár", + "id": "Penjual Tiket", + "it": "Biglietteria", + "ja": "チケット店", + "nl": "Ticketverkoop", + "pl": "Sprzedaż biletów", + "pt": "Bilheteira", + "ru": "Билетная касса", + "sl": "Prodajalna vstopnic", + "sv": "Biljettförsäljning" + }, + "searchTerms": { + "en": [ + "box office" + ], + "da": [ + "billetsælger", + "billetbutik" + ], + "de": [ + "ticketoffice", + "kartenbüro", + "eintrittskartengeschäft", + "vorverkaufsstelle" + ], + "eo": [ + "biletoj", + "biletvendejo" + ], + "es": [ + "ticket", + "boleto", + "billete", + "entrada", + "venta" + ], + "fi": [ + "lippupalvelu", + "lippu", + "liput", + "lippupiste", + "matkalippu", + "konserttilippu", + "tapahtumalippu", + "pääsylippu", + "pääsyliput" + ], + "fr": [ + "boutique de vente de billets", + "billetterie" + ], + "hu": [ + "koncertjegy", + "színházjegy", + "hajójegy", + "jegyiroda" + ], + "it": [ + "biglietti", + "biglietteria" + ], + "ja": [ + "チケット店", + "金券ショップ", + "チケット" + ], + "nl": [ + "toegangskaartjes", + "ticketjes" + ], + "pl": [ + "kasa biletowa", + "kasy", + "bilety" + ], + "pt": [ + "ticket", + "bilheteria", + "bilhete", + "ingresso" + ], + "ru": [ + "концертные билеты", + "билетная касса", + "проездные билеты" + ], + "sl": [ + "ticket", + "vstopnica", + "karta", + "kartica", + "prodajalna", + "koncerti", + "dogodki", + "razstave" + ], + "sv": [ + "biljettförsäljning", + "biljetter", + "biljettkassa", + "biljettsäljare", + "biljettkontor", + "biljettlucka", + "biljettåterförsäljare" + ] + } + }, + { + "if": "shop=tiles", + "then": { + "en": "Tile Shop", + "ca": "Botiga de rajoles", + "da": "Fliseforhandler", + "de": "Fliesenhändler", + "eo": "Kahela vendejo", + "es": "Tienda de azulejos", + "fi": "Laattamyymälä", + "fr": "Magasin de carrelage", + "gl": "Tenda de azulexos", + "hu": "Csempebolt", + "it": "Negozio di piastrelle", + "ja": "タイル店", + "nl": "Tegelwinkel", + "pl": "Sklep z płytkami ceramicznymi", + "pt": "Loja de azulejos", + "ru": "Магазин плитки", + "sv": "Kakelbutik" + }, + "searchTerms": { + "da": [ + "flise", + "badeværelse", + "køkken", + "bryggers" + ], + "de": [ + "fliesenhändler", + "fliesengeschäft" + ], + "eo": [ + "kaheloj", + "kahelaro", + "planko", + "platoj" + ], + "es": [ + "azulejos", + "baldosas", + "tejas", + "teselas" + ], + "fr": [ + "carrelage", + "dalle de sol", + "faïence" + ], + "gl": [ + "azulexo", + "azulexos", + "baldosas", + "tellas", + "teselas" + ], + "hu": [ + "burkolóanyagok" + ], + "it": [ + "piastrelle", + "mattonelle", + "pavimento", + "pavimenti", + "ceramica", + "pietra" + ], + "ja": [ + "タイル店", + "タイルショップ" + ], + "nl": [ + "betegeling", + "vloertegelwinkel", + "muurtegelwinkel" + ], + "pl": [ + "płytki ceramiczne", + "ceramika", + "gres", + "glazura", + "kafelki", + "płytki", + "terakota" + ], + "pt": [ + "tijoleira", + "azulejo", + "ladrilho" + ], + "sv": [ + "kakelbutik", + "klinker", + "kakel", + "plattor", + "plattsättare", + "kakelplatta" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tiling.svg", + "class": "medium" + } + }, + { + "if": "shop=tobacco", + "then": { + "en": "Tobacco Shop", + "ca": "Estanc", + "da": "Tobaksforretning", + "de": "Tabakwarengeschäft", + "eo": "Tabaka vendejo", + "es": "Tienda de tabaco", + "fi": "Tupakkapuoti", + "fr": "Bureau de tabac", + "gl": "Estanco", + "hu": "Dohánybolt", + "id": "Toko Tembakau", + "it": "Tabaccheria", + "ja": "たばこ店", + "nl": "Tabakswinkel", + "pl": "Sklep z tytoniem", + "pt": "Tabacaria", + "ru": "Табачный магазин", + "sl": "Tobačna trgovina", + "sv": "Tobaksbutik" + }, + "searchTerms": { + "en": [ + "cigarettes", + "cigars" + ], + "da": [ + "tobaksforretning", + "cigarforhandler" + ], + "de": [ + "traffik", + "tabakwarengeschäft", + "tabakwarenladen" + ], + "eo": [ + "tabako", + "cigaredoj", + "cigaroj" + ], + "es": [ + "tabaquería", + "tienda de tabacos", + "tabaco", + "cigarillos", + "cigarros", + "puros", + "expendeduría", + "quiosco", + "kiosko" + ], + "fr": [ + "buraliste" + ], + "hu": [ + "nemzeti dohánybolt", + "dohány", + "cigaretta", + "szivar" + ], + "id": [ + "rokok" + ], + "it": [ + "tabacchi", + "tabacchino" + ], + "ja": [ + "たばこ店", + "たばこ屋", + "タバコ", + "たばこ", + "嗜好品", + "タバコ店", + "タバコ屋", + "煙草" + ], + "nl": [ + "sigarettenwinkel" + ], + "pl": [ + "sklep tytoniowy", + "tytoń", + "papierosy", + "cygara", + "cygaretki", + "zapalniczki", + "popielniczki", + "fajki", + "fajki wodne", + "bibułki", + "filtry" + ], + "pt": [ + "tobacco", + "loja de tabaco", + "cachimbo", + "cigarrilha", + "tabaco", + "cigarros", + "charutos", + "tabaco de enrolar" + ], + "ru": [ + "сигареты", + "сигары", + "табак", + "трубки", + "табачный магазин" + ], + "sv": [ + "tobaksbutik", + "tobak", + "rökning", + "pipa", + "pipor", + "snus", + "cigaretter", + "cigarett", + "cigarr", + "cigarrer", + "röktillbehör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-pipe.svg", + "class": "medium" + } + }, + { + "if": "shop=tool_hire", + "then": { + "en": "Tool Rental", + "ca": "Lloguer d'eines", + "da": "Værktøjsudlejning", + "de": "Werkzeugverleih", + "eo": "Il-pruntejo", + "es": "Alquiler de herramientas", + "fi": "Työkaluvuokraamo", + "fr": "Location d'outils", + "gl": "Alugueiro de ferramentas", + "hu": "Gépkölcsönző", + "it": "Noleggio utensili", + "ja": "工具レンタル店", + "nl": "Gereedschapsverhuur", + "pl": "Wypożyczalnia narzędzi", + "pt": "Aluguer de ferramentas", + "ru": "Аренда инструмента", + "sv": "Verktygsuthyrning" + }, + "searchTerms": { + "de": [ + "werkzeug", + "verleih" + ], + "eo": [ + "ilpruntejo", + "pruntejo", + "maŝinoj" + ], + "es": [ + "alquiler", + "renta", + "arriendo", + "herramientas" + ], + "fr": [ + "outil", + "outillage", + "location" + ], + "ja": [ + "工具レンタル店", + "工具", + "レンタル" + ], + "nl": [ + "machineverhuur" + ], + "pl": [ + "wypożyczanie narzędzi", + "wynajem narzędzi", + "narzędzia", + "wypożyczalnia sprzętu budowlanego", + "wynajem sprzętu budowlanego" + ], + "pt": [ + "tools", + "construção", + "jardinagem", + "ferramentas", + "alugar", + "utensílios" + ], + "sv": [ + "verktygsuthyrning", + "uthyrning av verktyg", + "verktyg", + "byggmaskiner", + "byggverktyg", + "uthyrning", + "hyrning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tools.svg", + "class": "medium" + } + }, + { + "if": "shop=toys", + "then": { + "en": "Toy Store", + "ca": "Botiga de joguines", + "da": "Legetøjsbutik", + "de": "Spielwarengeschäft", + "eo": "Ludila vendejo", + "es": "Juguetería", + "fi": "Lelukauppa", + "fr": "Magasin de jouets", + "gl": "Tenda de xoguetes", + "hu": "Játékbolt", + "id": "Toko Mainan", + "it": "Negozio di giocattoli", + "ja": "玩具店", + "nl": "Speelgoedwinkel", + "pl": "Sklep z zabawkami", + "pt": "Loja de brinquedos", + "ru": "Игрушки", + "sl": "Trgovina igrač", + "sv": "Leksaksaffär" + }, + "searchTerms": { + "en": [ + "games" + ], + "ca": [ + "botiga de joguines", + "botiga de jocs", + "joguineria" + ], + "da": [ + "legetøjsforretning", + "legetøjsbutik" + ], + "de": [ + "spielwarengeschäft", + "spielzeughandlung", + "spielzeugladen", + "spielzeuggeschäft" + ], + "eo": [ + "ludiloj", + "ludilvendejo", + "amuziloj", + "infanoj" + ], + "es": [ + "juguetes", + "juego", + "juguetería", + "tienda de juguetes" + ], + "fr": [ + "magasin de jouets" + ], + "hu": [ + "barbie", + "lego", + "hasbro", + "mattel", + "babák", + "fisher price", + "logikai", + "barkács", + "bébi", + "gyermek", + "kreatív" + ], + "it": [ + "negozio giocattoli" + ], + "ja": [ + "玩具店", + "おもちゃ屋" + ], + "nl": [ + "speelgoedwinkel" + ], + "pl": [ + "zabawki", + "sklep zabawkarski" + ], + "pt": [ + "brinquedos", + "toys", + "brincar", + "jogos" + ], + "ru": [ + "магазин игрушек" + ], + "sl": [ + "igrače" + ], + "sv": [ + "leksaksaffär", + "leksaker", + "barnsaker" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-rocket.svg", + "class": "medium" + } + }, + { + "if": "shop=trade", + "then": { + "en": "Trade Shop", + "da": "Brancheforhandler", + "de": "Baustoffhandel", + "eo": "Pogranda vendejo (konstruaĵ‑materialoj)", + "es": "Tienda comercial / Corralón", + "fr": "Grossiste", + "gl": "Distribuidor", + "hu": "Szakáruház", + "it": "Materiali da edilizia", + "ja": "建築資材店", + "nl": "Bouwmaterialenhandel", + "pl": "Skład materiałów budowlanych", + "pt": "Loja de materiais de construção", + "ru": "Оптовая база", + "sv": "Proffshandel" + }, + "searchTerms": { + "da": [ + "byggeri", + "branche", + "special" + ], + "de": [ + "baustoffhandel", + "bauzentrum", + "baumarkt", + "holzhandel" + ], + "eo": [ + "staplo", + "magazeno", + "vendejego" + ], + "es": [ + "comercio", + "comercial", + "corralón", + "corralon", + "materiales", + "construccion", + "madera", + "cemento", + "ladrillos", + "obra" + ], + "fr": [ + "grossiste" + ], + "gl": [ + "tenda de materiais de construción", + "construción", + "materiais", + "granel", + "b2b", + "cimento", + "area", + "tixolos", + "brita", + "madeira", + "construción civil", + "obras", + "comercio", + "comercial", + "corralón", + "corralon", + "materiales", + "construcion", + "cemento", + "formigón", + "ladrillos", + "obra", + "tenda comercial", + "distribuidora" + ], + "it": [ + "materiali edilizi", + "edilizia", + "mattoni", + "cemento", + "stucco", + "gesso", + "legname" + ], + "ja": [ + "建築資材店", + "工務店", + "建材店", + "配管工" + ], + "nl": [ + "bouwmaterialenwinkel", + "bouwmaterialenzaak", + "bouwmaterialengroothandel", + "vensterhandel", + "ruitenhandel", + "glashandel", + "ramenhandel", + "tegelhandel", + "tegelgroothandel", + "loodgieterswinkel", + "houthandel", + "houtgroothandel", + "plankenhandel" + ], + "pl": [ + "skład drewna", + "skład budowlany", + "hurtownia budowlana", + "skład opału" + ], + "pt": [ + "construção", + "materiais", + "granel", + "b2b", + "cimento", + "areia", + "tijolos", + "brita", + "madeira", + "construção civil", + "obras" + ], + "sv": [ + "proffshandel", + "proffsmarknad", + "proffs", + "byggnadsmaterial", + "byggmaterial", + "brädgård", + "brädor", + "trähandel", + "trävaror", + "vvs-specialist", + "vvs", + "jordbruksprodukter", + "jordbruk", + "lantmannaföreningen", + "granngården", + "kakel", + "fönster" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tools.svg", + "class": "medium" + } + }, + { + "if": "shop=travel_agency", + "then": { + "en": "Travel Agency", + "ca": "Agència de viatges", + "da": "Rejsebureau", + "de": "Reisebüro", + "eo": "Vojaĝa oficejo", + "es": "Agencia de viajes", + "fi": "Matkatoimisto", + "fr": "Agence de voyages", + "gl": "Axencia de viaxes", + "hu": "Utazási iroda", + "id": "Biro Perjalanan", + "it": "Agenzia di viaggi", + "ja": "旅行代理店", + "nl": "Reisbureau", + "pl": "Biuro podróży", + "pt": "Agência de viagens", + "ru": "Бюро путешествий", + "sl": "Turistična agencija", + "sv": "Resebyrå" + }, + "searchTerms": { + "en": [ + "cruises", + "flights", + "hotels", + "tickets", + "travel packages" + ], + "ca": [ + "agència de viatges" + ], + "da": [ + "rejsebureau", + "rejseagent" + ], + "de": [ + "reisebüro", + "reiseveranstalter" + ], + "eo": [ + "vojaĝa oficejo", + "vojagha oficejo", + "vojagxa oficejo", + "vojaĝejo", + "vojaĝagentejo" + ], + "es": [ + "agencia de viajes", + "agencia de turismo", + "viajes", + "turismo" + ], + "fr": [ + "agence de voyage" + ], + "hu": [ + "ibusz", + "vista", + "neckermann", + "nyaralás", + "last minute", + "utazás", + "travel", + "karthago tours", + "tours", + "tui", + "reisen", + "otp travel", + "voyage" + ], + "it": [ + "agenzia di viaggi" + ], + "ja": [ + "旅行代理店", + "トラベル", + "ツアー" + ], + "nl": [ + "reisbureau" + ], + "pl": [ + "podróże" + ], + "pt": [ + "agência", + "viagens", + "viajar", + "turismo", + "cruzeiros", + "passagens aéreas", + "hotéis", + "hotel", + "passeios", + "excursões" + ], + "ru": [ + "турагенство" + ], + "sl": [ + "potovalna agencija", + "potovanje", + "potovanja", + "turizem" + ], + "sv": [ + "resebyrå", + "reseagent", + "biljettförsäljning", + "charter", + "charterflyg", + "charterresa" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-suitcase.svg", + "class": "medium" + } + }, + { + "if": "shop=trophy", + "then": { + "en": "Trophy Shop", + "ca": "Botiga de trofeus", + "de": "Trophäengeschäft", + "eo": "Vendejo de pokaloj kaj premioj", + "es": "Tienda de trofeos", + "fr": "Magasin de trophées", + "gl": "Tenda de trofeos", + "hu": "Kupák, kitüntetések boltja", + "it": "Negozio di coppe", + "ja": "徽章店", + "nl": "Trofeewinkel", + "pl": "Sklep z trofeami", + "pt": "Loja de troféus", + "sv": "Affär för troféer" + }, + "searchTerms": { + "en": [ + "awards", + "engravings", + "medals", + "plaques", + "trophy store" + ], + "de": [ + "pokale", + "trophäen", + "medaillen", + "plaketten", + "gravuren", + "skulpturen", + "awards", + "preise", + "auszeichnungen" + ], + "eo": [ + "pokaloj", + "premioj", + "statuetoj", + "figuretoj", + "medaloj" + ], + "es": [ + "trofeos", + "premios", + "grabados", + "medallas", + "placas", + "tienda de trofeos" + ], + "fr": [ + "trophées", + "médailles", + "coupes", + "récompenses" + ], + "hu": [ + "érem" + ], + "ja": [ + "トロフィー", + "賞状", + "勲章", + "メダル", + "徽章", + "店舗", + "お店", + "記念品", + "ショッピング", + "小売" + ], + "nl": [ + "medaillewinkel" + ], + "pl": [ + "sklep z trofeami", + "trofeum", + "trofea", + "nagrody", + "puchary", + "medale", + "statuetki" + ], + "pt": [ + "prémios", + "troféus", + "medalhas", + "taças", + "gravações" + ], + "sv": [ + "affär för troféer", + "trofé", + "trofe", + "troféer", + "trofeer", + "priser", + "belöningar", + "utmärkelser", + "gravyrer", + "medaljer", + "plackat", + "trofébutik" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/fas-trophy.svg", + "class": "medium" + } + }, + { + "if": "shop=tyres", + "then": { + "en": "Tire Store", + "ca": "Botiga de pneumàtics", + "da": "Dækforhandler", + "de": "Reifenhandel", + "eo": "Aerbenda vendejo", + "es": "Tienda de neumáticos", + "fi": "Rengasliike", + "fr": "Magasin de pneus", + "gl": "Tenda de pneumáticos", + "hu": "Autógumibolt", + "id": "Toko Ban", + "it": "Gommista", + "ja": "タイヤ店", + "nl": "Bandenwinkel", + "pl": "Sklep z oponami / wulkanizacja", + "pt": "Loja de pneus", + "ru": "Шины", + "sl": "Prodaja pnevmatik", + "sv": "Däckfirma" + }, + "searchTerms": { + "da": [ + "dækforhandler" + ], + "de": [ + "reifenhandlung", + "reifenservice" + ], + "eo": [ + "aerbendoj", + "pneŭoj", + "pneuxoj", + "pneuoj", + "aŭtomobiloj", + "vulkanizisto" + ], + "es": [ + "neumático", + "llanta", + "goma", + "gomería" + ], + "fr": [ + "magasin de pneus" + ], + "hu": [ + "autógumi", + "gumiabroncs", + "gumiszerelés", + "gumis" + ], + "it": [ + "negozio pneumatici" + ], + "ja": [ + "タイヤ店", + "タイヤ販売店", + "自動車", + "カー用品" + ], + "nl": [ + "autoband" + ], + "pl": [ + "opony", + "wulkanizacja", + "wulkanizator", + "wymiana opon", + "samochody" + ], + "pt": [ + "casa dos pneus", + "pneu", + "recauchutagem", + "recauchutados", + "pneumáticos" + ], + "ru": [ + "автопокрышки", + "автошины", + "покрышки", + "шины" + ], + "sl": [ + "vulkanizer" + ], + "sv": [ + "däckfirma", + "däckbyte", + "hjulbyte", + "däckförsäljning", + "hjulförsäljning", + "fälgar", + "däck", + "hjul", + "fälg", + "balansering" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-tire.svg", + "class": "medium" + } + }, + { + "if": "shop=vacuum_cleaner", + "then": { + "en": "Vacuum Cleaner Store", + "ca": "Botiga d'aspiradors", + "da": "Støvsugerforhandler", + "de": "Staubsaugergeschäft", + "eo": "Polvosuĉila vendejo", + "es": "Tienda de aspiradoras", + "fi": "Pölynimuriliike", + "fr": "Magasin d'électroménager de nettoyage", + "gl": "Tenda de aspiradoras", + "hu": "Porszívóbolt", + "id": "Toko Pengisap Debu", + "it": "Negozio di aspirapolveri", + "ja": "掃除機店", + "nl": "Stofzuigerwinkel", + "pl": "Sklep z odkurzaczami", + "pt": "Loja de aspiradores", + "ru": "Магазин по продаже пылесосов", + "sl": "Trgovina s sesalci", + "sv": "Dammsugarbutik" + }, + "searchTerms": { + "da": [ + "støvsugerforhandler" + ], + "de": [ + "staubsaugergeschäft", + "staubsaugerladen", + "staubsaugerhändler" + ], + "eo": [ + "polvosuĉiloj", + "polvosochiloj", + "polvosucxiloj", + "senpolvigiloj" + ], + "es": [ + "aspiradora", + "limpiadora", + "limpieza", + "aspirador" + ], + "fi": [ + "pölynimuri", + "siivoaminen", + "siivous", + "imuri", + "imurointi" + ], + "fr": [ + "aspirateur", + "nettoyage" + ], + "hu": [ + "porszívó", + "takarítógép" + ], + "it": [ + "aspirapolveri", + "aspirapolvere" + ], + "ja": [ + "掃除機店" + ], + "nl": [ + "huishouden", + "schoonmaken", + "poetsen", + "stofzuigen", + "electro", + "elektro" + ], + "pl": [ + "odkurzacze" + ], + "pt": [ + "vacuum cleaner", + "aspirador", + "aspiradores", + "aspirar" + ], + "ru": [ + "пылесосы" + ], + "sv": [ + "dammsugarbutik", + "dammsugare", + "dammsugaråterförsäljare", + "dammsugarpåsar", + "dammsugartillbehör" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-vacuum.svg", + "class": "medium" + } + }, + { + "if": "shop=variety_store", + "then": { + "en": "Variety Store", + "ca": "Botiga de tot a 100", + "da": "Spøg og skæmtbutik", + "de": "Sonderpostenmarkt", + "eo": "Ĉio-po-unu-spesmilo vendejo", + "es": "Tienda de variedades o bazar", + "fi": "Halpahalli", + "fr": "Magasin à prix unique ou à bas prix", + "gl": "Tenda de variedades ou bazar", + "hu": "100 forintos bolt", + "id": "Toserba", + "it": "Negozio a prezzo fisso", + "ja": "雑貨店(低価格)", + "nl": "Euroshop", + "pl": "Sklep z różnościami", + "pt": "Loja de variedades", + "ru": "Товары по одной цене", + "sl": "Trgovina z mešanim blagom", + "sv": "Fyndbutik" + }, + "searchTerms": { + "ca": [ + "basar" + ], + "da": [ + "spøg og skæmtbutik" + ], + "de": [ + "ein-euro-geschäft", + "ein-euro-laden", + "schnäppchenmarkt", + "ramschladen", + "sonderpostenmarkt", + "restpostenmarkt", + "billigladen" + ], + "eo": [ + "ĉiopounuspesmilo", + "eŭrovendejo", + "euroshop", + "diversaĵoj", + "ĉio po unu" + ], + "es": [ + "variedad", + "bazar", + "tienda de todo a", + "todo a", + "todo por" + ], + "fi": [ + "tokmanni", + "hintamyymälä", + "halpa", + "halpatalo", + "halpamyymälä", + "säästömyymälä", + "säästö", + "kauppa", + "myymälä", + "putiikki", + "liike" + ], + "fr": [ + "épicerie", + "hard-discount" + ], + "gl": [ + "bazar", + "todo a cen", + "todo a 100", + "variedades" + ], + "hu": [ + "olcsó áruk boltja", + "1 eurós bolt" + ], + "it": [ + "articoli a basso costo", + "tutto a" + ], + "ja": [ + "雑貨店", + "100円ショップ", + "バラエティストア", + "百均", + "日用雑貨", + "買い物", + "ショッピング", + "ディスカウント", + "100均" + ], + "nl": [ + "variety store" + ], + "pl": [ + "sklep z różnościami", + "różności", + "bibeloty", + "pamiątki", + "prezenty", + "gadżety" + ], + "pt": [ + "loja dos 300", + "loja dos trezentos", + "bijuterias", + "adereços", + "quinquilharia" + ], + "ru": [ + "товары по одной цене", + "всё по одной цене", + "магазин фиксированной цены", + "фикс прайс", + "фикспрайс", + "fix price" + ], + "sl": [ + "vse za _ _ _ €" + ], + "sv": [ + "fyndbutik", + "billigt", + "lågpris", + "lågprisbutik", + "fynd", + "överskott", + "överskottsaffär" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=video", + "then": { + "en": "Video Store", + "ca": "Botiga de vídeos", + "da": "Videobutik", + "de": "Videothek", + "eo": "Filma vendejo/pruntejo", + "es": "Videoclub", + "fi": "Videovuokraamo", + "fr": "Vidéo-club", + "gl": "Videoclube", + "hu": "Videófilmbolt vagy -kölcsönző", + "id": "Toko Video", + "it": "Videoteca", + "ja": "ビデオソフト店", + "nl": "Videotheek", + "pl": "Sklep/wypożyczalnia z filmami wideo/dvd", + "pt": "Videoclube", + "ru": "Видеомагазин", + "sl": "Videoteka", + "sv": "Videobutik" + }, + "searchTerms": { + "en": [ + "dvd", + "vhs", + "video cassette", + "video casette" + ], + "ca": [ + "videoclub" + ], + "da": [ + "videobutik", + "videoforretning", + "videoudlejning" + ], + "de": [ + "video-geschäft", + "dvd-geschäft" + ], + "eo": [ + "filmoj", + "videoj", + "dvd", + "bluray", + "blu-radia" + ], + "es": [ + "vídeo", + "película", + "cine", + "videoclub", + "alquiler", + "tienda de vídeo" + ], + "fr": [ + "club vidéo" + ], + "hu": [ + "dvd", + "videokazetta", + "film", + "videotéka", + "blu ray" + ], + "id": [ + "cd", + "dvd", + "sewa" + ], + "it": [ + "videoteca" + ], + "ja": [ + "ビデオソフト店", + "dvd店", + "娯楽" + ], + "nl": [ + "videoverhuur", + "dvd-theek", + "dvd-verhuur" + ], + "pl": [ + "sklep z filmami", + "wypożyczalnia filmów", + "filmy wideo", + "filmy video", + "filmy dvd", + "filmy blu-ray", + "vhs" + ], + "pt": [ + "aluguer de vídeo", + "clube de vídeo", + "vhs", + "dvd", + "bluray", + "filmes", + "cinema" + ], + "ru": [ + "видео салон", + "продажа фильмов и видеозаписей" + ], + "sl": [ + "video" + ], + "sv": [ + "videobutik", + "filmbutik", + "filmförsäljning", + "filmuthyrning", + "dvd", + "vhs" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-movie_rental.svg", + "class": "medium" + } + }, + { + "if": "shop=video_games", + "then": { + "en": "Video Game Store", + "ca": "Botiga de videojocs", + "da": "Videospilbutik", + "de": "Videospielgeschäft", + "eo": "Videoluda vendejo", + "es": "Tienda de videojuegos", + "fi": "Videopeliliike", + "fr": "Magasin de location et vente de jeux vidéo", + "gl": "Tenda de videoxogos", + "hu": "Videojátékbolt", + "id": "Toko Permainan Video", + "it": "Negozio di videogiochi", + "ja": "テレビゲーム販売店", + "nl": "Computerspelwinkel", + "pl": "Sklep z grami wideo", + "pt": "Loja de videojogos", + "ru": "Магазин видеоигр", + "sl": "Trgovina z video igrami", + "sv": "TV-spel" + }, + "searchTerms": { + "da": [ + "videospilbutik", + "videospilforretning", + "gaming" + ], + "de": [ + "videospielladen", + "videospielgeschäft", + "computerspieleladen" + ], + "eo": [ + "videoludoj", + "komputilaj ludoj", + "elektronikaj ludoj" + ], + "es": [ + "video juego", + "juegos electrónicos", + "videojuegos" + ], + "fi": [ + "konsoli", + "konsolipeli", + "pelikonsoli", + "xbox", + "playstation", + "nintendo", + "peli", + "pelaaminen", + "videopeli", + "pc", + "tietokone", + "tietotekniikka" + ], + "fr": [ + "magasin de location et vente de jeux vidéo" + ], + "hu": [ + "pc-s játék", + "konzolos játék", + "xbox", + "wii" + ], + "id": [ + "video game" + ], + "it": [ + "giochi", + "pc", + "console", + "videogiochi" + ], + "ja": [ + "テレビゲーム店", + "ビデオゲーム", + "娯楽", + "ゲーム", + "テレビゲーム販売店", + "ゲームソフト", + "テレビゲーム" + ], + "nl": [ + "videospelwinkel" + ], + "pl": [ + "sklep z grami wideo", + "gry wideo", + "gry video", + "gry komputerowe", + "gry konsolowe", + "gry na konsole" + ], + "pt": [ + "jogos de computador", + "consola" + ], + "ru": [ + "магазин видеоигр", + "салон видеоигр", + "видеоигровой магазин", + "видеоигровой салон" + ], + "sv": [ + "tv-spel", + "videospel", + "konsolspel", + "spelkonsoler", + "datorspel", + "dataspel", + "tvspel" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-gaming.svg", + "class": "medium" + } + }, + { + "if": "shop=watches", + "then": { + "en": "Watches Shop", + "ca": "Òptica", + "da": "Urbutik", + "de": "Uhrengeschäft", + "eo": "Horloĝa vendejo", + "es": "Relojería", + "fi": "Kellokauppa", + "fr": "Magasin de montres", + "gl": "Reloxaría", + "hu": "Órabolt (karóra)", + "it": "Negozio di orologi", + "ja": "腕時計店", + "nl": "Horlogewinkel", + "pl": "Sklep z zegarkami", + "pt": "Loja de relógios", + "ru": "Магазин часов", + "sl": "Trgovina z urami", + "sv": "Klockaffär" + }, + "searchTerms": { + "ca": [ + "botiga d'ulleres" + ], + "da": [ + "urbutik", + "urmager" + ], + "de": [ + "uhrengeschäft", + "uhrenladen" + ], + "eo": [ + "horloĝoj", + "horloghoj", + "horlogxoj", + "poŝhorloĝoj" + ], + "es": [ + "tienda de relojes", + "relojero", + "taller de relojes", + "reparación de reloj" + ], + "fi": [ + "kello", + "rannekello", + "myymälä", + "liike", + "kauppa", + "putiikki" + ], + "fr": [ + "horloger", + "vente de montres" + ], + "hu": [ + "órabolt", + "órás" + ], + "it": [ + "orologio", + "orologi", + "negozio orologi", + "sveglia", + "sveglie", + "orologio a cipolla", + "cronografo", + "cronometro" + ], + "ja": [ + "腕時計店", + "時計" + ], + "nl": [ + "uurwerkwinkel", + "klokkenwinkel" + ], + "pl": [ + "zegarek", + "zegarki" + ], + "pt": [ + "watches shop", + "watch", + "relojoaria", + "relojoeiro", + "relojeiro", + "relógio", + "loja de relógios", + "venda de relógios", + "vender relógios", + "relógio de bolso", + "relógio de pulso", + "swatch", + "rolex", + "casio", + "citizen", + "omega", + "timex", + "breitling", + "longines", + "tag heuer", + "tissot", + "seiko", + "victorinox" + ], + "sv": [ + "klockaffär", + "klockbutik", + "urbutik", + "uraffär", + "ur", + "klocka", + "klockor" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-watch.svg", + "class": "medium" + } + }, + { + "if": "shop=water", + "then": { + "en": "Drinking Water Shop", + "ca": "Botiga d'aigua potable", + "de": "Trinkwasserladen", + "eo": "Trinkakv-vendejo", + "es": "Tienda de agua potable", + "fi": "Juomavesikauppa", + "fr": "Magasin d'eau potable", + "gl": "Tenda de auga potábel", + "hu": "Ivóvíz-bolt", + "it": "Negozio di acqua da bere", + "ja": "飲料水店", + "nl": "Drinkwaterwinkel", + "pl": "Sklep z wodą pitną", + "pt": "Loja de água potável", + "sv": "Affär för dricksvatten" + }, + "searchTerms": { + "de": [ + "trinkwasserladen" + ], + "eo": [ + "akvo", + "trinkebla akvo", + "boteligita akvo", + "enboteligita akvo" + ], + "es": [ + "agua", + "potable", + "bebible" + ], + "fr": [ + "eau potable" + ], + "gl": [ + "auga", + "agua", + "potable", + "bebible", + "potábel" + ], + "it": [ + "acqua potabile", + "bere", + "minerale", + "pura", + "salute", + "bottiglie" + ], + "ja": [ + "飲料水店", + "水", + "ミネラルウォーター", + "店舗", + "お店", + "ペットボトル", + "飲み水", + "飲水", + "ショッピング", + "小売", + "食品" + ], + "nl": [ + "waterwinkel", + "flessenwaterwinkel", + "waterflessenwinkel" + ], + "pl": [ + "woda", + "pitna" + ], + "pt": [ + "água", + "fonte", + "água mineral" + ], + "sv": [ + "dricksvatten", + "vatten" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-water_bottle.svg", + "class": "medium" + } + }, + { + "if": "shop=water_sports", + "then": { + "en": "Watersport/Swim Shop", + "ca": "Botiga d'esports aquàtics", + "da": "Svømmesport/Svømmeudstyrsbutik", + "de": "Wassersportgeschäft", + "eo": "Akvosport-aparata vendejo", + "es": "Tienda de deporte acuático / natación", + "fi": "Vesiurheiluliike", + "fr": "Vente d'équipements et d'articles pour sports nautiques", + "gl": "Tenda de deportes acuáticos / natación", + "hu": "Vízisport-bolt", + "id": "Toko Renang/Olahraga Air", + "it": "Negozio per sport acquatici", + "ja": "ウォータースポーツ用品店", + "nl": "Watersport-/Zwemwinkel", + "pl": "Sklep ze sprzętem do sportów wodnych", + "pt": "Loja de desportos aquáticos", + "ru": "Водный спорт/ Спорттовары", + "sv": "Vattensport/simning" + }, + "searchTerms": { + "da": [ + "svømmesport", + "svømmeudstyrsbutik" + ], + "de": [ + "wassersportladen", + "schwimmbedarf" + ], + "eo": [ + "akvosportiloj" + ], + "es": [ + "acuático", + "natación", + "goggles", + "lentes natación", + "bañador", + "bikini" + ], + "fi": [ + "uinti", + "uiminen", + "sukellus", + "sukeltaminen", + "laitesukellus", + "laitesukeltaminen", + "vesi", + "vesiurheilu", + "kauppa", + "liike", + "myymälä" + ], + "fr": [ + "vente d'équipements et d'articles pour sports nautiques" + ], + "gl": [ + "acuático", + "natación", + "goggles", + "lentes natación", + "bañador", + "bikini", + "biquini", + "neopreno", + "auga" + ], + "hu": [ + "kajak", + "csónak", + "mentőmellény", + "fürdőruha", + "szörf" + ], + "it": [ + "acqua", + "nuoto", + "sport" + ], + "ja": [ + "マリンスポーツ専門店", + "ウォータースポーツ専門店", + "水着屋", + "スポーツ", + "運動", + "競技", + "トレーニング" + ], + "nl": [ + "watersportwinkel", + "zwemwinkel", + "watersportzaak", + "zwemgerief", + "watersportgerief" + ], + "pl": [ + "sklep ze sprzętem do sportów wodnych" + ], + "pt": [ + "banho", + "toucas", + "natação", + "material de natação", + "modalidade natação", + "windsurf", + "surf", + "body", + "polo aquático" + ], + "ru": [ + "спорт", + "товары", + "плавание", + "очки", + "костюм", + "купальник", + "плавки", + "ласты" + ], + "sv": [ + "vattensport", + "simning", + "badkläder" + ] + } + }, + { + "if": "shop=weapons", + "then": { + "en": "Weapon Shop", + "ca": "Armeria", + "da": "Våbenbutik", + "de": "Waffengeschäft", + "eo": "Armila vendejo", + "es": "Armería", + "fi": "Aseliike", + "fr": "Armurerie", + "gl": "Armaría", + "hu": "Fegyverbolt", + "id": "Toko Senjata", + "it": "Armeria", + "ja": "武器屋", + "nl": "Wapenwinkel", + "pl": "Sklep z bronią", + "pt": "Loja de armas", + "ru": "Оружейный магазин", + "sl": "Trgovina z orožjem", + "sv": "Vapenaffär" + }, + "searchTerms": { + "en": [ + "ammo", + "gun", + "knife", + "knives" + ], + "da": [ + "våbenbutik", + "våbenforretning", + "bøssemager" + ], + "de": [ + "waffengeschäft", + "waffenhändler" + ], + "eo": [ + "armiloj", + "pafiloj", + "pistoloj", + "armea", + "milita" + ], + "es": [ + "armería", + "munición", + "tienda de armas", + "caza", + "pesca", + "cuchillos", + "navajas" + ], + "fi": [ + "ase", + "pyssy", + "ampuma-ase", + "ampuminen", + "ammunta", + "starttipistooli", + "pistooli" + ], + "fr": [ + "armurerie" + ], + "hu": [ + "kés", + "lőfegyver", + "riasztófegyver", + "puska", + "pisztoly", + "lőszer", + "töltény", + "sörét" + ], + "it": [ + "armeria", + "armi", + "munizioni", + "coltelli", + "pistole" + ], + "ja": [ + "銃砲店" + ], + "nl": [ + "wapens", + "munitie" + ], + "pl": [ + "broń", + "militaria", + "amunicja", + "noże", + "pistolety" + ], + "pt": [ + "espingardaria", + "caça", + "caçadeiras", + "facas", + "munições", + "armas", + "caçar", + "pistolas", + "revólveres", + "espingardas" + ], + "ru": [ + "магазин оружия", + "оружейный магазин" + ], + "sv": [ + "vapenaffär", + "vapen", + "ammunition", + "jakt", + "skjutvapen", + "kniv", + "knivar", + "pistol" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-dagger.svg", + "class": "medium" + } + }, + { + "if": "shop=wholesale", + "then": { + "en": "Wholesale Store", + "de": "Großhandel", + "eo": "Pogranda vendejo", + "es": "Almacén al por mayor", + "fi": "Tukkukauppa", + "fr": "Commerce de gros", + "gl": "Almacén ó por maior", + "hu": "Nagykereskedés", + "it": "Grossista", + "ja": "卸売店", + "nl": "Groothandel", + "pl": "Hurtownia", + "pt": "Loja grossista", + "ru": "Оптовый магазин", + "sv": "Grosistaffär" + }, + "searchTerms": { + "en": [ + "warehouse club", + "cash and carry" + ], + "de": [ + "großhandelsgeschäft", + "großhändler" + ], + "eo": [ + "magazeno", + "staplo" + ], + "es": [ + "almacén al por mayor", + "por mayor" + ], + "fr": [ + "commerce de gros", + "gros", + "lot", + "entrepôt" + ], + "it": [ + "negozio di commercio all'ingrosso" + ], + "ja": [ + "卸", + "卸売", + "卸売店" + ], + "nl": [ + "groothandelszaak" + ], + "pl": [ + "hurtownia", + "sprzedaż hurtowa", + "makro", + "selgros" + ], + "pt": [ + "grossista", + "atacado", + "revendedor", + "revenda", + "cash and carry", + "cash & carry", + "venda por atacado", + "venda por grosso", + "comércio" + ], + "ru": [ + "cash and carry", + "кэш энд кэрри" + ], + "sv": [ + "grosist", + "grosistaffär", + "partihandel", + "grosshandel", + "grossistverksamhet", + "engros", + "mängdhandel", + "grossistlager", + "lagerklubb", + "grossistklubb" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-warehouse.svg", + "class": "medium" + } + }, + { + "if": "shop=wigs", + "then": { + "en": "Wig Shop", + "de": "Perückenladen", + "eo": "Vendejo de perukoj", + "es": "Tienda de pelucas", + "fr": "Magasin de perruques", + "gl": "Tenda de perrucas", + "hu": "Paróka-szaküzlet", + "it": "Negozio di parrucche", + "ja": "かつら店", + "nl": "Pruikenwinkel", + "pl": "Sklep z perukami", + "pt": "Loja de perucas", + "sv": "Affär för peruker" + }, + "searchTerms": { + "en": [ + "hair extensions", + "hair extentions" + ], + "de": [ + "haarverlängerung", + "perücken", + "kunsthaar", + "haarersatz", + "zweitfrisur" + ], + "eo": [ + "perukoj", + "hararo", + "haroj artefaritaj" + ], + "es": [ + "pelo", + "cabello", + "extensiones de pelo" + ], + "fr": [ + "perruque", + "postiche", + "extensions de cheveux" + ], + "it": [ + "capelli", + "estensioni", + "parrucchino", + "toupet" + ], + "ja": [ + "かつら店", + "カツラ", + "鬘", + "ウイッグ", + "店舗", + "お店", + "ショッピング", + "小売", + "装飾品" + ], + "nl": [ + "toupetwinkel" + ], + "pl": [ + "sklep z perukami", + "peruki", + "włosy", + "fryzjer", + "cosplay" + ], + "pt": [ + "perucas", + "cabelo", + "extensões", + "cabeleiras", + "postiças", + "postiço" + ], + "sv": [ + "affär för peruker", + "peruker", + "hårförlängning", + "löshår", + "tupé" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-shop.svg", + "class": "medium" + } + }, + { + "if": "shop=window_blind", + "then": { + "en": "Window Blind Store", + "ca": "Botiga de persianes", + "da": "Persienneforhandler", + "de": "Fensterladengeschäft", + "eo": "Fenestr-kovrila vendejo", + "es": "Tienda de persianas", + "fi": "Kaihdinmyymälä", + "fr": "Magasin de vente de stores", + "gl": "Tenda de persianas", + "hu": "Redőnybolt", + "id": "Toko Kerai", + "it": "Negozio di tapparelle e serrande", + "ja": "ブラインドカーテン専門店", + "nl": "Jaloeziewinkel", + "pl": "Sklep z żaluzjami/roletami", + "pt": "Loja de estores", + "ru": "Магазин жалюзей", + "sl": "Trgovina z okenskimi senčili", + "sv": "Persienner" + }, + "searchTerms": { + "da": [ + "persienneforhandler", + "persienneforretning" + ], + "de": [ + "fensterladengeschäft", + "rolladengeschäft" + ], + "eo": [ + "fenestrkovriloj", + "fenestrokovriloj", + "latkurtenoj", + "rulkurtenoj", + "ĵaluzioj" + ], + "es": [ + "ventana", + "persiana" + ], + "fi": [ + "verho", + "ikkuna", + "ikkunaverho", + "ikkunakaihdin", + "kaihdin", + "verhot", + "kaihtimet", + "rullaverho", + "rullakaihdin", + "rullakaihtimet", + "rullaverhot" + ], + "fr": [ + "store", + "rideau", + "volet" + ], + "hu": [ + "redőny", + "roló", + "ablaksötétítő", + "árnyékolástechnika", + "reluxa" + ], + "id": [ + "jendela", + "krey", + "bidai", + "tirai" + ], + "it": [ + "serramenti" + ], + "ja": [ + "ブラインド販売店", + "家具" + ], + "nl": [ + "zonwering", + "luiken", + "jaloezieën" + ], + "pl": [ + "żaluzje", + "rolety" + ], + "pt": [ + "estores", + "estor", + "persianas" + ], + "ru": [ + "шторы", + "жалюзи" + ], + "sv": [ + "persienner", + "spjälgardin", + "jalusi", + "markis", + "rullgardin", + "spjäljalusi" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/temaki-window.svg", + "class": "medium" + } + }, + { + "if": "shop=wine", + "then": { + "en": "Wine Shop", + "ca": "Botiga de vins", + "da": "Vinforretning", + "de": "Weinhandel", + "eo": "Vina vendejo", + "es": "Tienda de vinos", + "fi": "Viinikauppa", + "fr": "Caviste", + "gl": "Tenda de viños", + "hu": "Borszaküzlet", + "id": "Toko Anggur", + "it": "Enoteca", + "ja": "ワイン店", + "nl": "Wijnhandel", + "pl": "Sklep z winami", + "pt": "Loja de vinhos", + "ru": "Винный магазин", + "sl": "Vinoteka", + "sv": "Vinaffär" + }, + "searchTerms": { + "ca": [ + "celler", + "licoreria" + ], + "da": [ + "vinforretning", + "vinbutik", + "vinhandler" + ], + "de": [ + "weinladen", + "weinhandlung", + "weinhaus", + "enothek", + "vinothek" + ], + "eo": [ + "vinvendejo", + "vinovendejo", + "vindejo", + "alkoholaĵoj" + ], + "es": [ + "vinatería", + "vinos", + "espirituosos", + "licorería", + "bebidas", + "establecimiento de vinos" + ], + "fr": [ + "caviste", + "vin" + ], + "hu": [ + "borászat", + "italbolt", + "borkereskedés" + ], + "id": [ + "alkohol", + "minum", + "minuman beralkohol" + ], + "it": [ + "vino", + "negozio di vini" + ], + "ja": [ + "ワイン店", + "酒屋", + "食品", + "アルコール", + "嗜好品", + "飲み物", + "店舗", + "小売" + ], + "nl": [ + "wijnwinkel", + "wijnproeverij", + "wijnzaak", + "wijnerij" + ], + "pl": [ + "wino", + "wina" + ], + "pt": [ + "wine shop", + "loja de licor", + "bebidas alcoolicas", + "bebidas", + "alcool", + "álcool", + "vinho", + "vinhos", + "garrafeira", + "branco", + "tinto", + "rosé", + "champanhe", + "xampanhe", + "espumante" + ], + "ru": [ + "вино", + "вина" + ], + "sl": [ + "kletarstvo", + "vinska klet", + "vinotoč" + ], + "sv": [ + "vinaffär", + "systembolaget", + "systemet", + "vin", + "vinförsäljning" + ] + }, + "icon": { + "path": "./assets/layers/id_presets/maki-alcohol-shop.svg", + "class": "medium" + } + } + ] + }, + { + "id": "shop_rendering", + "mappings": [ + { + "if": "shop=boutique", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=fashion", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=vacant", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=yes", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=agrarian", + "then": "circle:white;./assets/layers/id_presets/fas-tractor.svg" + }, + { + "if": "shop=alcohol", + "then": "circle:white;./assets/layers/id_presets/fas-wine-bottle.svg" + }, + { + "if": "shop=anime", + "then": "circle:white;./assets/layers/id_presets/fas-dragon.svg" + }, + { + "if": "shop=antiques", + "then": "circle:white;./assets/layers/id_presets/temaki-furniture.svg" + }, + { + "if": "shop=appliance", + "then": "circle:white;./assets/layers/id_presets/temaki-laundry.svg" + }, + { + "if": "shop=art", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=baby_goods", + "then": "circle:white;./assets/layers/id_presets/fas-baby-carriage.svg" + }, + { + "if": "shop=bag", + "then": "circle:white;./assets/layers/id_presets/fas-suitcase-rolling.svg" + }, + { + "if": "shop=bakery", + "then": "circle:white;./assets/layers/id_presets/maki-bakery.svg" + }, + { + "if": "shop=bathroom_furnishing", + "then": "circle:white;./assets/layers/id_presets/fas-bath.svg" + }, + { + "if": "shop=beauty", + "then": "circle:white;./assets/layers/id_presets/temaki-lipstick.svg" + }, + { + "if": "shop=bed", + "then": "circle:white;./assets/layers/id_presets/maki-lodging.svg" + }, + { + "if": "shop=beverages", + "then": "circle:white;./assets/layers/id_presets/temaki-bottles.svg" + }, + { + "if": "shop=bicycle", + "then": "circle:white;./assets/layers/id_presets/maki-bicycle.svg" + }, + { + "if": "shop=boat", + "then": "circle:white;./assets/layers/id_presets/temaki-boat.svg" + }, + { + "if": "shop=bookmaker", + "then": "circle:white;./assets/layers/id_presets/temaki-money_hand.svg" + }, + { + "if": "shop=books", + "then": "circle:white;./assets/layers/id_presets/fas-book.svg" + }, + { + "if": "shop=brewing_supplies", + "then": "circle:white;./assets/layers/id_presets/temaki-storage_fermenter.svg" + }, + { + "if": "shop=butcher", + "then": "circle:white;./assets/layers/id_presets/temaki-cleaver.svg" + }, + { + "if": "shop=camera", + "then": "circle:white;./assets/layers/id_presets/fas-camera-retro.svg" + }, + { + "if": "shop=cannabis", + "then": "circle:white;./assets/layers/id_presets/fas-cannabis.svg" + }, + { + "if": "shop=car", + "then": "circle:white;./assets/layers/id_presets/maki-car.svg" + }, + { + "if": "shop=car_parts", + "then": "circle:white;./assets/layers/id_presets/fas-car-battery.svg" + }, + { + "if": "shop=car_repair", + "then": "circle:white;./assets/layers/id_presets/maki-car-repair.svg" + }, + { + "if": "shop=caravan", + "then": "circle:white;./assets/layers/id_presets/temaki-camper_trailer.svg" + }, + { + "if": "shop=carpet", + "then": "circle:white;./assets/layers/id_presets/fas-tape.svg" + }, + { + "if": "shop=catalogue", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=charity", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=cheese", + "then": "circle:white;./assets/layers/id_presets/fas-cheese.svg" + }, + { + "if": "shop=chocolate", + "then": "circle:white;./assets/layers/id_presets/maki-confectionery.svg" + }, + { + "if": "shop=clothes", + "then": "circle:white;./assets/layers/id_presets/maki-clothing-store.svg" + }, + { + "if": "shop=coffee", + "then": "circle:white;./assets/layers/id_presets/temaki-coffee.svg" + }, + { + "if": "shop=computer", + "then": "circle:white;./assets/layers/id_presets/fas-laptop.svg" + }, + { + "if": "shop=confectionery", + "then": "circle:white;./assets/layers/id_presets/maki-confectionery.svg" + }, + { + "if": "shop=copyshop", + "then": "circle:white;./assets/layers/id_presets/fas-print.svg" + }, + { + "if": "shop=cosmetics", + "then": "circle:white;./assets/layers/id_presets/temaki-lipstick.svg" + }, + { + "if": "shop=country_store", + "then": "circle:white;./assets/layers/id_presets/fas-hat-cowboy-side.svg" + }, + { + "if": "shop=curtain", + "then": "circle:white;./assets/layers/id_presets/temaki-curtains.svg" + }, + { + "if": "shop=dairy", + "then": "circle:white;./assets/layers/id_presets/fas-cheese.svg" + }, + { + "if": "shop=deli", + "then": "circle:white;./assets/layers/id_presets/temaki-meat.svg" + }, + { + "if": "shop=department_store", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=doityourself", + "then": "circle:white;./assets/layers/id_presets/temaki-tools.svg" + }, + { + "if": "shop=doors", + "then": "circle:white;./assets/layers/id_presets/fas-door-open.svg" + }, + { + "if": "shop=dry_cleaning", + "then": "circle:white;./assets/layers/id_presets/temaki-clothes_hanger.svg" + }, + { + "if": "shop=e-cigarette", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=electrical", + "then": "circle:white;./assets/layers/id_presets/temaki-power.svg" + }, + { + "if": "shop=electronics", + "then": "circle:white;./assets/layers/id_presets/fas-plug.svg" + }, + { + "if": "shop=erotic", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=fabric", + "then": "circle:white;./assets/layers/id_presets/fas-tape.svg" + }, + { + "if": "shop=fashion_accessories", + "then": "circle:white;./assets/layers/id_presets/temaki-fashion_accessories.svg" + }, + { + "if": "shop=fireplace", + "then": "circle:white;./assets/layers/id_presets/temaki-fireplace.svg" + }, + { + "if": "shop=fishing", + "then": "circle:white;./assets/layers/id_presets/temaki-ice_fishing.svg" + }, + { + "if": "shop=flooring", + "then": "circle:white;./assets/layers/id_presets/temaki-tools.svg" + }, + { + "if": "shop=florist", + "then": "circle:white;./assets/layers/id_presets/maki-florist.svg" + }, + { + "if": "shop=frame", + "then": "circle:white;./assets/layers/id_presets/fas-vector-square.svg" + }, + { + "if": "shop=frozen_food", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=fuel", + "then": "circle:white;./assets/layers/id_presets/temaki-propane_tank.svg" + }, + { + "if": "shop=funeral_directors", + "then": "circle:white;./assets/layers/id_presets/maki-cemetery.svg" + }, + { + "if": "shop=furniture", + "then": "circle:white;./assets/layers/id_presets/fas-couch.svg" + }, + { + "if": "shop=games", + "then": "circle:white;./assets/layers/id_presets/fas-dice.svg" + }, + { + "if": "shop=garden_centre", + "then": "circle:white;./assets/layers/id_presets/maki-garden-centre.svg" + }, + { + "if": "shop=gas", + "then": "circle:white;./assets/layers/id_presets/temaki-propane_tank.svg" + }, + { + "if": "shop=general", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=gift", + "then": "circle:white;./assets/layers/id_presets/maki-gift.svg" + }, + { + "if": "shop=greengrocer", + "then": "circle:white;./assets/layers/id_presets/fas-carrot.svg" + }, + { + "if": "shop=hairdresser", + "then": "circle:white;./assets/layers/id_presets/temaki-beauty_salon.svg" + }, + { + "if": "shop=hairdresser_supply", + "then": "circle:white;./assets/layers/id_presets/temaki-hair_care.svg" + }, + { + "if": "shop=hardware", + "then": "circle:white;./assets/layers/id_presets/temaki-tools.svg" + }, + { + "if": "shop=health_food", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=hearing_aids", + "then": "circle:white;./assets/layers/id_presets/temaki-hearing_aid.svg" + }, + { + "if": "shop=herbalist", + "then": "circle:white;./assets/layers/id_presets/fas-leaf.svg" + }, + { + "if": "shop=hifi", + "then": "circle:white;./assets/layers/id_presets/temaki-speaker.svg" + }, + { + "if": "shop=hobby", + "then": "circle:white;./assets/layers/id_presets/fas-dragon.svg" + }, + { + "if": "shop=household_linen", + "then": "circle:white;./assets/layers/id_presets/temaki-cloth.svg" + }, + { + "if": "shop=houseware", + "then": "circle:white;./assets/layers/id_presets/fas-blender.svg" + }, + { + "if": "shop=hunting", + "then": "circle:white;./assets/layers/id_presets/temaki-bow_and_arrow.svg" + }, + { + "if": "shop=interior_decoration", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=jewelry", + "then": "circle:white;./assets/layers/id_presets/maki-jewelry-store.svg" + }, + { + "if": "shop=kiosk", + "then": "circle:white;./assets/layers/id_presets/fas-store.svg" + }, + { + "if": "shop=kitchen", + "then": "circle:white;./assets/layers/id_presets/temaki-kitchen_sink.svg" + }, + { + "if": "shop=laundry", + "then": "circle:white;./assets/layers/id_presets/temaki-laundry.svg" + }, + { + "if": "shop=leather", + "then": "circle:white;./assets/layers/id_presets/temaki-handbag.svg" + }, + { + "if": "shop=lighting", + "then": "circle:white;./assets/layers/id_presets/temaki-desk_lamp.svg" + }, + { + "if": "shop=locksmith", + "then": "circle:white;./assets/layers/id_presets/fas-key.svg" + }, + { + "if": "shop=mall", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=massage", + "then": "circle:white;./assets/layers/id_presets/temaki-spa.svg" + }, + { + "if": "shop=medical_supply", + "then": "circle:white;./assets/layers/id_presets/fas-crutch.svg" + }, + { + "if": "shop=military_surplus", + "then": "circle:white;./assets/layers/id_presets/temaki-military.svg" + }, + { + "if": "shop=model", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=money_lender", + "then": "circle:white;./assets/layers/id_presets/temaki-money_hand.svg" + }, + { + "if": "shop=motorcycle", + "then": "circle:white;./assets/layers/id_presets/fas-motorcycle.svg" + }, + { + "if": "shop=motorcycle_repair", + "then": "circle:white;./assets/layers/id_presets/temaki-motorcycle_repair.svg" + }, + { + "if": "shop=music", + "then": "circle:white;./assets/layers/id_presets/fas-compact-disc.svg" + }, + { + "if": "shop=musical_instrument", + "then": "circle:white;./assets/layers/id_presets/fas-guitar.svg" + }, + { + "if": "shop=newsagent", + "then": "circle:white;./assets/layers/id_presets/fas-newspaper.svg" + }, + { + "if": "shop=nutrition_supplements", + "then": "circle:white;./assets/layers/id_presets/fas-pills.svg" + }, + { + "if": "shop=optician", + "then": "circle:white;./assets/layers/id_presets/maki-optician.svg" + }, + { + "if": "shop=outdoor", + "then": "circle:white;./assets/layers/id_presets/temaki-compass.svg" + }, + { + "if": "shop=outpost", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=paint", + "then": "circle:white;./assets/layers/id_presets/fas-paint-roller.svg" + }, + { + "if": "shop=party", + "then": "circle:white;./assets/layers/id_presets/temaki-balloon.svg" + }, + { + "if": "shop=pastry", + "then": "circle:white;./assets/layers/id_presets/maki-bakery.svg" + }, + { + "if": "shop=pawnbroker", + "then": "circle:white;./assets/layers/id_presets/temaki-money_hand.svg" + }, + { + "if": "shop=perfumery", + "then": "circle:white;./assets/layers/id_presets/temaki-perfume.svg" + }, + { + "if": "shop=pet", + "then": "circle:white;./assets/layers/id_presets/fas-cat.svg" + }, + { + "if": "shop=pet_grooming", + "then": "circle:white;./assets/layers/id_presets/temaki-pet_grooming.svg" + }, + { + "if": "shop=photo", + "then": "circle:white;./assets/layers/id_presets/fas-camera-retro.svg" + }, + { + "if": "shop=pottery", + "then": "circle:white;./assets/layers/id_presets/temaki-vase.svg" + }, + { + "if": "shop=printer_ink", + "then": "circle:white;./assets/layers/id_presets/fas-print.svg" + }, + { + "if": "shop=psychic", + "then": "circle:white;./assets/layers/id_presets/temaki-psychic.svg" + }, + { + "if": "shop=pyrotechnics", + "then": "circle:white;./assets/layers/id_presets/temaki-rocket_firework.svg" + }, + { + "if": "shop=radiotechnics", + "then": "circle:white;./assets/layers/id_presets/fas-microchip.svg" + }, + { + "if": "shop=religion", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=rental", + "then": "circle:white;./assets/layers/id_presets/fas-dolly.svg" + }, + { + "if": "shop=scuba_diving", + "then": "circle:white;./assets/layers/id_presets/temaki-scuba_diving.svg" + }, + { + "if": "shop=seafood", + "then": "circle:white;./assets/layers/id_presets/temaki-fish_cleaning.svg" + }, + { + "if": "shop=second_hand", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=sewing", + "then": "circle:white;./assets/layers/id_presets/temaki-needle_and_spool.svg" + }, + { + "if": "shop=shoe_repair", + "then": "circle:white;./assets/layers/id_presets/temaki-hammer_shoe.svg" + }, + { + "if": "shop=shoes", + "then": "circle:white;./assets/layers/id_presets/maki-shoe.svg" + }, + { + "if": "shop=spices", + "then": "circle:white;./assets/layers/id_presets/temaki-spice_bottle.svg" + }, + { + "if": "shop=sports", + "then": "circle:white;./assets/layers/id_presets/fas-futbol.svg" + }, + { + "if": "shop=stationery", + "then": "circle:white;./assets/layers/id_presets/fas-paperclip.svg" + }, + { + "if": "shop=storage_rental", + "then": "circle:white;./assets/layers/id_presets/temaki-storage_rental.svg" + }, + { + "if": "shop=supermarket", + "then": "circle:white;./assets/layers/id_presets/maki-grocery.svg" + }, + { + "if": "shop=tailor", + "then": "circle:white;./assets/layers/id_presets/temaki-needle_and_spool.svg" + }, + { + "if": "shop=tattoo", + "then": "circle:white;./assets/layers/id_presets/temaki-tattoo_machine.svg" + }, + { + "if": "shop=tea", + "then": "circle:white;./assets/layers/id_presets/maki-teahouse.svg" + }, + { + "if": "shop=telecommunication", + "then": "circle:white;./assets/layers/id_presets/maki-telephone.svg" + }, + { + "if": "shop=tiles", + "then": "circle:white;./assets/layers/id_presets/temaki-tiling.svg" + }, + { + "if": "shop=tobacco", + "then": "circle:white;./assets/layers/id_presets/temaki-pipe.svg" + }, + { + "if": "shop=tool_hire", + "then": "circle:white;./assets/layers/id_presets/temaki-tools.svg" + }, + { + "if": "shop=toys", + "then": "circle:white;./assets/layers/id_presets/fas-rocket.svg" + }, + { + "if": "shop=trade", + "then": "circle:white;./assets/layers/id_presets/temaki-tools.svg" + }, + { + "if": "shop=travel_agency", + "then": "circle:white;./assets/layers/id_presets/fas-suitcase.svg" + }, + { + "if": "shop=trophy", + "then": "circle:white;./assets/layers/id_presets/fas-trophy.svg" + }, + { + "if": "shop=tyres", + "then": "circle:white;./assets/layers/id_presets/temaki-tire.svg" + }, + { + "if": "shop=vacuum_cleaner", + "then": "circle:white;./assets/layers/id_presets/temaki-vacuum.svg" + }, + { + "if": "shop=variety_store", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=video", + "then": "circle:white;./assets/layers/id_presets/temaki-movie_rental.svg" + }, + { + "if": "shop=video_games", + "then": "circle:white;./assets/layers/id_presets/maki-gaming.svg" + }, + { + "if": "shop=watches", + "then": "circle:white;./assets/layers/id_presets/maki-watch.svg" + }, + { + "if": "shop=water", + "then": "circle:white;./assets/layers/id_presets/temaki-water_bottle.svg" + }, + { + "if": "shop=weapons", + "then": "circle:white;./assets/layers/id_presets/temaki-dagger.svg" + }, + { + "if": "shop=wholesale", + "then": "circle:white;./assets/layers/id_presets/maki-warehouse.svg" + }, + { + "if": "shop=wigs", + "then": "circle:white;./assets/layers/id_presets/maki-shop.svg" + }, + { + "if": "shop=window_blind", + "then": "circle:white;./assets/layers/id_presets/temaki-window.svg" + }, + { + "if": "shop=wine", + "then": "circle:white;./assets/layers/id_presets/maki-alcohol-shop.svg" + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/id_presets/license_info.json b/assets/layers/id_presets/license_info.json new file mode 100644 index 0000000000..a1aacc2ece --- /dev/null +++ b/assets/layers/id_presets/license_info.json @@ -0,0 +1,1162 @@ +[ + { + "path": "ID.svg", + "license": "WTFPL", + "authors": [ + "iD editor" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:ID.svg" + ] + }, + { + "path": "fas-baby-carriage.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-bath.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-blender.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-book.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-camera-retro.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-cannabis.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-car-battery.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-carrot.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-cat.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-cheese.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-compact-disc.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-couch.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-crutch.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-dice.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-dolly.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-door-open.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-dragon.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-futbol.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-guitar.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-hat-cowboy-side.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-key.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-laptop.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-leaf.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-microchip.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-motorcycle.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-newspaper.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-paint-roller.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-paperclip.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-pills.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-plug.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-print.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-rocket.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-store.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-suitcase-rolling.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-suitcase.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-tape.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-tractor.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-trophy.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-vector-square.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "fas-wine-bottle.svg", + "license": "CC-BY 4.0", + "authors": [ + "Font-Awesome icon set" + ], + "sources": [ + "https://github.com/FortAwesome/Font-Awesome" + ] + }, + { + "path": "maki-alcohol-shop.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-bakery.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-bicycle.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-car-repair.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-car.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-cemetery.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-clothing-store.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-confectionery.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-florist.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-gaming.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-garden-centre.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-gift.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-grocery.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-jewelry-store.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-lodging.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-optician.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-shoe.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-shop.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-teahouse.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-telephone.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-warehouse.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "maki-watch.svg", + "license": "CC0", + "authors": [ + "Maki icon set" + ], + "sources": [ + "https://github.com/mapbox/maki" + ] + }, + { + "path": "temaki-balloon.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-beauty_salon.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-boat.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-bottles.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-bow_and_arrow.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-camper_trailer.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-cleaver.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-cloth.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-clothes_hanger.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-coffee.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-compass.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-curtains.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-dagger.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-desk_lamp.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-fashion_accessories.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-fireplace.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-fish_cleaning.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-furniture.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-hair_care.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-hammer_shoe.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-handbag.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-hearing_aid.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-ice_fishing.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-kitchen_sink.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-laundry.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-lipstick.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-meat.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-military.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-money_hand.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-motorcycle_repair.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-movie_rental.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-needle_and_spool.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-perfume.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-pet_grooming.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-pipe.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-power.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-propane_tank.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-psychic.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-rocket_firework.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-scuba_diving.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-spa.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-speaker.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-spice_bottle.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-storage_fermenter.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-storage_rental.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-tattoo_machine.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-tiling.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-tire.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-tools.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-vacuum.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-vase.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-water_bottle.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + }, + { + "path": "temaki-window.svg", + "license": "CC0", + "authors": [ + "Temaki icon set" + ], + "sources": [ + "https://github.com/ideditor/temaki" + ] + } +] \ No newline at end of file diff --git a/assets/layers/id_presets/maki-alcohol-shop.svg b/assets/layers/id_presets/maki-alcohol-shop.svg new file mode 100644 index 0000000000..54f4d3e268 --- /dev/null +++ b/assets/layers/id_presets/maki-alcohol-shop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-bakery.svg b/assets/layers/id_presets/maki-bakery.svg new file mode 100644 index 0000000000..2a00e88c21 --- /dev/null +++ b/assets/layers/id_presets/maki-bakery.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-bicycle.svg b/assets/layers/id_presets/maki-bicycle.svg new file mode 100644 index 0000000000..429ac4d3f8 --- /dev/null +++ b/assets/layers/id_presets/maki-bicycle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-car-repair.svg b/assets/layers/id_presets/maki-car-repair.svg new file mode 100644 index 0000000000..6a6fdf05e6 --- /dev/null +++ b/assets/layers/id_presets/maki-car-repair.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-car.svg b/assets/layers/id_presets/maki-car.svg new file mode 100644 index 0000000000..5b114987e4 --- /dev/null +++ b/assets/layers/id_presets/maki-car.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-cemetery.svg b/assets/layers/id_presets/maki-cemetery.svg new file mode 100644 index 0000000000..43d34afa0a --- /dev/null +++ b/assets/layers/id_presets/maki-cemetery.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-clothing-store.svg b/assets/layers/id_presets/maki-clothing-store.svg new file mode 100644 index 0000000000..3de5fc0e25 --- /dev/null +++ b/assets/layers/id_presets/maki-clothing-store.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-confectionery.svg b/assets/layers/id_presets/maki-confectionery.svg new file mode 100644 index 0000000000..4e9456bcf7 --- /dev/null +++ b/assets/layers/id_presets/maki-confectionery.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-florist.svg b/assets/layers/id_presets/maki-florist.svg new file mode 100644 index 0000000000..a9b83e9942 --- /dev/null +++ b/assets/layers/id_presets/maki-florist.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-gaming.svg b/assets/layers/id_presets/maki-gaming.svg new file mode 100644 index 0000000000..3d47ab05cc --- /dev/null +++ b/assets/layers/id_presets/maki-gaming.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-garden-centre.svg b/assets/layers/id_presets/maki-garden-centre.svg new file mode 100644 index 0000000000..b5b717a782 --- /dev/null +++ b/assets/layers/id_presets/maki-garden-centre.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-gift.svg b/assets/layers/id_presets/maki-gift.svg new file mode 100644 index 0000000000..b2f68c7dc4 --- /dev/null +++ b/assets/layers/id_presets/maki-gift.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-grocery.svg b/assets/layers/id_presets/maki-grocery.svg new file mode 100644 index 0000000000..8bf2ecdbb8 --- /dev/null +++ b/assets/layers/id_presets/maki-grocery.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-jewelry-store.svg b/assets/layers/id_presets/maki-jewelry-store.svg new file mode 100644 index 0000000000..f43c0bcd08 --- /dev/null +++ b/assets/layers/id_presets/maki-jewelry-store.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-lodging.svg b/assets/layers/id_presets/maki-lodging.svg new file mode 100644 index 0000000000..d1bde6b04f --- /dev/null +++ b/assets/layers/id_presets/maki-lodging.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-optician.svg b/assets/layers/id_presets/maki-optician.svg new file mode 100644 index 0000000000..6b06603b0d --- /dev/null +++ b/assets/layers/id_presets/maki-optician.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-shoe.svg b/assets/layers/id_presets/maki-shoe.svg new file mode 100644 index 0000000000..b18a5b6751 --- /dev/null +++ b/assets/layers/id_presets/maki-shoe.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-shop.svg b/assets/layers/id_presets/maki-shop.svg new file mode 100644 index 0000000000..df8e8dc310 --- /dev/null +++ b/assets/layers/id_presets/maki-shop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-teahouse.svg b/assets/layers/id_presets/maki-teahouse.svg new file mode 100644 index 0000000000..60f567f9dd --- /dev/null +++ b/assets/layers/id_presets/maki-teahouse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-telephone.svg b/assets/layers/id_presets/maki-telephone.svg new file mode 100644 index 0000000000..3f67f650b1 --- /dev/null +++ b/assets/layers/id_presets/maki-telephone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-warehouse.svg b/assets/layers/id_presets/maki-warehouse.svg new file mode 100644 index 0000000000..165fce66f8 --- /dev/null +++ b/assets/layers/id_presets/maki-warehouse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/maki-watch.svg b/assets/layers/id_presets/maki-watch.svg new file mode 100644 index 0000000000..3600f982ba --- /dev/null +++ b/assets/layers/id_presets/maki-watch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-balloon.svg b/assets/layers/id_presets/temaki-balloon.svg new file mode 100644 index 0000000000..5afe45c878 --- /dev/null +++ b/assets/layers/id_presets/temaki-balloon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-beauty_salon.svg b/assets/layers/id_presets/temaki-beauty_salon.svg new file mode 100644 index 0000000000..fbcd5a0168 --- /dev/null +++ b/assets/layers/id_presets/temaki-beauty_salon.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-boat.svg b/assets/layers/id_presets/temaki-boat.svg new file mode 100644 index 0000000000..369e5f85f9 --- /dev/null +++ b/assets/layers/id_presets/temaki-boat.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-bottles.svg b/assets/layers/id_presets/temaki-bottles.svg new file mode 100644 index 0000000000..b62d9a6166 --- /dev/null +++ b/assets/layers/id_presets/temaki-bottles.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-bow_and_arrow.svg b/assets/layers/id_presets/temaki-bow_and_arrow.svg new file mode 100644 index 0000000000..7aba292fab --- /dev/null +++ b/assets/layers/id_presets/temaki-bow_and_arrow.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-camper_trailer.svg b/assets/layers/id_presets/temaki-camper_trailer.svg new file mode 100644 index 0000000000..3a3822791c --- /dev/null +++ b/assets/layers/id_presets/temaki-camper_trailer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-cleaver.svg b/assets/layers/id_presets/temaki-cleaver.svg new file mode 100644 index 0000000000..ba69e72a64 --- /dev/null +++ b/assets/layers/id_presets/temaki-cleaver.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-cloth.svg b/assets/layers/id_presets/temaki-cloth.svg new file mode 100644 index 0000000000..9a96452eda --- /dev/null +++ b/assets/layers/id_presets/temaki-cloth.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-clothes_hanger.svg b/assets/layers/id_presets/temaki-clothes_hanger.svg new file mode 100644 index 0000000000..651f92a948 --- /dev/null +++ b/assets/layers/id_presets/temaki-clothes_hanger.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-coffee.svg b/assets/layers/id_presets/temaki-coffee.svg new file mode 100644 index 0000000000..f81ce150bd --- /dev/null +++ b/assets/layers/id_presets/temaki-coffee.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-compass.svg b/assets/layers/id_presets/temaki-compass.svg new file mode 100644 index 0000000000..8d1efc59b8 --- /dev/null +++ b/assets/layers/id_presets/temaki-compass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-curtains.svg b/assets/layers/id_presets/temaki-curtains.svg new file mode 100644 index 0000000000..486c9deab3 --- /dev/null +++ b/assets/layers/id_presets/temaki-curtains.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-dagger.svg b/assets/layers/id_presets/temaki-dagger.svg new file mode 100644 index 0000000000..72e300e25e --- /dev/null +++ b/assets/layers/id_presets/temaki-dagger.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-desk_lamp.svg b/assets/layers/id_presets/temaki-desk_lamp.svg new file mode 100644 index 0000000000..7c2626d39d --- /dev/null +++ b/assets/layers/id_presets/temaki-desk_lamp.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-fashion_accessories.svg b/assets/layers/id_presets/temaki-fashion_accessories.svg new file mode 100644 index 0000000000..9c4173b6b2 --- /dev/null +++ b/assets/layers/id_presets/temaki-fashion_accessories.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-fireplace.svg b/assets/layers/id_presets/temaki-fireplace.svg new file mode 100644 index 0000000000..399d671dbd --- /dev/null +++ b/assets/layers/id_presets/temaki-fireplace.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-fish_cleaning.svg b/assets/layers/id_presets/temaki-fish_cleaning.svg new file mode 100644 index 0000000000..ab4621f341 --- /dev/null +++ b/assets/layers/id_presets/temaki-fish_cleaning.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-furniture.svg b/assets/layers/id_presets/temaki-furniture.svg new file mode 100644 index 0000000000..8cc5bec1f6 --- /dev/null +++ b/assets/layers/id_presets/temaki-furniture.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-hair_care.svg b/assets/layers/id_presets/temaki-hair_care.svg new file mode 100644 index 0000000000..6473eb465d --- /dev/null +++ b/assets/layers/id_presets/temaki-hair_care.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-hammer_shoe.svg b/assets/layers/id_presets/temaki-hammer_shoe.svg new file mode 100644 index 0000000000..2a06b2826e --- /dev/null +++ b/assets/layers/id_presets/temaki-hammer_shoe.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-handbag.svg b/assets/layers/id_presets/temaki-handbag.svg new file mode 100644 index 0000000000..34d9cd381f --- /dev/null +++ b/assets/layers/id_presets/temaki-handbag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-hearing_aid.svg b/assets/layers/id_presets/temaki-hearing_aid.svg new file mode 100644 index 0000000000..cbefd86b23 --- /dev/null +++ b/assets/layers/id_presets/temaki-hearing_aid.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-ice_fishing.svg b/assets/layers/id_presets/temaki-ice_fishing.svg new file mode 100644 index 0000000000..ff8412a459 --- /dev/null +++ b/assets/layers/id_presets/temaki-ice_fishing.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-kitchen_sink.svg b/assets/layers/id_presets/temaki-kitchen_sink.svg new file mode 100644 index 0000000000..03745ef6c8 --- /dev/null +++ b/assets/layers/id_presets/temaki-kitchen_sink.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-laundry.svg b/assets/layers/id_presets/temaki-laundry.svg new file mode 100644 index 0000000000..92b4cee9b9 --- /dev/null +++ b/assets/layers/id_presets/temaki-laundry.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-lipstick.svg b/assets/layers/id_presets/temaki-lipstick.svg new file mode 100644 index 0000000000..bc7a315cf3 --- /dev/null +++ b/assets/layers/id_presets/temaki-lipstick.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-meat.svg b/assets/layers/id_presets/temaki-meat.svg new file mode 100644 index 0000000000..65f21b4427 --- /dev/null +++ b/assets/layers/id_presets/temaki-meat.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-military.svg b/assets/layers/id_presets/temaki-military.svg new file mode 100644 index 0000000000..6ee5c82de6 --- /dev/null +++ b/assets/layers/id_presets/temaki-military.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-money_hand.svg b/assets/layers/id_presets/temaki-money_hand.svg new file mode 100644 index 0000000000..79e5dece15 --- /dev/null +++ b/assets/layers/id_presets/temaki-money_hand.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-motorcycle_repair.svg b/assets/layers/id_presets/temaki-motorcycle_repair.svg new file mode 100644 index 0000000000..01256645c6 --- /dev/null +++ b/assets/layers/id_presets/temaki-motorcycle_repair.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-movie_rental.svg b/assets/layers/id_presets/temaki-movie_rental.svg new file mode 100644 index 0000000000..11184560cb --- /dev/null +++ b/assets/layers/id_presets/temaki-movie_rental.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-needle_and_spool.svg b/assets/layers/id_presets/temaki-needle_and_spool.svg new file mode 100644 index 0000000000..bf3cb6a4bf --- /dev/null +++ b/assets/layers/id_presets/temaki-needle_and_spool.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-perfume.svg b/assets/layers/id_presets/temaki-perfume.svg new file mode 100644 index 0000000000..528a151ff9 --- /dev/null +++ b/assets/layers/id_presets/temaki-perfume.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-pet_grooming.svg b/assets/layers/id_presets/temaki-pet_grooming.svg new file mode 100644 index 0000000000..fe7a0940a8 --- /dev/null +++ b/assets/layers/id_presets/temaki-pet_grooming.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-pipe.svg b/assets/layers/id_presets/temaki-pipe.svg new file mode 100644 index 0000000000..a45667dcad --- /dev/null +++ b/assets/layers/id_presets/temaki-pipe.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-power.svg b/assets/layers/id_presets/temaki-power.svg new file mode 100644 index 0000000000..28980a5236 --- /dev/null +++ b/assets/layers/id_presets/temaki-power.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-propane_tank.svg b/assets/layers/id_presets/temaki-propane_tank.svg new file mode 100644 index 0000000000..4022fbd148 --- /dev/null +++ b/assets/layers/id_presets/temaki-propane_tank.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-psychic.svg b/assets/layers/id_presets/temaki-psychic.svg new file mode 100644 index 0000000000..fac479adee --- /dev/null +++ b/assets/layers/id_presets/temaki-psychic.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-rocket_firework.svg b/assets/layers/id_presets/temaki-rocket_firework.svg new file mode 100644 index 0000000000..579b37d4ee --- /dev/null +++ b/assets/layers/id_presets/temaki-rocket_firework.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-scuba_diving.svg b/assets/layers/id_presets/temaki-scuba_diving.svg new file mode 100644 index 0000000000..6db6a1df15 --- /dev/null +++ b/assets/layers/id_presets/temaki-scuba_diving.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-spa.svg b/assets/layers/id_presets/temaki-spa.svg new file mode 100644 index 0000000000..6a316ec76f --- /dev/null +++ b/assets/layers/id_presets/temaki-spa.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-speaker.svg b/assets/layers/id_presets/temaki-speaker.svg new file mode 100644 index 0000000000..5a9fa57ecf --- /dev/null +++ b/assets/layers/id_presets/temaki-speaker.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-spice_bottle.svg b/assets/layers/id_presets/temaki-spice_bottle.svg new file mode 100644 index 0000000000..5bbf92f2e3 --- /dev/null +++ b/assets/layers/id_presets/temaki-spice_bottle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-storage_fermenter.svg b/assets/layers/id_presets/temaki-storage_fermenter.svg new file mode 100644 index 0000000000..4f35d4f1a1 --- /dev/null +++ b/assets/layers/id_presets/temaki-storage_fermenter.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-storage_rental.svg b/assets/layers/id_presets/temaki-storage_rental.svg new file mode 100644 index 0000000000..124edb1745 --- /dev/null +++ b/assets/layers/id_presets/temaki-storage_rental.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-tattoo_machine.svg b/assets/layers/id_presets/temaki-tattoo_machine.svg new file mode 100644 index 0000000000..a6186b60e5 --- /dev/null +++ b/assets/layers/id_presets/temaki-tattoo_machine.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-tiling.svg b/assets/layers/id_presets/temaki-tiling.svg new file mode 100644 index 0000000000..376d6f49b8 --- /dev/null +++ b/assets/layers/id_presets/temaki-tiling.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-tire.svg b/assets/layers/id_presets/temaki-tire.svg new file mode 100644 index 0000000000..5e594d05aa --- /dev/null +++ b/assets/layers/id_presets/temaki-tire.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-tools.svg b/assets/layers/id_presets/temaki-tools.svg new file mode 100644 index 0000000000..01e3254950 --- /dev/null +++ b/assets/layers/id_presets/temaki-tools.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-vacuum.svg b/assets/layers/id_presets/temaki-vacuum.svg new file mode 100644 index 0000000000..b508f0818d --- /dev/null +++ b/assets/layers/id_presets/temaki-vacuum.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-vase.svg b/assets/layers/id_presets/temaki-vase.svg new file mode 100644 index 0000000000..5c920103a3 --- /dev/null +++ b/assets/layers/id_presets/temaki-vase.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-water_bottle.svg b/assets/layers/id_presets/temaki-water_bottle.svg new file mode 100644 index 0000000000..e9d6e5d58e --- /dev/null +++ b/assets/layers/id_presets/temaki-water_bottle.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/layers/id_presets/temaki-window.svg b/assets/layers/id_presets/temaki-window.svg new file mode 100644 index 0000000000..38a9f6c986 --- /dev/null +++ b/assets/layers/id_presets/temaki-window.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/indoors/indoors.json b/assets/layers/indoors/indoors.json new file mode 100644 index 0000000000..9b00ee2269 --- /dev/null +++ b/assets/layers/indoors/indoors.json @@ -0,0 +1,222 @@ +{ + "id": "indoors", + "name": { + "en": "indoors", + "de": "Innenräume", + "nl": "Binnenruimtes" + }, + "description": { + "en": "Basic indoor mapping: shows room outlines", + "de": "Grundlegende Innenraumkartierung: zeigt Umrisse von Räumen", + "nl": "Een basis voor indoor-navigatie: toont binnenruimtes" + }, + "source": { + "osmTags": { + "or": [ + "indoor=room", + "indoor=area", + "indoor=wall", + "indoor=door", + "indoor=level" + ] + } + }, + "title": { + "render": { + "en": "Indoor area {name}", + "de": "Innenbereich {name}", + "nl": "Binnenruimte {name}" + }, + "mappings": [ + { + "if": "indoor=room", + "then": { + "en": "Indoor Room {name}" + } + }, + { + "if": "indoor=area", + "then": { + "en": "Indoor Area {name}" + } + }, + { + "if": "indoor=wall", + "then": { + "en": "Indoor Wall {name}" + } + }, + { + "if": "indoor=corridor", + "then": { + "en": "Indoor Corridor {name}" + } + }, + { + "if": "indoor=door", + "then": { + "en": "Indoor Door {name}" + } + }, + { + "if": "indoor=level", + "then": { + "en": "Indoor Level {name}" + } + } + ] + }, + "minzoom": 13, + "tagRenderings": [ + "images", + { + "id": "ref", + "question": { + "en": "What is the reference number of this room?" + }, + "render": { + "en": "This room has the reference number {ref}" + }, + "freeform": { + "key": "ref", + "type": "string", + "placeholder": { + "en": "Reference number of the room (e.g. '1.1' or 'A1')" + } + }, + "condition": { + "or": [ + "indoor=room", + "indoor=area", + "indoor=corridor" + ] + } + }, + { + "id": "name", + "question": { + "en": "What is the name of this room?", + "de": "Wie lautet der Name dieses Raums?" + }, + "render": { + "en": "This room is named {name}", + "de": "Der Name des Raums lautet {name}" + }, + "freeform": { + "key": "name", + "type": "string", + "placeholder": { + "en": "Name of the room" + } + }, + "condition": { + "or": [ + "indoor=room", + "indoor=area", + "indoor=corridor" + ] + } + } + ], + "mapRendering": [ + { + "color": { + "render": "#d3d7d588" + }, + "width": { + "render": "8" + }, + "offset": { + "render": "-4" + }, + "fill": "no" + }, + { + "color": "#4f5551", + "fill": "no", + "width": "2" + }, + { + "label": { + "render": "
{name}
", + "condition": "name~*", + "mappings": [ + { + "if": { + "or": [ + "room=administration", + "room=auditorium", + "room=bedroom", + "room=chapel", + "room=class", + "room=computer", + "room=conference", + "room=crypt", + "room=kitchen", + "room=laboratory", + "room=library", + "room=locker", + "room=nursery", + "room=office", + "room=prison_cell", + "room=restaurant", + "room=security_check", + "room=sport", + "room=storage", + "room=technical", + "room=toilet", + "room=toilets", + "room=waiting" + ] + }, + "then": "
{name}
" + } + ] + }, + "location": [ + "point", + "centroid" + ], + "icon": { + "render": null, + "condition": "indoor=room", + "mappings": [ + { + "if": { + "or": [ + "room=adminstration", + "room=auditorium", + "room=bedroom", + "room=chapel", + "room=class", + "room=computer", + "room=conference", + "room=crypt", + "room=kitchen", + "room=laboratory", + "room=library", + "room=locker", + "room=nursery", + "room=office", + "room=prison_cell", + "room=restaurant", + "room=security_check", + "room=sport", + "room=storage", + "room=technical", + "room=toilets", + "room=waiting" + ] + }, + "then": "./assets/layers/indoors/room_{room}.svg" + }, + { + "if": "room=toilet", + "then": "./assets/layers/indoors/room_toilets.svg" + } + ] + }, + "iconSize": "15,15, bottom" + } + ] +} \ No newline at end of file diff --git a/assets/layers/indoors/license_info.json b/assets/layers/indoors/license_info.json new file mode 100644 index 0000000000..858f28f2e0 --- /dev/null +++ b/assets/layers/indoors/license_info.json @@ -0,0 +1,222 @@ +[ + { + "path": "room_administration.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_administration.svg" + ] + }, + { + "path": "room_auditorium.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_auditorium.svg" + ] + }, + { + "path": "room_bedroom.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_bedroom.svg" + ] + }, + { + "path": "room_chapel.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_chapel.svg" + ] + }, + { + "path": "room_class.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_class.svg" + ] + }, + { + "path": "room_computer.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_computer.svg" + ] + }, + { + "path": "room_conference.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_conference.svg" + ] + }, + { + "path": "room_crypt.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_crypt.svg" + ] + }, + { + "path": "room_kitchen.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_kitchen.svg" + ] + }, + { + "path": "room_laboratory.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_laboratory.svg" + ] + }, + { + "path": "room_library.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_library.svg" + ] + }, + { + "path": "room_locker.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_locker.svg" + ] + }, + { + "path": "room_nursery.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_nursery.svg" + ] + }, + { + "path": "room_office.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_office.svg" + ] + }, + { + "path": "room_prison_cell.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_prison_cell.svg" + ] + }, + { + "path": "room_restaurant.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_restaurant.svg" + ] + }, + { + "path": "room_security_check.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_security_check.svg" + ] + }, + { + "path": "room_sport.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_sport.svg" + ] + }, + { + "path": "room_storage.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_storage.svg" + ] + }, + { + "path": "room_technical.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_technical.svg" + ] + }, + { + "path": "room_toilets.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_toilets.svg" + ] + }, + { + "path": "room_waiting.svg", + "license": "GNU", + "authors": [ + "Adrien Pavie" + ], + "sources": [ + "https://framagit.org/OpenLevelUp/OpenLevelUp/-/blob/master/src/img/features-vector/room_waiting.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/indoors/room_administration.svg b/assets/layers/indoors/room_administration.svg new file mode 100644 index 0000000000..3bc7f7bba5 --- /dev/null +++ b/assets/layers/indoors/room_administration.svg @@ -0,0 +1,55 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/assets/layers/indoors/room_auditorium.svg b/assets/layers/indoors/room_auditorium.svg new file mode 100644 index 0000000000..7c08539433 --- /dev/null +++ b/assets/layers/indoors/room_auditorium.svg @@ -0,0 +1,137 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_bedroom.svg b/assets/layers/indoors/room_bedroom.svg new file mode 100644 index 0000000000..183cd86661 --- /dev/null +++ b/assets/layers/indoors/room_bedroom.svg @@ -0,0 +1,175 @@ + + + + + + + + image/svg+xml + + + en + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_chapel.svg b/assets/layers/indoors/room_chapel.svg new file mode 100644 index 0000000000..1dc57c0109 --- /dev/null +++ b/assets/layers/indoors/room_chapel.svg @@ -0,0 +1,185 @@ + + + + + + + + image/svg+xml + + + en + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_class.svg b/assets/layers/indoors/room_class.svg new file mode 100644 index 0000000000..ea194e66d6 --- /dev/null +++ b/assets/layers/indoors/room_class.svg @@ -0,0 +1,115 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_computer.svg b/assets/layers/indoors/room_computer.svg new file mode 100644 index 0000000000..c5637733f3 --- /dev/null +++ b/assets/layers/indoors/room_computer.svg @@ -0,0 +1,55 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/assets/layers/indoors/room_conference.svg b/assets/layers/indoors/room_conference.svg new file mode 100644 index 0000000000..5ee49fb50e --- /dev/null +++ b/assets/layers/indoors/room_conference.svg @@ -0,0 +1,118 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_crypt.svg b/assets/layers/indoors/room_crypt.svg new file mode 100644 index 0000000000..eae7a7ed11 --- /dev/null +++ b/assets/layers/indoors/room_crypt.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_kitchen.svg b/assets/layers/indoors/room_kitchen.svg new file mode 100644 index 0000000000..fc666fc948 --- /dev/null +++ b/assets/layers/indoors/room_kitchen.svg @@ -0,0 +1,113 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_laboratory.svg b/assets/layers/indoors/room_laboratory.svg new file mode 100644 index 0000000000..04c740fe74 --- /dev/null +++ b/assets/layers/indoors/room_laboratory.svg @@ -0,0 +1,78 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/assets/layers/indoors/room_library.svg b/assets/layers/indoors/room_library.svg new file mode 100644 index 0000000000..31ae21fffe --- /dev/null +++ b/assets/layers/indoors/room_library.svg @@ -0,0 +1,115 @@ + + + + + + + + image/svg+xml + + + en + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_locker.svg b/assets/layers/indoors/room_locker.svg new file mode 100644 index 0000000000..6826a50c0f --- /dev/null +++ b/assets/layers/indoors/room_locker.svg @@ -0,0 +1,74 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_nursery.svg b/assets/layers/indoors/room_nursery.svg new file mode 100644 index 0000000000..549839df01 --- /dev/null +++ b/assets/layers/indoors/room_nursery.svg @@ -0,0 +1,155 @@ + + + + + + + + image/svg+xml + + + en + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_office.svg b/assets/layers/indoors/room_office.svg new file mode 100644 index 0000000000..4e49e97f42 --- /dev/null +++ b/assets/layers/indoors/room_office.svg @@ -0,0 +1,117 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_prison_cell.svg b/assets/layers/indoors/room_prison_cell.svg new file mode 100644 index 0000000000..3fd3d21163 --- /dev/null +++ b/assets/layers/indoors/room_prison_cell.svg @@ -0,0 +1,124 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_restaurant.svg b/assets/layers/indoors/room_restaurant.svg new file mode 100644 index 0000000000..97b43c91a3 --- /dev/null +++ b/assets/layers/indoors/room_restaurant.svg @@ -0,0 +1,71 @@ + + + + + + + + + image/svg+xml + + + en + + + + + image/svg+xml + + + + + + + + diff --git a/assets/layers/indoors/room_security_check.svg b/assets/layers/indoors/room_security_check.svg new file mode 100644 index 0000000000..2cc0a3e053 --- /dev/null +++ b/assets/layers/indoors/room_security_check.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/assets/layers/indoors/room_sport.svg b/assets/layers/indoors/room_sport.svg new file mode 100644 index 0000000000..5a5949fe3e --- /dev/null +++ b/assets/layers/indoors/room_sport.svg @@ -0,0 +1,111 @@ + + + + + + + + + image/svg+xml + + + en + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_storage.svg b/assets/layers/indoors/room_storage.svg new file mode 100644 index 0000000000..2c6c28308b --- /dev/null +++ b/assets/layers/indoors/room_storage.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_technical.svg b/assets/layers/indoors/room_technical.svg new file mode 100644 index 0000000000..b058c935c8 --- /dev/null +++ b/assets/layers/indoors/room_technical.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/layers/indoors/room_toilets.svg b/assets/layers/indoors/room_toilets.svg new file mode 100644 index 0000000000..e41fc9954c --- /dev/null +++ b/assets/layers/indoors/room_toilets.svg @@ -0,0 +1,132 @@ + + + + + + + + image/svg+xml + + + en + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/indoors/room_waiting.svg b/assets/layers/indoors/room_waiting.svg new file mode 100644 index 0000000000..e3aacd19e0 --- /dev/null +++ b/assets/layers/indoors/room_waiting.svg @@ -0,0 +1,108 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/information_board/information_board.json b/assets/layers/information_board/information_board.json index ed9fe7e111..0c7777eef9 100644 --- a/assets/layers/information_board/information_board.json +++ b/assets/layers/information_board/information_board.json @@ -7,7 +7,8 @@ "fr": "Panneaux d'informations", "de": "Informationstafeln", "ru": "Информационные щиты", - "ca": "Panells d'informació" + "ca": "Panells d'informació", + "es": "Paneles informativos" }, "minzoom": 12, "source": { @@ -25,7 +26,8 @@ "fr": "Panneau d'informations", "de": "Informationstafel", "ru": "Информационный щит", - "ca": "Panell d'informació" + "ca": "Panell d'informació", + "es": "Panel informativo" } }, "tagRenderings": [ @@ -42,8 +44,9 @@ "en": "an information board", "it": "una pannello informativo", "fr": "une panneau d'informations", - "de": "eine informationstafel", - "ru": "информационный щит" + "de": "eine Informationstafel", + "ru": "информационный щит", + "es": "un panel informativo" } } ], @@ -81,8 +84,9 @@ } ], "description": { - "en": "A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...)", + "en": "A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, …)", "nl": "Deze laag toont informatieborden in de publieke ruimte die uitleg geven over een bezienswaardigheid (bv. uitleg over het landschap, een ruine, een kaart van de omgeving, ...)", - "de": "Eine Ebene mit touristischen, straßenseitigen Informationstafeln (z. B. mit Informationen über die Landschaft, ein Gebäude, ein Merkmal, eine Karte, ...)" + "de": "Eine Ebene mit touristischen, straßenseitigen Informationstafeln (z. B. mit Informationen über die Landschaft, ein Gebäude, ein Merkmal, eine Karte, …)", + "es": "Una capa que muestra paneles informativos turísticos (ej. informan sobre el paisaje, una construcción, una característica, un mapa, ...)" } } \ No newline at end of file diff --git a/assets/layers/kerbs/KerbIcon.svg b/assets/layers/kerbs/KerbIcon.svg new file mode 100644 index 0000000000..2e4172e4d5 --- /dev/null +++ b/assets/layers/kerbs/KerbIcon.svg @@ -0,0 +1,92 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/assets/layers/kerbs/flush.svg b/assets/layers/kerbs/flush.svg new file mode 100644 index 0000000000..43068b3901 --- /dev/null +++ b/assets/layers/kerbs/flush.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/assets/layers/kerbs/kerbs.json b/assets/layers/kerbs/kerbs.json new file mode 100644 index 0000000000..883c6c2d91 --- /dev/null +++ b/assets/layers/kerbs/kerbs.json @@ -0,0 +1,370 @@ +{ + "id": "kerbs", + "name": { + "en": "Kerbs", + "nl": "Stoepranden", + "de": "Bordsteine", + "fr": "Bordures" + }, + "description": { + "en": "A layer showing kerbs.", + "nl": "Een laag met stoepranden.", + "de": "Eine Ebene, die Bordsteine zeigt.", + "fr": "Un calque montrant les bordures." + }, + "source": { + "osmTags": "barrier=kerb" + }, + "minzoom": 13, + "title": { + "render": { + "en": "Kerb", + "nl": "Stoeprand", + "de": "Bordstein", + "fr": "Bordure" + } + }, + "mapRendering": [ + { + "location": [ + "point" + ], + "icon": { + "render": "./assets/layers/kerbs/KerbIcon.svg", + "mappings": [ + { + "if": "kerb=raised", + "then": "./assets/layers/kerbs/raised.svg" + }, + { + "if": "kerb=lowered", + "then": "./assets/layers/kerbs/lowered.svg" + }, + { + "if": "kerb=flush", + "then": "./assets/layers/kerbs/flush.svg" + }, + { + "if": "kerb=no", + "then": "./assets/layers/kerbs/no.svg" + } + ] + } + }, + { + "color": "#f44e42", + "fill": "no", + "width": "8" + } + ], + "tagRenderings": [ + { + "id": "kerb-type", + "question": { + "en": "What is the height of this kerb?", + "nl": "Hoe hoog is deze stoeprand?", + "de": "Wie hoch ist der Bordstein?", + "fr": "Quelle est la hauteur de ce trottoir ?" + }, + "mappings": [ + { + "if": "kerb=raised", + "then": { + "en": "This kerb is raised (>3 cm)", + "nl": "Deze stoeprand is hoog (>3 cm)", + "de": "Der Bordstein ist erhöht (>3 cm)", + "fr": "Cette bordure est surélevée (>3 cm)" + }, + "icon": { + "path": "./assets/layers/kerbs/raised.svg", + "class": "small" + } + }, + { + "if": "kerb=lowered", + "then": { + "en": "This kerb is lowered (~3 cm)", + "nl": "Deze stoeprand is verlaagd (~3 cm)", + "de": "Der Bordstein ist abgesenkt (~3 cm)", + "fr": "Cette bordure est abaissée (~3 cm)" + }, + "icon": { + "path": "./assets/layers/kerbs/lowered.svg", + "class": "small" + } + }, + { + "if": "kerb=flush", + "then": { + "en": "This kerb is flush (~0cm)", + "nl": "Deze stoeprand is vlak (~0cm)", + "de": "Der Bordstein ist bündig (~0cm)", + "fr": "Cette bordure est affleurante (~0cm)" + }, + "icon": { + "path": "./assets/layers/kerbs/flush.svg", + "class": "small" + } + }, + { + "if": "kerb=no", + "then": { + "en": "There is no kerb here", + "nl": "Er is hier geen stoeprand", + "de": "Hier gibt es keinen Bordstein", + "fr": "Il n'y a pas de bordure ici" + }, + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/kerbs/no.svg", + "class": "small" + } + }, + { + "if": "kerb=yes", + "then": { + "en": "There is a kerb of unknown height", + "nl": "Er is een stoeprand met onbekende hoogte", + "de": "Es gibt einen Bordstein mit unbekannter Höhe", + "fr": "Il y a un trottoir de hauteur inconnue" + }, + "hideInAnswer": true + } + ], + "condition": "_geometry:type=Point" + }, + { + "id": "tactile-paving", + "question": { + "en": "Is there tactile paving at this kerb?", + "de": "Gibt es am Bordstein ein taktiles Pflaster?", + "fr": "Y a-t-il un revêtement tactile sur cette bordure ?" + }, + "mappings": [ + { + "if": "tactile_paving=yes", + "then": { + "en": "This kerb has tactile paving.", + "de": "Der Bordstein hat ein taktiles Pflaster.", + "fr": "Cette bordure a un revêtement podotactile." + } + }, + { + "if": "tactile_paving=no", + "then": { + "en": "This kerb does not have tactile paving.", + "de": "Der Bordstein hat kein taktiles Pflaster.", + "fr": "Cette bordure n'a pas de revêtement podotactile." + } + }, + { + "if": "tactile_paving=incorrect", + "then": { + "en": "This kerb has tactile paving, but it is incorrect", + "de": "Der Bordstein hat ein taktiles Pflaster, das aber falsch ist", + "fr": "Cette bordure a un pavage tactile, mais il est incorrect" + }, + "hideInAnswer": true + } + ], + "condition": "_geometry:type=Point" + }, + { + "id": "kerb-height", + "question": { + "en": "What is the height of this kerb?", + "nl": "Hoe hoog is deze stoeprand?", + "de": "Wie hoch ist der Bordstein?", + "fr": "Quelle est la hauteur de ce trottoir ?" + }, + "render": { + "en": "Kerb height: {kerb:height}", + "nl": "Stoeprandhoogte: {kerb:height}", + "de": "Bordsteinhöhe: {kerb:height}", + "fr": "Hauteur du trottoir : {kerb:height}" + }, + "freeform": { + "key": "kerb:height", + "placeholder": { + "en": "Height of the kerb", + "nl": "Hoogte van de stoeprand", + "de": "Höhe des Bordsteins", + "fr": "Hauteur de la bordure" + }, + "type": "pnat" + } + } + ], + "presets": [ + { + "title": { + "en": "a kerb", + "nl": "een stoeprand", + "de": "einen Bordstein", + "fr": "une bordure" + }, + "tags": [ + "barrier=kerb" + ], + "description": { + "en": "Kerb in a footway", + "nl": "Stoeprand in een voetpad", + "de": "Bordstein in einem Fußweg", + "fr": "Bordure dans un trottoir" + }, + "preciseInput": { + "maxSnapDistance": 10, + "preferredBackground": "photo", + "snapToLayer": [ + "cycleways_and_roads", + "kerbs" + ] + } + } + ], + "filter": [ + { + "id": "kerb-type", + "options": [ + { + "question": { + "en": "All types of kerbs", + "nl": "Alle typen stoepranden", + "de": "Alle Arten von Bordsteinen", + "fr": "Tous types de bordures" + } + }, + { + "osmTags": "kerb=raised", + "question": { + "en": "Raised kerb (>3 cm)", + "nl": "Hoge stoeprand (>3 cm)", + "de": "Erhöhter Bordstein (>3 cm)", + "fr": "Bordure surélevée (>3 cm)" + } + }, + { + "osmTags": "kerb=lowered", + "question": { + "en": "Lowered kerb (~3 cm)", + "nl": "Verlaagde stoeprand (~3 cm)", + "de": "Abgesenkter Bordstein (~3 cm)", + "fr": "Bordure abaissée (~3 cm)" + } + }, + { + "osmTags": "kerb=flush", + "question": { + "en": "Flush kerb (~0cm)", + "nl": "Vlakke stoeprand (~0cm)", + "de": "Bündiger Bordstein (~0cm)", + "fr": "Bordure affleurante (~0cm)" + } + }, + { + "osmTags": "kerb=no", + "question": { + "en": "No kerb", + "nl": "Geen stoeprand", + "de": "Kein Bordstein", + "fr": "Pas de trottoir" + } + }, + { + "osmTags": "kerb=", + "question": { + "en": "Kerb with unknown height", + "nl": "Stoeprand met onbekende hoogte", + "de": "Bordstein mit unbekannter Höhe", + "fr": "Bordure de hauteur inconnue" + } + } + ] + }, + { + "id": "tactile-paving", + "options": [ + { + "question": { + "en": "Kerbs with or without tactile paving", + "de": "Bordsteine mit oder ohne taktilem Pflaster", + "fr": "Bordures avec ou sans revêtement podotactile", + "nl": "Drempes met of zonder" + } + }, + { + "osmTags": "tactile_paving=yes", + "question": { + "en": "Kerb with tactile paving", + "de": "Bordstein mit taktilem Pflaster", + "fr": "Bordure avec revêtement podotactile" + } + }, + { + "osmTags": "tactile_paving=no", + "question": { + "en": "Kerb without tactile paving", + "de": "Bordstein ohne taktilem Pflaster", + "fr": "Bordure sans revêtement podotactile" + } + }, + { + "osmTags": "tactile_paving=", + "question": { + "en": "Kerb wihout information about tactile paving", + "de": "Bordstein ohne Informationen über taktiles Pflaster", + "fr": "Bordure sans information sur le revêtement podotactile" + } + } + ] + } + ], + "units": [ + { + "applicableUnits": [ + { + "canonicalDenomination": "cm", + "alternativeDenomination": [ + "centimeter", + "centimeters" + ], + "human": { + "en": "centimeters", + "nl": "centimeter", + "de": "Zentimeter", + "fr": "centimètres" + }, + "humanSingular": { + "en": "centimeter", + "nl": "centimeter", + "de": "Zentimeter", + "fr": "centimètre" + }, + "default": true + }, + { + "canonicalDenomination": "m", + "alternativeDenomination": [ + "meter", + "meters" + ], + "human": { + "en": "meters", + "nl": "meter", + "de": "Meter", + "fr": "mètres" + }, + "humanSingular": { + "en": "meter", + "nl": "meter", + "de": "Meter", + "fr": "mètre" + } + } + ], + "appliesToKey": [ + "kerb:height" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/kerbs/license_info.json b/assets/layers/kerbs/license_info.json new file mode 100644 index 0000000000..61687d8335 --- /dev/null +++ b/assets/layers/kerbs/license_info.json @@ -0,0 +1,52 @@ +[ + { + "path": "KerbIcon.svg", + "license": "CC0", + "authors": [ + "Treeem" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:KerbIcon.svg" + ] + }, + { + "path": "flush.svg", + "license": "CC0", + "authors": [ + "Jeroen Hoek" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Icon_kerb%3Dflush.svg" + ] + }, + { + "path": "lowered.svg", + "license": "CC0", + "authors": [ + "Jeroen Hoek" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Icon_kerb%3Dlowered.svg" + ] + }, + { + "path": "no.svg", + "license": "CC0", + "authors": [ + "Jeroen Hoek" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Icon_kerb%3Dno.svg" + ] + }, + { + "path": "raised.svg", + "license": "CC0", + "authors": [ + "Jeroen Hoek" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Icon_kerb%3Draised.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/kerbs/lowered.svg b/assets/layers/kerbs/lowered.svg new file mode 100644 index 0000000000..13737e5822 --- /dev/null +++ b/assets/layers/kerbs/lowered.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/layers/kerbs/no.svg b/assets/layers/kerbs/no.svg new file mode 100644 index 0000000000..e7cc817ff6 --- /dev/null +++ b/assets/layers/kerbs/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/assets/layers/kerbs/raised.svg b/assets/layers/kerbs/raised.svg new file mode 100644 index 0000000000..629a326062 --- /dev/null +++ b/assets/layers/kerbs/raised.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/assets/layers/kindergarten_childcare/childcare.svg b/assets/layers/kindergarten_childcare/childcare.svg new file mode 100644 index 0000000000..1ab4c36fbe --- /dev/null +++ b/assets/layers/kindergarten_childcare/childcare.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/kindergarten_childcare/kindergarten.svg b/assets/layers/kindergarten_childcare/kindergarten.svg new file mode 100644 index 0000000000..842094cabc --- /dev/null +++ b/assets/layers/kindergarten_childcare/kindergarten.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/kindergarten_childcare/kindergarten_childcare.json b/assets/layers/kindergarten_childcare/kindergarten_childcare.json new file mode 100644 index 0000000000..3d517ee2cf --- /dev/null +++ b/assets/layers/kindergarten_childcare/kindergarten_childcare.json @@ -0,0 +1,186 @@ +{ + "id": "kindergarten_childcare", + "name": { + "en": "Kindergartens and childcare", + "nl": "Kleuterscholen en kinderopvang", + "de": "Kindergärten und Kinderkrippen" + }, + "description": "Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other", + "minzoom": 12, + "source": { + "osmTags": { + "or": [ + "amenity=childcare", + "amenity=kindergarten", + "isced:level:2011=early_childhood" + ] + } + }, + "title": { + "mappings": [ + { + "if": "amenity=kindergarten", + "then": { + "en": "Kindergarten {name}", + "nl": "Kleuterschool {name}", + "de": "Kindergarten {name}" + } + }, + { + "if": "amenity=childcare", + "then": { + "en": "Childcare {name}", + "nl": "Kinderopvang {name}", + "de": "Kinderkrippe {name}" + } + } + ] + }, + "tagRenderings": [ + { + "id": "childcare-type", + "question": { + "en": "What type of facility is this?", + "nl": "Wat voor faciliteit is dit?", + "de": "Um welche Art von Einrichtung handelt es sich?" + }, + "mappings": [ + { + "if": "amenity=kindergarten", + "then": { + "en": "This is a kindergarten (also known as preschool) where small kids receive early education.", + "nl": "Dit is een kleuterschool waar kindjes (voorbereidend) onderwijs krijgen.", + "de": "Dies ist ein Kindergarten (auch bekannt als Vorschule), in dem kleine Kinder eine Früherziehung erhalten.", + "ca": "Aquesta és una llar d'infants (també coneguda com a preescolar) on els nens petits reben educació primerenca." + }, + "addExtraTags": [ + "isced:level=0", + "isced:2011:level=early_childhood" + ] + }, + { + "if": "amenity=childcare", + "then": { + "en": "This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses", + "nl": "Dit is een kinderopvang (ook een creche of onthaalmoeder genoemd) waar er voor kleine kinderen gezorgd wordt. Onderwijs is niet de hoofdfocus.", + "de": "Dies ist eine Kinderbetreuungseinrichtung, z. B. ein Kinderkrippe oder eine Tagesmutter, in der Kleinkinder betreut werden. Sie bieten keine Ausbildung an und werden oft als Privatunternehmen geführt" + }, + "addExtraTags": [ + "isced:level=", + "isced:2011:level=" + ] + } + ] + }, + { + "id": "name", + "question": { + "en": "What is the name of this facility?", + "de": "Wie lautet der Name dieser Einrichtung?" + }, + "render": { + "en": "This facility is named {name}", + "de": "Diese Einrichtung hat den Namen {name}", + "ca": "Aquesta instal·lació s'anomena {name}" + }, + "freeform": { + "key": "name" + } + }, + "website", + "email", + "phone", + { + "builtin": "opening_hours", + "override": { + "question": { + "en": "When is this childcare opened?", + "nl": "Wanneer is deze kinderopvang geopend?", + "de": "Wann ist diese Kinderbetreuung geöffnet?" + }, + "condition": "amenity=childcare" + } + }, + { + "id": "capacity", + "question": { + "en": "How much kids (at most) can be enrolled here?", + "nl": "Hoeveel kinderen kunnen hier terecht?", + "de": "Wie viele Kinder können hier maximal angemeldet werden?" + }, + "render": { + "en": "This facility has room for {capacity} kids", + "nl": "Hier kunnen {capacity} kinderen terecht", + "de": "Diese Einrichtung bietet Platz für {capacity} Kinder", + "ca": "Aquesta instal·lació té espai per a {capacity} nens" + }, + "freeform": { + "key": "capacity", + "type": "pnat" + } + } + ], + "presets": [ + { + "title": { + "en": "a kindergarten", + "nl": "een kleuterschool", + "de": "einen Kindergarten" + }, + "description": "A kindergarten (also known as preschool) is a school where small kids receive early education.", + "tags": [ + "amenity=kindergarten", + "isced:level=0", + "isced:2011:level=early_childhood" + ] + }, + { + "title": { + "en": "a childcare", + "nl": "een kinderopvang", + "de": "eine Kinderkrippe" + }, + "description": "A childcare (also known as a nursery or daycare) is a facility which looks after small kids, but does not offer them an education program.", + "tags": [ + "amenity=kindergarten" + ] + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "label": { + "mappings": [ + { + "if": "name~*", + "then": "
{name}
" + } + ] + }, + "icon": { + "mappings": [ + { + "if": "amenity=kindergarten", + "then": "circle:white;./assets/layers/kindergarten_childcare/kindergarten.svg" + }, + { + "if": "amenity=childcare", + "then": "circle:white;./assets/layers/kindergarten_childcare/childcare.svg" + } + ] + } + }, + { + "color": "#62fc6c", + "width": 1 + } + ], + "allowMove": { + "enableRelocation": true, + "enableImproveAccuracy": true + }, + "deletion": true +} \ No newline at end of file diff --git a/assets/layers/kindergarten_childcare/license_info.json b/assets/layers/kindergarten_childcare/license_info.json new file mode 100644 index 0000000000..81dbf76b5e --- /dev/null +++ b/assets/layers/kindergarten_childcare/license_info.json @@ -0,0 +1,25 @@ +[ + { + "path": "childcare.svg", + "license": "CC-BY", + "authors": [ + "Diego Naive" + ], + "sources": [ + "https://thenounproject.com/icon/child-care-332981/" + ] + }, + { + "path": "kindergarten.svg", + "license": "CC-BY", + "authors": [ + "Diego Naive", + "VideoPlasty", + "Pietervdvn" + ], + "sources": [ + "https://thenounproject.com/icon/child-care-332981/", + "https://commons.wikimedia.org/wiki/File:Blackboard_Flat_Icon_Vector.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/map/map-stickered.svg b/assets/layers/map/map-stickered.svg index a6fa883bd5..60d98d36ba 100644 --- a/assets/layers/map/map-stickered.svg +++ b/assets/layers/map/map-stickered.svg @@ -2,12986 +2,10215 @@ - OpenStreetMap logo 2011 + width="256" + height="256" + id="svg3038" + version="1.1" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + OpenStreetMap logo 2011 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - OpenStreetMap logo 2011 - - - Ken Vermette - - - - April 2011 - - - OpenStreetMap.org - - - Replacement logo for OpenStreetMap Foundation - - - OSM openstreetmap logo - - - http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + OpenStreetMap logo 2011 + + + + Ken Vermette + + + + April 2011 + + + OpenStreetMap.org + + + Replacement logo for OpenStreetMap Foundation + + + OSM openstreetmap logo + + + http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg + + + + + + + + + + + + + + + + - + id="g5438" + clip-path="url(#clipPath5466)" + transform="matrix(0.93037381,0,0,0.93037381,12.095672,14.236373)"> + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + id="g5400" + clip-path="url(#clipPath5426)" + transform="matrix(0.93037381,0,0,0.93037381,12.095672,14.236373)"> + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + transform="matrix(0.93037381,0,0,0.93037381,12.066598,192.95537)" + id="g4818" + style="opacity:0.04347827"> + + + + + + + + + + + + + + - - + d="m 85.47963,169.31409 -3.133333,-8.34667 h -0.05333 q 0.04,0.41333 0.06667,1.12 0.02667,0.69333 0.02667,1.45333 v 5.77334 H 81.27963 v -9.52 h 1.773333 l 2.933333,7.8 h 0.05333 l 2.986666,-7.8 h 1.76 v 9.52 H 89.59963 v -5.85334 q 0,-0.69333 0.02667,-1.37333 0.04,-0.68 0.06667,-1.10667 h -0.05333 l -3.173334,8.33334 z" + style="font-size:13.3333px" + id="path3793" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - Made with data from - - OpenStreetMap.org - - contributors - - + id="g90" + transform="matrix(1.2523649,0,0,1.2523649,0.64164081,-0.51951627)"> + - + id="g98" + clip-path="url(#clipPath102)"> + + id="g106"> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - + id="g114"> + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/map/map.json b/assets/layers/map/map.json index 09804d41d7..0009a92944 100644 --- a/assets/layers/map/map.json +++ b/assets/layers/map/map.json @@ -7,7 +7,8 @@ "ru": "Карты", "fr": "Cartes", "de": "Karten", - "ca": "Mapes" + "ca": "Mapes", + "es": "Mapas" }, "minzoom": 12, "source": { @@ -26,7 +27,8 @@ "ru": "Карта", "fr": "Carte", "de": "Karte", - "ca": "Mapa" + "ca": "Mapa", + "es": "Mapa" } }, "description": { @@ -34,7 +36,8 @@ "nl": "Een permantent geinstalleerde kaart", "it": "Una mappa, destinata ai turisti e che è sistemata in maniera permanente in uno spazio pubblico", "fr": "Une carte, destinée aux touristes, installée en permanence dans l'espace public", - "de": "Eine Karte, die für Touristen gedacht ist und dauerhaft im öffentlichen Raum aufgestellt ist" + "de": "Eine Karte, die für Touristen gedacht ist und dauerhaft im öffentlichen Raum aufgestellt ist", + "es": "Un mapa, pensado para turistas y que está instalado de manera permanente en un espacio público" }, "tagRenderings": [ "images", @@ -44,7 +47,8 @@ "nl": "Op welke data is deze kaart gebaseerd?", "it": "Su quali dati si basa questa mappa?", "fr": "Sur quelles données cette carte est-elle basée ?", - "de": "Auf welchen Daten basiert diese Karte?" + "de": "Auf welchen Daten basiert diese Karte?", + "es": "¿En qué datos se basa este mapa?" }, "mappings": [ { @@ -60,7 +64,8 @@ "it": "Questa mappa si basa su OpenStreetMap", "ru": "Эта карта основана на OpenStreetMap", "fr": "Cette carte est basée sur OpenStreetMap", - "de": "Diese Karte basiert auf OpenStreetMap" + "de": "Diese Karte basiert auf OpenStreetMap", + "es": "Este mapa se basa en OpenStreetMap" } } ], @@ -73,7 +78,8 @@ "it": "Questa mappa si basa su {map_source}", "ru": "Эта карта основана на {map_source}", "fr": "Cette carte est basée sur {map_source}", - "de": "Diese Karte basiert auf {map_source}" + "de": "Diese Karte basiert auf {map_source}", + "es": "Este mapa se basa en {map_source}" }, "id": "map-map_source" }, @@ -84,7 +90,8 @@ "nl": "Is de attributie voor OpenStreetMap aanwezig?", "it": "L’attribuzione a OpenStreetMap è presente?", "de": "Ist die OpenStreetMap-Attribution vorhanden?", - "fr": "L’attribution à OpenStreetMap est elle-présente ?" + "fr": "L’attribution à OpenStreetMap est elle-présente ?", + "es": "¿Hay una atribución a OpenStreetMap?" }, "mappings": [ { @@ -98,7 +105,8 @@ "nl": "De OpenStreetMap-attributie is duidelijk aangegeven, zelfs met vermelding van \"ODBL\"", "it": "L’attribuzione a OpenStreetMap è chiaramente specificata, inclusa la licenza ODBL", "de": "OpenStreetMap ist eindeutig attributiert, einschließlich der ODBL-Lizenz", - "fr": "L’attribution est clairement inscrite ainsi que la licence ODBL" + "fr": "L’attribution est clairement inscrite ainsi que la licence ODBL", + "es": "Se atribuye claramente a OpenStreetMap, incluyendo la licencia ODBL" } }, { @@ -112,7 +120,8 @@ "nl": "OpenStreetMap is duidelijk aangegeven, maar de licentievermelding ontbreekt", "it": "L’attribuzione a OpenStreetMap è chiaramente specificata ma la licenza non compare", "de": "OpenStreetMap ist eindeutig attributiert, aber die Lizenz wird nicht erwähnt", - "fr": "L’attribution est clairement inscrite mais la licence est absente" + "fr": "L’attribution est clairement inscrite mais la licence est absente", + "es": "Se atribuya claramente a OpenStreetMap, pero no se menciona la licencia" } }, { @@ -126,7 +135,8 @@ "nl": "OpenStreetMap was oorspronkelijk niet aangeduid, maar iemand plaatste er een sticker", "it": "Non era presente alcun cenno a OpenStreetMap ma qualcuno vi ha attaccato un adesivo di OpenStreetMap", "de": "OpenStreetMap wurde nicht erwähnt, aber jemand hat einen OpenStreetMap-Aufkleber darauf geklebt", - "fr": "OpenStreetMap n’est pas mentionné, un sticker OpenStreetMap a été collé" + "fr": "OpenStreetMap n’est pas mentionné, un sticker OpenStreetMap a été collé", + "es": "No se mencionaba OpenStreetMap, pero alguien le pegó una pegatina de OpenStreetMap" } }, { @@ -140,7 +150,8 @@ "nl": "Er is geen attributie", "it": "Non c’è alcuna attribuzione", "fr": "Il n'y a aucune attribution", - "de": "Es gibt überhaupt keine Namensnennung" + "de": "Es gibt überhaupt keine Namensnennung", + "es": "No hay atribución" } }, { @@ -154,7 +165,8 @@ "en": "There is no attribution at all", "it": "Non c’è alcuna attribuzione", "fr": "Il n'y a aucune attribution", - "de": "Es gibt überhaupt keine Namensnennung" + "de": "Es gibt überhaupt keine Namensnennung", + "es": "No hay atribución" }, "hideInAnswer": true } @@ -179,8 +191,9 @@ "it": "una mappa", "ru": "Карта", "fr": "une carte", - "de": "eine karte", - "ca": "un mapa" + "de": "eine Karte", + "ca": "un mapa", + "es": "un mapa" }, "description": { "en": "Add a missing map", @@ -188,7 +201,8 @@ "it": "Aggiungi una mappa mancante", "fr": "Ajouter une carte manquante", "de": "Fehlende Karte hinzufügen", - "ru": "Добавить отсутствующую карту" + "ru": "Добавить отсутствующую карту", + "es": "Añadir un mapa que falta" } } ], diff --git a/assets/layers/map/osm-logo-buggy-attr.svg b/assets/layers/map/osm-logo-buggy-attr.svg index 9862834d27..a0910457d7 100644 --- a/assets/layers/map/osm-logo-buggy-attr.svg +++ b/assets/layers/map/osm-logo-buggy-attr.svg @@ -2,3298 +2,3230 @@ - OpenStreetMap logo 2011 + width="273.06668" + height="273.06668" + id="svg3038" + version="1.1" + inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)" + sodipodi:docname="osm-logo-buggy-attr.svg" + inkscape:export-filename="/home/fred/bla.png" + inkscape:export-xdpi="180" + inkscape:export-ydpi="180" + sodipodi:version="0.32" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + viewBox="0 0 256 256" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + OpenStreetMap logo 2011 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - OpenStreetMap logo 2011 - - - Ken Vermette - - - - April 2011 - - - OpenStreetMap.org - - - Replacement logo for OpenStreetMap Foundation - - - OSM openstreetmap logo - - - http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + OpenStreetMap logo 2011 + + + Ken Vermette + + + + April 2011 + + + OpenStreetMap.org + + + Replacement logo for OpenStreetMap Foundation + + + OSM openstreetmap logo + + + http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg + + + + + + + + + + + + + + + - + id="g8737" + transform="translate(0,-10)"> + + + + + + + + + + + + + + + + + + + + + - - - - + id="g5400" + clip-path="url(#clipPath5426)" + transform="translate(2.3436999,8.3167112)"> + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + transform="translate(2.3436999,200.31671)" + id="g4818" + style="opacity:0.04347827"> + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + style="display:inline" + id="g8102" + transform="matrix(1.2525366,0.03539823,0,1.2525366,-25.46577,-30.027239)" + clip-path="url(#clipPath8617)"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 01011001 - 00110101 - 10010011 -   - 01011001 - 00110101 - 10010011 -   - + inkscape:groupmode="layer" + id="layer1" + inkscape:label="bug" + style="display:inline"> + + + + + + + + + + + + + + diff --git a/assets/layers/map/osm-logo-white-bg.svg b/assets/layers/map/osm-logo-white-bg.svg index 92dd7f0df3..e895940019 100644 --- a/assets/layers/map/osm-logo-white-bg.svg +++ b/assets/layers/map/osm-logo-white-bg.svg @@ -2,3287 +2,3219 @@ - OpenStreetMap logo 2011 + width="273.06668" + height="273.06668" + id="svg3038" + version="1.1" + inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)" + sodipodi:docname="osm-logo-white-bg.svg" + inkscape:export-filename="/home/fred/bla.png" + inkscape:export-xdpi="180" + inkscape:export-ydpi="180" + sodipodi:version="0.32" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + viewBox="0 0 256 256" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + OpenStreetMap logo 2011 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - OpenStreetMap logo 2011 - - - Ken Vermette - - - - April 2011 - - - OpenStreetMap.org - - - Replacement logo for OpenStreetMap Foundation - - - OSM openstreetmap logo - - - http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + OpenStreetMap logo 2011 + + + Ken Vermette + + + + April 2011 + + + OpenStreetMap.org + + + Replacement logo for OpenStreetMap Foundation + + + OSM openstreetmap logo + + + http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg + + + + + + + + + + + + + + + - + id="g8737" + transform="translate(0,-10)"> + + + + + + + + + + + + + + + + + + + + + - - - - + id="g5400" + clip-path="url(#clipPath5426)" + transform="translate(2.3436999,8.3167112)"> + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + transform="translate(2.3436999,200.31671)" + id="g4818" + style="opacity:0.04347827"> + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 01011001 - 00110101 - 10010011 -   - 01011001 - 00110101 - 10010011 -   - + style="display:inline" + id="g8102" + transform="matrix(1.2525366,0.03539823,0,1.2525366,-25.46577,-30.027239)" + clip-path="url(#clipPath8617)"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/maproulette/license_info.json b/assets/layers/maproulette/license_info.json new file mode 100644 index 0000000000..f59ad3208c --- /dev/null +++ b/assets/layers/maproulette/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "logomark.svg", + "license": "MIT", + "authors": [ + "MapRoulette" + ], + "sources": [ + "https://github.com/maproulette/docs/blob/master/src/assets/svg/logo.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/maproulette/logomark.svg b/assets/layers/maproulette/logomark.svg new file mode 100644 index 0000000000..0019edeae5 --- /dev/null +++ b/assets/layers/maproulette/logomark.svg @@ -0,0 +1,77 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/assets/layers/maproulette/maproulette.json b/assets/layers/maproulette/maproulette.json new file mode 100644 index 0000000000..fb059165cf --- /dev/null +++ b/assets/layers/maproulette/maproulette.json @@ -0,0 +1,247 @@ +{ + "id": "maproulette", + "source": { + "geoJson": "https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}", + "geoJsonZoomLevel": 16, + "osmTags": "id~*" + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "./assets/layers/maproulette/logomark.svg", + "mappings": [ + { + "if": "status=0", + "then": "pin:#959DFF" + }, + { + "if": "status=1", + "then": "pin:#65D2DA" + }, + { + "if": "status=2", + "then": "pin:#F7BB59" + }, + { + "if": "status=3", + "then": "pin:#F7BB59" + }, + { + "if": "status=4", + "then": "pin:#737373" + }, + { + "if": "status=5", + "then": "pin:#CCB186" + }, + { + "if": "status=6", + "then": "pin:#FF5E63" + }, + { + "if": "status=9", + "then": "pin:#FF349C" + } + ] + }, + "iconSize": "40,40,center" + } + ], + "tagRenderings": [ + { + "id": "status", + "render": "Current status: {status}", + "mappings": [ + { + "if": "status=0", + "then": { + "en": "Task is created", + "de": "Aufgabe wurde erstellt" + } + }, + { + "if": "status=1", + "then": { + "en": "Task is fixed", + "de": "Aufgabe wurde erledigt" + } + }, + { + "if": "status=2", + "then": { + "en": "Task is a false positive", + "de": "Aufgabe ist ein falsches Positiv" + } + }, + { + "if": "status=3", + "then": { + "en": "Task is skipped", + "de": "Aufgabe wurde übersprungen" + } + }, + { + "if": "status=4", + "then": { + "en": "Task is deleted", + "de": "Aufgabe wurde gelöscht" + } + }, + { + "if": "status=5", + "then": { + "en": "Task is already fixed", + "de": "Aufgabe wurde bereits erledigt" + } + }, + { + "if": "status=6", + "then": { + "en": "Task is marked as too hard", + "de": "Aufgabe wurde als zu schwer markiert" + } + }, + { + "if": "status=9", + "then": { + "en": "Task is disabled", + "de": "Aufgabe wurde deaktiviert" + } + } + ] + }, + { + "id": "blurb", + "condition": "blurb~*", + "render": "{blurb}" + } + ], + "description": { + "en": "Layer showing all tasks in MapRoulette", + "de": "Ebene, die alle MapRoulette-Aufgaben zeigt" + }, + "minzoom": 15, + "name": { + "en": "MapRoulette Tasks", + "de": "MapRoulette-Aufgaben" + }, + "title": { + "render": { + "en": "MapRoulette Item: {parentName}", + "de": "MapRoulette-Element: {parentName}" + } + }, + "titleIcons": [ + { + "id": "maproulette", + "render": "" + } + ], + "filter": [ + { + "id": "status", + "options": [ + { + "question": { + "en": "Show tasks with all statuses", + "de": "Aufgaben mit allen Status anzeigen" + } + }, + { + "question": { + "en": "Show tasks that are created", + "de": "Aufgaben anzeigen, die erstellt wurden" + }, + "osmTags": "status=0" + }, + { + "question": { + "en": "Show tasks that are fixed", + "de": "Aufgaben anzeigen, die erledigt wurden" + }, + "osmTags": "status=1" + }, + { + "question": { + "en": "Show tasks that are false positives", + "de": "Aufgaben anzeigen, die falsch positiv sind" + }, + "osmTags": "status=2" + }, + { + "question": { + "en": "Show tasks that are skipped", + "de": "Aufgaben anzeigen, die übersprungen wurden" + }, + "osmTags": "status=3" + }, + { + "question": { + "en": "Show tasks that are deleted", + "de": "Aufgaben anzeigen, die gelöscht wurden" + }, + "osmTags": "status=4" + }, + { + "question": { + "en": "Show tasks that are already fixed", + "de": "Aufgaben anzeigen, die bereits erledigt wurden" + }, + "osmTags": "status=5" + }, + { + "question": { + "en": "Show tasks that are marked as too hard", + "de": "Aufgaben anzeigen, die als zu schwierig markiert wurden" + }, + "osmTags": "status=6" + }, + { + "question": { + "en": "Show tasks that are disabled", + "de": "Aufgaben anzeigen, die deaktiviert wurden" + }, + "osmTags": "status=9" + } + ] + }, + { + "id": "parent-name", + "options": [ + { + "osmTags": "parentName~i~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Challenge name contains {search}", + "de": "Name der Kampagne enthält {search}" + } + } + ] + }, + { + "id": "parent-id", + "options": [ + { + "osmTags": "parentId={search}", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Challenge ID matches {search}", + "de": "Kampagnen ID stimmt mit {search} überein" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/maproulette_challenge/maproulette_challenge.json b/assets/layers/maproulette_challenge/maproulette_challenge.json new file mode 100644 index 0000000000..fd37fc66fd --- /dev/null +++ b/assets/layers/maproulette_challenge/maproulette_challenge.json @@ -0,0 +1,213 @@ +{ + "id": "maproulette_challenge", + "name": null, + "description": { + "en": "Layer showing tasks of a MapRoulette challenge", + "de": "Ebene mit Aufgaben einer MapRoulette-Kampagne" + }, + "source": { + "osmTags": "id~*", + "geoJson": "https://maproulette.org/api/v2/challenge/view/27971", + "isOsmCache": false + }, + "title": { + "render": { + "en": "Item in MapRoulette", + "de": "Aufgabe in MapRoulette" + } + }, + "titleIcons": [ + { + "id": "maproulette", + "render": "" + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "./assets/layers/maproulette/logomark.svg", + "mappings": [ + { + "if": "mr_taskStatus=Created", + "then": "pin:#959DFF" + }, + { + "if": "mr_taskStatus=Fixed", + "then": "pin:#65D2DA" + }, + { + "if": "mr_taskStatus=False positive", + "then": "pin:#F7BB59" + }, + { + "if": "mr_taskStatus=Skipped", + "then": "pin:#F7BB59" + }, + { + "if": "mr_taskStatus=Deleted", + "then": "pin:#737373" + }, + { + "if": "mr_taskStatus=Already fixed", + "then": "pin:#CCB186" + }, + { + "if": "mr_taskStatus=Too hard", + "then": "pin:#FF5E63" + }, + { + "if": "mr_taskStatus=Disabled", + "then": "pin:#FF349C" + } + ] + }, + "iconSize": "40,40,bottom" + } + ], + "tagRenderings": [ + { + "id": "details", + "render": "{maproulette_task()}" + }, + { + "id": "status", + "render": "Current status: {status}", + "mappings": [ + { + "if": "mr_taskStatus=Created", + "then": { + "en": "Task is created", + "de": "Aufgabe wurde erstellt" + } + }, + { + "if": "mr_taskStatus=Fixed", + "then": { + "en": "Task is fixed", + "de": "Aufgabe wurde erledigt" + } + }, + { + "if": "mr_taskStatus=False positive", + "then": { + "en": "Task is a false positive", + "de": "Aufgabe ist ein falsches Positiv" + } + }, + { + "if": "mr_taskStatus=Skipped", + "then": { + "en": "Task is skipped", + "de": "Aufgabe wurde übersprungen" + } + }, + { + "if": "mr_taskStatus=Deleted", + "then": { + "en": "Task is deleted", + "de": "Aufgabe wurde gelöscht" + } + }, + { + "if": "mr_taskStatus=Already fixed", + "then": { + "en": "Task is already fixed", + "de": "Aufgabe wurde bereits erledigt" + } + }, + { + "if": "mr_taskStatus=Too hard", + "then": { + "en": "Task is marked as too hard", + "de": "Aufgabe wurde als zu schwer markiert" + } + }, + { + "if": "mr_taskStatus=Disabled", + "then": { + "en": "Task is disabled", + "de": "Aufgabe wurde deaktiviert" + } + } + ] + }, + { + "id": "blurb", + "condition": "blurb~*", + "render": "{blurb}" + } + ], + "filter": [ + { + "id": "status", + "options": [ + { + "question": { + "en": "Show tasks with all statuses", + "de": "Aufgaben mit allen Status anzeigen" + } + }, + { + "question": { + "en": "Show tasks that are created", + "de": "Aufgaben anzeigen, die erstellt wurden" + }, + "osmTags": "mr_taskStatus=Created" + }, + { + "question": { + "en": "Show tasks that are fixed", + "de": "Aufgaben anzeigen, die erledigt wurden" + }, + "osmTags": "mr_taskStatus=Fixed" + }, + { + "question": { + "en": "Show tasks that are false positives", + "de": "Aufgaben anzeigen, die falsch positiv sind" + }, + "osmTags": "mr_taskStatus=False positive" + }, + { + "question": { + "en": "Show tasks that are skipped", + "de": "Aufgaben anzeigen, die übersprungen wurden" + }, + "osmTags": "mr_taskStatus=Skipped" + }, + { + "question": { + "en": "Show tasks that are deleted", + "de": "Aufgaben anzeigen, die gelöscht wurden" + }, + "osmTags": "mr_taskStatus=Deleted" + }, + { + "question": { + "en": "Show tasks that are already fixed", + "de": "Aufgaben anzeigen, die bereits erledigt wurden" + }, + "osmTags": "mr_taskStatus=Already fixed" + }, + { + "question": { + "en": "Show tasks that are marked as too hard", + "de": "Aufgaben anzeigen, die als zu schwierig markiert wurden" + }, + "osmTags": "mr_taskStatus=Too hard" + }, + { + "question": { + "en": "Show tasks that are disabled", + "de": "Aufgaben anzeigen, die deaktiviert wurden" + }, + "osmTags": "mr_taskStatus=Disabled" + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/maxspeed/license_info.json b/assets/layers/maxspeed/license_info.json new file mode 100644 index 0000000000..b27ffbc1a8 --- /dev/null +++ b/assets/layers/maxspeed/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "living_street_be.svg", + "license": "CC0", + "authors": [ + "Belgische Wetgever" + ], + "sources": [ + "https://nl.wikipedia.org/wiki/Bestand:Belgian_road_sign_F12a.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/maxspeed/living_street_be.svg b/assets/layers/maxspeed/living_street_be.svg new file mode 100644 index 0000000000..c026fa216c --- /dev/null +++ b/assets/layers/maxspeed/living_street_be.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/maxspeed/maxspeed.json b/assets/layers/maxspeed/maxspeed.json new file mode 100644 index 0000000000..a3c7d005e0 --- /dev/null +++ b/assets/layers/maxspeed/maxspeed.json @@ -0,0 +1,201 @@ +{ + "id": "maxspeed", + "name": { + "en": "Maxspeed", + "es": "Velocidad", + "ca": "Velocitat", + "de": "Höchstgeschwindigkeit", + "nl": "Maximumsnelheid" + }, + "source": { + "osmTags": { + "and": [ + { + "or": [ + "highway=residential", + "highway=living_street", + "highway=motorway", + "highway=tertiary", + "highway=unclassified", + "highway=secondary", + "highway=primary", + "highway=trunk", + "highway=motorway", + "highway=tertiary_link", + "highway=secondary_link", + "highway=primary_link", + "highway=trunk_link", + "highway=motorway_link" + ] + }, + "type!=multipolygon", + "area!=yes" + ] + } + }, + "minzoom": 16, + "title": { + "render": { + "*": " {name}" + }, + "mappings": [ + { + "if": "name=", + "then": { + "en": "Road without a name", + "de": "Straße ohne Namen", + "nl": "Weg zonder een naam" + } + } + ] + }, + "description": { + "en": "Shows the allowed speed for every road", + "de": "Zeigt die zulässige Geschwindigkeit für jede Straße an", + "nl": "Toont de toegestane snelheid voor elke weg" + }, + "tagRenderings": [ + { + "render": { + "en": "The maximum allowed speed on this road is {maxspeed}", + "de": "Die zulässige Höchstgeschwindigkeit auf dieser Straße ist {maxspeed}", + "nl": "De maximum toegestane snelheid op deze weg is {maxspeed}" + }, + "question": { + "es": "Qué velocidad tiene", + "ca": "Quina velocitat té", + "en": "What is the legal maximum speed one is allowed to drive on this road?", + "de": "Wie hoch ist die zulässige Höchstgeschwindigkeit, die man auf dieser Straße fahren darf?" + }, + "freeform": { + "key": "maxspeed", + "type": "pnat" + }, + "mappings": [ + { + "if": { + "and": [ + "highway=living_street", + "_country!=be" + ] + }, + "then": { + "en": "This is a living street, which has a maxspeed of 20km/h", + "de": "Dies ist eine Wohnstraße, auf der eine Höchstgeschwindigkeit von 20 km/h gilt", + "nl": "Dit is een woonerf en heeft dus een maximale snelheid van 20km/h" + }, + "icon": { + "path": "./assets/layers/maxspeed/living_street_be.svg", + "class": "large" + }, + "hideInAnswer": true + }, + { + "if": "highway=living_street", + "then": { + "en": "This is a living street, which has a maxspeed of 20km/h", + "nl": "Dit is een woonerf en heeft dus een maximale snelheid van 20km/h", + "de": "Dies ist eine Wohnstraße, auf der eine Höchstgeschwindigkeit von 20 km/h gilt" + }, + "icon": { + "path": "./assets/layers/maxspeed/living_street_be.svg", + "class": "large" + }, + "hideInAnswer": "_country!=be" + } + ], + "id": "maxspeed-maxspeed" + } + ], + "allowSplit": true, + "mapRendering": [ + { + "render": null, + "icon": { + "mappings": [ + { + "if": "maxspeed~[1-9]0|1[0-4]0", + "then": "./assets/themes/maxspeed/maxspeed_{maxspeed}.svg" + } + ] + }, + "condition": "maxspeed!=30", + "iconSize": { + "render": "32,32,center" + }, + "location": [ + "point", + "projected_centerpoint" + ] + }, + { + "color": { + "render": "#000000", + "mappings": [ + { + "if": "maxspeed=", + "then": "#ff0000" + } + ] + }, + "width": { + "render": "3" + } + } + ], + "units": [ + { + "applicableUnits": [ + { + "#": "km/h is the default for a maxspeed; should be empty string", + "canonicalDenomination": "", + "alternativeDenomination": [ + "km/u", + "kmh", + "kph" + ], + "default": true, + "human": { + "en": "kilometers/hour", + "ca": "quilòmetres/hora", + "es": "kilómetros/hora", + "nl": "kilometers/uur", + "de": "Kilometer/Stunde" + }, + "humanShort": { + "en": "km/h", + "ca": "km/h", + "es": "km/h", + "nl": "km/u", + "de": "km/h" + } + }, + { + "canonicalDenomination": "mph", + "alternativeDenomination": [ + "m/u", + "mh", + "m/ph" + ], + "human": { + "en": "miles/hour", + "ca": "milles/hora", + "es": "millas/hora", + "nl": "miles/uur", + "de": "Meilen/Stunde" + }, + "humanShort": { + "en": "mph", + "ca": "mph", + "es": "mph", + "nl": "mph", + "de": "mph" + } + } + ], + "appliesToKey": [ + "maxspeed" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/nature_reserve/nature_reserve.json b/assets/layers/nature_reserve/nature_reserve.json index 6c4db4dcfd..b089e15c0a 100644 --- a/assets/layers/nature_reserve/nature_reserve.json +++ b/assets/layers/nature_reserve/nature_reserve.json @@ -45,7 +45,9 @@ }, "description": { "en": "A nature reserve is an area where nature can take its course", - "nl": "Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid." + "nl": "Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.", + "de": "Ein Naturschutzgebiet ist ein Gebiet, das der Natur überlassen wurde", + "es": "" }, "tagRenderings": [ "images", @@ -58,7 +60,7 @@ "question": { "en": "Is this nature reserve accessible to the public?", "nl": "Is dit gebied toegankelijk?", - "de": "Ist dieses Naturschutzgebiet für die Öffentlichkeit zugänglich?" + "de": "Ist das Gebiet öffentlich zugänglich?" }, "freeform": { "key": "access:description" @@ -74,7 +76,7 @@ "then": { "en": "Publicly accessible", "nl": "Vrij toegankelijk", - "de": "Öffentlich zugänglich" + "de": "Das Gebiet ist öffentlich zugänglich" } }, { @@ -87,7 +89,8 @@ "then": { "en": "Not accessible", "nl": "Niet toegankelijk", - "de": "Nicht zugänglich" + "de": "Das Gebiet ist nicht zugänglich", + "es": "No accesible" } }, { @@ -100,7 +103,8 @@ "then": { "en": "Not accessible as this is a private area", "nl": "Niet toegankelijk, want privégebied", - "de": "Nicht zugänglich, da dies ein privater Bereich ist" + "de": "Das Gebiet ist privat und nicht zugänglich", + "es": "No accesible, ya que es una área privada" } }, { @@ -113,7 +117,8 @@ "then": { "en": "Accessible despite being a privately owned area", "nl": "Toegankelijk, ondanks dat het privegebied is", - "de": "Zugänglich, obwohl es sich um ein privates Gebiet handelt" + "de": "Das Gebiet ist privat aber zugänglich", + "es": "Accesible a pesar de ser una área privada" } }, { @@ -126,7 +131,8 @@ "then": { "en": "Only accessible with a guide or during organised activities", "nl": "Enkel toegankelijk met een gids of tijdens een activiteit", - "de": "Nur mit einem Führer oder bei organisierten Aktivitäten zugänglich" + "de": "Das Gebiet ist nur während Führungen oder organisierten Aktivitäten zugänglich", + "es": "Solo accesible con un guía o durante actividades organizadas" } }, { @@ -139,7 +145,8 @@ "then": { "en": "Accessible with fee", "nl": "Toegankelijk mits betaling", - "de": "Zugänglich gegen Gebühr" + "de": "Das Gebiet ist nur gegen Bezahlung zugänglich", + "es": "Accesible con una tasa" } } ], @@ -149,12 +156,14 @@ "render": { "en": "Operated by {operator}", "nl": "Beheer door {operator}", - "de": "Betrieben von {operator}" + "de": "Betrieben von {operator}", + "es": "Operado por {operator}" }, "question": { "en": "Who operates this area?", "nl": "Wie beheert dit gebied?", - "de": "Wer betreibt dieses Gebiet?" + "de": "Wer betreibt das Gebiet?", + "es": "¿Quién opera esta área?" }, "freeform": { "key": "operator" @@ -169,7 +178,8 @@ "then": { "en": "Operated by Natuurpunt", "nl": "Dit gebied wordt beheerd door Natuurpunt", - "de": "Betrieben von Natuurpunt" + "de": "Das Gebiet wird betrieben von Natuurpunt", + "es": "Operado por NatuurPunt" }, "icon": "./assets/layers/nature_reserve/Natuurpunt.jpg" }, @@ -182,7 +192,8 @@ "then": { "en": "Operated by {operator}", "nl": "Dit gebied wordt beheerd door {operator}", - "de": "Betrieben von {operator}" + "de": "Betrieben von {operator}", + "es": "Operado por {operator}" }, "icon": "./assets/layers/nature_reserve/Natuurpunt.jpg", "hideInAnswer": true @@ -196,7 +207,7 @@ "then": { "en": "Operated by Agentschap Natuur en Bos", "nl": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos", - "de": "Betrieben von Agentschap Natuur en Bos" + "de": "Das Gebiet wird betrieben von Agentschap Natuur en Bos" }, "icon": "./assets/layers/nature_reserve/ANB.jpg" } @@ -207,12 +218,14 @@ "render": { "nl": "Dit gebied heet {name}", "en": "This area is named {name}", - "de": "Dieses Gebiet heißt {name}" + "de": "Dieses Gebiet heißt {name}", + "es": "Esta área se llama {name}" }, "question": { "nl": "Wat is de naam van dit gebied?", "en": "What is the name of this area?", - "de": "Wie heißt dieses Gebiet?" + "de": "Wie heißt das Gebiet?", + "es": "¿Cual es el nombre de esta área?" }, "freeform": { "key": "name", @@ -236,7 +249,8 @@ "then": { "en": "This area doesn't have a name", "nl": "Dit gebied heeft geen naam", - "de": "Dieses Gebiet hat keinen Namen" + "de": "Das Gebiet hat keinen Namen", + "es": "Esta área no tiene un nombre" } } ], @@ -265,7 +279,8 @@ "en": "Dogs have to be leashed", "it": "I cani devono essere tenuti al guinzaglio", "fr": "Les chiens doivent être tenus en laisse", - "de": "Hunde müssen angeleint sein" + "de": "Hunde müssen angeleint sein", + "es": "Los perros deben de ir con correa" } }, { @@ -275,7 +290,8 @@ "en": "No dogs allowed", "it": "I cani non sono ammessi", "fr": "Chiens interdits", - "de": "Hunde sind nicht erlaubt" + "de": "Hunde sind nicht erlaubt", + "es": "No se permiten perros" } }, { @@ -285,7 +301,8 @@ "en": "Dogs are allowed to roam freely", "it": "I cani sono liberi di girare liberi", "fr": "Les chiens sont autorisés à se promener librement", - "de": "Hunde dürfen frei herumlaufen" + "de": "Hunde dürfen frei herumlaufen", + "es": "Los perros pueden ir sueltos" } } ], @@ -298,7 +315,7 @@ "en": "Whom is the curator of this nature reserve?
Respect privacy - only fill out a name if this is widely published", "it": "Chi è il curatore di questa riserva naturale?
Rispetta la privacy (scrivi il nome solo se questo è noto pubblicamente)", "fr": "Qui est en charge de la conservation de la réserve ?
À ne remplir seulement que si le nom est diffusé au public", - "de": "Wer ist der Verwalter dieses Naturschutzgebietes?
Respektieren Sie die Privatsphäre - geben Sie nur dann einen Namen an, wenn dieser allgemein bekannt ist" + "de": "Wer verwaltet dieses Gebiet?
Respektieren Sie die Privatsphäre. Geben Sie nur dann einen Namen an, wenn dieser allgemein bekannt ist" }, "render": { "nl": "{curator} is de beheerder van dit gebied", @@ -319,7 +336,7 @@ "en": "What email adress can one send to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal email address if this is widely published", "it": "Qual è l’indirizzo email a cui scrivere per fare domande o segnalare problemi su questa riserva naturale?
Rispetta la privacy (compila l’indirizzo email personale solo se è stato reso pubblico)", "fr": "À quelle adresse courriel peut-on envoyer des questions et des problèmes concernant cette réserve naturelle ?
Respecter la vie privée – renseignez une adresse électronique personnelle seulement si celle-ci est largement publiée", - "de": "An welche Email-Adresse kann man sich bei Fragen und Problemen zu diesem Naturschutzgebiet wenden?
Respektieren Sie die Privatsphäre - geben Sie nur dann eine persönliche Email-Adresse an, wenn diese allgemein bekannt ist" + "de": "An welche Email-Adresse kann man sich bei Fragen und Problemen zu diesem Gebiet wenden?
Respektieren Sie die Privatsphäre. Geben Sie nur dann eine persönliche Email-Adresse an, wenn diese allgemein bekannt ist" }, "render": { "nl": "{email}", @@ -343,7 +360,7 @@ "en": "What phone number can one call to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal phone number address if this is widely published", "it": "Quale numero di telefono comporre per fare domande o segnalare problemi riguardanti questa riserva naturale?br/>Rispetta la privacy (inserisci il numero di telefono privato solo se questo è noto pubblicamente)", "fr": "Quel numéro de téléphone peut-on appeler pour poser des questions et résoudre des problèmes concernant cette réserve naturelle ?
Respecter la vie privée – renseignez un numéro de téléphone personnel seulement si celui-ci est largement publié", - "de": "Welche Telefonnummer kann man bei Fragen und Problemen zu diesem Naturschutzgebiet anrufen?
Respektieren Sie die Privatsphäre - geben Sie nur eine Telefonnummer an, wenn diese allgemein bekannt ist" + "de": "Welche Telefonnummer kann man bei Fragen und Problemen zu diesem Gebiet anrufen?
Respektieren Sie die Privatsphäre. Geben Sie nur dann eine Telefonnummer an, wenn diese allgemein bekannt ist" }, "render": { "*": "{phone}" @@ -358,7 +375,8 @@ "render": { "en": "Extra information: {description}", "nl": "Extra info: {description}", - "de": "Zusätzliche Informationen: {description}" + "de": "Zusätzliche Informationen: {description}", + "es": "Información adicional: {description}" }, "freeform": { "key": "description" @@ -369,12 +387,14 @@ "question": { "en": "Is there some extra info?", "nl": "Is er extra info die je kwijt wil?", - "de": "Gibt es zusätzliche Informationen?" + "de": "Gibt es zusätzliche Informationen?", + "es": "¿Hay alguna información adicional?" }, "render": { "en": "Extra info: {description:0}", "nl": "Extra info: {description:0}", - "de": "Zusätzliche Informationen: {description:0}" + "de": "Zusätzliche Informationen: {description:0}", + "es": "Información adicional: {description:0}" }, "freeform": { "key": "description:0" @@ -387,7 +407,8 @@ "nl": "Totale oppervlakte: {_surface:ha}Ha", "it": "Area: {_surface:ha} ha", "fr": "Superficie : {_surface:ha} ha", - "de": "Grundfläche: {_surface:ha}ha" + "de": "Grundfläche: {_surface:ha}ha", + "es": "Superficie: {_surface:ha}Ha" }, "condition": "_surface:ha!=0", "id": "Surface area" @@ -403,7 +424,7 @@ "title": { "en": "a nature reserve", "nl": "een natuurreservaat", - "de": "ein Naturschutzgebiet" + "de": "ein Schutzgebiet" }, "description": { "en": "Add a missing nature reserve", diff --git a/assets/layers/note/note.json b/assets/layers/note/note.json index 1a64adbac5..1ef695bdd9 100644 --- a/assets/layers/note/note.json +++ b/assets/layers/note/note.json @@ -3,7 +3,8 @@ "name": { "en": "OpenStreetMap notes", "nl": "OpenStreetMap Notes", - "de": "OpenStreetMap-Hinweise" + "de": "OpenStreetMap-Hinweise", + "es": "Notas de OpenStreetMap" }, "description": "This layer shows notes on OpenStreetMap. Having this layer in your theme will trigger the 'add new note' functionality in the 'addNewPoint'-popup (or if your theme has no presets, it'll enable adding notes)", "source": { @@ -18,7 +19,8 @@ "en": "Note", "nl": "Note", "ca": "Nota", - "de": "Notiz" + "de": "Notiz", + "es": "Nota" }, "mappings": [ { @@ -26,19 +28,19 @@ "then": { "en": "Closed note", "nl": "Gesloten Note", - "de": "Geschlossene Notiz" + "de": "Geschlossene Notiz", + "es": "Nota cerrada" } } ] }, "calculatedTags": [ "_total_comments:=feat.get('comments').length", - "_first_comment:=feat.get('comments')[0].text.toLowerCase()", + "_first_comment:=feat.get('comments')[0].text", "_opened_by_anonymous_user:=feat.get('comments')[0].user === undefined", "_first_user:=feat.get('comments')[0].user", - "_first_user_lc:=feat.get('comments')[0].user?.toLowerCase()", + "_last_user:=(() => {const comms = feat.get('comments'); return comms[comms.length - 1].user})()", "_first_user_id:=feat.get('comments')[0].uid", - "_last_user_lc:=(() => {const comms = feat.get('comments'); return comms[comms.length - 1].user?.toLowerCase()})()", "_is_import_note:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.osm.be/\\([a-zA-Z_-]+\\)\\(.html\\).*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()" ], "titleIcons": [ @@ -59,12 +61,28 @@ "id": "comment", "render": "{add_note_comment()}" }, + { + "id": "nearby-images", + "render": { + "before": { + "en": "

Nearby images

The pictures below are nearby geotagged images and might be helpful to handle this note.", + "de": "

Bilder aus der Nähe

Die folgenden Bilder sind mit Geotags versehene Bilder aus der Nähe und könnten für die Bearbeitung dieser Notiz hilfreich sein.", + "es": "

Imágenes cercanas

Las imágenes de debajo son imágenes geoetiquetadas cercanas y pueden ser útiles para encargarse de esta nota.", + "nl": "

Afbeeldingen in de buurt

Onderstaande afbeeldingen zijn afbeeldingen met geo-referentie en die in de buurt genomen zijn. Mogelijks zijn ze nuttig om deze kaartnota af te handelen." + }, + "special": { + "type": "nearby_images", + "mode": "open" + } + } + }, { "id": "report-contributor", "render": { "en": "Report {_first_user} as spam", "nl": "{_first_user} melden als spam", - "de": "{_first_user} als Spam melden" + "de": "{_first_user} als Spam melden", + "es": "Reportar {_first_user}" }, "condition": "_opened_by_anonymous_user=false" }, @@ -72,8 +90,9 @@ "id": "report-note", "render": { "en": "Report this note as spam or inappropriate", - "nl": "Deze not melden als spam of ongepast", - "de": "Diese Notiz als Spam oder unangemessen melden" + "nl": "Deze note melden als spam of ongepast", + "de": "Notiz als Spam oder unangemessen melden", + "es": "Reporta esta nota como spam o inapropiada" } } ], @@ -110,7 +129,7 @@ "id": "search", "options": [ { - "osmTags": "_first_comment~.*{search}.*", + "osmTags": "_first_comment~i~.*{search}.*", "fields": [ { "name": "search" @@ -119,7 +138,8 @@ "question": { "en": "Should mention {search} in the first comment", "nl": "Moet in de eerste opmerking \"{search}\" bevatten", - "de": "Sollte {search} im ersten Kommentar erwähnen" + "de": "Sollte {search} im ersten Kommentar erwähnen", + "es": "Debe mencionar {search} en el primer comentario" } } ] @@ -128,7 +148,7 @@ "id": "not", "options": [ { - "osmTags": "_first_comment!~.*{search}.*", + "osmTags": "_first_comment!~i~.*{search}.*", "fields": [ { "name": "search" @@ -137,7 +157,8 @@ "question": { "en": "Should not mention {search} in the first comment", "nl": "Mag in de eerste opmerking niet \"{search}\" bevatten", - "de": "Sollte nicht {search} im ersten Kommentar erwähnen" + "de": "Sollte nicht {search} im ersten Kommentar erwähnen", + "es": "No debe mencionar {search} en el primer comentario" } } ] @@ -146,7 +167,7 @@ "id": "opened_by", "options": [ { - "osmTags": "_first_user_lc~.*{search}.*", + "osmTags": "_first_user~i~.*{search}.*", "fields": [ { "name": "search" @@ -155,7 +176,8 @@ "question": { "en": "Opened by contributor {search}", "nl": "Geopend door bijdrager {search}", - "de": "Geöffnet vom Mitwirkenden {search}" + "de": "Erstellt von {search}", + "es": "Abierto por el contributor {search}" } } ] @@ -164,7 +186,7 @@ "id": "not_opened_by", "options": [ { - "osmTags": "_first_user_lc!~.*{search}.*", + "osmTags": "_first_user!~i~.*{search}.*", "fields": [ { "name": "search" @@ -173,7 +195,8 @@ "question": { "en": "Not opened by contributor {search}", "nl": "Niet geopend door bijdrager {search}", - "de": "Nicht vom Mitwirkenden {search} geöffnet" + "de": "Nicht erstellt von {search}", + "es": "No abierto por el contributor {search}" } } ] @@ -182,7 +205,7 @@ "id": "edited_by", "options": [ { - "osmTags": "_last_user_lc~.*{search}.*", + "osmTags": "_last_user~i~.*{search}.*", "fields": [ { "name": "search" @@ -191,7 +214,8 @@ "question": { "en": "Last edited by contributor {search}", "nl": "Laatst bewerkt door bijdrager {search}", - "de": "Zuletzt bearbeitet vom Mitwirkenden {search}" + "de": "Zuletzt bearbeitet von {search}", + "es": "Editada por última vez por el contributor {search}" } } ] @@ -200,7 +224,7 @@ "id": "not_edited_by", "options": [ { - "osmTags": "_last_user_lc!~.*{search}.*", + "osmTags": "_last_user!~i~.*{search}.*", "fields": [ { "name": "search" @@ -209,7 +233,8 @@ "question": { "en": "Opened after {search}", "nl": "Geopend na {search}", - "de": "Geöffnet nach {search}" + "de": "Zuletzt bearbeitet nach dem {search}", + "es": "Abierta después de {search}" } } ] @@ -228,7 +253,8 @@ "question": { "en": "Created before {search}", "nl": "Aangemaakt voor {search}", - "de": "Erstellt vor {search}" + "de": "Erstellt vor dem {search}", + "es": "Creada antes de {search}" } } ] @@ -247,7 +273,8 @@ "question": { "en": "Created after {search}", "nl": "Aangemaakt na {search}", - "de": "Erstellt nach {search}" + "de": "Erstellt nach dem {search}", + "es": "Creada después de {search}" } } ] @@ -260,7 +287,8 @@ "question": { "en": "Only show notes opened by an anonymous contributor", "nl": "Toon enkel de Notes geopend door een anonieme bijdrager", - "de": "Nur Notizen anzeigen, die von anonymen Mitwirkenden geöffnet wurden" + "de": "Nur Notizen anzeigen, die anonym erstellt wurden", + "es": "Solo mostrar las notas abiertas por contributores anómimos" } } ] @@ -273,7 +301,8 @@ "question": { "en": "Only show open notes", "nl": "Toon enkel open Notes", - "de": "Nur offene Notizen anzeigen" + "de": "Nur offene Notizen anzeigen", + "es": "Solo mostrar las notas abiertas" } } ] @@ -281,12 +310,30 @@ { "id": "no_imports", "options": [ + { + "question": { + "en": "All Notes", + "nl": "Alle Notes", + "de": "Alle Notizen", + "es": "Todas las notas" + } + }, { "osmTags": "_is_import_note=", "question": { "en": "Hide import notes", "nl": "Verberg import Notes", - "de": "Importnotizen ausblenden" + "de": "Importnotizen ausblenden", + "es": "Ocultar las nostras de importación" + } + }, + { + "osmTags": "_is_import_note~*", + "question": { + "en": "Show only import Notes", + "nl": "Toon enkel import Notes", + "de": "Nur Importnotizen anzeigen", + "es": "Solo mostrar las notas de importación" } } ] diff --git a/assets/layers/note_import/note_import.json b/assets/layers/note_import/note_import.json deleted file mode 100644 index 72584bed52..0000000000 --- a/assets/layers/note_import/note_import.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "id": "note_import", - "name": { - "en": "Possible bookcases", - "nl": "Mogelijke publieke boekenkastjes", - "de": "Mögliche Bücherschränke" - }, - "description": "Template for note note imports.", - "source": { - "osmTags": { - "and": [ - "id~*" - ] - }, - "geoJson": "https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}", - "geoJsonZoomLevel": 12, - "maxCacheAge": 0 - }, - "minzoom": 10, - "title": { - "render": { - "en": "Possible feature", - "nl": "Mogelijk object", - "de": "Mögliches Objekt" - } - }, - "calculatedTags": [ - "_first_comment:=feat.get('comments')[0].text.toLowerCase()", - "_trigger_index:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.osm.be/\\([a-zA-Z_-]+\\)\\(.html\\).*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()", - "_intro:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); lines.splice(feat.get('_trigger_index')-1, lines.length); return lines.map(l => l == '' ? '
' : l).join('');})()", - "_tags:=(() => {let lines = feat.properties['_first_comment'].split('\\n').map(l => l.trim()); lines.splice(0, feat.get('_trigger_index') + 1); lines = lines.filter(l => l != ''); return lines.join(';');})()" - ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "_trigger_index=", - "then": "no" - } - ] - }, - "titleIcons": [ - { - "render": "" - } - ], - "tagRenderings": [ - { - "id": "conversation", - "render": "{visualize_note_comments(comments,1)}" - }, - { - "id": "Intro", - "render": "{_intro}" - }, - { - "id": "import", - "render": "{import_button(public_bookcase, _tags, There might be a public bookcase here,./assets/svg/addSmall.svg,,,id)}" - }, - { - "id": "close_note_", - "render": "{close_note(Does not exist
, ./assets/svg/close.svg, id, This feature does not exist)}" - }, - { - "id": "close_note_mapped", - "render": "{close_note(Already mapped, ./assets/svg/checkmark.svg, id, Already mapped)}" - }, - { - "id": "comment", - "render": "{add_note_comment()}" - }, - { - "id": "add_image", - "render": "{add_image_to_note()}" - } - ], - "mapRendering": [ - { - "location": [ - "point", - "centroid" - ], - "icon": { - "render": "teardrop:#3333cc" - }, - "iconSize": "40,40,bottom" - } - ] -} \ No newline at end of file diff --git a/assets/layers/observation_tower/observation_tower.json b/assets/layers/observation_tower/observation_tower.json index 59943038ec..ee1c5b0f00 100644 --- a/assets/layers/observation_tower/observation_tower.json +++ b/assets/layers/observation_tower/observation_tower.json @@ -5,7 +5,8 @@ "nl": "Uitkijktorens", "ru": "Смотровые башни", "de": "Aussichtstürme", - "ca": "Torres d'observació" + "ca": "Torres d'observació", + "es": "Torres de observación" }, "minzoom": 8, "title": { @@ -14,7 +15,8 @@ "nl": "Uitkijktoren", "ru": "Смотровая башня", "de": "Beobachtungsturm", - "ca": "Torre d'observació" + "ca": "Torre d'observació", + "es": "Torre de observación" }, "mappings": [ { @@ -24,7 +26,8 @@ "nl": "{name}", "ru": "{name}", "de": "{name}", - "ca": "{name}" + "ca": "{name}", + "es": "{name}" } } ] @@ -32,7 +35,8 @@ "description": { "en": "Towers with a panoramic view", "nl": "Torens om van het uitzicht te genieten", - "de": "Türme zur Aussicht auf die umgebende Landschaft" + "de": "Türme zur Aussicht auf die umgebende Landschaft", + "es": "Torres con vista panorámica" }, "tagRenderings": [ "images", @@ -40,12 +44,14 @@ "question": { "en": "What is the name of this tower?", "nl": "Heeft deze toren een naam?", - "de": "Wie heißt dieser Turm?" + "de": "Wie ist der Name des Turms?", + "es": "¿Cual es el nombre de esta torre?" }, "render": { "en": "This tower is called {name}", "nl": "Deze toren heet {name}", - "de": "Der Name dieses Turms lautet {name}" + "de": "Der Name des Turms ist {name}", + "es": "Esta torre se llama {name}" }, "freeform": { "key": "name" @@ -56,7 +62,8 @@ "then": { "en": "This tower doesn't have a specific name", "nl": "Deze toren heeft geen specifieke naam", - "de": "Dieser Turm hat keinen eigenen Namen" + "de": "Der Turm hat keinen eigenen Namen", + "es": "Esta torre no tiene un nombre específico" } } ], @@ -66,12 +73,14 @@ "question": { "en": "What is the height of this tower?", "nl": "Hoe hoog is deze toren?", - "de": "Wie hoch ist dieser Turm?" + "de": "Wie hoch ist dieser Turm?", + "es": "¿Cual es la altura de esta torre?" }, "render": { "en": "This tower is {height} high", "nl": "Deze toren is {height} hoog", - "de": "Dieser Turm ist {height} hoch" + "de": "Dieser Turm ist {height} hoch", + "es": "Esta torre mide {height}" }, "freeform": { "key": "height", @@ -85,7 +94,7 @@ "en": "Can this tower be visited?", "nl": "Is deze toren publiek toegankelijk?", "es": "¿Se puede visitar esta torre?", - "de": "Kann dieser Turm besichtigt werden?" + "de": "Darf der Turm betreten werden?" }, "mappings": [ { @@ -93,7 +102,8 @@ "then": { "en": "This tower is publicly accessible", "nl": "Deze toren is publiek toegankelijk", - "de": "Dieser Turm ist öffentlich zugänglich" + "de": "Der Turm ist öffentlich zugänglich", + "es": "Esta torre es accesible públicamente" } }, { @@ -101,7 +111,8 @@ "then": { "en": "This tower can only be visited with a guide", "nl": "Deze toren can enkel bezocht worden met een gids", - "de": "Dieser Turm kann nur mit einem Führer besichtigt werden" + "de": "Der Turm darf nur in Begleitung eines Führers betreten werden", + "es": "A esta torre solo se puede acceder con un guía" } } ] @@ -110,12 +121,14 @@ "question": { "en": "How much does one have to pay to enter this tower?", "nl": "Hoeveel moet men betalen om deze toren te bezoeken?", - "de": "Was kostet der Zugang zu diesem Turm?" + "de": "Was kostet der Zugang zu diesem Turm?", + "es": "¿Cuánto hay que pagar para entrar en esta torre?" }, "render": { "en": "Visiting this tower costs {charge}", "nl": "Deze toren bezoeken kost {charge}", - "de": "Der Besuch des Turms kostet {charge}" + "de": "Der Besuch des Turms kostet {charge}", + "es": "Visitar esta torre cuesta {charge}" }, "freeform": { "key": "charge", @@ -164,7 +177,8 @@ "question": { "en": "How much individual steps does one have to climb to reach the top of this tower?", "nl": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?", - "de": "Wie viele einzelne Stufen muss man erklimmen, um die Spitze des Turms zu erreichen?" + "de": "Wie viele einzelne Stufen muss man erklimmen, um die Spitze des Turms zu erreichen?", + "es": "¿Cuántos escalones hay que subir para llegar a la cima de esta torre?" }, "freeform": { "key": "step_count", @@ -173,7 +187,8 @@ "render": { "en": "This tower has {step_count} steps to reach the top", "nl": "Deze toren heeft {step_count} traptredes", - "de": "Dieser Turm hat {step_count} Stufen, um die Spitze zu erreichen" + "de": "Dieser Turm hat {step_count} Stufen, um die Spitze zu erreichen", + "es": "Esta torre tiene {step_count} escalones para lllegar a l a cima" }, "condition": { "or": [ @@ -187,7 +202,8 @@ "question": { "en": "Does this tower have an elevator?", "nl": "Heeft deze toren een lift?", - "de": "Hat dieser Turm einen Aufzug?" + "de": "Hat dieser Turm einen Aufzug?", + "es": "¿Tiene ascensor esta torre?" }, "mappings": [ { @@ -195,7 +211,8 @@ "then": { "en": "This tower has an elevator which takes visitors to the top", "nl": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt", - "de": "Dieser Turm verfügt über einen Aufzug, der die Besucher nach oben bringt" + "de": "Dieser Turm verfügt über einen Aufzug, der die Besucher nach oben bringt", + "es": "Esta torre tiene un ascensor que lleva a los visitantes a la cima" } }, { @@ -203,7 +220,8 @@ "then": { "en": "This tower does not have an elevator", "nl": "Deze toren heeft geen lift", - "de": "Dieser Turm hat keinen Aufzug" + "de": "Dieser Turm hat keinen Aufzug", + "es": "Esta torre no tiene ascensor" } } ], @@ -218,12 +236,14 @@ "question": { "en": "Who maintains this tower?", "nl": "Wie onderhoudt deze toren?", - "de": "Wer betreibt diesen Turm?" + "de": "Wer betreibt den Turm?", + "es": "¿Quién mantiene esta torre?" }, "render": { "nl": "Wordt onderhouden door {operator}", "en": "Maintained by {operator}", - "de": "Betrieben von {operator}" + "de": "Betrieben von {operator}", + "es": "Mantenida por {operator}" }, "freeform": { "key": "operator" @@ -272,7 +292,8 @@ "en": " meter", "ru": " метр", "de": " Meter", - "ca": " metre" + "ca": " metre", + "es": " metros" } } ], diff --git a/assets/layers/parking/parking.json b/assets/layers/parking/parking.json index 17ec106fe7..2e52f7833e 100644 --- a/assets/layers/parking/parking.json +++ b/assets/layers/parking/parking.json @@ -4,7 +4,9 @@ "en": "Parking", "nl": "Parking", "de": "Parkplätze", - "ca": "Aparcament" + "ca": "Aparcament", + "es": "Aparcamiento", + "fr": "Lieu de stationnement" }, "minzoom": 12, "source": { @@ -14,16 +16,194 @@ "render": { "nl": "Parking voor auto's", "en": "Car parking", - "de": "Parkplatz" + "de": "Parkplatz", + "es": "aparcamiento de coches", + "fr": "Lieu de stationnement" } }, "description": { "en": "A layer showing car parkings", "nl": "Deze laag toont autoparkings", - "de": "Eine Ebene mit Parkplätzen" + "de": "Eine Ebene mit Parkplätzen", + "es": "Una capa que muestra aparcamientos para coches", + "fr": "Un calque montrant les parkings" }, "tagRenderings": [ - "images" + "images", + "level", + { + "id": "parking-type", + "mappings": [ + { + "if": "parking=surface", + "then": { + "en": "This is a surface parking lot", + "nl": "Dit is een bovengronds parkeerterrein", + "de": "Dies ist ein oberirdischer Parkplatz", + "fr": "Il s'agit d'un parking en surface" + } + }, + { + "if": "parking=street_side", + "then": { + "en": "This is a parking bay next to a street", + "nl": "Dit is een parkeerplek langs een weg", + "de": "Dies ist eine Parkbucht neben einer Straße", + "fr": "Ceci est un lieu de stationnement à côté d'une route" + } + }, + { + "if": "parking=underground", + "then": { + "en": "This is an underground parking garage", + "nl": "Dit is een ondergrondse parkeergarage", + "de": "Dies ist eine Tiefgarage", + "fr": "Il s'agit d'un parking souterrain" + } + }, + { + "if": "parking=multi-storey", + "then": { + "en": "This is a multi-storey parking garage", + "nl": "Dit is een bovengrondse parkeergarage met meerdere verdiepingen", + "de": "Dies ist ein mehrstöckiges oberirdisches Parkhaus", + "fr": "Il s'agit d'un parking à plusieurs étages" + } + }, + { + "if": "parking=rooftop", + "then": { + "en": "This is a rooftop parking deck", + "nl": "Dit is een parkeerdek op een dak", + "de": "Dies ist ein Parkdeck auf dem Dach", + "fr": "Il s'agit d'un parking sur le toit" + } + }, + { + "if": "parking=lane", + "then": { + "en": "This is a lane for parking on the road", + "nl": "Dit is een strook voor parkeren op de weg", + "de": "Dies ist eine Fahrspur zum Parken auf der Straße", + "fr": "Il s'agit d'une voie de stationnement sur la route" + } + }, + { + "if": "parking=carports", + "then": { + "en": "This is parking covered by carports", + "nl": "Dit is parking overdekt met carports", + "de": "Dies ist ein durch Carports überdachter Parkplatz", + "fr": "Il s'agit d'un parking couvert par des carports" + } + }, + { + "if": "parking=garage_boxes", + "then": { + "en": "This a parking consisting of garage boxes", + "nl": "Dit is een parking bestaande uit garageboxen", + "de": "Dies ist ein Parkplatz bestehend aus Garagenboxen", + "fr": "Il s'agit d'un parking composé de box de garage" + } + }, + { + "if": "parking=layby", + "then": { + "en": "This is a parking on a layby", + "nl": "Dit is een parkeerplek op een layby", + "de": "Hier gibt es Parkmöglichkeiten auf einem kleinen Rastplatz", + "fr": "Ceci est un parking sur une aire de stationnement" + } + }, + { + "if": "parking=sheds", + "then": { + "en": "This is a parking consisting of sheds", + "nl": "Dit is een parking bestaande uit schuren", + "de": "Hier gibt es Parkmöglichkeiten unter einer offenen Dachkonstruktion", + "fr": "Il s'agit d'un parking composé de cabanons" + } + } + ], + "question": { + "en": "What kind of parking is this?", + "nl": "Wat voor parking is dit?", + "de": "Was ist das für ein Parkplatz?", + "fr": "De quel type de stationnement s'agit-il ?" + } + }, + { + "id": "capacity-disabled", + "freeform": { + "key": "capacity:disabled", + "type": "pnat", + "placeholder": { + "en": "Amount of parking spots reserved for disabled people", + "nl": "Aantal parkeerplaatsen voor gehandicapten", + "de": "Anzahl barrierefreier Stellplätze", + "fr": "Nombre de places de stationnement réservées aux personnes à mobilité réduite" + } + }, + "mappings": [ + { + "if": "capacity:disabled=yes", + "then": { + "en": "There are disabled parking spots, but it is not known how many", + "nl": "Er zijn parkeerplaatsen voor gehandicapten, maar het is niet bekend hoeveel er zijn", + "de": "Es gibt barrierefreie Stellplätze, aber die Anzahl ist unbekannt", + "fr": "Il y a des places de stationnement pour personnes à mobilité réduite, mais on ne sait pas combien" + }, + "hideInAnswer": true + }, + { + "if": "capacity:disabled=no", + "then": { + "en": "There are no disabled parking spots", + "nl": "Er zijn geen parkeerplaatsen voor gehandicapten", + "de": "Es gibt keine barrierefreien Stellplätze", + "fr": "Il n'y a pas de places de stationnement pour personnes à mobilité réduite" + }, + "hideInAnswer": true + } + ], + "question": { + "en": "How many disabled parking spots are there at this parking?", + "nl": "Hoeveel parkeerplaatsen voor gehandicapten zijn er op deze parking?", + "de": "Wie viele barrierefreie Stellplätze gibt es auf diesem Parkplatz?", + "fr": "Combien y a-t-il de places de stationnement pour personnes à mobilité réduite dans ce parking ?" + }, + "render": { + "en": "There are {capacity:disabled} disabled parking spots", + "nl": "Er zijn {capacity:disabled} parkeerplaatsen voor gehandicapten", + "de": "Es gibt {capacity:disabled} barrierefreie Stellplätze", + "fr": "Il y a {capacity:disabled} places de stationnement pour personnes à mobilité réduite" + } + }, + { + "id": "capacity", + "freeform": { + "key": "capacity", + "type": "pnat", + "placeholder": { + "en": "Amount of parking spots", + "nl": "Aantal parkeerplaatsen", + "de": "Anzahl der Parkplätze", + "fr": "Nombre de places de stationnement" + } + }, + "question": { + "en": "How many parking spots are there at this parking?", + "nl": "Hoeveel parkeerplaatsen zijn er op deze parking?", + "de": "Wie viele Stellplätze gibt es auf diesem Parkplatz?", + "fr": "Combien de places de stationnement y a-t-il dans ce parking ?" + }, + "render": { + "en": "There are {capacity} parking spots", + "nl": "Er zijn {capacity} parkeerplaatsen", + "de": "Es gibt {capacity} Stellplätze", + "fr": "Il y a {capacity} places de stationnement" + } + } ], "presets": [ { @@ -33,7 +213,9 @@ "title": { "nl": "een parking voor auto's", "en": "a car parking", - "de": "ein Parkplatz" + "de": "einen Parkplatz", + "es": "un aparcamiento de coches", + "fr": "un lieu de stationnement pour voitures" } } ], @@ -48,7 +230,7 @@ }, "allowMove": { "enableRelocation": false, - "enableImproveAccuraccy": true + "enableImproveAccuracy": true }, "mapRendering": [ { @@ -61,6 +243,17 @@ "location": [ "point", "centroid" + ], + "iconBadges": [ + { + "if": { + "and": [ + "capacity:disabled~*", + "capacity:disabled!=no" + ] + }, + "then": "circle:white;./assets/layers/toilet/wheelchair.svg" + } ] }, { diff --git a/assets/layers/pedestrian_path/pedestrian_path.json b/assets/layers/pedestrian_path/pedestrian_path.json index a93c1a86d5..011acd546e 100644 --- a/assets/layers/pedestrian_path/pedestrian_path.json +++ b/assets/layers/pedestrian_path/pedestrian_path.json @@ -3,7 +3,8 @@ "name": { "en": "Pedestrian paths", "nl": "Pad voor voetgangers", - "de": "Fußgängerwege" + "de": "Fußgängerwege", + "fr": "Sentiers piétons" }, "minzoom": 18, "source": { @@ -16,10 +17,11 @@ ] } }, - "title": {}, "description": { "en": "Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer", - "nl": "Pad voor voetgangers, in het bijzonder gebruikt voor navigatie binnen gebouwen en om aan toegangen vast te klikken in deze laag" + "nl": "Pad voor voetgangers, in het bijzonder gebruikt voor navigatie binnen gebouwen en om aan toegangen vast te klikken in deze laag", + "de": "Fußgängerwege, insbesondere für die Navigation in Gebäuden und die Aufnahme von Eingängen in diese Ebene", + "fr": "Sentiers piétonniers, particulièrement utilisés pour la navigation intérieure et les entrées d'accrochage à cette couche" }, "mapRendering": [ { diff --git a/assets/layers/pharmacy/license_info.json b/assets/layers/pharmacy/license_info.json new file mode 100644 index 0000000000..ec982334cb --- /dev/null +++ b/assets/layers/pharmacy/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "pharmacy.svg", + "license": "CC0", + "authors": [ + "OSM-carto" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Pharmacy-14.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/pharmacy/pharmacy.json b/assets/layers/pharmacy/pharmacy.json new file mode 100644 index 0000000000..ef1f0694d4 --- /dev/null +++ b/assets/layers/pharmacy/pharmacy.json @@ -0,0 +1,156 @@ +{ + "id": "pharmacy", + "name": { + "en": "pharmacy", + "de": "Apotheke", + "nl": "apotheek" + }, + "description": { + "en": "A layer showing pharmacies, which (probably) dispense prescription drugs", + "de": "Eine Ebene mit Apotheken, die (wahrscheinlich) verschreibungspflichtige Medikamente ausgeben", + "nl": "Deze laag toont apotheken, welke (waarschijnlijk) ook medicijnen onder voorschrift verkopen" + }, + "title": { + "render": { + "en": "{name}", + "de": "{name}", + "nl": "{name}" + }, + "mappings": [ + { + "if": "name=", + "then": { + "en": "Pharmacy", + "de": "Apotheke", + "nl": "Apotheek" + } + } + ] + }, + "source": { + "osmTags": { + "and": [ + "amenity=pharmacy" + ] + } + }, + "minzoom": 13, + "tagRenderings": [ + "images", + { + "id": "name", + "freeform": { + "key": "name", + "type": "string", + "placeholder": { + "en": "Name of the pharmacy", + "de": "Name der Apotheke", + "nl": "Naam van de apotheek" + } + }, + "question": { + "en": "What is the name of the pharmacy?", + "de": "Wie lautet der Name der Apotheke?", + "nl": "Wat is de naam van deze apotheek?" + }, + "render": { + "en": "This pharmacy is called {name}", + "de": "Der Name der Apotheke lautet {name}", + "nl": "Deze apotheek heet {name}" + } + }, + "opening_hours", + "phone", + "email", + "website", + { + "id": "wheelchair", + "question": { + "en": "Is this pharmacy easy to access on a wheelchair?", + "de": "Ist die Apotheke für Rollstuhlfahrer leicht zugänglich?", + "nl": "Is het mogelijk om deze apotheek te bereiken met een rolstoel?" + }, + "mappings": [ + { + "if": "wheelchair=yes", + "then": { + "en": "This pharmacy is easy to access on a wheelchair", + "ca": "Aquesta farmàcia és fàcil d'accedir en una cadira de rodes", + "de": "Die Apotheke ist für Rollstuhlfahrer leicht zugänglich", + "nl": "Deze apotheek is makkelijk te bereiken met een rolstoel" + } + }, + { + "if": "wheelchair=no", + "then": { + "en": "This pharmacy is hard to access on a wheelchair", + "de": "Die Apotheke ist für Rollstuhlfahrer nur schwer zugänglich", + "nl": "Deze apotheek is moeilijk te bereiken met een rolstoel" + } + }, + { + "if": "wheelchair=limited", + "then": { + "en": "This pharmacy has limited access for wheelchair users", + "de": "Die Apotheke ist für Rollstuhlfahrer nur eingeschränkt zugänglich", + "nl": "Deze apotheek is bereikbaar met een rolstoel, maar het is niet makkelijk" + } + } + ] + } + ], + "mapRendering": [ + { + "icon": { + "render": "./assets/layers/pharmacy/pharmacy.svg" + }, + "iconSize": "40,40,bottom", + "location": [ + "point", + "centroid" + ], + "iconBadges": [ + { + "if": "opening_hours~*", + "then": "isOpen" + } + ], + "label": { + "mappings": [ + { + "if": "name~*", + "then": "
{name}
" + } + ] + } + } + ], + "filter": [ + { + "id": "drive-through", + "options": [ + { + "question": { + "en": "Has drive through", + "de": "Bietet einen Durchfahr-Service an", + "nl": "Heeft een drive-through" + }, + "osmTags": "drive_through=yes" + } + ] + }, + { + "id": "dispensing", + "options": [ + { + "question": { + "en": "Pharmacy able to provide prescription drugs", + "de": "Apotheke, die verschreibungspflichtige Arzneimittel ausgibt", + "nl": "Deze apotheek verdeelt medicijnen met voorschrift" + }, + "osmTags": "dispensing=yes" + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/pharmacy/pharmacy.svg b/assets/layers/pharmacy/pharmacy.svg new file mode 100644 index 0000000000..9c44db2d2f --- /dev/null +++ b/assets/layers/pharmacy/pharmacy.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/picnic_table/picnic_table.json b/assets/layers/picnic_table/picnic_table.json index f38cb6e65a..b9b8731c53 100644 --- a/assets/layers/picnic_table/picnic_table.json +++ b/assets/layers/picnic_table/picnic_table.json @@ -7,7 +7,8 @@ "ru": "Столы для пикника", "fr": "Tables de pique-nique", "de": "Picknick-Tische", - "ca": "Taules de pícnic" + "ca": "Taules de pícnic", + "es": "Mesas de pícnic" }, "minzoom": 12, "source": { @@ -21,7 +22,8 @@ "ru": "Стол для пикника", "fr": "Table de pique-nique", "de": "Picknick-Tisch", - "ca": "Taula de pícnic" + "ca": "Taula de pícnic", + "es": "Mesa de pícnic" } }, "description": { @@ -30,10 +32,12 @@ "it": "Il livello che mostra i tavoli da picnic", "fr": "La couche montrant les tables de pique-nique", "ru": "Слой, отображающий столы для пикника", - "de": "Die Ebene zeigt Picknicktische an" + "de": "Die Ebene zeigt Picknicktische an", + "es": "Una capa que muestra mesas de pícnic" }, "tagRenderings": [ "images", + "level", { "question": { "en": "What material is this picnic table made of?", @@ -41,7 +45,8 @@ "it": "Di che materiale è fatto questo tavolo da picnic?", "de": "Aus welchem Material besteht dieser Picknicktisch?", "ru": "Из чего изготовлен этот стол для пикника?", - "fr": "En quel matériau est faite la table de pique-nique ?" + "fr": "En quel matériau est faite la table de pique-nique ?", + "es": "¿De qué material está hecha esta mesa de pícnic?" }, "render": { "en": "This picnic table is made of {material}", @@ -49,7 +54,8 @@ "it": "Questo tavolo da picnic è fatto di {material}", "de": "Dieser Picknicktisch besteht aus {material}", "ru": "Этот стол для пикника сделан из {material}", - "fr": "La table est faite en {material}" + "fr": "La table est faite en {material}", + "es": "Esta mesa de pícnic está hecha de {material}" }, "freeform": { "key": "material" @@ -63,7 +69,8 @@ "it": "È un tavolo da picnic in legno", "ru": "Это деревянный стол для пикника", "de": "Dies ist ein Picknicktisch aus Holz", - "fr": "C’est une table en bois" + "fr": "C’est une table en bois", + "es": "Esta es una mesa de pícnic de madera" } }, { @@ -74,7 +81,18 @@ "it": "È un tavolo da picnic in cemento", "ru": "Это бетонный стол для пикника", "de": "Dies ist ein Picknicktisch aus Beton", - "fr": "C’est une table en béton" + "fr": "C’est une table en béton", + "es": "Esta es una mesa de pícnic de hormigón" + } + }, + { + "if": "material=plastic", + "then": { + "en": "This picnic table is made from (recycled) plastic", + "nl": "Deze picknictafel is gemaakt uit (gerecycleerd) plastiek", + "de": "Dieser Picknicktisch ist aus (recyceltem) Kunststoff hergestellt", + "es": "Esta es una mesa de picnic hecha de plástico reciclado", + "fr": "Cette table de pique-nique est en plastique (recyclé)" } } ], @@ -91,8 +109,9 @@ "nl": "een picknicktafel", "it": "una tavolo da picnic", "ru": "стол для пикника", - "de": "eine picknicktisch", - "fr": "une table de pique-nique" + "de": "einen Picknick-Tisch", + "fr": "une table de pique-nique", + "es": "una mesa de pícnic" } } ], diff --git a/assets/layers/playground/playground.json b/assets/layers/playground/playground.json index ab16932294..31dd33268b 100644 --- a/assets/layers/playground/playground.json +++ b/assets/layers/playground/playground.json @@ -1,8 +1,8 @@ { "id": "playground", "name": { - "nl": "Speeltuinen", "en": "Playgrounds", + "nl": "Speeltuinen", "ru": "Детские площадки", "de": "Spielplätze", "it": "Campi da gioco", @@ -62,7 +62,7 @@ "nl": "Wat is de ondergrond van deze speeltuin?
Indien er verschillende ondergronden zijn, neem de meest voorkomende", "en": "Which is the surface of this playground?
If there are multiple, select the most occuring one", "it": "Qual è la superficie di questo parco giochi?
Se ve ne è più di una, seleziona quella predominante", - "de": "Welche Oberfläche hat dieser Spielplatz?
Wenn es mehrere gibt, wähle die am häufigsten vorkommende aus", + "de": "Welchen Bodenbelag hat dieser Spielplatz?
Wenn es mehrere gibt, wähle den am häufigsten vorkommende aus", "fr": "De quelle matière est la surface de l’aire de jeu ?
Pour plusieurs matières, sélectionner la principale" }, "render": { @@ -71,7 +71,8 @@ "it": "La superficie è {surface}", "ru": "Поверхность - {surface}", "de": "Die Oberfläche ist {surface}", - "fr": "La surface est en {surface}" + "fr": "La surface est en {surface}", + "es": "La superficie es {surface}" }, "freeform": { "key": "surface" @@ -84,8 +85,9 @@ "en": "The surface is grass", "it": "La superficie è prato", "ru": "Поверхность - трава", - "de": "Die Oberfläche ist Gras", - "fr": "La surface est en gazon" + "de": "Der Bodenbelag ist aus Gras", + "fr": "La surface est en gazon", + "es": "La superficie es hierba" } }, { @@ -95,8 +97,9 @@ "en": "The surface is sand", "it": "La superficie è sabbia", "ru": "Поверхность - песок", - "de": "Die Oberfläche ist Sand", - "fr": "La surface est en sable" + "de": "Der Bodenbelag ist aus Sand", + "fr": "La surface est en sable", + "es": "La superficie es arena" } }, { @@ -105,7 +108,7 @@ "nl": "De ondergrond bestaat uit houtsnippers", "en": "The surface consist of woodchips", "it": "La superficie consiste di trucioli di legno", - "de": "Die Oberfläche besteht aus Holzschnitzeln", + "de": "Der Bodenbelag ist aus Holzschnitzeln", "ru": "Покрытие из щепы", "fr": "La surface est en copeaux de bois" } @@ -117,8 +120,9 @@ "en": "The surface is paving stones", "it": "La superficie è mattonelle regolari", "ru": "Поверхность - брусчатка", - "de": "Die Oberfläche ist Pflastersteine", - "fr": "La surface est en pavés" + "de": "Der Bodenbelag ist aus Pflastersteinen", + "fr": "La surface est en pavés", + "es": "La superficie es adoquines" } }, { @@ -128,8 +132,9 @@ "en": "The surface is asphalt", "it": "La superficie è asfalto", "ru": "Поверхность - асфальт", - "de": "Die Oberfläche ist Asphalt", - "fr": "La surface est en bitume" + "de": "Der Bodenbelag ist aus Asphalt", + "fr": "La surface est en bitume", + "es": "La superficie es asfalto" } }, { @@ -139,8 +144,9 @@ "en": "The surface is concrete", "it": "La superficie è cemento", "ru": "Поверхность - бетон", - "de": "Die Oberfläche ist Beton", - "fr": "La surface est en béton" + "de": "Der Bodenbelag ist aus Beton", + "fr": "La surface est en béton", + "es": "La superficie es hormigón" } }, { @@ -150,7 +156,8 @@ "en": "The surface is unpaved", "it": "La superficie è non pavimentato", "de": "Die Oberfläche ist unbefestigt", - "fr": "La surface n’a pas de revêtement" + "fr": "La surface n’a pas de revêtement", + "es": "La superficie está sin pavimentar" }, "hideInAnswer": true }, @@ -161,7 +168,8 @@ "en": "The surface is paved", "it": "La superficie è pavimentato", "de": "Die Oberfläche ist befestigt", - "fr": "La surface a un revêtement" + "fr": "La surface a un revêtement", + "es": "La superficie está pavimentada" }, "hideInAnswer": true } @@ -178,7 +186,7 @@ "en": "Is this playground lit at night?", "it": "È illuminato di notte questo parco giochi?", "fr": "Ce terrain de jeux est-il éclairé la nuit ?", - "de": "Ist dieser Spielplatz nachts beleuchtet?", + "de": "Wird der Spielplatz nachts beleuchtet?", "ru": "Эта игровая площадка освещается ночью?" }, "mappings": [ @@ -188,7 +196,7 @@ "nl": "Deze speeltuin is 's nachts verlicht", "en": "This playground is lit at night", "it": "Questo parco giochi è illuminato di notte", - "de": "Dieser Spielplatz ist nachts beleuchtet", + "de": "Der Spielplatz wird nachts beleuchtet", "ru": "Эта детская площадка освещается ночью", "fr": "L’aire de jeu est éclairée de nuit" } @@ -199,7 +207,7 @@ "nl": "Deze speeltuin is 's nachts niet verlicht", "en": "This playground is not lit at night", "it": "Questo parco giochi non è illuminato di notte", - "de": "Dieser Spielplatz ist nachts nicht beleuchtet", + "de": "Der Spielplatz wird nachts nicht beleuchtet", "ru": "Эта детская площадка не освещается ночью", "fr": "L’aire de jeu n’est pas éclairée de nuit" } @@ -216,7 +224,8 @@ "it": "Accessibile ai bambini di almeno {min_age} anni", "ru": "Доступно для детей старше {min_age} лет", "fr": "Accessible aux enfants de plus de {min_age} ans", - "de": "Zugang nur für Kinder ab {min_age} Jahren" + "de": "Zugang nur für Kinder ab {min_age} Jahren", + "es": "Accesible a niños menores de {min_age} años" }, "question": { "nl": "Wat is de minimale leeftijd om op deze speeltuin te mogen?", @@ -224,7 +233,7 @@ "it": "Qual è l’età minima per accedere a questo parco giochi?", "fr": "Quel est l'âge minimal requis pour accéder à ce terrain de jeux ?", "ru": "С какого возраста доступна эта детская площадка?", - "de": "Ab welchem Alter dürfen Kinder auf diesem Spielplatz spielen?" + "de": "Ab welchem Alter dürfen Kinder auf dem Spielplatz spielen?" }, "freeform": { "key": "min_age", @@ -242,14 +251,15 @@ "it": "Accessibile ai bambini di età inferiore a {max_age}", "fr": "Accessible aux enfants de {max_age} au maximum", "ru": "Доступно детям до {max_age}", - "de": "Zugang nur für Kinder bis maximal {max_age}" + "de": "Zugang nur für Kinder bis maximal {max_age}", + "es": "Accesible a niños de hasta {max_age}" }, "question": { "nl": "Wat is de maximaal toegestane leeftijd voor deze speeltuin?", "en": "What is the maximum age allowed to access this playground?", "it": "Qual è l’età massima per accedere a questo parco giochi?", "fr": "Quel est l’âge maximum autorisé pour utiliser l’aire de jeu ?", - "de": "Bis zu welchem Alter dürfen Kinder auf diesem Spielplatz spielen?" + "de": "Bis zu welchem Alter dürfen Kinder auf dem Spielplatz spielen?" }, "freeform": { "key": "max_age", @@ -262,7 +272,7 @@ "nl": "Wie beheert deze speeltuin?", "en": "Who operates this playground?", "it": "Chi è il responsabile di questo parco giochi?", - "de": "Wer betreibt diesen Spielplatz?", + "de": "Wer betreibt den Spielplatz?", "fr": "Qui est en charge de l’exploitation de l’aire de jeu ?" }, "render": { @@ -270,7 +280,8 @@ "en": "Operated by {operator}", "it": "Gestito da {operator}", "fr": "Exploité par {operator}", - "de": "Betrieben von {operator}" + "de": "Betrieben von {operator}", + "es": "Operado por {operator}" }, "freeform": { "key": "operator" @@ -283,7 +294,7 @@ "nl": "Is deze speeltuin vrij toegankelijk voor het publiek?", "en": "Is this playground accessible to the general public?", "it": "Questo parco giochi è pubblicamente accessibile?", - "de": "Ist dieser Spielplatz für die Allgemeinheit zugänglich?", + "de": "Ist der Spielplatz öffentlich zugänglich?", "fr": "L’aire de jeu est-elle accessible au public ?" }, "mappings": [ @@ -293,8 +304,9 @@ "en": "Accessible to the general public", "nl": "Vrij toegankelijk voor het publiek", "it": "Accessibile pubblicamente", - "de": "Zugänglich für die Allgemeinheit", - "fr": "Accessible au public" + "de": "Der Spielplatz ist öffentlich zugänglich", + "fr": "Accessible au public", + "es": "Accesible al público general" }, "addExtraTags": [ "fee=no" @@ -305,7 +317,7 @@ "then": { "en": "This is a paid playground", "nl": "Er moet betaald worden om deze speeltuin te mogen gebruiken", - "de": "Dies ist ein gebührenpflichtiger Spielplatz" + "de": "Der Spielplatz ist gebührenpflichtig" }, "addExtraTags": [ "access=customers" @@ -317,8 +329,9 @@ "en": "Only accessible for clients of the operating business", "nl": "Enkel toegankelijk voor klanten van de bijhorende zaak", "it": "Accessibile solamente ai clienti dell’attività che lo gestisce", - "de": "Nur für Kunden des Betreibers zugänglich", - "fr": "Réservée aux clients" + "de": "Der Spielplatz ist nur für Kunden zugänglich", + "fr": "Réservée aux clients", + "es": "Solo accesible para clientes del negocio que lo opera" }, "addExtraTags": [ "fee=no" @@ -331,12 +344,10 @@ "nl": "Enkel toegankelijk voor scholieren van de bijhorende school", "it": "Accessibile solamente agli studenti della scuola", "de": "Nur für Schüler der Schule zugänglich", - "fr": "Réservée aux élèves de l’école" + "fr": "Réservée aux élèves de l’école", + "es": "Solo accesibles para estudiantes de la escuela" }, - "hideInAnswer": true, - "addExtraTags": [ - "fee=no" - ] + "hideInAnswer": true }, { "if": "access=private", @@ -346,7 +357,16 @@ "it": "Non accessibile", "ru": "Недоступно", "fr": "Non accessible", - "de": "Nicht zugänglich" + "de": "Der Spielplatz ist nicht öffentlich zugänglich", + "es": "No accesible" + } + }, + { + "if": "leisure=schoolyard", + "then": { + "en": "This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public", + "nl": "Dit is een schoolplein - een zone waar de leerlingen kunnen spelen tijdens de pauze. Dit schoolplein is niet toegankelijk voor het publiek", + "de": "Dies ist ein Schulhof - ein Außenbereich, auf dem die Schüler in den Pausen spielen können; er ist jedoch für die Öffentlichkeit nicht zugänglich" } } ] @@ -368,7 +388,8 @@ "fr": "{email}", "it": "{email}", "ru": "{email}", - "id": "{email}" + "id": "{email}", + "es": "{email}" }, "freeform": { "key": "email", @@ -392,7 +413,8 @@ "fr": "{phone}", "ru": "{phone}", "id": "{phone}", - "it": "{phone}" + "it": "{phone}", + "es": "{phone}" }, "freeform": { "key": "phone", @@ -406,7 +428,7 @@ "nl": "Is deze speeltuin toegankelijk voor rolstoelgebruikers?", "en": "Is this playground accessible to wheelchair users?", "fr": "Ce terrain de jeux est-il accessible aux personnes en fauteuil roulant ?", - "de": "Ist dieser Spielplatz für Rollstuhlfahrer zugänglich?", + "de": "Ist der Spielplatz für Rollstuhlfahrer zugänglich?", "it": "Il campetto è accessibile a persone in sedia a rotelle?", "ru": "Доступна ли детская площадка пользователям кресел-колясок?" }, @@ -419,7 +441,8 @@ "fr": "Entièrement accessible aux personnes en fauteuil roulant", "de": "Vollständig zugänglich für Rollstuhlfahrer", "it": "Completamente accessibile in sedia a rotelle", - "ru": "Полностью доступна пользователям кресел-колясок" + "ru": "Полностью доступна пользователям кресел-колясок", + "es": "Completamente accesible para usuarios de silla de ruedas" } }, { @@ -430,7 +453,8 @@ "fr": "Accessibilité limitée pour les personnes en fauteuil roulant", "de": "Eingeschränkte Zugänglichkeit für Rollstuhlfahrer", "it": "Accesso limitato in sedia a rotelle", - "ru": "Частично доступна пользователям кресел-колясок" + "ru": "Частично доступна пользователям кресел-колясок", + "es": "Acceso limitado para usuarios de silla de ruedas" } }, { @@ -441,7 +465,8 @@ "fr": "Non accessible aux personnes en fauteuil roulant", "de": "Nicht zugänglich für Rollstuhlfahrer", "it": "Non accessibile in sedia a rotelle", - "ru": "Недоступна пользователям кресел-колясок" + "ru": "Недоступна пользователям кресел-колясок", + "es": "No accesible a usuarios de sillas de ruedas" } } ] @@ -469,7 +494,8 @@ "fr": "Accessible du lever au coucher du soleil", "it": "Si può accedere dall'alba al tramonto", "ru": "Открыто от рассвета до заката", - "de": "Zugänglich von Sonnenaufgang bis Sonnenuntergang" + "de": "Zugänglich von Sonnenaufgang bis Sonnenuntergang", + "es": "Accesible desde el amanecer hasta el anochecer" } }, { @@ -481,7 +507,8 @@ "ru": "Всегда доступен", "it": "Si può sempre accedere", "de": "Immer zugänglich", - "ca": "Sempre accessible--" + "ca": "Sempre accessible--", + "es": "Siempre accesible" } } ], @@ -504,12 +531,22 @@ "ru": "Детская площадка", "fr": "une terrain de jeux", "it": "una campetto", - "de": "eine spielplatz", + "de": "einen Spielplatz", "ca": "un parc infantil" } } ], "deletion": { + "nonDeleteMappings": [ + { + "if": "leisure=schoolyard", + "then": { + "en": "This is a schoolyard - an (outdoor) area where pupils of a school can play during recess and which is not publicly accessible", + "nl": "Dit is een schoolplein - een ruimte waar de leerlingen van een school kunnen spelen tijdens de pauze maar die niet publiek toegankelijk is", + "de": "Dies ist ein Schulhof - ein (Außen-)Bereich, auf dem die Schüler einer Schule in den Pausen spielen können und der nicht öffentlich zugänglich ist" + } + } + ], "softDeletionTags": { "and": [ "disused:leisure=playground", diff --git a/assets/layers/public_bookcase/public_bookcase.json b/assets/layers/public_bookcase/public_bookcase.json index cb82668265..d7049043c8 100644 --- a/assets/layers/public_bookcase/public_bookcase.json +++ b/assets/layers/public_bookcase/public_bookcase.json @@ -54,7 +54,7 @@ "title": { "en": "a bookcase", "nl": "een boekenruilkast", - "de": "eine bücherschrank", + "de": "einen Bücherschrank", "fr": "une microbibliothèque", "ru": "Книжный шкаф", "it": "una microbiblioteca", @@ -75,7 +75,7 @@ "render": { "en": "The name of this bookcase is {name}", "nl": "De naam van dit boekenruilkastje is {name}", - "de": "Der Name dieses Bücherschrank lautet {name}", + "de": "Der Name des Bücherschranks lautet {name}", "fr": "Le nom de cette microbibliothèque est {name}", "ru": "Название книжного шкафа — {name}", "it": "Questa microbiblioteca si chiama {name}", @@ -84,14 +84,15 @@ "question": { "en": "What is the name of this public bookcase?", "nl": "Wat is de naam van dit boekenruilkastje?", - "de": "Wie heißt dieser öffentliche Bücherschrank?", + "de": "Wie lautet der Name des Bücherschranks?", "fr": "Quel est le nom de cette microbibliothèque ?", "ru": "Как называется этот общественный книжный шкаф?", "it": "Come si chiama questa microbiblioteca pubblica?", "hu": "Mi a neve ennek a nyilvános könyvespolcnak?" }, "freeform": { - "key": "name" + "key": "name", + "inline": true }, "mappings": [ { @@ -104,7 +105,7 @@ "then": { "en": "This bookcase doesn't have a name", "nl": "Dit boekenruilkastje heeft geen naam", - "de": "Dieser Bücherschrank hat keinen Namen", + "de": "Der Bücherschrank hat keinen Namen", "fr": "Cette microbibliothèque n'a pas de nom", "ru": "У этого книжного шкафа нет названия", "it": "Questa microbiblioteca non ha un nome proprio", @@ -118,7 +119,7 @@ "render": { "en": "{capacity} books fit in this bookcase", "nl": "Er passen {capacity} boeken", - "de": "{capacity} Bücher passen in diesen Bücherschrank", + "de": "In den Bücherschrank passen ca. {capacity} Bücher", "fr": "{capacity} livres peuvent entrer dans cette microbibliothèque", "it": "Questa microbiblioteca può contenere fino a {capacity} libri", "ru": "{capacity} книг помещается в этот книжный шкаф", @@ -127,7 +128,7 @@ "question": { "en": "How many books fit into this public bookcase?", "nl": "Hoeveel boeken passen er in dit boekenruilkastje?", - "de": "Wie viele Bücher passen in diesen öffentlichen Bücherschrank?", + "de": "Wie viele Bücher passen in den Bücherschrank?", "fr": "Combien de livres peuvent entrer dans cette microbibliothèque ?", "ru": "Сколько книг помещается в этом общественном книжном шкафу?", "it": "Quanti libri può contenere questa microbiblioteca?", @@ -145,12 +146,24 @@ "question": { "en": "What kind of books can be found in this public bookcase?", "nl": "Voor welke doelgroep zijn de meeste boeken in dit boekenruilkastje?", - "de": "Welche Art von Büchern sind in diesem öffentlichen Bücherschrank zu finden?", + "de": "Welche Bücher kann man im Bücherschrank finden?", "fr": "Quel type de livres peut-on dans cette microbibliothèque ?", "it": "Che tipo di libri si possono trovare in questa microbiblioteca?", "ru": "Какие книги можно найти в этом общественном книжном шкафу?", "hu": "Milyen fajta könyvek találhatók ezen a közösségi könyvespolcon?" }, + "render": { + "nl": "Deze plaats serveert vooral {books}", + "en": "This place mostly serves {books}", + "de": "An diesem Ort gibt es hauptsächlich {books}" + }, + "freeform": { + "key": "books", + "addExtraTags": [ + "fixme=Freeform tag `books` used, to be doublechecked" + ] + }, + "multiAnswer": true, "mappings": [ { "if": "books=children", @@ -161,7 +174,8 @@ "fr": "Livres pour enfants", "ru": "В основном детские книги", "it": "Principalmente libri per l'infanzia", - "hu": "Többnyire gyermekkönyvek" + "hu": "Többnyire gyermekkönyvek", + "es": "Mayoritariamente libros infantiles" } }, { @@ -173,19 +187,8 @@ "fr": "Livres pour les adultes", "ru": "В основном книги для взрослых", "it": "Principalmente libri per persone in età adulta", - "hu": "Többnyire felnőtteknek szóló könyvek" - } - }, - { - "if": "books=children;adults", - "then": { - "en": "Both books for kids and adults", - "nl": "Boeken voor zowel kinderen als volwassenen", - "de": "Sowohl Bücher für Kinder als auch für Erwachsene", - "fr": "Livres pour enfants et adultes également", - "it": "Sia libri per l'infanzia, sia per l'età adulta", - "ru": "Книги и для детей, и для взрослых", - "hu": "Gyerekeknek és felnőtteknek szóló könyvek egyaránt" + "hu": "Többnyire felnőtteknek szóló könyvek", + "es": "Mayoritariamente libros para adultos" } } ] @@ -195,7 +198,7 @@ "question": { "en": "Is this bookcase located outdoors?", "nl": "Staat dit boekenruilkastje binnen of buiten?", - "de": "Befindet sich dieser Bücherschrank im Freien?", + "de": "Befindet sich der Bücherschrank im Freien?", "fr": "Cette microbiliothèque est-elle en extérieur ?", "it": "Questa microbiblioteca si trova all'aperto?", "hu": "A szabadban van-e ez a könyvespolc?" @@ -205,7 +208,7 @@ "then": { "en": "This bookcase is located indoors", "nl": "Dit boekenruilkastje staat binnen", - "de": "Dieser Bücherschrank befindet sich im Innenbereich", + "de": "Der Bücherschrank befindet sich im Innenbereich", "fr": "Cette microbibliothèque est en intérieur", "it": "Questa microbiblioteca si trova al chiuso", "hu": "Ez a könyvespolc beltérben található" @@ -227,7 +230,7 @@ "then": { "en": "This bookcase is located outdoors", "nl": "Dit boekenruilkastje staat buiten", - "de": "Dieser Bücherschrank befindet sich im Freien", + "de": "Der Bücherschrank befindet sich im Freien", "fr": "Cette microbibliothèque est en extérieur", "it": "Questa microbiblioteca si trova all'aperto", "hu": "Ez a könyvszekrény a szabadban van" @@ -258,7 +261,8 @@ "fr": "Accèssible au public", "it": "È ad accesso libero", "ru": "Свободный доступ", - "hu": "Nyilvánosan használható" + "hu": "Nyilvánosan használható", + "es": "Accesible públicamente" }, "if": "access=yes" }, @@ -269,7 +273,8 @@ "de": "Nur für Kunden zugänglich", "fr": "Accèssible aux clients", "it": "L'accesso è riservato ai clienti", - "hu": "Csak ügyfelek használhatják" + "hu": "Csak ügyfelek használhatják", + "es": "Solo accesible a clientes" }, "if": "access=customers" } @@ -279,7 +284,7 @@ "question": { "en": "Who maintains this public bookcase?", "nl": "Wie is verantwoordelijk voor dit boekenruilkastje?", - "de": "Wer unterhält diesen öffentlichen Bücherschrank?", + "de": "Wer betreibt den Bücherschrank?", "fr": "Qui entretien cette microbibliothèque ?", "it": "Chi mantiene questa microbiblioteca?", "hu": "Ki tartja fenn ezt a nyilvános könyvespolcot?" @@ -302,7 +307,7 @@ "question": { "en": "Is this public bookcase part of a bigger network?", "nl": "Is dit boekenruilkastje deel van een netwerk?", - "de": "Ist dieser öffentliche Bücherschrank Teil eines größeren Netzwerks?", + "de": "Gehört der Bücherschrank zu einem Netzwerk?", "fr": "Cette microbibliothèque fait-elle partie d'un réseau/groupe ?", "it": "Questa microbiblioteca fa parte di una rete?", "hu": "Része-e egy nagyobb hálózatnak ez a nyilvános könyvespolc?" @@ -324,10 +329,11 @@ "then": { "en": "Part of the network 'Little Free Library'", "nl": "Deel van het netwerk 'Little Free Library'", - "de": "Teil des Netzwerks 'Little Free Library'", + "de": "Der Bücherschrank gehört zum Netzwerk 'Little Free Library'", "fr": "Fait partie du réseau Little Free Library", "it": "Fa parte della rete 'Little Free Library'", - "hu": "A „Little Free Library” hálózat része" + "hu": "A „Little Free Library” hálózat része", + "es": "Parte de la red 'Little Free Library'" }, "if": { "and": [ @@ -349,7 +355,7 @@ "then": { "en": "This public bookcase is not part of a bigger network", "nl": "Dit boekenruilkastje maakt geen deel uit van een netwerk", - "de": "Dieser öffentliche Bücherschrank ist nicht Teil eines größeren Netzwerks", + "de": "Der Bücherschrank gehört zu keinem Netzwerk", "fr": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe", "it": "Questa microbiblioteca non fa parte di una rete", "hu": "Ez a nyilvános könyvespolc nem része egy nagyobb hálózatnak" @@ -404,7 +410,7 @@ "question": { "en": "When was this public bookcase installed?", "nl": "Op welke dag werd dit boekenruilkastje geinstalleerd?", - "de": "Wann wurde dieser öffentliche Bücherschrank installiert?", + "de": "Wann wurde der Bücherschrank aufgebaut?", "fr": "Quand a été installée cette microbibliothèque ?", "it": "Quando è stata inaugurata questa microbiblioteca?", "ru": "Когда был установлен этот общественный книжный шкаф?", @@ -438,7 +444,7 @@ "question": { "en": "Is there a website with more information about this public bookcase?", "nl": "Is er een website over dit boekenruilkastje?", - "de": "Gibt es eine Website mit weiteren Informationen über diesen öffentlichen Bücherschrank?", + "de": "Auf welcher Webseite findet man Informationen zu diesem Bücherschrank?", "fr": "Y a-t-il un site web avec plus d'informations sur cette microbibliothèque ?", "it": "C'è un sito web con maggiori informazioni su questa microbiblioteca?", "ru": "Есть ли веб-сайт с более подробной информацией об этом общественном книжном шкафе?", @@ -467,7 +473,7 @@ "options": [ { "question": "Kinderboeken aanwezig?", - "osmTags": "books~.*children.*" + "osmTags": "books~i~.*children.*" } ] }, @@ -476,7 +482,7 @@ "options": [ { "question": "Boeken voor volwassenen aanwezig?", - "osmTags": "books~.*adults.*" + "osmTags": "books~i~.*adults.*" } ] }, @@ -488,7 +494,8 @@ "nl": "Binnen of buiten", "en": "Indoor or outdoor", "de": "Innen oder Außen", - "hu": "Beltéri vagy kültéri" + "hu": "Beltéri vagy kültéri", + "es": "Interior o exterior" } }, { diff --git a/assets/layers/rainbow_crossings/rainbow_crossings.json b/assets/layers/rainbow_crossings/rainbow_crossings.json new file mode 100644 index 0000000000..55ed292003 --- /dev/null +++ b/assets/layers/rainbow_crossings/rainbow_crossings.json @@ -0,0 +1,102 @@ +{ + "id": "rainbow_crossings", + "name": { + "en": "Crossings with rainbow paintings", + "de": "Fußgängerüberwege in Regenbogenfarben" + }, + "description": { + "en": "A layer showing pedestrian crossings with rainbow paintings", + "de": "Eine Ebene mit Fußgängerüberwegen in Regenbogenfarben" + }, + "source": { + "osmTags": "highway=crossing" + }, + "minzoom": 17, + "title": { + "render": { + "en": "Crossing", + "de": "Überweg" + } + }, + "presets": [ + { + "title": { + "en": "a crossing", + "de": "einen Überweg" + }, + "tags": [ + "highway=crossing" + ], + "description": { + "en": "Pedestrian crossing", + "de": "Fußgängerüberweg" + }, + "preciseInput": { + "preferredBackground": [ + "photo" + ], + "snapToLayer": "cycleways_and_roads", + "maxSnapDistance": 25 + } + } + ], + "tagRenderings": [ + "images", + { + "id": "crossing-with-rainbow", + "question": { + "en": "Does this crossing has rainbow paintings?", + "de": "Hat der Überweg eine Markierung in Regenbogenfarben?" + }, + "condition": "highway=crossing", + "mappings": [ + { + "if": "crossing:marking=rainbow", + "then": { + "en": "This crossing has rainbow paintings", + "de": "Der Überweg hat eine Markierung in Regenbogenfarben" + }, + "icon": { + "path": "./assets/themes/rainbow_crossings/logo.svg", + "class": "medium" + } + }, + { + "if": "not:crossing:marking=rainbow", + "then": { + "en": "No rainbow paintings here", + "de": "Hier gibt es kein Markierung in Regenbogenfarben" + }, + "icon": "./assets/themes/rainbow_crossings/crossing.svg" + }, + { + "if": "crossing:marking!=rainbow", + "then": { + "en": "No rainbow paintings here", + "de": "Hier gibt es kein Markierung in Regenbogenfarben" + }, + "icon": "./assets/themes/rainbow_crossings/crossing.svg", + "hideInAnswer": true + } + ] + } + ], + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/rainbow_crossings/crossing.svg", + "mappings": [ + { + "if": "crossing:marking=rainbow", + "then": "./assets/themes/rainbow_crossings/logo.svg" + } + ] + }, + "iconSize": "40,40,center", + "location": [ + "point", + "centroid" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/reception_desk/license_info.json b/assets/layers/reception_desk/license_info.json new file mode 100644 index 0000000000..5afdc20e73 --- /dev/null +++ b/assets/layers/reception_desk/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "reception_desk.svg", + "license": "CC-BY-SA", + "authors": [ + "Robin Julien" + ], + "sources": [ + "https://www.ctsteward.com/" + ] + } +] \ No newline at end of file diff --git a/assets/layers/reception_desk/reception_desk.json b/assets/layers/reception_desk/reception_desk.json new file mode 100644 index 0000000000..3b2a1a3356 --- /dev/null +++ b/assets/layers/reception_desk/reception_desk.json @@ -0,0 +1,99 @@ +{ + "id": "reception_desk", + "name": { + "en": "Reception desks", + "fr": "Bureaux d'accueil", + "de": "Empfangstresen" + }, + "description": { + "en": "A layer showing where the reception desks are and which asks some accessibility information", + "fr": "Un calque montrant où se trouvent les bureaux d'accueil et qui demande des informations d'accessibilité", + "de": "Eine Ebene, die Empfangstresen zeigt und Informationen zur Barrierefreiheit abfragt" + }, + "title": { + "render": { + "en": "Reception desk", + "fr": "Bureau d'accueil", + "de": "Empfangstresen" + } + }, + "source": { + "osmTags": "amenity=reception_desk" + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "circle:white;./assets/layers/reception_desk/reception_desk.svg", + "iconSize": "40,40,center" + } + ], + "tagRenderings": [ + "images", + "level", + { + "id": "desk-height", + "question": { + "en": "What is the height of the reception desk?
This is measured from the floor to the lowest usable part of the desk
", + "fr": "Quelle est la hauteur de la réception ?
Ceci est mesuré du sol à la partie utilisable la plus basse du bureau
", + "de": "Wie hoch ist der Empfangstresen?
Gemessen vom Boden bis zur untersten nutzbaren Stelle des Tisches
" + }, + "render": { + "en": "The height of the desk is {canonical(desk:height)}", + "fr": "La hauteur du bureau est {canonical(desk:height)}", + "de": "Die Höhe des Tresens beträgt {canonical(desk:height)}" + }, + "freeform": { + "key": "desk:height", + "type": "pfloat" + } + }, + "induction-loop" + ], + "presets": [ + { + "tags": [ + "amenity=reception_desk" + ], + "title": { + "en": "a reception desk", + "fr": "un bureau d'accueil", + "de": "einen Empfangstresen" + } + } + ], + "units": [ + { + "appliesToKey": [ + "desk:height" + ], + "applicableUnits": [ + { + "canonicalDenomination": "m", + "alternativeDenomination": [ + "meter" + ], + "human": { + "en": "meter", + "fr": "mètre", + "de": "Meter" + } + }, + { + "canonicalDenomination": "cm", + "alternativeDenomination": [ + "centimeter", + "cms" + ], + "human": { + "en": "centimeter", + "fr": "centimètre", + "de": "Zentimeter" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/reception_desk/reception_desk.svg b/assets/layers/reception_desk/reception_desk.svg new file mode 100644 index 0000000000..e8dd150704 --- /dev/null +++ b/assets/layers/reception_desk/reception_desk.svg @@ -0,0 +1,29 @@ + + + + + + + + + + diff --git a/assets/layers/recycling/recycling-14.svg b/assets/layers/recycling/recycling-14.svg index 9778d136c9..ff05c8c74b 100644 --- a/assets/layers/recycling/recycling-14.svg +++ b/assets/layers/recycling/recycling-14.svg @@ -3,12 +3,12 @@ + inkscape:zoom="1.3871348" + inkscape:cx="252.31866" + inkscape:cy="292.68965" + inkscape:current-layer="svg2" + width="500px" /> @@ -44,14 +45,14 @@